diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-11-01 14:44:37 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-11-01 16:49:35 +0100 |
commit | 6ab34fd8e8632e265d9e329a59272203be5169f7 (patch) | |
tree | 0cd7c22a0d2066f4436be21d50d211959af9e48d /lib | |
parent | 5c6732c4bbe18aa05b0563d8c8b673c694dada91 (diff) |
* i18n/L10n updates.
* translator documentation added.
* superfluous whitespace removed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/groupeditform.php | 2 | ||||
-rw-r--r-- | lib/mailhandler.php | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/groupeditform.php b/lib/groupeditform.php index f939fc1b6..cc25f0688 100644 --- a/lib/groupeditform.php +++ b/lib/groupeditform.php @@ -204,6 +204,6 @@ class GroupEditForm extends Form function formActions() { - $this->out->submit('submit', _('Save')); + $this->out->submit('submit', _m('BUTTON','Save')); } } diff --git a/lib/mailhandler.php b/lib/mailhandler.php index e9ba41839..69eb26bdd 100644 --- a/lib/mailhandler.php +++ b/lib/mailhandler.php @@ -57,8 +57,9 @@ class MailHandler $msg = $this->cleanup_msg($msg); $msg = common_shorten_links($msg); if (Notice::contentTooLong($msg)) { - $this->error($from, sprintf(_('That\'s too long. '. - 'Max notice size is %d chars.'), + $this->error($from, sprintf(_('That\'s too long. Maximum notice size is %d character.', + 'That\'s too long. Maximum notice size is %d characters.', + Notice::maxContent()), Notice::maxContent())); } |