summaryrefslogtreecommitdiffstats
path: root/frontends/php/locales.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-02-11 14:48:34 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-02-11 14:48:34 +0000
commit8e0de84965c91f571e94fa4e1bd7848310a787b3 (patch)
tree36c838de1bbed7a330901d286873fddcde8c9390 /frontends/php/locales.php
parentec99dcce124d70002c5eee4af75a9cf57479b2f1 (diff)
downloadzabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.gz
zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.tar.xz
zabbix-8e0de84965c91f571e94fa4e1bd7848310a787b3.zip
- [DEV-112] added themes option in frontend (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5341 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/locales.php')
-rw-r--r--frontends/php/locales.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/locales.php b/frontends/php/locales.php
index d17f776a..bef17b1b 100644
--- a/frontends/php/locales.php
+++ b/frontends/php/locales.php
@@ -250,21 +250,21 @@ else{
foreach($ZBX_LOCALES as $id => $name){
$cmbLang->AddItem($id,$name);
}
- $frmLcls->AddRow('Take for default locale:',$cmbLang);
+ $frmLcls->AddRow('Take for default locale',$cmbLang);
$cmbExtLang = new CComboBox('extlang',get_request('extlang','new'));
$cmbExtLang->AddItem('new',S_CREATE.SPACE.S_NEW_SMALL);
foreach($ZBX_LOCALES as $id => $name){
$cmbExtLang->AddItem($id,$name);
}
- $frmLcls->AddRow('Locale to extend:',$cmbExtLang);
+ $frmLcls->AddRow('Locale to extend',$cmbExtLang);
$cmbFill = new CComboBox('fill',get_request('fill',1));
$cmbFill->AddItem('0',S_DO_NOT_ADD);
$cmbFill->AddItem('1',S_LEAVE_EMPTY);
$cmbFill->AddItem('2',S_FILL_WITH_DEFAULT_VALUE);
- $frmLcls->AddRow('New entries:', $cmbFill);
+ $frmLcls->AddRow('New entries', $cmbFill);
$frmLcls->AddItemToBottomRow(new CButton('next',S_NEXT));
$frmLcls->Show();