summaryrefslogtreecommitdiff
path: root/actions/deleteapplication.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-11 21:04:07 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-04-11 21:04:07 +0200
commit69eebc1ec83ae81ddd1c172a3948ec47661cd364 (patch)
tree099cc3e875b3ece4259da490498da22199bb6d28 /actions/deleteapplication.php
parent03a5e96a61737b8087f12dffd614359ec5a8befa (diff)
Add translator documentation for uses of 'Yes' and 'No' in the interface.
Diffstat (limited to 'actions/deleteapplication.php')
-rw-r--r--actions/deleteapplication.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/actions/deleteapplication.php b/actions/deleteapplication.php
index 17526e111..806de0be6 100644
--- a/actions/deleteapplication.php
+++ b/actions/deleteapplication.php
@@ -150,13 +150,17 @@ class DeleteapplicationAction extends Action
'This will clear all data about the application from the '.
'database, including all existing user connections.'));
$this->submit('form_action-no',
- _('No'),
+ // TRANS: Button label on the delete application form.
+ _m('BUTTON','No'),
'submit form_action-primary',
'no',
- _("Do not delete this application"));
+ // TRANS: Submit button title for 'No' when deleting an application.
+ _('Do not delete this application'));
$this->submit('form_action-yes',
- _('Yes'),
+ // TRANS: Button label on the delete application form.
+ _m('BUTTON','Yes'),
'submit form_action-secondary',
+ // TRANS: Submit button title for 'Yes' when deleting an application.
'yes', _('Delete this application'));
$this->elementEnd('fieldset');
$this->elementEnd('form');