diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-08-08 21:13:21 +0200 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2010-08-08 21:13:21 +0200 |
commit | 09dee24cbeadfb1fef797d38265e2ece09266bb0 (patch) | |
tree | 76a6c41dc3d550431fc13c62798502c1e9f88dfc | |
parent | 5549600505fa1b8abc11563eb026d6c40f8e0c37 (diff) |
Add two i18n related FIXMEs.
-rw-r--r-- | lib/mailbox.php | 1 | ||||
-rw-r--r-- | lib/noticelist.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/mailbox.php b/lib/mailbox.php index 90a58b4c4..2b00f5ffd 100644 --- a/lib/mailbox.php +++ b/lib/mailbox.php @@ -224,6 +224,7 @@ class MailboxAction extends CurrentUserDesignAction if ($message->source) { $this->elementStart('span', 'source'); + // FIXME: bad i18n. Device should be a parameter (from %s). $this->text(_('from')); $this->element('span', 'device', $this->showSource($message->source)); $this->elementEnd('span'); diff --git a/lib/noticelist.php b/lib/noticelist.php index 252e1ca90..dbc5bfb51 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -502,6 +502,7 @@ class NoticeListItem extends Widget $source_name = (empty($ns->name)) ? _($ns->code) : _($ns->name); $this->out->text(' '); $this->out->elementStart('span', 'source'); + // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s). $this->out->text(_('from')); $this->out->text(' '); |