浏览代码

Converting names to gettext. adding phpdoc blocks

tokul 21 年之前
父节点
当前提交
a5fdac639c
共有 3 个文件被更改,包括 21 次插入3 次删除
  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');
 ?>