diff options
Diffstat (limited to 'plugins/archive')
-rw-r--r-- | plugins/archive/archive.php | 3 | ||||
-rw-r--r-- | plugins/archive/localization/az_AZ.inc | 21 | ||||
-rw-r--r-- | plugins/archive/localization/bg_BG.inc | 21 | ||||
-rw-r--r-- | plugins/archive/localization/km_KH.inc | 21 |
4 files changed, 65 insertions, 1 deletions
diff --git a/plugins/archive/archive.php b/plugins/archive/archive.php index 33e0daa31..0a298cbe3 100644 --- a/plugins/archive/archive.php +++ b/plugins/archive/archive.php @@ -67,9 +67,10 @@ class archive extends rcube_plugin { $rcmail = rcmail::get_instance(); $archive_folder = $rcmail->config->get('archive_mbox'); + $localize_name = $rcmail->config->get('archive_localize_name', true); // set localized name for the configured archive folder - if ($archive_folder) { + if ($archive_folder && $localize_name) { if (isset($p['list'][$archive_folder])) $p['list'][$archive_folder]['name'] = $this->gettext('archivefolder'); else // search in subfolders diff --git a/plugins/archive/localization/az_AZ.inc b/plugins/archive/localization/az_AZ.inc new file mode 100644 index 000000000..a4f3bffb7 --- /dev/null +++ b/plugins/archive/localization/az_AZ.inc @@ -0,0 +1,21 @@ +<?php + +/* + +-----------------------------------------------------------------------+ + | localization/az_AZ/labels.inc | + | | + | Language file of the Roundcube Webmail client | + | Copyright (C) 2012, The Roundcube Dev Team | + | Licensed under the GNU General Public License | + | | + +-----------------------------------------------------------------------+ + | Author: Orkhan Guliyev <proger@box.az> | + +-----------------------------------------------------------------------+ +*/ + +$labels = array(); +$labels['buttontext'] = 'Arxiv'; +$labels['archivefolder'] = 'Arxiv'; +$labels['buttontitle'] = 'Mesajı arxivə göndər'; +$labels['archived'] = 'Arxivə göndərildi'; + diff --git a/plugins/archive/localization/bg_BG.inc b/plugins/archive/localization/bg_BG.inc new file mode 100644 index 000000000..1e19af3e4 --- /dev/null +++ b/plugins/archive/localization/bg_BG.inc @@ -0,0 +1,21 @@ +<?php + +/* + +-----------------------------------------------------------------------+ + | localization/bg_BG/labels.inc | + | | + | Language file of the Roundcube Webmail client | + | Copyright (C) 2012, The Roundcube Dev Team | + | Licensed under the GNU General Public License | + | | + +-----------------------------------------------------------------------+ + | Author: Nikolai Nikolov <nick@kytex.bg> | + +-----------------------------------------------------------------------+ +*/ + +$labels = array(); +$labels['buttontext'] = 'Архивиране'; +$labels['archivefolder'] = 'Архивиране'; +$labels['buttontitle'] = 'Архивиране на съобщението'; +$labels['archived'] = 'Архивирането е успешно'; + diff --git a/plugins/archive/localization/km_KH.inc b/plugins/archive/localization/km_KH.inc new file mode 100644 index 000000000..3e880dcb9 --- /dev/null +++ b/plugins/archive/localization/km_KH.inc @@ -0,0 +1,21 @@ +<?php + +/* + +-----------------------------------------------------------------------+ + | localization/km_KH/labels.inc | + | | + | Language file of the Roundcube Webmail client | + | Copyright (C) 2012, The Roundcube Dev Team | + | Licensed under the GNU General Public License | + | | + +-----------------------------------------------------------------------+ + | Author: samdyk | + +-----------------------------------------------------------------------+ +*/ + +$labels = array(); +$labels['buttontext'] = 'ប័ណ្ណសារ'; +$labels['archivefolder'] = 'ប័ណ្ណសារ'; +$labels['buttontitle'] = 'ប័ណ្ណសារ សារលិខិត នេះ'; +$labels['archived'] = 'ប័ណ្ណសារ បានសំរេច'; + |