summaryrefslogtreecommitdiff
path: root/modules/pref-feed-browser.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/pref-feed-browser.php
parent2fbffcd9841c0275e22c4cfd5c0cc8ef258147c9 (diff)
more translation work
Diffstat (limited to 'modules/pref-feed-browser.php')
-rw-r--r--modules/pref-feed-browser.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/pref-feed-browser.php b/modules/pref-feed-browser.php
index 104dd93f5..4759a5f6a 100644
--- a/modules/pref-feed-browser.php
+++ b/modules/pref-feed-browser.php
@@ -2,7 +2,7 @@
function module_pref_feed_browser($link) {
if (!ENABLE_FEED_BROWSER) {
- print "Feed browser is administratively disabled.";
+ print __("Feed browser is administratively disabled.");
return;
}
@@ -12,7 +12,7 @@
$id = db_escape_string($_GET["id"]);
print "<div class=\"browserFeedInfo\">";
- print "<b>Feed information:</b>";
+ print "<b>".__('Feed information:')."</b>";
print "<div class=\"detailsPart\">";
$result = db_query($link, "SELECT
@@ -48,7 +48,7 @@
if (db_num_rows($result) > 0) {
- print "<b>Last headlines:</b><br>";
+ print "<b>".__('Last headlines:')."</b><br>";
print "<div class=\"detailsPart\">";
print "<ul class=\"compact\">";
@@ -149,7 +149,7 @@
}
if ($feedctr == 0) {
- print "<li>No feeds found to subscribe.</li>";
+ print "<li>".__('No feeds found to subscribe.')."</li>";
}
print "</ul>";