diff options
| author | 2014-09-24 13:56:40 +0200 | |
|---|---|---|
| committer | 2014-09-24 13:56:40 +0200 | |
| commit | bcb1e3750a9eee51070d602cc77def06f7f071c9 (patch) | |
| tree | 9af9bab0dcf0d3a6f45491631b17053c088ffe3b /app/views/configure/categorize.phtml | |
| parent | 17f686095ddebe1a7c94fe665eddfdfef9696015 (diff) | |
More explicit message when deleting feeds or cats
Introduce "data-str-confirm" to override default message for confirm actions.
Fix https://github.com/marienfressinaud/FreshRSS/issues/625
Diffstat (limited to 'app/views/configure/categorize.phtml')
| -rw-r--r-- | app/views/configure/categorize.phtml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/configure/categorize.phtml b/app/views/configure/categorize.phtml index 2f0e554ca..23d1c9fa1 100644 --- a/app/views/configure/categorize.phtml +++ b/app/views/configure/categorize.phtml @@ -21,7 +21,10 @@ <a class="btn" href="<?php echo _url('index', 'index', 'get', 'c_' . $cat->id ()); ?>"> <?php echo _i('link'); ?> </a> - <button type="submit" class="btn btn-attention confirm" formaction="<?php echo _url ('feed', 'delete', 'id', $cat->id (), 'type', 'category'); ?>"><?php echo Minz_Translate::t ('ask_empty'); ?></button> + <button formaction="<?php echo _url('feed', 'delete', 'id', $cat->id (), 'type', 'category'); ?>" + class="btn btn-attention confirm" + data-str-confirm="<?php echo _t('confirm_action_feed_cat'); ?>" + type="submit"><?php echo _t('ask_empty'); ?></button> <?php } ?> </div> (<?php echo Minz_Translate::t ('number_feeds', $cat->nbFeed ()); ?>) |
