summaryrefslogtreecommitdiffstats
path: root/subscribe.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-28 16:27:14 +0100
committerLukas Reschke <lukas@statuscode.ch>2013-02-28 16:27:14 +0100
commit50c5fc59b911128ab3a8e59cdf1809430383d662 (patch)
treee823d417a91b66e8819c9bf3a26ebf1a146aefcf /subscribe.php
parentd6e8bd9cf2ec194e13bff3bdc5381f2919d07a17 (diff)
Replace translation strings
Grep: echo \$l\-\>t\(\'([^']*)\'\) Replace with:p(\$l\-\>t\(\'\1\'\)\) Grep: echo \$l\-\>t\(\"([^"]*)\"\) Replace with: p(\$l\-\>t\(\"\1\"\)\)
Diffstat (limited to 'subscribe.php')
-rw-r--r--subscribe.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/subscribe.php b/subscribe.php
index 2b38d2ddf..41f00e98e 100644
--- a/subscribe.php
+++ b/subscribe.php
@@ -27,13 +27,13 @@
}
if($feed === null || !$feedid) {
- echo $l->t('An error occurred');
+ p($l->t('An error occurred'));
} else {
- echo $l->t('Nice! You have subscribed to ') . $feed->getTitle();
+ p($l->t('Nice! You have subscribed to ')) . $feed->getTitle();
}
}
else {
- echo $l->t('You had already subscribed to this feed!');
+ p($l->t('You had already subscribed to this feed!'));
}
?>