Translated strings in plugin to gettext.
[squirrelmail.git] / plugins / fortune / setup.php
index 4959231b77fda956a683019c54cc72702920c5dc..ce01ece97d1b9367e7925da94d8085acb0237a02 100644 (file)
@@ -35,9 +35,9 @@ function fortune() {
     echo "<center><table cellpadding=0 cellspacing=0 border=0 bgcolor=$color[10]><tr><td><table width=100% cellpadding=2 cellspacing=1 border=0 bgcolor=\"$color[5]\"><tr><td align=center>";
     echo '<TABLE><TR><TD>';
     if (!$exist) {
-        echo "$fortune_location not found.";
+        echo "$fortune_location" . _(" not found.");
     } else {
-        echo "<CENTER><FONT=3><EM>Today's Fortune</EM><BR></FONT></CENTER><pre>";
+        echo "<CENTER><FONT=3><EM>" . _("Today's Fortune") . "</EM><BR></FONT></CENTER><pre>";
         system($fortune_location);
     } 
   
@@ -53,11 +53,11 @@ function fortune_load() {
 function fortune_options() {
   global $fortune_visible;
 
-  echo "<tr><td align=right nowrap>Fortunes:</td>\n";
+  echo "<tr><td align=right nowrap>" . _("Fortunes:") . "</td>\n";
   echo '<td><input name="fortune_fortune_visible" type=CHECKBOX';
   if ($fortune_visible)
     echo ' CHECKED';
-  echo "> Show fortunes at top of mailbox</td></tr>\n";
+  echo "> " . _("Show fortunes at top of mailbox") . "</td></tr>\n";
 }
 
 function fortune_save() {