X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fapplicationeditform.php;h=4b4356e72184e26b5f0fc98a9b8e7049c46be958;hb=746e658f3e398948fe8c3f047e2b35ef6aa7ebd5;hp=ec6702cd647ee082cc2daaf89c0890eaaa125bf4;hpb=27ef3b1d905cdf8f47b47293a757624dda88fdc7;p=quix0rs-gnu-social.git diff --git a/lib/applicationeditform.php b/lib/applicationeditform.php index ec6702cd64..4b4356e721 100644 --- a/lib/applicationeditform.php +++ b/lib/applicationeditform.php @@ -198,7 +198,7 @@ class ApplicationEditForm extends Form if ($maxDesc > 0) { // TRANS: Form input field instructions. // TRANS: %d is the number of available characters for the description. - $descInstr = sprintf(ngettext('Describe your application in %d character','Describe your application in %d characters',$maxDesc), + $descInstr = sprintf(_m('Describe your application in %d character','Describe your application in %d characters',$maxDesc), $maxDesc); } else { // TRANS: Form input field instructions. @@ -350,10 +350,10 @@ class ApplicationEditForm extends Form // TRANS: Button label in the "Edit application" form. $this->out->submit('cancel', _m('BUTTON','Cancel'), 'submit form_action-primary', // TRANS: Submit button title. - 'cancel', _('Cancel')); + 'cancel', _('Cancel application changes.')); // TRANS: Button label in the "Edit application" form. $this->out->submit('save', _m('BUTTON','Save'), 'submit form_action-secondary', // TRANS: Submit button title. - 'save', _('Save')); + 'save', _('Save application changes.')); } }