update translations

This commit is contained in:
Andrew Dolgov 2007-08-26 07:25:48 +01:00
parent 27e9264867
commit ba5fac1b5f
8 changed files with 11 additions and 10 deletions

Binary file not shown.

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: messages\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-08-26 12:14+0400\n"
"POT-Creation-Date: 2007-08-26 14:25+0400\n"
"PO-Revision-Date: 2007-08-22 21:56+0200\n"
"Last-Translator: Thibaut Cousin <informatique@thibaut-cousin.net>\n"
"Language-Team: Français <fr@li.org>\n"
@ -587,8 +587,8 @@ msgid "Mark all visible articles in %s as read?"
msgstr "Marquer tous les articles visibles de %s comme lus ?"
#: localized_js.php:113
#, php-format
msgid "Mark all selected articles in %s as read?"
#, fuzzy, php-format
msgid "Mark %d selected articles in %s as read?"
msgstr "Marquer tous les articles sélectionnés de %s comme lus ?"
#: localized_js.php:114

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-08-26 12:14+0400\n"
"POT-Creation-Date: 2007-08-26 14:25+0400\n"
"PO-Revision-Date: 2007-08-18 15:14+0400\n"
"Last-Translator: Andrew Dolgov <cthulhoo@gmail.com>\n"
"Language-Team: Русский <ru@li.org>\n"
@ -577,7 +577,7 @@ msgstr ""
#: localized_js.php:113
#, fuzzy, php-format
msgid "Mark all selected articles in %s as read?"
msgid "Mark %d selected articles in %s as read?"
msgstr "Помечаю все каналы как прочитанные..."
#: localized_js.php:114

Binary file not shown.

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tiny Tiny RSS1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-08-26 12:14+0400\n"
"POT-Creation-Date: 2007-08-26 14:25+0400\n"
"PO-Revision-Date: 2007-08-19 19:03+0800\n"
"Last-Translator: sluke <sluke520@yahoo.com.cn>\n"
"Language-Team: hicode.org <sluke520@yahoo.com.cn>\n"
@ -571,8 +571,8 @@ msgid "Mark all visible articles in %s as read?"
msgstr "标记 %s 中所有访问过的主题为已读"
#: localized_js.php:113
#, php-format
msgid "Mark all selected articles in %s as read?"
#, fuzzy, php-format
msgid "Mark %d selected articles in %s as read?"
msgstr "标记 %s 中所有所选Feed为已读..."
#: localized_js.php:114

View File

@ -110,7 +110,7 @@ print T_js_decl("Can't add filter: nothing to match on.");
print T_js_decl("Can't subscribe: no feed URL given.");
print T_js_decl("Unsubscribe from %s?");
print T_js_decl("Mark all visible articles in %s as read?");
print T_js_decl("Mark all selected articles in %s as read?");
print T_js_decl("Mark %d selected articles in %s as read?");
print T_js_decl("Please enter label title:");
print T_js_decl("Save current configuration?");
print T_js_decl("Old password cannot be blank.");

View File

@ -975,8 +975,9 @@ function catchupSelection() {
var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
var str = __("Mark all selected articles in %s as read?");
var str = __("Mark %d selected articles in %s as read?");
str = str.replace("%d", rows.length);
str = str.replace("%s", fn);
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {