summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 13:50:46 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 13:50:46 +0100
commit4dccf1ed93948f6e75750c31ba6bb0abf053e52b (patch)
treefb071c51f25d2551e67b144405722fba655bf734 /modules/pref-feeds.php
parent8497d2b976c320604929efd8055155380ebe3814 (diff)
more i18n work
Diffstat (limited to 'modules/pref-feeds.php')
-rw-r--r--modules/pref-feeds.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 1f5a9d9da..5a5d0f0e7 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -443,9 +443,9 @@
}
if (subscribe_to_feed($link, $feed_url, $cat_id)) {
- print format_notice(sprintf(__("Subscribed to <b>%s</b>."), $feed_url));
+ print_notice(T_sprintf("Subscribed to <b>%s</b>.", $feed_url));
} else {
- print format_warning(sprintf(__("Already subscribed to <b>%s</b>."), $feed_url));
+ print_warning(T_sprintf("Already subscribed to <b>%s</b>.", $feed_url));
}
if ($p_from != 'tt-rss') {
@@ -547,7 +547,8 @@
} else {
- print format_warning(sprintf(__("Category <b>$%s</b> already exists in the database."), $feed_cat));
+ print_warning(T_sprintf("Category <b>$%s</b> already exists in the database.",
+ $feed_cat));
}
}