summaryrefslogtreecommitdiff
path: root/modules/popup-dialog.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-10 17:16:43 +0100
committerAndrew Dolgov <[email protected]>2007-08-10 17:16:43 +0100
commit89cb787edd1c9d3c2fa2616c98986b130fcaf930 (patch)
treebcae5e74fdbb138fe8546f4173dd06b269ebccab /modules/popup-dialog.php
parent2fbffcd9841c0275e22c4cfd5c0cc8ef258147c9 (diff)
more translation work
Diffstat (limited to 'modules/popup-dialog.php')
-rw-r--r--modules/popup-dialog.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/popup-dialog.php b/modules/popup-dialog.php
index 2805f7653..498514b08 100644
--- a/modules/popup-dialog.php
+++ b/modules/popup-dialog.php
@@ -59,7 +59,7 @@
print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">";
print "<table width='100%'>
- <tr><td>Feed URL:</td><td>
+ <tr><td>".__('Feed URL:')."</td><td>
<input class=\"iedit\" onblur=\"javascript:enableHotkeys()\"
onkeypress=\"return filterCR(event, qaddFeed)\"
onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
@@ -83,12 +83,12 @@
print "<div id='fadd_login_prompt'><br/>
<a href='javascript:showBlockElement(\"fadd_login_container\",
- \"fadd_login_prompt\")'>Click here if this feed requires authentication.</a></div>";
+ \"fadd_login_prompt\")'>".__('Click here if this feed requires authentication.')."</a></div>";
print "<div id='fadd_login_container'>
<table width='100%'>
- <tr><td>Login:</td><td><input name='auth_login' class='iedit'></td></tr>
- <tr><td>Password:</td><td><input type='password'
+ <tr><td>".__('Login:')."</td><td><input name='auth_login' class='iedit'></td></tr>
+ <tr><td>".__('Password:')."</td><td><input type='password'
name='auth_pass' class='iedit'></td></tr>
</table>
</div>";
@@ -259,7 +259,7 @@
while ($line = db_fetch_assoc($result)) {
//array_push($filter_types, $line["description"]);
- $filter_types[$line["id"]] = $line["description"];
+ $filter_types[$line["id"]] = __($line["description"]);
}
print "<table width='100%'>";
@@ -290,7 +290,7 @@
ORDER BY name");
while ($line = db_fetch_assoc($result)) {
- printf("<option value='%d'>%s</option>", $line["id"], $line["description"]);
+ printf("<option value='%d'>%s</option>", $line["id"], __($line["description"]));
}
print "</select>";