1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-24 04:21:29 +00:00

update translations

This commit is contained in:
Andrew Dolgov
2007-08-21 02:22:29 +01:00
parent 306cc2d692
commit e400230ebd
14 changed files with 218 additions and 150 deletions

View File

@@ -999,7 +999,7 @@
value=\"".__('Export OPML')."\">";
print "<h3>Published articles</h3>";
print "<h3>".__("Published articles")."</h3>";
if (!get_pref($link, "_PREFS_PUBLISH_KEY")) {
set_pref($link, "_PREFS_PUBLISH_KEY", generate_publish_key());

View File

@@ -294,6 +294,9 @@
print "<td align='center'><input onclick='toggleSelectPrefRow(this, \"filter\");'
type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
$line["filter_type_descr"] = __($line["filter_type_descr"]);
$line["action_description"] = __($line["action_description"]);
if (!$enabled) {
$line["reg_exp"] = "<span class=\"insensitive\">" .
$line["reg_exp"] . " " . __("(Disabled)")."</span>";

View File

@@ -217,7 +217,7 @@
$email = db_fetch_result($result, 0, "email");
print "<tr><td width=\"40%\">E-mail</td>";
print "<tr><td width=\"40%\">".__('E-mail')."</td>";
print "<td><input class=\"editbox\" name=\"email\"
onkeypress=\"return filterCR(event, changeUserEmail)\"
value=\"$email\"></td></tr>";

View File

@@ -246,7 +246,7 @@
strtotime($line["last_login"]));
}
$access_level_names = array(0 => "User", 10 => "Administrator");
$access_level_names = array(0 => __("User"), 10 => __("Administrator"));
// if (!$edit_uid || $subop != "edit") {