From 93a29a5d713e2e06b0152b51c7dc0d27b3c8c1a8 Mon Sep 17 00:00:00 2001 From: jervfors Date: Thu, 28 May 2009 06:22:05 +0000 Subject: [PATCH] Adding comments to the translators. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13769 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/template/abook_util.php | 2 ++ functions/template/message_list_util.php | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/functions/template/abook_util.php b/functions/template/abook_util.php index df6d827e..4c911948 100644 --- a/functions/template/abook_util.php +++ b/functions/template/abook_util.php @@ -143,6 +143,7 @@ function get_abook_paginator($abook_page_selector, $abook_page_selector_max, $current_page_args) . ']['; else + // i18n: "<<" is for the first page in the paginator. "<" is for the previous page. $paginator_string .= _("<<") . '][' . _("<") . ']['; if ($page_number < $total_pages) $paginator_string .= make_abook_paginator_link($page_number + 1, @@ -154,6 +155,7 @@ function get_abook_paginator($abook_page_selector, $abook_page_selector_max, $current_page_args) . ']'; else + // i18n: ">>" is for the last page in the paginator. ">" is for the next page. $paginator_string .= _(">") . '][' . _(">>") . ']'; } diff --git a/functions/template/message_list_util.php b/functions/template/message_list_util.php index 0744d633..96d7a9fd 100644 --- a/functions/template/message_list_util.php +++ b/functions/template/message_list_util.php @@ -122,12 +122,15 @@ function getFlagIcon ($aFlags, $icon_theme_path) { // --------------- --------- -------------- array ('msg_new.png', $nbsp, '('._("New").')') , array ('msg_read.png', $nbsp, '('._("Read").')'), + // i18n: "D" is short for "Deleted". Make sure that two icon strings aren't translated to the same character (only in 1.5). array ('msg_new_deleted.png', _("D"), '('._("Deleted").')'), array ('msg_read_deleted.png', _("D"), '('._("Deleted").')'), + // i18n: "A" is short for "Answered". Make sure that two icon strings aren't translated to the same character (only in 1.5). array ('msg_new_reply.png', _("A"), '('._("Answered").')'), array ('msg_read_reply.png', _("A"), '('._("Answered").')'), array ('msg_new_deleted_reply.png', _("D"), '('._("Answered").')'), array ('msg_read_deleted_reply.png', _("D"), '('._("Answered").')'), + // i18n: "F" is short for "Flagged". Make sure that two icon strings aren't translated to the same character (only in 1.5). array ('flagged.png', _("F"), '('._("Flagged").')'), array ('flagged.png', _("F"), '('._("Flagged").')'), array ('flagged.png', _("F"), '('._("Flagged").')'), @@ -152,6 +155,7 @@ function getFlagIcon ($aFlags, $icon_theme_path) { FALSE, FALSE, FALSE, + // i18n: "O" is short for "Forwarded". Make sure that two icon strings aren't translated to the same character (only in 1.5). array ('msg_new_forwarded.png', _("O"), '('._("Forwarded").')'), array ('msg_read_forwarded.png', _("O"), '('._("Forwarded").')'), array ('msg_new_deleted_forwarded.png', _("D"), '('._("Forwarded").')'), -- 2.25.1