From dd9e68b146fa4008081c9808314042b582322a30 Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 12 Apr 2004 07:34:25 +0000 Subject: [PATCH] Converting names to gettext. adding phpdoc blocks git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7089 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- images/themes/default/theme.php | 8 +++++++- images/themes/none/theme.php | 8 +++++++- images/themes/xp/theme.php | 8 +++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/images/themes/default/theme.php b/images/themes/default/theme.php index 35960263..46aef759 100644 --- a/images/themes/default/theme.php +++ b/images/themes/default/theme.php @@ -1,3 +1,9 @@ 'Default','PATH'=> 'default'); +/** + * Theme description + * + * @package squirrelmail + * @subpackage themes + */ + $icon_themes[] = array('NAME'=>_("Default"),'PATH'=> 'default'); ?> diff --git a/images/themes/none/theme.php b/images/themes/none/theme.php index 5a0c1d9a..3df297ce 100644 --- a/images/themes/none/theme.php +++ b/images/themes/none/theme.php @@ -1,3 +1,9 @@ 'None','PATH'=> 'none'); +/** + * Theme description + * + * @package squirrelmail + * @subpackage themes + */ + $icon_themes[] = array('NAME'=>_("None"),'PATH'=> 'none'); ?> diff --git a/images/themes/xp/theme.php b/images/themes/xp/theme.php index 29996923..dc42eaac 100644 --- a/images/themes/xp/theme.php +++ b/images/themes/xp/theme.php @@ -1,3 +1,9 @@ 'XP','PATH'=> 'xp'); +/** + * Theme description + * + * @package squirrelmail + * @subpackage themes + */ + $icon_themes[] = array('NAME'=>_("XP"),'PATH'=> 'xp'); ?> -- 2.25.1