Browse Source

Converting names to gettext. adding phpdoc blocks

tokul 21 years ago
parent
commit
a5fdac639c
3 changed files with 21 additions and 3 deletions
  1. 7 1
      images/themes/default/theme.php
  2. 7 1
      images/themes/none/theme.php
  3. 7 1
      images/themes/xp/theme.php

+ 7 - 1
images/themes/default/theme.php

@@ -1,3 +1,9 @@
 <?php
-    $icon_themes[] = array('NAME'=>'Default','PATH'=> 'default');
+/**
+ * Theme description
+ *
+ * @package squirrelmail
+ * @subpackage themes
+ */
+    $icon_themes[] = array('NAME'=>_("Default"),'PATH'=> 'default');
 ?>

+ 7 - 1
images/themes/none/theme.php

@@ -1,3 +1,9 @@
 <?php
-    $icon_themes[] = array('NAME'=>'None','PATH'=> 'none');
+/**
+ * Theme description
+ *
+ * @package squirrelmail
+ * @subpackage themes
+ */
+    $icon_themes[] = array('NAME'=>_("None"),'PATH'=> 'none');
 ?>

+ 7 - 1
images/themes/xp/theme.php

@@ -1,3 +1,9 @@
 <?php
-    $icon_themes[] = array('NAME'=>'XP','PATH'=> 'xp');
+/**
+ * Theme description
+ *
+ * @package squirrelmail
+ * @subpackage themes
+ */
+    $icon_themes[] = array('NAME'=>_("XP"),'PATH'=> 'xp');
 ?>