From 5251ec3e3815f9a4561d18cd5808769210e09434 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 8 Oct 2013 19:10:47 +0200 Subject: Workaround cyrus-murder bug in SETANNOTATION arguments handling --- program/lib/Roundcube/rcube_imap_generic.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/program/lib/Roundcube/rcube_imap_generic.php b/program/lib/Roundcube/rcube_imap_generic.php index bce4cd4e2..f9a62f010 100644 --- a/program/lib/Roundcube/rcube_imap_generic.php +++ b/program/lib/Roundcube/rcube_imap_generic.php @@ -48,6 +48,8 @@ class rcube_imap_generic '*' => '\\*', ); + public static $mupdate; + private $fp; private $host; private $logged = false; @@ -3156,6 +3158,11 @@ class rcube_imap_generic } foreach ($data as $entry) { + // Workaround cyrus-murder bug, the entry[2] string needs to be escaped + if (self::$mupdate) { + $entry[2] = addcslashes($entry[2], '\\"'); + } + // ANNOTATEMORE drafts before version 08 require quoted parameters $entries[] = sprintf('%s (%s %s)', $this->escape($entry[0], true), $this->escape($entry[1], true), $this->escape($entry[2], true)); @@ -3720,6 +3727,10 @@ class rcube_imap_generic $this->prefs['literal+'] = true; } + if (preg_match('/(\[| )MUPDATE=.*/', $str)) { + self::$mupdate = true; + } + if ($trusted) { $this->capability_readed = true; } -- cgit v1.2.3 From 664710294a116a996a8323e412fee2b0df39580d Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 18:52:54 +0200 Subject: Adde translation update (from Transifex) and cleanup script --- bin/transifexpull.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 bin/transifexpull.sh diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh new file mode 100755 index 000000000..18191e32e --- /dev/null +++ b/bin/transifexpull.sh @@ -0,0 +1,30 @@ +#!/bin/sh + +# In 'translator' mode files will contain empty translated texts +# where translation is not available, we'll remove these later + +tx --debug pull -a --mode translator + +PWD=`dirname "$0"` + +do_clean() +{ + echo "Cleaning $1" + + # remove untranslated/empty texts + perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1 + perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1 + # remove (one-line) comments + perl -pi -e "s/^\\/\\/[a-z\s]+//g" $1 + # remove empty lines (but not in file header) + perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp + mv $1.tmp $1 +} + +# clean up translation files +for file in $PWD/../program/localization/*/*.inc; do + do_clean $file +done +for file in $PWD/../plugins/*/localization/*.inc; do + do_clean $file +done -- cgit v1.2.3 From 915bac3ebbf2cdc6dcb6a88680e7f364a81e00a2 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 19:22:41 +0200 Subject: Do not cleanup en_US files --- bin/transifexpull.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh index 18191e32e..d1497eaf4 100755 --- a/bin/transifexpull.sh +++ b/bin/transifexpull.sh @@ -9,13 +9,16 @@ PWD=`dirname "$0"` do_clean() { + # do not cleanup en_US files + echo "$1" | grep -v en_US > /dev/null || return + echo "Cleaning $1" # remove untranslated/empty texts perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1 perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1 # remove (one-line) comments - perl -pi -e "s/^\\/\\/[a-z\s]+//g" $1 + perl -pi -e "s/^\\/\\/[a-zA-Z0-9\s]+//g" $1 # remove empty lines (but not in file header) perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp mv $1.tmp $1 @@ -25,6 +28,8 @@ do_clean() for file in $PWD/../program/localization/*/*.inc; do do_clean $file done +exit + for file in $PWD/../plugins/*/localization/*.inc; do do_clean $file done -- cgit v1.2.3 From 07e5d737b732882c6104f39604f0568ed531c6e3 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 19:33:18 +0200 Subject: Fix comments cleanup --- bin/transifexpull.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh index d1497eaf4..45ef089a7 100755 --- a/bin/transifexpull.sh +++ b/bin/transifexpull.sh @@ -3,7 +3,7 @@ # In 'translator' mode files will contain empty translated texts # where translation is not available, we'll remove these later -tx --debug pull -a --mode translator +#tx --debug pull -a --mode translator PWD=`dirname "$0"` @@ -18,7 +18,7 @@ do_clean() perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1 perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1 # remove (one-line) comments - perl -pi -e "s/^\\/\\/[a-zA-Z0-9\s]+//g" $1 + perl -pi -e "s/^\\/\\/.*//g" $1 # remove empty lines (but not in file header) perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp mv $1.tmp $1 -- cgit v1.2.3 From b1a1ca159e95457fda15a15c75e212dfd6c57640 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 19:33:28 +0200 Subject: Localization files cleanup - removed untranslated texts, empty lines and comments --- program/localization/ar_SA/labels.inc | 61 -------------------------------- program/localization/ar_SA/messages.inc | 1 - program/localization/ast/labels.inc | 61 -------------------------------- program/localization/ast/messages.inc | 1 - program/localization/az_AZ/labels.inc | 61 -------------------------------- program/localization/az_AZ/messages.inc | 1 - program/localization/be_BE/labels.inc | 61 -------------------------------- program/localization/be_BE/messages.inc | 1 - program/localization/bg_BG/labels.inc | 61 -------------------------------- program/localization/bg_BG/messages.inc | 1 - program/localization/bn_BD/labels.inc | 61 -------------------------------- program/localization/bn_BD/messages.inc | 1 - program/localization/br/labels.inc | 61 -------------------------------- program/localization/br/messages.inc | 1 - program/localization/bs_BA/labels.inc | 61 -------------------------------- program/localization/bs_BA/messages.inc | 1 - program/localization/ca_ES/labels.inc | 61 -------------------------------- program/localization/ca_ES/messages.inc | 1 - program/localization/cs_CZ/labels.inc | 61 -------------------------------- program/localization/cs_CZ/messages.inc | 1 - program/localization/cy_GB/labels.inc | 61 -------------------------------- program/localization/cy_GB/messages.inc | 1 - program/localization/da_DK/labels.inc | 61 -------------------------------- program/localization/da_DK/messages.inc | 1 - program/localization/de_CH/labels.inc | 61 -------------------------------- program/localization/de_CH/messages.inc | 1 - program/localization/de_DE/labels.inc | 61 -------------------------------- program/localization/de_DE/messages.inc | 1 - program/localization/el_GR/labels.inc | 61 -------------------------------- program/localization/el_GR/messages.inc | 1 - program/localization/en_GB/labels.inc | 61 -------------------------------- program/localization/en_GB/messages.inc | 1 - program/localization/eo/labels.inc | 61 -------------------------------- program/localization/eo/messages.inc | 1 - program/localization/es_AR/labels.inc | 61 -------------------------------- program/localization/es_AR/messages.inc | 1 - program/localization/es_ES/labels.inc | 61 -------------------------------- program/localization/es_ES/messages.inc | 1 - program/localization/et_EE/labels.inc | 61 -------------------------------- program/localization/et_EE/messages.inc | 1 - program/localization/eu_ES/labels.inc | 61 -------------------------------- program/localization/eu_ES/messages.inc | 1 - program/localization/fa_AF/labels.inc | 61 -------------------------------- program/localization/fa_AF/messages.inc | 1 - program/localization/fa_IR/labels.inc | 61 -------------------------------- program/localization/fa_IR/messages.inc | 1 - program/localization/fi_FI/labels.inc | 61 -------------------------------- program/localization/fi_FI/messages.inc | 1 - program/localization/fr_FR/csv2vcard.inc | 10 ------ program/localization/fr_FR/labels.inc | 61 -------------------------------- program/localization/fr_FR/messages.inc | 1 - program/localization/fy_NL/labels.inc | 61 -------------------------------- program/localization/fy_NL/messages.inc | 1 - program/localization/ga_IE/labels.inc | 61 -------------------------------- program/localization/ga_IE/messages.inc | 1 - program/localization/gl_ES/labels.inc | 61 -------------------------------- program/localization/gl_ES/messages.inc | 1 - program/localization/he_IL/labels.inc | 61 -------------------------------- program/localization/he_IL/messages.inc | 1 - program/localization/hi_IN/labels.inc | 61 -------------------------------- program/localization/hi_IN/messages.inc | 1 - program/localization/hr_HR/labels.inc | 61 -------------------------------- program/localization/hr_HR/messages.inc | 1 - program/localization/hu_HU/labels.inc | 61 -------------------------------- program/localization/hu_HU/messages.inc | 1 - program/localization/hy_AM/labels.inc | 61 -------------------------------- program/localization/hy_AM/messages.inc | 1 - program/localization/ia/labels.inc | 61 -------------------------------- program/localization/ia/messages.inc | 1 - program/localization/id_ID/labels.inc | 61 -------------------------------- program/localization/id_ID/messages.inc | 1 - program/localization/is_IS/labels.inc | 61 -------------------------------- program/localization/is_IS/messages.inc | 1 - program/localization/it_IT/labels.inc | 61 -------------------------------- program/localization/it_IT/messages.inc | 1 - program/localization/ja_JP/labels.inc | 61 -------------------------------- program/localization/ja_JP/messages.inc | 1 - program/localization/ka_GE/labels.inc | 61 -------------------------------- program/localization/ka_GE/messages.inc | 1 - program/localization/km_KH/labels.inc | 61 -------------------------------- program/localization/km_KH/messages.inc | 1 - program/localization/ko_KR/labels.inc | 61 -------------------------------- program/localization/ko_KR/messages.inc | 1 - program/localization/ku/labels.inc | 61 -------------------------------- program/localization/ku/messages.inc | 1 - program/localization/lb_LU/labels.inc | 61 -------------------------------- program/localization/lb_LU/messages.inc | 1 - program/localization/lt_LT/labels.inc | 61 -------------------------------- program/localization/lt_LT/messages.inc | 1 - program/localization/lv_LV/labels.inc | 61 -------------------------------- program/localization/lv_LV/messages.inc | 1 - program/localization/mk_MK/labels.inc | 61 -------------------------------- program/localization/mk_MK/messages.inc | 1 - program/localization/ml_IN/labels.inc | 61 -------------------------------- program/localization/ml_IN/messages.inc | 1 - program/localization/mr_IN/labels.inc | 61 -------------------------------- program/localization/mr_IN/messages.inc | 1 - program/localization/ms_MY/labels.inc | 61 -------------------------------- program/localization/ms_MY/messages.inc | 1 - program/localization/nb_NO/labels.inc | 61 -------------------------------- program/localization/nb_NO/messages.inc | 1 - program/localization/ne_NP/labels.inc | 61 -------------------------------- program/localization/ne_NP/messages.inc | 1 - program/localization/nl_BE/labels.inc | 61 -------------------------------- program/localization/nl_BE/messages.inc | 1 - program/localization/nl_NL/labels.inc | 61 -------------------------------- program/localization/nl_NL/messages.inc | 1 - program/localization/nn_NO/labels.inc | 61 -------------------------------- program/localization/nn_NO/messages.inc | 1 - program/localization/pl_PL/csv2vcard.inc | 6 ---- program/localization/pl_PL/labels.inc | 61 -------------------------------- program/localization/pl_PL/messages.inc | 1 - program/localization/ps/labels.inc | 61 -------------------------------- program/localization/ps/messages.inc | 1 - program/localization/pt_BR/labels.inc | 61 -------------------------------- program/localization/pt_BR/messages.inc | 1 - program/localization/pt_PT/labels.inc | 61 -------------------------------- program/localization/pt_PT/messages.inc | 1 - program/localization/ro_RO/labels.inc | 61 -------------------------------- program/localization/ro_RO/messages.inc | 1 - program/localization/ru_RU/labels.inc | 61 -------------------------------- program/localization/ru_RU/messages.inc | 1 - program/localization/si_LK/labels.inc | 61 -------------------------------- program/localization/si_LK/messages.inc | 1 - program/localization/sk_SK/labels.inc | 61 -------------------------------- program/localization/sk_SK/messages.inc | 1 - program/localization/sl_SI/labels.inc | 61 -------------------------------- program/localization/sl_SI/messages.inc | 1 - program/localization/sq_AL/labels.inc | 61 -------------------------------- program/localization/sq_AL/messages.inc | 1 - program/localization/sr_CS/labels.inc | 61 -------------------------------- program/localization/sr_CS/messages.inc | 1 - program/localization/sv_SE/labels.inc | 61 -------------------------------- program/localization/sv_SE/messages.inc | 1 - program/localization/ta_IN/labels.inc | 61 -------------------------------- program/localization/ta_IN/messages.inc | 1 - program/localization/th_TH/labels.inc | 61 -------------------------------- program/localization/th_TH/messages.inc | 1 - program/localization/tr_TR/labels.inc | 61 -------------------------------- program/localization/tr_TR/messages.inc | 1 - program/localization/uk_UA/labels.inc | 61 -------------------------------- program/localization/uk_UA/messages.inc | 1 - program/localization/vi_VN/labels.inc | 61 -------------------------------- program/localization/vi_VN/messages.inc | 1 - program/localization/zh_CN/labels.inc | 61 -------------------------------- program/localization/zh_CN/messages.inc | 1 - program/localization/zh_TW/csv2vcard.inc | 8 ----- program/localization/zh_TW/labels.inc | 61 -------------------------------- program/localization/zh_TW/messages.inc | 1 - 149 files changed, 4550 deletions(-) mode change 100755 => 100644 program/localization/ga_IE/labels.inc mode change 100755 => 100644 program/localization/ga_IE/messages.inc mode change 100755 => 100644 program/localization/ka_GE/labels.inc mode change 100755 => 100644 program/localization/ka_GE/messages.inc mode change 100755 => 100644 program/localization/mk_MK/labels.inc mode change 100755 => 100644 program/localization/mk_MK/messages.inc mode change 100755 => 100644 program/localization/mr_IN/labels.inc mode change 100755 => 100644 program/localization/mr_IN/messages.inc mode change 100755 => 100644 program/localization/ps/labels.inc mode change 100755 => 100644 program/localization/ps/messages.inc diff --git a/program/localization/ar_SA/labels.inc b/program/localization/ar_SA/labels.inc index 377e1352f..cbed4b70a 100644 --- a/program/localization/ar_SA/labels.inc +++ b/program/localization/ar_SA/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'مرحباً بكم في $product'; $labels['username'] = 'اسم المستخدم'; $labels['password'] = 'كلمة المرور'; $labels['server'] = 'الخادم'; $labels['login'] = 'تسجيل الدخول'; - -// taskbar $labels['logout'] = 'تسجيل الخروج'; $labels['mail'] = 'البريد'; $labels['settings'] = 'الإعدادات الشخصية'; $labels['addressbook'] = 'دفتر العناوين'; - -// mailbox names $labels['inbox'] = 'الوارد'; $labels['drafts'] = 'المسودات'; $labels['sent'] = 'المرسل'; $labels['trash'] = 'المهملات'; $labels['junk'] = 'غير المرغوب'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'الموضوع'; $labels['from'] = 'المرسل'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'الأولوية'; $labels['organization'] = 'المنظمة'; $labels['readstatus'] = 'حالة القراءة'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'مجلدات'; $labels['messagesfromto'] = 'الرسالة $from إلى $to من مجموع $count'; $labels['threadsfromto'] = 'جهات الإتصال $from إلى $to من مجموع $count'; $labels['messagenrof'] = 'الرسالة $nr من $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'نسخ'; $labels['move'] = 'نقل'; $labels['moveto'] = 'نقل إلى...'; @@ -68,13 +59,9 @@ $labels['download'] = 'تنزيل'; $labels['open'] = 'فتح'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'اسم الملف'; $labels['filesize'] = 'حجم الملف'; - $labels['addtoaddressbook'] = 'إضافة إلى دفتر العناوين'; - -// weekdays short $labels['sun'] = 'أحد'; $labels['mon'] = 'إثنين'; $labels['tue'] = 'ثلاثاء'; @@ -82,8 +69,6 @@ $labels['wed'] = 'أربعاء'; $labels['thu'] = 'خميس'; $labels['fri'] = 'جمعة'; $labels['sat'] = 'سبت'; - -// weekdays long $labels['sunday'] = 'الأحد'; $labels['monday'] = 'الإثنين'; $labels['tuesday'] = 'الثلاثاء'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'الأربعاء'; $labels['thursday'] = 'الخميس'; $labels['friday'] = 'الجمعة'; $labels['saturday'] = 'السبت'; - -// months short $labels['jan'] = 'يناير'; $labels['feb'] = 'فبراير'; $labels['mar'] = 'مارس'; @@ -105,8 +88,6 @@ $labels['sep'] = 'سبتمبر'; $labels['oct'] = 'أكتوبر'; $labels['nov'] = 'نوفمبر'; $labels['dec'] = 'ديسمبر'; - -// months long $labels['longjan'] = 'يناير'; $labels['longfeb'] = 'فبراير'; $labels['longmar'] = 'مارس'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'سبتمبر'; $labels['longoct'] = 'أكتوبر'; $labels['longnov'] = 'نوفمبر'; $labels['longdec'] = 'ديسمبر'; - $labels['today'] = 'اليوم'; - -// toolbar buttons $labels['refresh'] = 'تحديث'; $labels['checkmail'] = 'التحقق من وجود رسائل جديدة'; $labels['compose'] = 'إنشاء رسالة'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'إجراءات إضافية...'; $labels['more'] = 'المزيد'; $labels['back'] = 'العودة'; $labels['options'] = 'خيارات'; - $labels['select'] = 'تحديد'; $labels['all'] = 'الكل'; $labels['none'] = 'لاشيء'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'إظهار الكل'; $labels['expand-unread'] = 'إظهار الغير مقروءة'; $labels['collapse-all'] = 'ضمّ الكل'; $labels['threaded'] = 'متتابع'; - $labels['autoexpand_threads'] = 'إظهار تتابعات الرسائل'; $labels['do_expand'] = 'جميع التتابعات'; $labels['expand_only_unread'] = 'فقط مع الرسائل الغير مقروءة'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'أعمدة السرد'; $labels['listsorting'] = 'أعمدة الترتيب'; $labels['listorder'] = 'طريقة الترتيب'; $labels['listmode'] = 'وضع طريقة السرد'; - $labels['folderactions'] = 'إجراءات المجلد...'; $labels['compact'] = 'ضغط'; $labels['empty'] = 'تفريغ'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'المساحة المستخدمة'; $labels['unknown'] = 'مجهول'; $labels['unlimited'] = 'غير محدود'; - $labels['quicksearch'] = 'البحث السريع'; $labels['resetsearch'] = 'استعادة البحث للافتراضي'; $labels['searchmod'] = 'أماكن البحث'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'كامل الرسالة'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; $labels['namex'] = 'Name'; - $labels['openinextwin'] = 'افتح في نافذة جديدة'; $labels['emlsave'] = 'تنزيل (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'تعديل كجديد'; $labels['send'] = 'ارسل'; $labels['sendmessage'] = 'إرسال الرسالة الآن'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'ايصال استلام'; $labels['dsn'] = 'تنويه حالة التوصيل'; $labels['mailreplyintro'] = 'كتب $sender في $date:'; $labels['originalmessage'] = 'الرسالة الأساسية'; - $labels['editidents'] = 'تعديل الهويات'; $labels['spellcheck'] = 'التدقيق اﻹملائى'; $labels['checkspelling'] = 'التدقيق الإملائي'; $labels['resumeediting'] = 'متابعة التحرير'; $labels['revertto'] = 'استعادة إلى'; - $labels['attach'] = 'إرفاق'; $labels['attachments'] = 'مرفقات'; $labels['upload'] = 'تحميل'; $labels['uploadprogress'] = '$percent ($current من $total)'; $labels['close'] = 'إغلاق'; $labels['messageoptions'] = 'خيارات الرسائل...'; - $labels['low'] = 'منخض'; $labels['lowest'] = 'الأقل'; $labels['normal'] = 'عادي'; $labels['high'] = 'مرتفع'; $labels['highest'] = 'الأعلى'; - $labels['nosubject'] = '(دون موضوع)'; $labels['showimages'] = 'إظهار الصور'; $labels['alwaysshow'] = 'دائماً أظهر الصّور القادمة من $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'هذه مسودّة رسالة'; $labels['andnmore'] = '$nr المزيد ...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'نص مجرد'; $labels['savesentmessagein'] = 'احفظ الرسالة المُرسلة في'; $labels['dontsave'] = 'لا تحفظها'; $labels['maxuploadsize'] = 'أقصى حجم للملف هو $size'; - $labels['addcc'] = 'أضف CC'; $labels['addbcc'] = 'أضف BCC'; $labels['addreplyto'] = 'أضيف Reply-To'; $labels['addfollowupto'] = 'إضافة Mail-Followup-To'; - -// mdn $labels['mdnrequest'] = 'طلب المرسل إعلامه عند قراءتك لرسالته. هل تود إعلام المرسل؟'; $labels['receiptread'] = 'إيصال الاستلام )بالقراءة)'; $labels['yourmessage'] = 'هذا إيصال بقراءة رسالتك'; $labels['receiptnote'] = 'ملاحظة: يُعلمك هذا الإيصال بأن رسالتك قد ظهرت على جهاز المستقبِل. ليست هناك أية ضمانات أن المستقبل قد قرأ أو فهم محتويات الرسالة.'; - -// address boook $labels['name'] = 'اسم العرض'; $labels['firstname'] = 'الإسم الأول'; $labels['surname'] = 'الإسم الأخير'; @@ -305,7 +265,6 @@ $labels['search'] = 'بحث'; $labels['advsearch'] = 'بحث متقدم'; $labels['advanced'] = 'مُتقدم'; $labels['other'] = 'آخر'; - $labels['typehome'] = 'المنزل'; $labels['typework'] = 'العمل'; $labels['typeother'] = 'آخر'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'المساعد'; $labels['typehomepage'] = 'الرئيسية'; $labels['typeblog'] = 'المدوّنة'; $labels['typeprofile'] = 'الملف الشخصي'; - $labels['addfield'] = 'إضافة حقل...'; $labels['addcontact'] = 'إضافة المراسل المحدد إلى دفتر عناويني'; $labels['editcontact'] = 'تحرير بيانات المراسل'; $labels['contacts'] = 'المراسلين'; $labels['contactproperties'] = 'خواص جهة الإتصال'; $labels['personalinfo'] = 'المعلومات الشخصية'; - $labels['edit'] = 'تحرير'; $labels['cancel'] = 'إلغاء'; $labels['save'] = 'حفظ'; @@ -336,7 +293,6 @@ $labels['rename'] = 'إعادة التسمية'; $labels['addphoto'] = 'إضافة'; $labels['replacephoto'] = 'استبدال'; $labels['uploadphoto'] = 'ارفع صورة'; - $labels['newcontact'] = 'إنشاء بطاقة مراسل جديدة'; $labels['deletecontact'] = 'حذف المراسلين المحددين'; $labels['composeto'] = 'إنشاء رسالة إليه'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'إنشاء مجموعة مراسلين جديدة' $labels['grouprename'] = 'تغيير اسم المجموعة'; $labels['groupdelete'] = 'حذف المجموعة'; $labels['groupremoveselected'] = 'حذف العنوان المختار من المجموعة'; - $labels['previouspage'] = 'عرض المجموعة السابقة'; $labels['firstpage'] = 'عرض المجموعة الأولى'; $labels['nextpage'] = 'عرض المجموعة التالية'; $labels['lastpage'] = 'عرض المجموعة الأخيرة'; - $labels['group'] = 'مجموعة'; $labels['groups'] = 'المجموعات'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'العناوين الشخصية'; - $labels['searchsave'] = 'حفظ البحث'; $labels['searchdelete'] = 'حذف البحث'; - $labels['import'] = 'استورد'; $labels['importcontacts'] = 'استورد المراسلين'; $labels['importfromfile'] = 'استورد من ملف:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'All (create groups if necessary)'; $labels['importgroupsexisting'] = 'Only for existing groups'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'تم'; - -// settings $labels['settingsfor'] = 'إعدادات'; $labels['about'] = 'نبذة'; $labels['preferences'] = 'التفضيلات'; $labels['userpreferences'] = 'تفضيلات المستخدم'; $labels['editpreferences'] = 'تحرير تفضيلات المستخدم'; - $labels['identities'] = 'الهويات'; $labels['manageidentities'] = 'إدارة هويات هذا الحساب'; $labels['newidentity'] = 'هوية جديدة'; - $labels['newitem'] = 'عنصر جديد'; $labels['edititem'] = 'تحرير عنصر'; - $labels['preferhtml'] = 'تفضيل صيغة HTML'; $labels['defaultcharset'] = 'ترميز المحارف الافتراضي'; $labels['htmlmessage'] = 'رسالة بنسق HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'مجلد'; $labels['folders'] = 'مجلدات'; $labels['foldername'] = 'اسم المجلد'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'نوع المجلد'; $labels['personalfolder'] = 'مجلد خاص'; $labels['otherfolder'] = 'مجلد مستخدم آخر'; $labels['sharedfolder'] = 'مجلد عام'; - $labels['sortby'] = 'ترتيب بحسب'; $labels['sortasc'] = 'ترتيب تصاعدي'; $labels['sortdesc'] = 'ترتيب تنازلي'; $labels['undo'] = 'تراجع'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'إضافة'; $labels['version'] = 'النسخة'; $labels['source'] = 'المصدر'; $labels['license'] = 'الترخيص'; $labels['support'] = 'احصل على الدعم الفني'; - -// units $labels['B'] = 'ب'; $labels['KB'] = 'ك.ب'; $labels['MB'] = 'م.ب'; $labels['GB'] = 'ج.ب'; - -// character sets $labels['unicode'] = 'يونيكود'; $labels['english'] = 'الإنجليزية'; $labels['westerneuropean'] = 'الغرب أوروبية'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'الفيتنامية'; $labels['japanese'] = 'اليابانية'; $labels['korean'] = 'الكورية'; $labels['chinese'] = 'الصينية'; - ?> diff --git a/program/localization/ar_SA/messages.inc b/program/localization/ar_SA/messages.inc index f989867de..b2a31ad26 100644 --- a/program/localization/ar_SA/messages.inc +++ b/program/localization/ar_SA/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'تعذر إنشاء/نقل المجلد إلى $messages['messagetoobig'] = 'جزء الرسالة أكبر بكثير مما يمكن معالجته.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ast/labels.inc b/program/localization/ast/labels.inc index d92aa3d61..d4b3823ea 100644 --- a/program/localization/ast/labels.inc +++ b/program/localization/ast/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bienllegáu a $product'; $labels['username'] = 'Usuariu'; $labels['password'] = 'Clave'; $labels['server'] = 'Sirvidor'; $labels['login'] = 'Entrar'; - -// taskbar $labels['logout'] = 'Zarrar'; $labels['mail'] = 'Corréu'; $labels['settings'] = 'Axustes'; $labels['addressbook'] = 'Llibreta de direiciones'; - -// mailbox names $labels['inbox'] = 'Entrantes'; $labels['drafts'] = 'Borradores'; $labels['sent'] = 'Unviaos'; $labels['trash'] = 'Papelera'; $labels['junk'] = 'Puxarra'; $labels['show_real_foldernames'] = 'Amosar nomes reales pa carpetes especiales'; - -// message listing $labels['subject'] = 'Asuntu'; $labels['from'] = 'De'; $labels['sender'] = 'Remitente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridá'; $labels['organization'] = 'Organización'; $labels['readstatus'] = 'Lleer estáu'; $labels['listoptions'] = 'Llista d\'oopciones...'; - $labels['mailboxlist'] = 'Bandexes'; $labels['messagesfromto'] = 'Mensaxes del $from a $to de $count'; $labels['threadsfromto'] = 'Filos $from a $to de $count'; $labels['messagenrof'] = 'Mensaxe $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copia'; $labels['move'] = 'Mover'; $labels['moveto'] = 'mover a...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descargar'; $labels['open'] = 'Abrir'; $labels['showattachment'] = 'Amosar'; $labels['showanyway'] = 'Amosar de toes formes'; - $labels['filename'] = 'Nome del Ficheru'; $labels['filesize'] = 'Tamañu del ficheru'; - $labels['addtoaddressbook'] = 'Amestar a la llibreta de direiciones'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Llu'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mie'; $labels['thu'] = 'Xue'; $labels['fri'] = 'Vie'; $labels['sat'] = 'Sab'; - -// weekdays long $labels['sunday'] = 'Domingu'; $labels['monday'] = 'Llunes'; $labels['tuesday'] = 'Martes'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Miércoles'; $labels['thursday'] = 'Xueves'; $labels['friday'] = 'Vienres'; $labels['saturday'] = 'Sábadu'; - -// months short $labels['jan'] = 'Xin'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Set'; $labels['oct'] = 'Och'; $labels['nov'] = 'Pay'; $labels['dec'] = 'Avi'; - -// months long $labels['longjan'] = 'Xineru'; $labels['longfeb'] = 'Febreru'; $labels['longmar'] = 'Marzu'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Setiembre'; $labels['longoct'] = 'Ochobre'; $labels['longnov'] = 'Payares'; $labels['longdec'] = 'Avientu'; - $labels['today'] = 'Güei'; - -// toolbar buttons $labels['refresh'] = 'Refrescar'; $labels['checkmail'] = 'Buscar mensaxes nuevos'; $labels['compose'] = 'Escribir un mensaxe'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Más aiciones...'; $labels['more'] = 'Más'; $labels['back'] = 'Volver'; $labels['options'] = 'Opciones'; - $labels['select'] = 'Escoyer'; $labels['all'] = 'Toos'; $labels['none'] = 'Dengún'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Espander toos'; $labels['expand-unread'] = 'Espander non lleíos'; $labels['collapse-all'] = 'Contrayer toos'; $labels['threaded'] = 'Encadenaos'; - $labels['autoexpand_threads'] = 'Espander filos de mensaxes'; $labels['do_expand'] = 'tolos filos'; $labels['expand_only_unread'] = 'namái con mensaxes non lleíos'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Llistar columnes'; $labels['listsorting'] = 'Columna de llistáu'; $labels['listorder'] = 'Orde de llistáu'; $labels['listmode'] = 'Mou de vista de llista'; - $labels['folderactions'] = 'Aiciones de bandexa...'; $labels['compact'] = 'Compautar'; $labels['empty'] = 'Vaciar'; $labels['importmessages'] = 'Importar mensaxes'; - $labels['quota'] = 'Espaciu en discu'; $labels['unknown'] = 'desconocíu'; $labels['unlimited'] = 'ensin llímite'; - $labels['quicksearch'] = 'Gueta rápida'; $labels['resetsearch'] = 'Anovar la gueta'; $labels['searchmod'] = 'Guetar modificadores'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Mensaxe'; $labels['body'] = 'Cuerpu'; $labels['type'] = 'Tipu'; $labels['namex'] = 'Nome'; - $labels['openinextwin'] = 'Abrir nuna ventana nueva'; $labels['emlsave'] = 'Baxar (.eml)'; $labels['changeformattext'] = 'Amosar en formatu de testu planu'; $labels['changeformathtml'] = 'Amosar en formatu HTML'; - -// message compose $labels['editasnew'] = 'Editar como nuevu'; $labels['send'] = 'Unviar'; $labels['sendmessage'] = 'Unviar el mensaxe yá'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Avisu de recibu'; $labels['dsn'] = 'Entrega de notificaciones d\'estáu'; $labels['mailreplyintro'] = 'El $date, $sender escribió:'; $labels['originalmessage'] = 'Mensaxe orixinal'; - $labels['editidents'] = 'Editar identidaes'; $labels['spellcheck'] = 'Correutor ortográficu'; $labels['checkspelling'] = 'Revisar ortografía'; $labels['resumeediting'] = 'Siguir cola edición'; $labels['revertto'] = 'Revertir a'; - $labels['attach'] = 'Axuntar'; $labels['attachments'] = 'Axuntos'; $labels['upload'] = 'Xubir'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Zarrar'; $labels['messageoptions'] = 'Opciones de mensaxe...'; - $labels['low'] = 'Baxu'; $labels['lowest'] = 'Mui baxu'; $labels['normal'] = 'Normal'; $labels['high'] = 'Altu'; $labels['highest'] = 'Mui altu'; - $labels['nosubject'] = '(ensin asuntu)'; $labels['showimages'] = 'Amosar imáxenes'; $labels['alwaysshow'] = 'Amosar siempre les imáxenes de $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Esti mensaxe ye un borrador.'; $labels['andnmore'] = '$nr más...'; $labels['togglemoreheaders'] = 'Amosar más testeres del mensaxe'; $labels['togglefullheaders'] = 'Amosar o anubrir testeres de mensaxes'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Testu'; $labels['savesentmessagein'] = 'Guardar mensaxe unviáu en'; $labels['dontsave'] = 'nun guardar'; $labels['maxuploadsize'] = 'El tamañu másimu pa un ficheru ye $size'; - $labels['addcc'] = 'Amestar Cc'; $labels['addbcc'] = 'Amestar Cct'; $labels['addreplyto'] = 'Amestar Rempuesta pa'; $labels['addfollowupto'] = 'Amestar Siguir a'; - -// mdn $labels['mdnrequest'] = 'El qu\'unvia esti mensaxe quier que lu avises cuando lleas el corréu. ¿Quies avisalu?'; $labels['receiptread'] = 'Avisu de llectura'; $labels['yourmessage'] = 'Esto ye un avisu de llectura del to mensaxe'; $labels['receiptnote'] = 'Nota: Esti avisu namás quier dicir que\'l to mensaxe amosóse nel equipu del receutor. Nun hai forma de garantizate que lu lleera o que atalantara\'l conteníu del to mensaxe.'; - -// address boook $labels['name'] = 'Nome completu'; $labels['firstname'] = 'Nome'; $labels['surname'] = 'Apellíu'; @@ -305,7 +265,6 @@ $labels['search'] = 'Guetar'; $labels['advsearch'] = 'Gueta avanzada'; $labels['advanced'] = 'Avanzaes'; $labels['other'] = 'Otru'; - $labels['typehome'] = 'Casa'; $labels['typework'] = 'Trabayu'; $labels['typeother'] = 'Otru'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Auxiliar'; $labels['typehomepage'] = 'Aniciu'; $labels['typeblog'] = 'Blogue'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Amestar campu...'; $labels['addcontact'] = 'Amestar contautu nuevu'; $labels['editcontact'] = 'Editar contautu'; $labels['contacts'] = 'Contautos'; $labels['contactproperties'] = 'Propiedaes del contautu'; $labels['personalinfo'] = 'Información personal'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Encaboxar'; $labels['save'] = 'Guardar'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Renomar'; $labels['addphoto'] = 'Amestar'; $labels['replacephoto'] = 'Trocar'; $labels['uploadphoto'] = 'Xubir xemeya'; - $labels['newcontact'] = 'Facer un contautu nuevu'; $labels['deletecontact'] = 'Desaniciar los contautos marcaos'; $labels['composeto'] = 'Unviar mensaxe a'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Crear un grupu nuevu de contautos'; $labels['grouprename'] = 'Renomar grupu'; $labels['groupdelete'] = 'Desaniciar grupu'; $labels['groupremoveselected'] = 'Desaniciar los contautos seleicionaos del grupu'; - $labels['previouspage'] = 'Amosar páxina previa'; $labels['firstpage'] = 'Amosar primer páxina'; $labels['nextpage'] = 'Amosar siguiente páxina'; $labels['lastpage'] = 'Amosar última páxina'; - $labels['group'] = 'Grupu'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'Llistar miembros del grupu'; $labels['personaladrbook'] = 'Direiciones personales'; - $labels['searchsave'] = 'Guardar gueta'; $labels['searchdelete'] = 'Desaniciar gueta'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contautos'; $labels['importfromfile'] = 'Importar dende un ficheru:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Toos (crear grupos si ye necesario)'; $labels['importgroupsexisting'] = 'Namái pa los grupos esistentes'; $labels['importdesc'] = 'Pues xubir contautos dende una llibreta de direiciones esistente.
Anguaño permitimos la importación dende los formatos de datos vCard o CSV (separtaos per comes).'; $labels['done'] = 'Fecho'; - -// settings $labels['settingsfor'] = 'Axustes pa'; $labels['about'] = 'Tocante a'; $labels['preferences'] = 'Preferencies'; $labels['userpreferences'] = 'Preferencies d\'usuariu'; $labels['editpreferences'] = 'Editar preferencies d\'usuariu'; - $labels['identities'] = 'Identidaes'; $labels['manageidentities'] = 'Remanar identidaes pa esta cuenta'; $labels['newidentity'] = 'Identidá nueva'; - $labels['newitem'] = 'Nuevu'; $labels['edititem'] = 'Editar'; - $labels['preferhtml'] = 'Amosar HTML'; $labels['defaultcharset'] = 'Xuegu de caráuteres predetermináu'; $labels['htmlmessage'] = 'Mensaxe HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Xestionar ventanes emerxentes como ventanes están $labels['forwardmode'] = 'Reunviu de mensaxes'; $labels['inline'] = 'en llinia'; $labels['asattachment'] = 'como axuntu'; - $labels['folder'] = 'Bandexa'; $labels['folders'] = 'Bandexes'; $labels['foldername'] = 'Nome de bandexa'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Tipu de bandexa'; $labels['personalfolder'] = 'Bandexa privada'; $labels['otherfolder'] = 'Bandexa d\'otru usuariu'; $labels['sharedfolder'] = 'Bandexa pública'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Orde ascendente'; $labels['sortdesc'] = 'Orde descendente'; $labels['undo'] = 'Desfacer'; - $labels['installedplugins'] = 'Complementos instalaos'; $labels['plugin'] = 'Complementu'; $labels['version'] = 'Versión'; $labels['source'] = 'Orixe'; $labels['license'] = 'Llicencia'; $labels['support'] = 'Obtener soporte'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglés'; $labels['westerneuropean'] = 'Européu occidental'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamín'; $labels['japanese'] = 'Xaponés'; $labels['korean'] = 'Coreanu'; $labels['chinese'] = 'Chinu'; - ?> diff --git a/program/localization/ast/messages.inc b/program/localization/ast/messages.inc index 69d5ecc2f..be63c772f 100644 --- a/program/localization/ast/messages.inc +++ b/program/localization/ast/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nun puede crease/movese la carpeta a la carpet $messages['messagetoobig'] = 'Esta parte del mensaxe ye enforma grande pa procesala'; $messages['attachmentvalidationerror'] = '¡ATENCIÓN! Esti axuntu ye sospechosu porque\'l so tipu nun concasa col tipu declaráu nel mensaxe. Si nun confíes nel so remitente, nun tendríes d\'abrilu nel to navegador porque podría tener conteníu maliciosu.
Esperábase: $expected; atopóse: $detected'; $messages['noscriptwarning'] = 'Avisu: ¡esti serviciu de webmail necesita Javascript! Pa poder usalu, habilita\'l soporte de Javascript nel to navegador, por favor.'; - ?> diff --git a/program/localization/az_AZ/labels.inc b/program/localization/az_AZ/labels.inc index 129315ec0..ea1dfe431 100644 --- a/program/localization/az_AZ/labels.inc +++ b/program/localization/az_AZ/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product-a xoş gəldiniz!'; $labels['username'] = 'İstifadəçi adı'; $labels['password'] = 'Şifrə'; $labels['server'] = 'Server'; $labels['login'] = 'Giriş'; - -// taskbar $labels['logout'] = 'Çıx'; $labels['mail'] = 'Poçt'; $labels['settings'] = 'Nizamlamalar'; $labels['addressbook'] = 'Ünvanlar'; - -// mailbox names $labels['inbox'] = 'Gələnlər'; $labels['drafts'] = 'Qaralamalar'; $labels['sent'] = 'Göndərilənlər'; $labels['trash'] = 'Səbət'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Mövzu'; $labels['from'] = 'Kimdən'; $labels['sender'] = 'Göndərən'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Vaciblik'; $labels['organization'] = 'Təşkilat'; $labels['readstatus'] = 'Statusu oxu'; $labels['listoptions'] = 'Siyahı ayarları...'; - $labels['mailboxlist'] = 'Qovluqlar'; $labels['messagesfromto'] = '$count mesajdan $from - $to arası mesajlar'; $labels['threadsfromto'] = 'Müzakirə: $from - $to Toplam: $count'; $labels['messagenrof'] = 'Məktub: $nr / $count'; $labels['fromtoshort'] = '$from – $to-dan $count'; - $labels['copy'] = 'Kopyala'; $labels['move'] = 'Köçür'; $labels['moveto'] = 'Burada köçür...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Endir'; $labels['open'] = 'Aç'; $labels['showattachment'] = 'Göstər'; $labels['showanyway'] = 'İstənilən halda göstər'; - $labels['filename'] = 'Faylın adı'; $labels['filesize'] = 'Faylın ölçüsü'; - $labels['addtoaddressbook'] = 'Ünvanlara əlavə et'; - -// weekdays short $labels['sun'] = 'B'; $labels['mon'] = 'Be'; $labels['tue'] = 'Ç'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ça'; $labels['thu'] = 'C'; $labels['fri'] = 'Ca'; $labels['sat'] = 'Ş'; - -// weekdays long $labels['sunday'] = 'Bazar'; $labels['monday'] = 'Bazar ertəsi'; $labels['tuesday'] = 'Çərçənbə'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Çərşənbə axşamı'; $labels['thursday'] = 'Cümə'; $labels['friday'] = 'Cümə axşamı'; $labels['saturday'] = 'Şənbə'; - -// months short $labels['jan'] = 'Yan'; $labels['feb'] = 'Fev'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sen'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Noy'; $labels['dec'] = 'Dek'; - -// months long $labels['longjan'] = 'Yanvar'; $labels['longfeb'] = 'Fevral'; $labels['longmar'] = 'Mart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Sentyabr'; $labels['longoct'] = 'Oktyabr'; $labels['longnov'] = 'Noyabr'; $labels['longdec'] = 'Dekabr'; - $labels['today'] = 'Bu gün'; - -// toolbar buttons $labels['refresh'] = 'Yenilə'; $labels['checkmail'] = 'Gələnləri yoxla'; $labels['compose'] = 'Məktub yaz'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Daha çox seçim...'; $labels['more'] = 'Daha çox'; $labels['back'] = 'Geri'; $labels['options'] = 'Ayarlar'; - $labels['select'] = 'Seçin'; $labels['all'] = 'Hamısı'; $labels['none'] = 'Heç biri'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Hamısını aç'; $labels['expand-unread'] = 'Oxunmamışları aç'; $labels['collapse-all'] = 'Hamısını bük'; $labels['threaded'] = 'Müzakirə'; - $labels['autoexpand_threads'] = 'Müzakirəni aç'; $labels['do_expand'] = 'bütün müzakirələr'; $labels['expand_only_unread'] = 'yalnız oxunmamış məktublarla'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Sütunlar'; $labels['listsorting'] = 'Sütunları çeşidlə'; $labels['listorder'] = 'Çeşidləmə qaydası'; $labels['listmode'] = 'Görünüş rejimi'; - $labels['folderactions'] = 'Qovluq işləri...'; $labels['compact'] = 'Sıx'; $labels['empty'] = 'Boşalt'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk istifadəsi'; $labels['unknown'] = 'naməlum'; $labels['unlimited'] = 'limitsiz'; - $labels['quicksearch'] = 'Sürətli axtarış'; $labels['resetsearch'] = 'Axtarışı yenilə'; $labels['searchmod'] = 'Axtarış variantları'; $labels['msgtext'] = 'Bütün məktub'; $labels['body'] = 'Mətn'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Yeni pəncərədə aç'; $labels['emlsave'] = 'Saxla (.eml)'; $labels['changeformattext'] = 'Sadə mətn formatında göstər'; $labels['changeformathtml'] = 'HTML formatında göstər'; - -// message compose $labels['editasnew'] = 'Yeni kimi redaktə et'; $labels['send'] = 'Göndər'; $labels['sendmessage'] = 'İndi göndər'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Cavab sorğusu'; $labels['dsn'] = 'Çatdırılma statusu haqda bildiriş'; $labels['mailreplyintro'] = '$date tarixdə, $sender yazıb:'; $labels['originalmessage'] = 'Orijinal məktub'; - $labels['editidents'] = 'İdentifikasiyanı dəyiş'; $labels['spellcheck'] = 'Orfoqrafiya'; $labels['checkspelling'] = 'Orfoqrafiyanı yoxla'; $labels['resumeediting'] = 'Redaktəni davam et'; $labels['revertto'] = 'Dəyişiklikləri ləğv et'; - $labels['attach'] = 'Fayl əlavə et'; $labels['attachments'] = 'Bərkidilmiş Fayllar'; $labels['upload'] = 'Yüklə'; $labels['uploadprogress'] = '$percent ($current cəmi: $total)'; $labels['close'] = 'Bağla'; $labels['messageoptions'] = 'Məktub xüsusiyyətləri...'; - $labels['low'] = 'Alçaq'; $labels['lowest'] = 'Çox alçaq'; $labels['normal'] = 'Normal'; $labels['high'] = 'Yüksək'; $labels['highest'] = 'Çox yüksək'; - $labels['nosubject'] = '(mövzu yoxdur)'; $labels['showimages'] = 'Şəkilləri göstər'; $labels['alwaysshow'] = '$sender-dən olan məktublarda həmişə şəkilləri göstər'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Bu qaralama məktubudur.'; $labels['andnmore'] = 'Daha çox $nr more...'; $labels['togglemoreheaders'] = 'Daha çox məktub'; $labels['togglefullheaders'] = 'Məktubun çiy başlıqlarını keçir'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Mətn'; $labels['savesentmessagein'] = 'Məktubu saxla...'; $labels['dontsave'] = 'saxlama'; $labels['maxuploadsize'] = 'Faylın maksimal ölçüsü: $size'; - $labels['addcc'] = 'Kopya əlavə et'; $labels['addbcc'] = 'Gizli kopya əlavə et'; $labels['addreplyto'] = 'Yönəltmə əlavə et'; $labels['addfollowupto'] = '"İzlə" əlavə et'; - -// mdn $labels['mdnrequest'] = 'Məktubu göndərən onu oxuduğunuz haqda sorğu almaq istəyir. Göndərilsin?'; $labels['receiptread'] = 'Oxunulma haqda soğru'; $labels['yourmessage'] = 'Bu məktubunuzun oxunulduğu haqda sorğudur'; $labels['receiptnote'] = 'Bu sorğu yalnız qəbul edilən tərəfindən məktubun açıldığına göstərir. Onun oxunulduğuna zəmanət vermir.'; - -// address boook $labels['name'] = 'Göstərilən ad'; $labels['firstname'] = 'Adı'; $labels['surname'] = 'Soyadı'; @@ -304,7 +264,6 @@ $labels['search'] = 'Axtar'; $labels['advsearch'] = 'Ətraflı axtarış'; $labels['advanced'] = 'Əlavə'; $labels['other'] = 'Başqa'; - $labels['typehome'] = 'Ev'; $labels['typework'] = 'İş'; $labels['typeother'] = 'Başqa'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Köməkçi'; $labels['typehomepage'] = 'Ana səhifə'; $labels['typeblog'] = 'Bloq'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Sahə əlavə et'; $labels['addcontact'] = 'Ünvanlara əlavə et'; $labels['editcontact'] = 'Ünvanı redaktə et'; $labels['contacts'] = 'Əlaqələr'; $labels['contactproperties'] = 'Kontakt xüsusiyyətləri'; $labels['personalinfo'] = 'Şəxsi məlumat'; - $labels['edit'] = 'Redaktə et'; $labels['cancel'] = 'Ləğv et'; $labels['save'] = 'Saxla'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Adlandır'; $labels['addphoto'] = 'Əlavə et'; $labels['replacephoto'] = 'Adı dəyiş'; $labels['uploadphoto'] = 'Şəkil yüklə'; - $labels['newcontact'] = 'Yeni ünvan kartı əlavə et'; $labels['deletecontact'] = 'Seçilmiş ünvanları sil'; $labels['composeto'] = 'Seçilmiş ünvanlara məktub yaz'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Ünvanlar qrupunu yarat'; $labels['grouprename'] = 'Qruğun adını dəyişdir'; $labels['groupdelete'] = 'Qrupu sil'; $labels['groupremoveselected'] = 'Qrupdan seçilmiş kontaktları sil'; - $labels['previouspage'] = 'Əvvəlkini göstər'; $labels['firstpage'] = 'Birincini göstər'; $labels['nextpage'] = 'Sonrakını göstər'; $labels['lastpage'] = 'Sonuncunu göstər'; - $labels['group'] = 'Qrup'; $labels['groups'] = 'Qruplar'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Şəxsi ünvanlar'; - $labels['searchsave'] = 'Sorğunu saxla'; $labels['searchdelete'] = 'Sorğunu sil'; - $labels['import'] = 'İdxal'; $labels['importcontacts'] = 'Ünvanların idxalı'; $labels['importfromfile'] = 'Fayldan idxal:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Əlaqə kitabçasına yeni kontaktları əlavə et'; $labels['importreplace'] = 'Ünvan kitabçasını dəyiş'; $labels['importdesc'] = 'Siz kontaktları mövcud ünvan kitabçasından yükləyə bilərsiniz.
Hal-hazırda biz ünvanların idxalını vCard və ya CSV (vergüllə bölünmüş) formatında olan vizit kartları dəstəkləyirik.'; $labels['done'] = 'Bitdi'; - -// settings $labels['settingsfor'] = 'Nizamlamaları'; $labels['about'] = 'Haqqında'; $labels['preferences'] = 'Nizamlamalar'; $labels['userpreferences'] = 'İstifadəçi nizamlamaları'; $labels['editpreferences'] = 'İstifadəçi nizamlamalarını redaktə et'; - $labels['identities'] = 'Kimliklər'; $labels['manageidentities'] = 'Bu hesab üçün kimlikləri idarə et'; $labels['newidentity'] = 'Yeni kimlik'; - $labels['newitem'] = 'Yeni maddə'; $labels['edititem'] = 'Maddəni redaktə et'; - $labels['preferhtml'] = 'HTML-də göstər'; $labels['defaultcharset'] = 'İlkin vəziyyətdəki kodlaşdırma'; $labels['htmlmessage'] = 'HTML məktub'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Məktubların yönəldilməsi'; $labels['inline'] = 'mətndə'; $labels['asattachment'] = 'fayl kimi'; - $labels['folder'] = 'Qovluq'; $labels['folders'] = 'Qovluqlar'; $labels['foldername'] = 'Qovluq adı'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Qovluq növü'; $labels['personalfolder'] = 'Gizli qovluq'; $labels['otherfolder'] = 'Başqa istifadəçilərin qovluğu'; $labels['sharedfolder'] = 'İctimai qovluq'; - $labels['sortby'] = 'Çeşidlə'; $labels['sortasc'] = 'Azdan çoxa'; $labels['sortdesc'] = 'Çoxdan aza'; $labels['undo'] = 'Ləğv et'; - $labels['installedplugins'] = 'Yazılmış qoşmalar'; $labels['plugin'] = 'Qoşma'; $labels['version'] = 'Versiya'; $labels['source'] = 'Mənbə'; $labels['license'] = 'Lisenziya'; $labels['support'] = 'Dəstək'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'İngilis dili'; $labels['westerneuropean'] = 'Qərbi Avropa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vyetnamca'; $labels['japanese'] = 'Yaponca'; $labels['korean'] = 'Koreya'; $labels['chinese'] = 'Çincə'; - ?> diff --git a/program/localization/az_AZ/messages.inc b/program/localization/az_AZ/messages.inc index 745836e5f..5e8235060 100644 --- a/program/localization/az_AZ/messages.inc +++ b/program/localization/az_AZ/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Qovluğu seçilmiş ana qovluğa köçürmək/ $messages['messagetoobig'] = 'Məktubun bir hissəsi emal üçün böyükdür.'; $messages['attachmentvalidationerror'] = 'DİQQƏT! Bu qoşma şübhəlidir, çünki məktubda deyilən növlə eyni deyil. Əgər siz göndərə güvənmirsinizsə, brauzerdə bunu açmayın. Tərkibi təhlükəli ola bilər.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Xəbərdarlıq: Bu vebmeyl xidməti Javascript tələb edir! Funksiyanı istifadə etmək üçün lütfən, brauzerinizin ayarlarında Javascript-i yandırın.'; - ?> diff --git a/program/localization/be_BE/labels.inc b/program/localization/be_BE/labels.inc index b3518f8f0..c945b15dd 100644 --- a/program/localization/be_BE/labels.inc +++ b/program/localization/be_BE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Вітаем у $product'; $labels['username'] = 'Карыстальнік'; $labels['password'] = 'Пароль'; $labels['server'] = 'Сервер'; $labels['login'] = 'Уваход'; - -// taskbar $labels['logout'] = 'Выхад'; $labels['mail'] = 'Пошта'; $labels['settings'] = 'Настаўленні'; $labels['addressbook'] = 'Адрасная кніга'; - -// mailbox names $labels['inbox'] = 'Атрыманыя'; $labels['drafts'] = 'Чарнавікі'; $labels['sent'] = 'Дасланыя'; $labels['trash'] = 'Сметніца'; $labels['junk'] = 'Спам'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Тэма'; $labels['from'] = 'Ад каго'; $labels['sender'] = 'Адпраўнік'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Прыярытэт'; $labels['organization'] = 'Установа'; $labels['readstatus'] = 'Не прачытанае'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Тэчкі'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Капіраваць'; $labels['move'] = 'Перамясціць'; $labels['moveto'] = 'Перамясціць у...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Спампаваць'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Паказаць'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Імя файла'; $labels['filesize'] = 'Памер файла'; - $labels['addtoaddressbook'] = 'Дадаць у адрасную кнігу'; - -// weekdays short $labels['sun'] = 'Ндз'; $labels['mon'] = 'Пн'; $labels['tue'] = 'Аўт'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Сер'; $labels['thu'] = 'Чц'; $labels['fri'] = 'Пт'; $labels['sat'] = 'Сб'; - -// weekdays long $labels['sunday'] = 'нядзеля'; $labels['monday'] = 'панядзелак'; $labels['tuesday'] = 'аўторак'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'серада'; $labels['thursday'] = 'чацвер'; $labels['friday'] = 'пятніца'; $labels['saturday'] = 'субота'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'January'; $labels['longfeb'] = 'February'; $labels['longmar'] = 'March'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'October'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Today'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Check for new messages'; $labels['compose'] = 'Compose'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Select'; $labels['all'] = 'All'; $labels['none'] = 'None'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Compact'; $labels['empty'] = 'Empty'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'unknown'; $labels['unlimited'] = 'unlimited'; - $labels['quicksearch'] = 'Quick search'; $labels['resetsearch'] = 'Reset search'; $labels['searchmod'] = 'Search modifiers'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; $labels['namex'] = 'Name'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send message'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Check spelling'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Attachments'; $labels['upload'] = 'Upload'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Close'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; $labels['high'] = 'High'; $labels['highest'] = 'Highest'; - $labels['nosubject'] = '(no subject)'; $labels['showimages'] = 'Display images'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Display Name'; $labels['firstname'] = 'First Name'; $labels['surname'] = 'Last Name'; @@ -305,7 +265,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Add new contact'; $labels['editcontact'] = 'Edit contact'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Edit'; $labels['cancel'] = 'Cancel'; $labels['save'] = 'Save'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Create new contact card'; $labels['deletecontact'] = 'Delete selected contacts'; $labels['composeto'] = 'Compose mail to'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Show previous page'; $labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'Show next page'; $labels['lastpage'] = 'Show last page'; - $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'All (create groups if necessary)'; $labels['importgroupsexisting'] = 'Only for existing groups'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Settings for'; $labels['about'] = 'About'; $labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'User preferences'; $labels['editpreferences'] = 'Edit user preferences'; - $labels['identities'] = 'Identities'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'New identity'; - $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; - $labels['preferhtml'] = 'Display HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Message'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Тэчкі'; $labels['foldername'] = 'Folder name'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Sort by'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/be_BE/messages.inc b/program/localization/be_BE/messages.inc index c4033dad9..4eb508984 100644 --- a/program/localization/be_BE/messages.inc +++ b/program/localization/be_BE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/bg_BG/labels.inc b/program/localization/bg_BG/labels.inc index 3c63580b6..9195d4679 100644 --- a/program/localization/bg_BG/labels.inc +++ b/program/localization/bg_BG/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Добре дошли в $product'; $labels['username'] = 'Потребител'; $labels['password'] = 'Парола'; $labels['server'] = 'Сървър'; $labels['login'] = 'Вход'; - -// taskbar $labels['logout'] = 'Изход'; $labels['mail'] = 'Поща'; $labels['settings'] = 'Настройки'; $labels['addressbook'] = 'Адресна книга'; - -// mailbox names $labels['inbox'] = 'Вх. поща'; $labels['drafts'] = 'Чернови'; $labels['sent'] = 'Изпратени'; $labels['trash'] = 'Кошче'; $labels['junk'] = 'Спам'; $labels['show_real_foldernames'] = 'Показва истинските имена на служебните папки'; - -// message listing $labels['subject'] = 'Заглавие'; $labels['from'] = 'От'; $labels['sender'] = 'Подател'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Приоритет'; $labels['organization'] = 'Организация'; $labels['readstatus'] = 'Статут (прочетено/ново)'; $labels['listoptions'] = 'Настройки на списък...'; - $labels['mailboxlist'] = 'Папки'; $labels['messagesfromto'] = 'Писма $from до $to от $count'; $labels['threadsfromto'] = 'Кореспонденции $from до $to от $count'; $labels['messagenrof'] = 'Писмо $nr от $count'; $labels['fromtoshort'] = '$from – $to от $count'; - $labels['copy'] = 'Копиране'; $labels['move'] = 'Преместване'; $labels['moveto'] = 'Премести във...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Изтегли'; $labels['open'] = 'Отвори'; $labels['showattachment'] = 'Показване'; $labels['showanyway'] = 'Показване въпреки това'; - $labels['filename'] = 'Име на файла'; $labels['filesize'] = 'Размер на файла'; - $labels['addtoaddressbook'] = 'Добави в адресната книга'; - -// weekdays short $labels['sun'] = 'Нед'; $labels['mon'] = 'Пон'; $labels['tue'] = 'Вто'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Сря'; $labels['thu'] = 'Чет'; $labels['fri'] = 'Пет'; $labels['sat'] = 'Съб'; - -// weekdays long $labels['sunday'] = 'Неделя'; $labels['monday'] = 'Понеделник'; $labels['tuesday'] = 'Вторник'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Сряда'; $labels['thursday'] = 'Четвъртък'; $labels['friday'] = 'Петък'; $labels['saturday'] = 'Събота'; - -// months short $labels['jan'] = 'Яну'; $labels['feb'] = 'Фев'; $labels['mar'] = 'Мар'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Сеп'; $labels['oct'] = 'Окт'; $labels['nov'] = 'Ное'; $labels['dec'] = 'Дек'; - -// months long $labels['longjan'] = 'Януари'; $labels['longfeb'] = 'Февруари'; $labels['longmar'] = 'Март'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Септември'; $labels['longoct'] = 'Октомври'; $labels['longnov'] = 'Ноември'; $labels['longdec'] = 'Декември'; - $labels['today'] = 'Днес'; - -// toolbar buttons $labels['refresh'] = 'Обнови'; $labels['checkmail'] = 'Провери за нова поща'; $labels['compose'] = 'Напиши'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Допълнителни действия...'; $labels['more'] = 'Още'; $labels['back'] = 'Назад'; $labels['options'] = 'Опции'; - $labels['select'] = 'Избери'; $labels['all'] = 'Всички'; $labels['none'] = 'Остави без избор'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Разгъни всички'; $labels['expand-unread'] = 'Разгъни непрочетените'; $labels['collapse-all'] = 'Сгъни всички'; $labels['threaded'] = 'Групирани по кореспонденции'; - $labels['autoexpand_threads'] = 'Разгъни кореспонденции'; $labels['do_expand'] = 'всички кореспонденции'; $labels['expand_only_unread'] = 'само с непрочетени писма'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Колони на списък'; $labels['listsorting'] = 'Подреди по колона'; $labels['listorder'] = 'Посока на подреждане'; $labels['listmode'] = 'Изглед на списък'; - $labels['folderactions'] = 'Действия за папки...'; $labels['compact'] = 'Уплътни данни'; $labels['empty'] = 'Изпразни'; $labels['importmessages'] = 'Импорт на писма'; - $labels['quota'] = 'Използвано място'; $labels['unknown'] = 'няма информация'; $labels['unlimited'] = 'без ограничение'; - $labels['quicksearch'] = 'Бързо търсене'; $labels['resetsearch'] = 'Изчисти филтър и покажи всичко'; $labels['searchmod'] = 'Филтър по'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Цялото писмо'; $labels['body'] = 'Основен текст'; $labels['type'] = 'Тип'; $labels['namex'] = 'Име'; - $labels['openinextwin'] = 'Отвори в нов прозорец'; $labels['emlsave'] = 'Изтегли като .eml'; $labels['changeformattext'] = 'Покажи в текстов формат'; $labels['changeformathtml'] = 'Покажи в HTML формат'; - -// message compose $labels['editasnew'] = 'Редактирай като ново'; $labels['send'] = 'Изпрати'; $labels['sendmessage'] = 'Изпрати писмото'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Обратна разписка'; $labels['dsn'] = 'Нотификация при доставка'; $labels['mailreplyintro'] = 'На $date, $sender написа:'; $labels['originalmessage'] = 'Оригинално писмо'; - $labels['editidents'] = 'Промени самоличности'; $labels['spellcheck'] = 'Правопис'; $labels['checkspelling'] = 'Проверка на правописа'; $labels['resumeediting'] = 'Продължи черновата'; $labels['revertto'] = 'Върни се към'; - $labels['attach'] = 'Прикачи'; $labels['attachments'] = 'Прикачени файлове'; $labels['upload'] = 'Качи'; $labels['uploadprogress'] = '$percent ($current от $total)'; $labels['close'] = 'Затвори'; $labels['messageoptions'] = 'Настройки на писма...'; - $labels['low'] = 'Нисък'; $labels['lowest'] = 'Най-нисък'; $labels['normal'] = 'Нормален'; $labels['high'] = 'Висок'; $labels['highest'] = 'Най-висок'; - $labels['nosubject'] = '(няма заглавие)'; $labels['showimages'] = 'Показвай изображения'; $labels['alwaysshow'] = 'Винаги показвай изображения от $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Това е чернова'; $labels['andnmore'] = 'още $nr...'; $labels['togglemoreheaders'] = 'Покажи още заглавни блокове'; $labels['togglefullheaders'] = 'Изходни заглавни блокове'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Текстово'; $labels['savesentmessagein'] = 'Запази след изпращане в'; $labels['dontsave'] = 'не запазвай'; $labels['maxuploadsize'] = 'Максимален размер на файл е $size'; - $labels['addcc'] = 'Копие до'; $labels['addbcc'] = 'Скрито копие до'; $labels['addreplyto'] = 'Отговор до'; $labels['addfollowupto'] = 'Препращане към'; - -// mdn $labels['mdnrequest'] = 'Подателят е поискал да бъде уведомен, че сте го прочели това писмо. Желаете ли да изпратите обратна разписка?'; $labels['receiptread'] = 'Обратна разписка (прочетено)'; $labels['yourmessage'] = 'Това е обратна разписка относно писмото Ви'; $labels['receiptnote'] = 'Забележка: Тази разписка потвърждава само, че писмото е било визуализирано на екрана на получателят. Няма никаква гаранция, че той е разбрал и/или дори прочел неговото съдържание.'; - -// address boook $labels['name'] = 'Екранно име'; $labels['firstname'] = 'Име'; $labels['surname'] = 'Фамилия'; @@ -305,7 +265,6 @@ $labels['search'] = 'Търсене'; $labels['advsearch'] = 'Разширено търсене'; $labels['advanced'] = 'Търси'; $labels['other'] = 'Други'; - $labels['typehome'] = 'Домашен'; $labels['typework'] = 'Служебен'; $labels['typeother'] = 'Друг'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'На асистент'; $labels['typehomepage'] = 'Личен'; $labels['typeblog'] = 'Блог'; $labels['typeprofile'] = 'Профил'; - $labels['addfield'] = 'Друго поле...'; $labels['addcontact'] = 'Добави нов контакт'; $labels['editcontact'] = 'Редактирай контакт'; $labels['contacts'] = 'Контакти'; $labels['contactproperties'] = 'Данни на контакт'; $labels['personalinfo'] = 'Лична информация'; - $labels['edit'] = 'Редактирай'; $labels['cancel'] = 'Отказ'; $labels['save'] = 'Запис'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Преименувай'; $labels['addphoto'] = 'Добави'; $labels['replacephoto'] = 'Замени'; $labels['uploadphoto'] = 'Качване на снимка'; - $labels['newcontact'] = 'Нов контакт'; $labels['deletecontact'] = 'Изтрий избраните контакти'; $labels['composeto'] = 'Напиши писмо до'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Нова група контракти'; $labels['grouprename'] = 'Преименувай групата'; $labels['groupdelete'] = 'Изтрий групата'; $labels['groupremoveselected'] = 'Премахни избраните контакти от групата'; - $labels['previouspage'] = 'Предишна страница'; $labels['firstpage'] = 'Първа страница'; $labels['nextpage'] = 'Следваща страница'; $labels['lastpage'] = 'Последна страница'; - $labels['group'] = 'Група'; $labels['groups'] = 'Групи'; $labels['listgroup'] = 'Покажи членове на групата'; $labels['personaladrbook'] = 'Лични адреси'; - $labels['searchsave'] = 'Запази филтър'; $labels['searchdelete'] = 'Изтрий филтър'; - $labels['import'] = 'Импорт'; $labels['importcontacts'] = 'Импортиране на контакти'; $labels['importfromfile'] = 'Импорт от файл:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Всички (създава групи ако е $labels['importgroupsexisting'] = 'Само за съществуващите групи'; $labels['importdesc'] = 'Можете да качвате контакти от съществуваща адресна книга.
В момента поддържаме импорт на адреси от файловите формати vCard или CSV (comma-separated).'; $labels['done'] = 'Готово'; - -// settings $labels['settingsfor'] = 'Настройки за'; $labels['about'] = 'Относно'; $labels['preferences'] = 'Настройки'; $labels['userpreferences'] = 'Потребителски настройки'; $labels['editpreferences'] = 'Редактирай потребителските настройки'; - $labels['identities'] = 'Самоличности'; $labels['manageidentities'] = 'Настройка на самоличности за този акаунт'; $labels['newidentity'] = 'Нова самоличност'; - $labels['newitem'] = 'Нова самоличност'; $labels['edititem'] = 'Редактирай самоличност'; - $labels['preferhtml'] = 'Покажи първо HTML версия'; $labels['defaultcharset'] = 'Кодова таблица по подразбиране'; $labels['htmlmessage'] = 'HTML писмо'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Обработва изскачащи прозор $labels['forwardmode'] = 'Препращай писмата'; $labels['inline'] = 'цитирани в писмото'; $labels['asattachment'] = 'като прикачен файл'; - $labels['folder'] = 'Папка'; $labels['folders'] = 'Папки'; $labels['foldername'] = 'Име на папката'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Вид на папката'; $labels['personalfolder'] = 'Лична папка'; $labels['otherfolder'] = 'Папка на друг потребител'; $labels['sharedfolder'] = 'Публична папка'; - $labels['sortby'] = 'Сортирай по'; $labels['sortasc'] = 'Сортирай нарастващо'; $labels['sortdesc'] = 'Сортирай намаляващо'; $labels['undo'] = 'Отмени'; - $labels['installedplugins'] = 'Инсталирани добавки'; $labels['plugin'] = 'Добавки'; $labels['version'] = 'Версия'; $labels['source'] = 'Източник'; $labels['license'] = 'Лиценз'; $labels['support'] = 'Поддръжка'; - -// units $labels['B'] = 'Б'; $labels['KB'] = 'КБ'; $labels['MB'] = 'МБ'; $labels['GB'] = 'ГБ'; - -// character sets $labels['unicode'] = 'Уникод'; $labels['english'] = 'Английски'; $labels['westerneuropean'] = 'Западна Европа'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Виетнамски'; $labels['japanese'] = 'Японски'; $labels['korean'] = 'Корейски'; $labels['chinese'] = 'Китайски'; - ?> diff --git a/program/localization/bg_BG/messages.inc b/program/localization/bg_BG/messages.inc index f1038dfa1..8108e8a70 100644 --- a/program/localization/bg_BG/messages.inc +++ b/program/localization/bg_BG/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Неуспешно създаването/пр $messages['messagetoobig'] = 'Писмото е прекалено голямо, за да бъде обработено.'; $messages['attachmentvalidationerror'] = 'ВНИМАНИЕ! Прикаченият файл е опасен, защото типът му не съвпада с този, който е деклариран в писмото.

Очакван тип: $expected; открит тип: $detected'; $messages['noscriptwarning'] = 'ВНИМАНИЕ! Тази пощенска услуга изисква JavaScript за да функционира коректно. Моля включете поддръжката на JavaScript в настройките на текущия браузър.'; - ?> diff --git a/program/localization/bn_BD/labels.inc b/program/localization/bn_BD/labels.inc index 1273ef192..219ff607a 100644 --- a/program/localization/bn_BD/labels.inc +++ b/program/localization/bn_BD/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'স্বাগতম'; $labels['username'] = 'গ্রাহক নাম (username)'; $labels['password'] = 'গোপোন শব্দ (password)'; $labels['server'] = 'সারভার'; $labels['login'] = 'প্রবেশ'; - -// taskbar $labels['logout'] = 'প্রস্থান'; $labels['mail'] = 'ই-মেইল'; $labels['settings'] = 'ব্যাক্তিগত খুটিনাটি'; $labels['addressbook'] = 'ঠিকানার বই'; - -// mailbox names $labels['inbox'] = 'প্রধান বাক্স'; $labels['drafts'] = 'খসড়া'; $labels['sent'] = 'প্রেরিত(পাঠানো মেইল)'; $labels['trash'] = 'ডাস্টবিন'; $labels['junk'] = 'আজেবাজে মেইল'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'বিষয়'; $labels['from'] = 'প্রেরক'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'গুরুত্ব'; $labels['organization'] = 'কোম্পানি'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'ফোল্ডার/মেইলবক্স'; $labels['messagesfromto'] = '$count মেইলের মধ্যে, $from হতে $to দেখানো হচ্ছে'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr #মেইল/চিঠি , $count এর মধ্যে'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'অনুলিপির ঠিকানা'; $labels['move'] = 'Move'; $labels['moveto'] = 'সরিয়ে ফেলুন..'; @@ -68,13 +59,9 @@ $labels['download'] = 'ডাউনলোড'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ফাইলের নাম'; $labels['filesize'] = 'ফাইলের সাইজ'; - $labels['addtoaddressbook'] = 'ঠিকানার বইতে ঢুকান'; - -// weekdays short $labels['sun'] = 'রবি'; $labels['mon'] = 'সোম'; $labels['tue'] = 'মঙ্গল'; @@ -82,8 +69,6 @@ $labels['wed'] = 'বুধ'; $labels['thu'] = 'বৃহ:'; $labels['fri'] = 'শুক্র'; $labels['sat'] = 'শনি'; - -// weekdays long $labels['sunday'] = 'রবিবার'; $labels['monday'] = 'সোমবার'; $labels['tuesday'] = 'মঙ্গলবার'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'বুধবার'; $labels['thursday'] = 'বৃহস্পতিবার'; $labels['friday'] = 'শুক্রবার'; $labels['saturday'] = 'শনিবার'; - -// months short $labels['jan'] = 'জানুয়ারি'; $labels['feb'] = 'ফেব্রুয়ারি'; $labels['mar'] = 'মার্চ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'সেপ্তেমবার'; $labels['oct'] = 'অষ্টবার'; $labels['nov'] = 'নবেমবার'; $labels['dec'] = 'দিশেমবার'; - -// months long $labels['longjan'] = 'জানুয়ারি'; $labels['longfeb'] = 'ফেব্রুয়ারি'; $labels['longmar'] = 'মার্চ'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'সেপ্তেমবার (September)'; $labels['longoct'] = 'অষ্টবার (October)'; $labels['longnov'] = 'নবেমবার (November)'; $labels['longdec'] = 'দিশেমবার (December)'; - $labels['today'] = 'আজকে'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'দেখুন নতুন কোনো মেইল/চিঠি এলো কিনা'; $labels['compose'] = 'নতুন মেইল/চিঠি লিখুন'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'বেছেনিন'; $labels['all'] = 'সবগুলো'; $labels['none'] = 'কোনোটাই না'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'টাইটকরুন'; $labels['empty'] = 'খালিকরুন'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'ডিস্ক এ খালি যায়গা'; $labels['unknown'] = 'অজানা'; $labels['unlimited'] = 'সীমাহীন'; - $labels['quicksearch'] = 'ঝটকরে খোজা'; $labels['resetsearch'] = 'নতুনকরে খুজুন'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'নতুন উইন্ডো তে দেখুন'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'এখুনি মেইল / চিঠিটি পাঠান'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'ফিরতি রসিদ'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Check spelling'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'জুড়ে দেওয়া ফাইল (Attachments)'; $labels['upload'] = 'উঠায় দেন'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'বন্ধ করুন'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; $labels['high'] = 'High'; $labels['highest'] = 'Highest'; - $labels['nosubject'] = '(বিষয়হীন)'; $labels['showimages'] = 'ছবি দেখান'; $labels['alwaysshow'] = 'সবসময় $sender এর কাছে থেকে পাওয়া ছবিগুলো দেখানো হোক'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'খালি লেখা দেখুন'; $labels['savesentmessagein'] = 'পাঠানো চিঠি/মেইল জমা করুন >>'; $labels['dontsave'] = 'জমিয়ে রাখা লাগবে না'; $labels['maxuploadsize'] = 'ফাইল উঠানোর সর্বোচ্চ সাইজ $size'; - $labels['addcc'] = 'অনুলিপির ঠিকানা ঢুকান'; $labels['addbcc'] = 'নাজানিয়ে অনুলিপির ঠিকানা ঢুকান'; $labels['addreplyto'] = 'উত্তর পাঠানোর ঠিকানা ঢুকান'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'প্রাপক আপনার কাছে মেইল/চিঠিটা যে পেয়েছেন তার ফিরতি রসিদ চেয়েছেন। আপনি কি ফিরতি রসিদ টা পাঠাবেন?'; $labels['receiptread'] = 'মেইল/চিঠি যে পেয়েছেন তার ফিরতি রসিদ'; $labels['yourmessage'] = 'নিচে রয়েছে আপনার চিঠিটা যে প্রাপক পেয়েছেন তার রসিদ'; $labels['receiptnote'] = 'এই রসিদ খালি এতটুকু প্রমান করে যে প্রাপক চিঠিটি পেয়েছেন। কিন্তু তিনি ঠিকমতো পড়তে পেরেছেন কিনা অথবা তিনি পড়ে বুঝতে পেরেছেন কিনা তার কোনো প্রমান নেই।'; - -// address boook $labels['name'] = 'নাম'; $labels['firstname'] = 'নামের প্রথমাংশ'; $labels['surname'] = 'নামের শেষাংশ'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'নতুন ঠিকানা ঢুকান'; $labels['editcontact'] = 'একটা ঠিকানা বদলান'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'বদলান'; $labels['cancel'] = 'বাতিল'; $labels['save'] = 'জমা দিন'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'একটা নতুন ঠিকানার কার্ড বানান'; $labels['deletecontact'] = 'বেছে নেওয়া ঠিকানা গুলো ফেলে দিন'; $labels['composeto'] = 'চিঠি পাঠাবেন কার কাছে?'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'আগের গুলো দেখান'; $labels['firstpage'] = 'প্রথম গুলো দেখান'; $labels['nextpage'] = 'পরের গুলো দেখান'; $labels['lastpage'] = 'শেষের গুলো দেখান'; - $labels['group'] = 'Group'; $labels['groups'] = 'গ্রুপ'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'নিজের ঠিকানা'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'আমদানি করুন'; $labels['importcontacts'] = 'ঠিকানা আমদানি করুন'; $labels['importfromfile'] = 'ফাইলের থেকে ঠিকানা আমদানি করুন'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'পুরো ঠিকানার বইটি খালি করে নতুন ঠিকানা গুলো ভরুন'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'শেষ'; - -// settings $labels['settingsfor'] = 'খুটিনাটি'; $labels['about'] = 'About'; $labels['preferences'] = 'পছন্দ'; $labels['userpreferences'] = 'গ্রাহক পছন্দ'; $labels['editpreferences'] = 'গ্রাহক পছন্দ বদলান'; - $labels['identities'] = 'পরিচিতি'; $labels['manageidentities'] = 'এই অ্যাকউন্টের "পরচিতি" বদলান'; $labels['newidentity'] = 'নতুন পরিচিতি'; - $labels['newitem'] = 'নতুন জিনিষ'; $labels['edititem'] = 'জিনিষ বদলান'; - $labels['preferhtml'] = 'HTML এ দেখি'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML মেইল/চিঠি'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'ফোল্ডার/মেইলবক্স'; $labels['folders'] = 'ফোল্ডার/মেইলবক্স'; $labels['foldername'] = 'ফোল্ডার/মেইলবক্স এর নাম'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'সাজান'; $labels['sortasc'] = 'কম থেকে বেশি হিসাবে সাজান'; $labels['sortdesc'] = 'বেশি থেকে কম হিসাবে সাজান'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'বাইট'; $labels['KB'] = 'কিলোবাইট'; $labels['MB'] = 'মেগাবাইট'; $labels['GB'] = 'গিগাবাইট'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/bn_BD/messages.inc b/program/localization/bn_BD/messages.inc index 9de6c38de..ca8330e00 100644 --- a/program/localization/bn_BD/messages.inc +++ b/program/localization/bn_BD/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/br/labels.inc b/program/localization/br/labels.inc index c88fd92a6..532fa9dd6 100644 --- a/program/localization/br/labels.inc +++ b/program/localization/br/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Degemer mat war $product'; $labels['username'] = 'Anv an arveriad'; $labels['password'] = 'Ger-Tremen'; $labels['server'] = 'Dafariad'; $labels['login'] = 'Kennaskañ'; - -// taskbar $labels['logout'] = 'Digennaskañ'; $labels['mail'] = 'Postel elektronek'; $labels['settings'] = 'Arventennoù'; $labels['addressbook'] = 'Karned chomlec\'hioù'; - -// mailbox names $labels['inbox'] = 'Boest degemer'; $labels['drafts'] = 'Brouilhedoù'; $labels['sent'] = 'Kaset'; $labels['trash'] = 'Pod-lastez'; $labels['junk'] = 'Stroboù'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Sujed'; $labels['from'] = 'Eus'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Kentwir'; $labels['organization'] = 'Aozadur'; $labels['readstatus'] = 'Stad al lenn'; $labels['listoptions'] = 'Dibarzhioù ar roll...'; - $labels['mailboxlist'] = 'Teuliadoù'; $labels['messagesfromto'] = 'Kemennadoù eus $from da $to war $count'; $labels['threadsfromto'] = 'Sujedoù $from da $to war $count'; $labels['messagenrof'] = 'Kemennad $nr war $count'; $labels['fromtoshort'] = '$from - $to war $count'; - $labels['copy'] = 'Eilañ'; $labels['move'] = 'Dilec\'hiañ'; $labels['moveto'] = 'Dilec\'hiañ da...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Pellgargañ'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Diskouez'; $labels['showanyway'] = 'Diskouez anezhañ memestra'; - $labels['filename'] = 'Anv ar restr'; $labels['filesize'] = 'Ment ar restr'; - $labels['addtoaddressbook'] = 'Ouzhpennañ er c\'harned chomlec\'hioù'; - -// weekdays short $labels['sun'] = 'Sul'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Meu'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mer'; $labels['thu'] = 'Yao'; $labels['fri'] = 'Gwe'; $labels['sat'] = 'Sad'; - -// weekdays long $labels['sunday'] = 'Sul'; $labels['monday'] = 'Lun'; $labels['tuesday'] = 'Meurzh'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Merc\'her'; $labels['thursday'] = 'Yaou'; $labels['friday'] = 'Gwener'; $labels['saturday'] = 'Sadorn'; - -// months short $labels['jan'] = 'Gen'; $labels['feb'] = 'C\'hwe'; $labels['mar'] = 'Meu'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Gwe'; $labels['oct'] = 'Her'; $labels['nov'] = 'Du'; $labels['dec'] = 'Ker'; - -// months long $labels['longjan'] = 'Genver'; $labels['longfeb'] = 'C\'hwevrer'; $labels['longmar'] = 'Meurzh'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Gwengolo'; $labels['longoct'] = 'Here'; $labels['longnov'] = 'Du'; $labels['longdec'] = 'Kerzu'; - $labels['today'] = 'Hiziv'; - -// toolbar buttons $labels['refresh'] = 'Azgrenaat'; $labels['checkmail'] = 'Gwiriañ kemennadoù nevez'; $labels['compose'] = 'Skrivañ ur c\'hemennad nevez'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Diuzañ'; $labels['all'] = 'An holl'; $labels['none'] = 'Ebet'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Stummaat'; $labels['empty'] = 'Skarzhañ'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Implijadur pladenn'; $labels['unknown'] = 'Dianav'; $labels['unlimited'] = 'didermen'; - $labels['quicksearch'] = 'Klask prim'; $labels['resetsearch'] = 'Aderaouekaat ar glask'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Kas ar c\'hemennad diouzhtu'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Testeni degemer'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Gwiriañ ar reizhskrivadur'; $labels['resumeediting'] = 'Distreiñ en aozer'; $labels['revertto'] = 'Distreiñ en/r'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Restroù staget'; $labels['upload'] = 'Stagañ'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Serriñ'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Izel'; $labels['lowest'] = 'An izelañ'; $labels['normal'] = 'Reizh'; $labels['high'] = 'Uhel'; $labels['highest'] = 'An uhelañ'; - $labels['nosubject'] = '(n\'eus ket sujed)'; $labels['showimages'] = 'Diskouez ar skeudennoù'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'testenn kriz'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Anv da ziskouez'; $labels['firstname'] = 'Raganv'; $labels['surname'] = 'Anv'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Ouzhpennañ an darempred diuzet en hor c\'harned chomlec\'hioù'; $labels['editcontact'] = 'Cheñch an darempred'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Cheñch'; $labels['cancel'] = 'Nullañ'; $labels['save'] = 'Gwarediñ'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Krouiñ un darempred nevez'; $labels['deletecontact'] = 'Dilemel an darempredoù diuzet'; $labels['composeto'] = 'Skrivañ ur c\'hemennad ouzh'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Diskouez pajenn a-raok'; $labels['firstpage'] = 'Gwelout ar bajenn gentañ'; $labels['nextpage'] = 'Diskouez pajenn da heul'; $labels['lastpage'] = 'Gwelout ar bajenn diwezhañ'; - $labels['group'] = 'Group'; $labels['groups'] = 'Strolladoù'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Chomlec\'h personel'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Arventennoù evit'; $labels['about'] = 'About'; $labels['preferences'] = 'Dibarzhioù'; $labels['userpreferences'] = 'Dibarzhioù implijer'; $labels['editpreferences'] = 'Cheñch dibarzhioù implijer'; - $labels['identities'] = 'Identelezhioù'; $labels['manageidentities'] = 'Merañ an identelezhioù evit ar c\'hont-se'; $labels['newidentity'] = 'Identelezh nevez'; - $labels['newitem'] = 'Elfenn nevez'; $labels['edititem'] = 'Cheñch an elfenn'; - $labels['preferhtml'] = 'Diskouez en HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Kemennad en HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Renkell'; $labels['folders'] = 'Teuliadoù'; $labels['foldername'] = 'Anv ar renkell'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Rummañ dre'; $labels['sortasc'] = 'Rumm diagentad'; $labels['sortdesc'] = 'Rumm diskennad'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/br/messages.inc b/program/localization/br/messages.inc index fd1674d80..e99bee16c 100644 --- a/program/localization/br/messages.inc +++ b/program/localization/br/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/bs_BA/labels.inc b/program/localization/bs_BA/labels.inc index 61989e6b3..04db132c2 100644 --- a/program/localization/bs_BA/labels.inc +++ b/program/localization/bs_BA/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Dobrodošli u $product'; $labels['username'] = 'Korisnik'; $labels['password'] = 'Šifra'; $labels['server'] = 'Server'; $labels['login'] = 'Prijava'; - -// taskbar $labels['logout'] = 'Odjava'; $labels['mail'] = 'Email'; $labels['settings'] = 'Podešavanja'; $labels['addressbook'] = 'Adresar'; - -// mailbox names $labels['inbox'] = 'Sanduče'; $labels['drafts'] = 'Skice'; $labels['sent'] = 'Poslano'; $labels['trash'] = 'Smeće'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Prikaži prava imena specijalnih foldera'; - -// message listing $labels['subject'] = 'Naslov'; $labels['from'] = 'Od'; $labels['sender'] = 'Pošiljalac'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organizacija'; $labels['readstatus'] = 'Status poruke'; $labels['listoptions'] = 'Izlistaj opcije...'; - $labels['mailboxlist'] = 'Folderi'; $labels['messagesfromto'] = 'Poruke od $from do $to od ukupno $count'; $labels['threadsfromto'] = 'Teme od $from do $to od ukupno $count'; $labels['messagenrof'] = 'Poruka broj $nr od $count'; $labels['fromtoshort'] = '$from – $to od ukupno $count'; - $labels['copy'] = 'Kopiraj'; $labels['move'] = 'Premjesti'; $labels['moveto'] = 'Premjesti u...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Preuzmi'; $labels['open'] = 'Otvori'; $labels['showattachment'] = 'Prikaži'; $labels['showanyway'] = 'Ipak prikaži'; - $labels['filename'] = 'Ime datoteke'; $labels['filesize'] = 'Veličina datoteke'; - $labels['addtoaddressbook'] = 'Dodaj u adresar'; - -// weekdays short $labels['sun'] = 'Ned'; $labels['mon'] = 'Pon'; $labels['tue'] = 'Uto'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Sri'; $labels['thu'] = 'Čet'; $labels['fri'] = 'Pet'; $labels['sat'] = 'Sub'; - -// weekdays long $labels['sunday'] = 'Nedjelja'; $labels['monday'] = 'Ponedjeljak'; $labels['tuesday'] = 'Utorak'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Srijeda'; $labels['thursday'] = 'Četvrtak'; $labels['friday'] = 'Petak'; $labels['saturday'] = 'Subota'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'Mart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembar'; $labels['longoct'] = 'Oktobar'; $labels['longnov'] = 'Novembar'; $labels['longdec'] = 'Decembar'; - $labels['today'] = 'Danas'; - -// toolbar buttons $labels['refresh'] = 'Osvježi'; $labels['checkmail'] = 'Provjeri ima li novih poruka'; $labels['compose'] = 'Nova poruka'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Više akcija...'; $labels['more'] = 'Više'; $labels['back'] = 'Nazad'; $labels['options'] = 'Opcije'; - $labels['select'] = 'Odaberi'; $labels['all'] = 'Sve'; $labels['none'] = 'Ništa'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Proširi sve'; $labels['expand-unread'] = 'Proširi nepročitane'; $labels['collapse-all'] = 'Zatvori sve'; $labels['threaded'] = 'Teme'; - $labels['autoexpand_threads'] = 'Proširi teme poruka'; $labels['do_expand'] = 'sve teme'; $labels['expand_only_unread'] = 'samo sa nepročitanim porukama'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Lista kolona'; $labels['listsorting'] = 'Sortiranje kolona'; $labels['listorder'] = 'Raspored sortiranja'; $labels['listmode'] = 'Način prikaza liste'; - $labels['folderactions'] = 'Akcije za foldere...'; $labels['compact'] = 'Optimiziraj'; $labels['empty'] = 'Isprazni'; $labels['importmessages'] = 'Uvezi poruke'; - $labels['quota'] = 'Zauzeće diska'; $labels['unknown'] = 'nepoznato'; $labels['unlimited'] = 'neograničeno'; - $labels['quicksearch'] = 'Brza pretraga'; $labels['resetsearch'] = 'Resetuj pretragu'; $labels['searchmod'] = 'Modifikacija pretrage'; $labels['msgtext'] = 'Cijela poruka'; $labels['body'] = 'Tijelo'; $labels['type'] = 'Vrsta'; - $labels['openinextwin'] = 'Otvori u novom prozoru'; $labels['emlsave'] = 'Preuzmi (.eml)'; $labels['changeformattext'] = 'Prikaži kao obični tekst'; $labels['changeformathtml'] = 'Prikaži kao HTML'; - -// message compose $labels['editasnew'] = 'Uredi kao novo'; $labels['send'] = 'Pošalji'; $labels['sendmessage'] = 'Pošalji poruku'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Potvrda o prispijeću poruke'; $labels['dsn'] = 'Obavještenje o statusu dostave'; $labels['mailreplyintro'] = '$date, $sender je napisao/la:'; $labels['originalmessage'] = 'Originalna poruka'; - $labels['editidents'] = 'Uredi identitete'; $labels['spellcheck'] = 'Pravopis'; $labels['checkspelling'] = 'Provjera pravopisa'; $labels['resumeediting'] = 'Nastavi uređivanje'; $labels['revertto'] = 'Vrati na'; - $labels['attach'] = 'Priloži'; $labels['attachments'] = 'Prilozi'; $labels['upload'] = 'Dodaj'; $labels['uploadprogress'] = '$percent ($current od $total)'; $labels['close'] = 'Zatvori'; $labels['messageoptions'] = 'Opcije poruke...'; - $labels['low'] = 'Nizak'; $labels['lowest'] = 'Najniži'; $labels['normal'] = 'Normalan'; $labels['high'] = 'Visok'; $labels['highest'] = 'Najveći'; - $labels['nosubject'] = '(bez naslova)'; $labels['showimages'] = 'Prikaži slike'; $labels['alwaysshow'] = 'Uvijek prikaži slike od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Ovo je skica.'; $labels['andnmore'] = 'još $nr...'; $labels['togglemoreheaders'] = 'Prikaži još zaglavlja poruka'; $labels['togglefullheaders'] = 'Aktiviranje izvornih zaglavlja poruka'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Obični tekst'; $labels['savesentmessagein'] = 'Sačuvaj poslane poruke u'; $labels['dontsave'] = 'ne snimaj'; $labels['maxuploadsize'] = 'Maksimalna dozvoljena veličina datoteke je $size'; - $labels['addcc'] = 'Dodaj Cc'; $labels['addbcc'] = 'Dodaj Bcc'; $labels['addreplyto'] = 'Dodaj odgovor na'; $labels['addfollowupto'] = 'Dodaj praćenje za'; - -// mdn $labels['mdnrequest'] = 'Pošiljaoc ove poruke je tražio da bude obaviješten kada pročitate ovu poruku. Želite li obavijestiti pošiljaoca?'; $labels['receiptread'] = 'Povratnica (pročitano)'; $labels['yourmessage'] = 'Ovo je povratnica vaše poruke'; $labels['receiptnote'] = 'Napomena: Ova povratnica samo potvrđuje da je poruka bila prikazana na računaru primaoca. Nema garancija da je primaoc pročitao ili razumio sadržaj poruke.'; - -// address boook $labels['name'] = 'Ime za prikaz'; $labels['firstname'] = 'Ime'; $labels['surname'] = 'Prezime'; @@ -304,7 +264,6 @@ $labels['search'] = 'Pretraga'; $labels['advsearch'] = 'Napredna pretraga'; $labels['advanced'] = 'Napredno'; $labels['other'] = 'Ostalo'; - $labels['typehome'] = 'Kućni broj'; $labels['typework'] = 'Poslovni broj'; $labels['typeother'] = 'Ostalo'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Pomoćnik'; $labels['typehomepage'] = 'Početna stranica'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Dodaj polje...'; $labels['addcontact'] = 'Dodaj novi kontakt'; $labels['editcontact'] = 'Uredi kontakt'; $labels['contacts'] = 'Kontakti'; $labels['contactproperties'] = 'Svojstva kontakta'; $labels['personalinfo'] = 'Lični podaci'; - $labels['edit'] = 'Uredi'; $labels['cancel'] = 'Otkaži'; $labels['save'] = 'Sačuvaj'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Preimenuj'; $labels['addphoto'] = 'Dodaj'; $labels['replacephoto'] = 'Zamijeni'; $labels['uploadphoto'] = 'Dodaj fotografiju'; - $labels['newcontact'] = 'Dodaj novi kontakt'; $labels['deletecontact'] = 'Obriši odabrane kontakte'; $labels['composeto'] = 'Napiši email za'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Kreiraj novu grupu kontakata'; $labels['grouprename'] = 'Preimenuj grupu'; $labels['groupdelete'] = 'Obriši grupu'; $labels['groupremoveselected'] = 'Ukloni odabrane kontakte iz grupe'; - $labels['previouspage'] = 'Prikaži prethodnu stranicu'; $labels['firstpage'] = 'Prikaži prvu stranicu'; $labels['nextpage'] = 'Prikaži sljedeću stranicu'; $labels['lastpage'] = 'Prikaži zadnju stranicu'; - $labels['group'] = 'Grupa'; $labels['groups'] = 'Grupe'; $labels['listgroup'] = 'Izlistaj članove grupe'; $labels['personaladrbook'] = 'Lične adrese'; - $labels['searchsave'] = 'Sačuvaj pretragu'; $labels['searchdelete'] = 'Obriši pretragu'; - $labels['import'] = 'Uvoz'; $labels['importcontacts'] = 'Uvoz kontakata'; $labels['importfromfile'] = 'Uvoz iz datoteke:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Dodaj novi kontakt u adresar:'; $labels['importreplace'] = 'Zamijeni cijeli adresar'; $labels['importdesc'] = 'Kontakte možete dodati iz postojećeg adresara.
Trenutno podržavamo uvoz adresara u formatima vCard ili CSV (comma-separated).'; $labels['done'] = 'Završeno'; - -// settings $labels['settingsfor'] = 'Podešavanja za'; $labels['about'] = 'Informacije'; $labels['preferences'] = 'Podešavanja'; $labels['userpreferences'] = 'Korisničke opcije'; $labels['editpreferences'] = 'Uredi korisničke opcije'; - $labels['identities'] = 'Identiteti'; $labels['manageidentities'] = 'Podesi identitete za ovaj račun'; $labels['newidentity'] = 'Dodaj identitet'; - $labels['newitem'] = 'Nova stavka'; $labels['edititem'] = 'Uredi stavku'; - $labels['preferhtml'] = 'Prikaži HTML'; $labels['defaultcharset'] = 'Glavni skup znakova'; $labels['htmlmessage'] = 'HTML poruke'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Tretiraj popup-ove kao standardne prozore'; $labels['forwardmode'] = 'Prosljeđivanje poruka'; $labels['inline'] = 'u istom redu'; $labels['asattachment'] = 'kao prilog'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Folderi'; $labels['foldername'] = 'Naziv foldera'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Vrsta foldera'; $labels['personalfolder'] = 'Privatni folder'; $labels['otherfolder'] = 'Folder drugog korisnika'; $labels['sharedfolder'] = 'Javni folder'; - $labels['sortby'] = 'Sortiraj po'; $labels['sortasc'] = 'Sortiraj uzlazno'; $labels['sortdesc'] = 'Sortiraj silazno'; $labels['undo'] = 'Nazad'; - $labels['installedplugins'] = 'Instalirani plugini'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Verzija'; $labels['source'] = 'Izvorni kod'; $labels['license'] = 'Licenca'; $labels['support'] = 'Podrška'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unikod'; $labels['english'] = 'engleski'; $labels['westerneuropean'] = 'Zapadna Evropa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'vijetnamski'; $labels['japanese'] = 'japanski'; $labels['korean'] = 'korejski'; $labels['chinese'] = 'kineski'; - ?> diff --git a/program/localization/bs_BA/messages.inc b/program/localization/bs_BA/messages.inc index 09e6df19e..a9aa1bd55 100644 --- a/program/localization/bs_BA/messages.inc +++ b/program/localization/bs_BA/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nije moguće kreirati/premjestiti folder u oda $messages['messagetoobig'] = 'Dio poruke je prevelik za procesiranje.'; $messages['attachmentvalidationerror'] = 'UPOZORENJE! Ovaj prilog je sumnjiv zbog toga što se njegov tip ne poklapa s tipom navedenim u poruci. Ako nemate povjerenja u pošiljaova, ne biste trebali da otvarate ovaj prilog u vašem browseru jer bi on mogao da sadrži zlonamjerni sadržaj.

Očekivano: $expected; pronađeno: $detected'; $messages['noscriptwarning'] = 'Upozorenje! Ovom webmail servisu je potreban Javascript! Da biste ga mogli koristiti, prvo je potrebno da omogućite Javascript u postavkama vašeg browsera.'; - ?> diff --git a/program/localization/ca_ES/labels.inc b/program/localization/ca_ES/labels.inc index ca0129de4..b3e404032 100644 --- a/program/localization/ca_ES/labels.inc +++ b/program/localization/ca_ES/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Benvingut a $product'; $labels['username'] = 'Nom d\'usuari'; $labels['password'] = 'Contrasenya'; $labels['server'] = 'Servidor'; $labels['login'] = 'Entra'; - -// taskbar $labels['logout'] = 'Tanca sessió'; $labels['mail'] = 'Correu'; $labels['settings'] = 'Configuració'; $labels['addressbook'] = 'Contactes'; - -// mailbox names $labels['inbox'] = 'Safata d\'entrada'; $labels['drafts'] = 'Esborranys'; $labels['sent'] = 'Enviats'; $labels['trash'] = 'Paperera'; $labels['junk'] = 'Correu brossa'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Assumpte'; $labels['from'] = 'Remitent'; $labels['sender'] = 'Remitent'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritat'; $labels['organization'] = 'Organització'; $labels['readstatus'] = 'Estat de lectura'; $labels['listoptions'] = 'Llista d\'opcions...'; - $labels['mailboxlist'] = 'Carpetes'; $labels['messagesfromto'] = 'Missatges des de $from a $to de $count'; $labels['threadsfromto'] = 'Fils $from a $to de $count'; $labels['messagenrof'] = 'Missatge $nr de $count'; $labels['fromtoshort'] = '$from - $to de $count'; - $labels['copy'] = 'Copia'; $labels['move'] = 'Mou'; $labels['moveto'] = 'Mou a...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descarrega'; $labels['open'] = 'Obre'; $labels['showattachment'] = 'Mostra'; $labels['showanyway'] = 'Mostra-ho de totes maneres'; - $labels['filename'] = 'Nom del fitxer'; $labels['filesize'] = 'Mida del fitxer'; - $labels['addtoaddressbook'] = 'Afegeix a contactes'; - -// weekdays short $labels['sun'] = 'Diu'; $labels['mon'] = 'Dll'; $labels['tue'] = 'Dmt'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Dmc'; $labels['thu'] = 'Dij'; $labels['fri'] = 'Div'; $labels['sat'] = 'Dis'; - -// weekdays long $labels['sunday'] = 'Diumenge'; $labels['monday'] = 'Dilluns'; $labels['tuesday'] = 'Dimarts'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Dimecres'; $labels['thursday'] = 'Dijous'; $labels['friday'] = 'Divendres'; $labels['saturday'] = 'Dissabte'; - -// months short $labels['jan'] = 'gen'; $labels['feb'] = 'feb'; $labels['mar'] = 'mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'set'; $labels['oct'] = 'oct'; $labels['nov'] = 'nov'; $labels['dec'] = 'des'; - -// months long $labels['longjan'] = 'gener'; $labels['longfeb'] = 'febrer'; $labels['longmar'] = 'març'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'setembre'; $labels['longoct'] = 'octubre'; $labels['longnov'] = 'novembre'; $labels['longdec'] = 'desembre'; - $labels['today'] = 'Avui'; - -// toolbar buttons $labels['refresh'] = 'Actualitza'; $labels['checkmail'] = 'Recupera missatges nous'; $labels['compose'] = 'Escriu un missatge'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Més accions...'; $labels['more'] = 'Més'; $labels['back'] = 'Torna'; $labels['options'] = 'Opcions'; - $labels['select'] = 'Selecciona'; $labels['all'] = 'Tots'; $labels['none'] = 'Cap'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandeix tots'; $labels['expand-unread'] = 'Expandeix No llegits'; $labels['collapse-all'] = 'Redueix tots'; $labels['threaded'] = 'Encadenat'; - $labels['autoexpand_threads'] = 'Expandeix els missatges encadenats'; $labels['do_expand'] = 'tots els fils de discusió'; $labels['expand_only_unread'] = 'només amb missatges no llegits'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Llista les columnes'; $labels['listsorting'] = 'Columna d\'ordenació'; $labels['listorder'] = 'Ordre d\'ordenació'; $labels['listmode'] = 'Mode de vista de llista'; - $labels['folderactions'] = 'Accions de carpeta'; $labels['compact'] = 'Compacta'; $labels['empty'] = 'Buida'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Ús del disc'; $labels['unknown'] = 'desconegut'; $labels['unlimited'] = 'il·limitat'; - $labels['quicksearch'] = 'Cerca ràpida'; $labels['resetsearch'] = 'Neteja cerca'; $labels['searchmod'] = 'Cerca modificadors'; $labels['msgtext'] = 'Missatge sencer'; $labels['body'] = 'Cos'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Obre a una nova finestra'; $labels['emlsave'] = 'Descarrega (.eml)'; $labels['changeformattext'] = 'Mostra en format de text net'; $labels['changeformathtml'] = 'Mostra en format HTML'; - -// message compose $labels['editasnew'] = 'Edita com a nou'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Envia el missatge'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Confirmació de recepció'; $labels['dsn'] = 'Notificació d\'estat de lliurament'; $labels['mailreplyintro'] = 'A $date, $sender escrigué:'; $labels['originalmessage'] = 'Missatge Original'; - $labels['editidents'] = 'Edita identitats'; $labels['spellcheck'] = 'Ortografia'; $labels['checkspelling'] = 'Comprova l\'ortografia'; $labels['resumeediting'] = 'Reprèn l\'edició'; $labels['revertto'] = 'Torna a'; - $labels['attach'] = 'Adjunta'; $labels['attachments'] = 'Adjuncions'; $labels['upload'] = 'Afegeix'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Tanca'; $labels['messageoptions'] = 'Opcions de missatge...'; - $labels['low'] = 'Baixa'; $labels['lowest'] = 'La més baixa'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alta'; $labels['highest'] = 'La més alta'; - $labels['nosubject'] = '(sense assumpte)'; $labels['showimages'] = 'Mostra les imatges'; $labels['alwaysshow'] = 'Mostra sempre les imatges de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Aquest és un missatge esborrany.'; $labels['andnmore'] = '$nr més...'; $labels['togglemoreheaders'] = 'Mostra més capçaleres del missatge'; $labels['togglefullheaders'] = 'Conmuta les capçaleres de text cru'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Text net'; $labels['savesentmessagein'] = 'Desa el missatge enviat a'; $labels['dontsave'] = 'no ho desis'; $labels['maxuploadsize'] = 'El mida màxima del fitxer és $size'; - $labels['addcc'] = 'Afegeix Cc'; $labels['addbcc'] = 'Afegeix Bcc'; $labels['addreplyto'] = 'Afegeix Respon-A'; $labels['addfollowupto'] = 'Afegir Seguiment-A'; - -// mdn $labels['mdnrequest'] = 'El remitent d\'aquest missatge ha demanat ser notificat quan llegiu aquest missatge. Voleu notificar al remitent?'; $labels['receiptread'] = 'Confirmació de recepció'; $labels['yourmessage'] = 'Això és una confirmació de recepció per al vostre missatge'; $labels['receiptnote'] = 'Nota: Aquesta confirmació només indica que el missatge ha estat mostrat a l\'ordinador del destinatari. No hi ha garantia que el destinatari hagi llegit o entès el contingut del missatge.'; - -// address boook $labels['name'] = 'Nom a mostrar'; $labels['firstname'] = 'Nom'; $labels['surname'] = 'Cognom'; @@ -304,7 +264,6 @@ $labels['search'] = 'Cerca'; $labels['advsearch'] = 'Cerca Avançada'; $labels['advanced'] = 'Paràmetres avançats'; $labels['other'] = 'Un altre'; - $labels['typehome'] = 'Casa'; $labels['typework'] = 'Feina'; $labels['typeother'] = 'Un altre'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Pàgina Inicial'; $labels['typeblog'] = 'Bloc'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Afegeix camp...'; $labels['addcontact'] = 'Afegeix un nou contacte'; $labels['editcontact'] = 'Edita el contacte'; $labels['contacts'] = 'Contactes'; $labels['contactproperties'] = 'Propietats del contacte'; $labels['personalinfo'] = 'Informació personal'; - $labels['edit'] = 'Edita'; $labels['cancel'] = 'Cancel·la'; $labels['save'] = 'Desa'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Reanomena'; $labels['addphoto'] = 'Afegeix'; $labels['replacephoto'] = 'Reemplaça'; $labels['uploadphoto'] = 'Puja una fotografia'; - $labels['newcontact'] = 'Crea un nou contacte'; $labels['deletecontact'] = 'Suprimeix els contactes seleccionats'; $labels['composeto'] = 'Redacta correu per a'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crea un nou grup de contactes'; $labels['grouprename'] = 'Reanomena el grup'; $labels['groupdelete'] = 'Suprimeix el grup'; $labels['groupremoveselected'] = 'Suprimeix els contactes seleccionats del grup'; - $labels['previouspage'] = 'Mostra la pàgina anterior'; $labels['firstpage'] = 'Mostra la primera pàgina'; $labels['nextpage'] = 'Mostra la pàgina següent'; $labels['lastpage'] = 'Mostra la darrera pàgina'; - $labels['group'] = 'Grup'; $labels['groups'] = 'Grups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Llibreta d\'adreces'; - $labels['searchsave'] = 'Desa la cerca'; $labels['searchdelete'] = 'Suprimeix la cerca'; - $labels['import'] = 'Importa'; $labels['importcontacts'] = 'Importa contactes'; $labels['importfromfile'] = 'Importa des d\'un fitxer:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Afegeix contactes nous a la llibreta d\'adreces:'; $labels['importreplace'] = 'Reemplaça la llibreta d\'adreçes sencera'; $labels['importdesc'] = 'Podeu carregar contactes des d\'una llibreta de direccions.
Actualment donem suport a la importació d\'adreces des de fitxers de tipus vCard o CSV (valors separats per comes).'; $labels['done'] = 'Fet'; - -// settings $labels['settingsfor'] = 'Configuració per a'; $labels['about'] = 'Quant a'; $labels['preferences'] = 'Preferències'; $labels['userpreferences'] = 'Preferències de l\'usuari'; $labels['editpreferences'] = 'Edita les preferències de l\'usuari'; - $labels['identities'] = 'Identitats'; $labels['manageidentities'] = 'Gestiona les identitats per a aquest compte'; $labels['newidentity'] = 'Nova identitat'; - $labels['newitem'] = 'Nou element'; $labels['edititem'] = 'Edita l\'element'; - $labels['preferhtml'] = 'Mostra HTML'; $labels['defaultcharset'] = 'Joc de caràcters per defecte'; $labels['htmlmessage'] = 'Missatge HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Reenviament de missatges'; $labels['inline'] = 'en línia'; $labels['asattachment'] = 'com adjunt'; - $labels['folder'] = 'Carpeta'; $labels['folders'] = 'Carpetes'; $labels['foldername'] = 'Nom de la carpeta'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tipus de Carpeta'; $labels['personalfolder'] = 'Carpeta privada'; $labels['otherfolder'] = 'Carpeta d\'un altre usuari'; $labels['sharedfolder'] = 'Carpeta pública'; - $labels['sortby'] = 'Ordena per'; $labels['sortasc'] = 'Ordena ascendentment'; $labels['sortdesc'] = 'Ordena descendentment'; $labels['undo'] = 'Desfés'; - $labels['installedplugins'] = 'Connectors Instal·lats'; $labels['plugin'] = 'Complement'; $labels['version'] = 'Versió'; $labels['source'] = 'Font'; $labels['license'] = 'Llicència'; $labels['support'] = 'Obtingueu ajuda'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Anglès'; $labels['westerneuropean'] = 'Europeu occidental'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Japonès'; $labels['korean'] = 'Coreà'; $labels['chinese'] = 'Xinès'; - ?> diff --git a/program/localization/ca_ES/messages.inc b/program/localization/ca_ES/messages.inc index 9ee32d54e..e401e5869 100644 --- a/program/localization/ca_ES/messages.inc +++ b/program/localization/ca_ES/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'No s\'ha pogut crear/moure la carpeta dins de $messages['messagetoobig'] = 'La part del missatge és massa gran per processar-la.'; $messages['attachmentvalidationerror'] = 'ATENCIÓ! Aquest adjunt és sospitós perquè el seu tipus no coincideix amb el tipus declarat al missatge. Si no confieu en l\'emissor, no l\'hauríeu d\'obrir al navegador perquè pot contenir elements maliciosos.

S\'esperava: $expected; s\'ha trobat: $detected'; $messages['noscriptwarning'] = 'Atenció: Aquest client de correu necessita Javascript! Per a poder fer-lo servir, heu d\'activar Javascript a les opcions del navegador.'; - ?> diff --git a/program/localization/cs_CZ/labels.inc b/program/localization/cs_CZ/labels.inc index b5cc093d8..b741c960f 100644 --- a/program/localization/cs_CZ/labels.inc +++ b/program/localization/cs_CZ/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Vítejte v $product'; $labels['username'] = 'Uživatel'; $labels['password'] = 'Heslo'; $labels['server'] = 'Server'; $labels['login'] = 'Přihlásit'; - -// taskbar $labels['logout'] = 'Odhlásit'; $labels['mail'] = 'E-mail'; $labels['settings'] = 'Nastavení'; $labels['addressbook'] = 'Adresář'; - -// mailbox names $labels['inbox'] = 'Příchozí pošta'; $labels['drafts'] = 'Rozepsané'; $labels['sent'] = 'Odeslané'; $labels['trash'] = 'Koš'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Zobrazit skutečná jména speciálních složek'; - -// message listing $labels['subject'] = 'Předmět'; $labels['from'] = 'Odesílatel'; $labels['sender'] = 'Odesílatel'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorita'; $labels['organization'] = 'Organizace'; $labels['readstatus'] = 'Přečteno'; $labels['listoptions'] = 'Seznam možností ...'; - $labels['mailboxlist'] = 'Složky'; $labels['messagesfromto'] = 'Zprávy $from až $to z celkem $count'; $labels['threadsfromto'] = 'Konverzace $from až $to z celkem $count'; $labels['messagenrof'] = 'Zpráva $nr z $count'; $labels['fromtoshort'] = '$from - $to z $count'; - $labels['copy'] = 'Kopírovat'; $labels['move'] = 'Přesunout'; $labels['moveto'] = 'přesunout do...'; @@ -68,13 +59,9 @@ $labels['download'] = 'stáhnout'; $labels['open'] = 'Otevřít'; $labels['showattachment'] = 'Zobrazit'; $labels['showanyway'] = 'Přesto zobrazit'; - $labels['filename'] = 'Jméno přílohy'; $labels['filesize'] = 'Velikost přílohy'; - $labels['addtoaddressbook'] = 'Přidat do adresáře'; - -// weekdays short $labels['sun'] = 'Ne'; $labels['mon'] = 'Po'; $labels['tue'] = 'Út'; @@ -82,8 +69,6 @@ $labels['wed'] = 'St'; $labels['thu'] = 'Čt'; $labels['fri'] = 'Pá'; $labels['sat'] = 'So'; - -// weekdays long $labels['sunday'] = 'Neděle'; $labels['monday'] = 'Pondělí'; $labels['tuesday'] = 'Úterý'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Středa'; $labels['thursday'] = 'Čtvrtek'; $labels['friday'] = 'Pátek'; $labels['saturday'] = 'Sobota'; - -// months short $labels['jan'] = 'Led'; $labels['feb'] = 'Úno'; $labels['mar'] = 'Bře'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Zář'; $labels['oct'] = 'Říj'; $labels['nov'] = 'Lis'; $labels['dec'] = 'Pro'; - -// months long $labels['longjan'] = 'Leden'; $labels['longfeb'] = 'Únor'; $labels['longmar'] = 'Březen'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Září'; $labels['longoct'] = 'Říjen'; $labels['longnov'] = 'Listopad'; $labels['longdec'] = 'Prosinec'; - $labels['today'] = 'Dnes'; - -// toolbar buttons $labels['refresh'] = 'Obnovit'; $labels['checkmail'] = 'Zkontrolovat nové zprávy'; $labels['compose'] = 'Napsat zprávu'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Další akce...'; $labels['more'] = 'Více'; $labels['back'] = 'Zpět'; $labels['options'] = 'Možnosti'; - $labels['select'] = 'Vybrat'; $labels['all'] = 'Vše'; $labels['none'] = 'Nic'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Rozbalit všechny'; $labels['expand-unread'] = 'Rozbalit nepřečtené'; $labels['collapse-all'] = 'Sbalit všechny'; $labels['threaded'] = 'Spojovat do konverzací'; - $labels['autoexpand_threads'] = 'Rozbalit konverzace'; $labels['do_expand'] = 'všechny konverzace'; $labels['expand_only_unread'] = 'pouze s nepřečtenými zprávami'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Seznam sloupců'; $labels['listsorting'] = 'Třídění sloupců'; $labels['listorder'] = 'Uspořádání'; $labels['listmode'] = 'Režim zobrazení seznamu'; - $labels['folderactions'] = 'Akce se složkou...'; $labels['compact'] = 'Zmenšit'; $labels['empty'] = 'Vymazat'; $labels['importmessages'] = 'Import zpráv'; - $labels['quota'] = 'Využití schránky'; $labels['unknown'] = 'neznámý'; $labels['unlimited'] = 'neomezený'; - $labels['quicksearch'] = 'Rychlé vyhledávání'; $labels['resetsearch'] = 'Zrušit vyhledávání'; $labels['searchmod'] = 'Parametry hledání'; $labels['msgtext'] = 'Celá zpráva'; $labels['body'] = 'Tělo'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Otevřít v novém okně'; $labels['emlsave'] = 'Stáhnout (.eml)'; $labels['changeformattext'] = 'Zobrazit v textovém formátu'; $labels['changeformathtml'] = 'Zobrazit v HTML formátu'; - -// message compose $labels['editasnew'] = 'Upravit jako novou'; $labels['send'] = 'Odeslat'; $labels['sendmessage'] = 'Odeslat zprávu nyní'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Doručenka'; $labels['dsn'] = 'Stav doručení'; $labels['mailreplyintro'] = 'Dne $date, $sender napsal:'; $labels['originalmessage'] = 'Původní zpráva'; - $labels['editidents'] = 'Editovat identity'; $labels['spellcheck'] = 'Pravopis'; $labels['checkspelling'] = 'Zkontrolovat pravopis'; $labels['resumeediting'] = 'Pokračovat v úpravách'; $labels['revertto'] = 'Přejít na'; - $labels['attach'] = 'Přiložit'; $labels['attachments'] = 'Přílohy'; $labels['upload'] = 'Nahrát'; $labels['uploadprogress'] = '$percent ($current z $total)'; $labels['close'] = 'Zavřít'; $labels['messageoptions'] = 'Nastavení zprávy...'; - $labels['low'] = 'Nízká'; $labels['lowest'] = 'Nejnižší'; $labels['normal'] = 'Normální'; $labels['high'] = 'Vysoká'; $labels['highest'] = 'Nejvyšší'; - $labels['nosubject'] = '(bez predmetu)'; $labels['showimages'] = 'Zobrazit obrázky'; $labels['alwaysshow'] = 'Vždy ukazovat obrázky od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Toto je šablona zprávy.'; $labels['andnmore'] = '$nr dalších...'; $labels['togglemoreheaders'] = 'Zobrazit více hlaviček zprávy'; $labels['togglefullheaders'] = 'Přepnout skutečné hlavičky zprávy'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Prostý text'; $labels['savesentmessagein'] = 'Ukládat odeslané zprávy v'; $labels['dontsave'] = 'neukládat'; $labels['maxuploadsize'] = 'Maximální povolená velikost souboru je $size'; - $labels['addcc'] = 'Přidat pole "Kopie'; $labels['addbcc'] = 'Přidat pole "Skrytá kopie'; $labels['addreplyto'] = 'Přidat pole "Odpověď'; $labels['addfollowupto'] = 'Přidat pole "Followup-To'; - -// mdn $labels['mdnrequest'] = 'Odesílatel této zprávy si přeje být upozorněn na to, že jste zprávu obdrželi. Chcete přijetí zprávy potvrdit?'; $labels['receiptread'] = 'Potvrzení o přijetí zprávy'; $labels['yourmessage'] = 'Toto je potvrzení o přijetí Vaší zprávy'; $labels['receiptnote'] = 'Poznámka: Toto potvrzení negarantuje, že zpráva byla příjemce přečtena a že porozuměl jejímu obsahu.'; - -// address boook $labels['name'] = 'Zobrazit jméno'; $labels['firstname'] = 'Jméno'; $labels['surname'] = 'Příjmení'; @@ -304,7 +264,6 @@ $labels['search'] = 'Hledat'; $labels['advsearch'] = 'Pokročilé vyhledávání'; $labels['advanced'] = 'Pokročilé'; $labels['other'] = 'Ostatní'; - $labels['typehome'] = 'Domací'; $labels['typework'] = 'Pracovní'; $labels['typeother'] = 'Ostatní'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistent'; $labels['typehomepage'] = 'Domácí stránka'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Přidat položku'; $labels['addcontact'] = 'Přidat kontakt'; $labels['editcontact'] = 'Upravit kontakt'; $labels['contacts'] = 'Kontakty'; $labels['contactproperties'] = 'Vlastnosti kontaktu'; $labels['personalinfo'] = 'Osobní informace'; - $labels['edit'] = 'Upravit'; $labels['cancel'] = 'Konec'; $labels['save'] = 'Uložit'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Přejmenovat'; $labels['addphoto'] = 'Přidat'; $labels['replacephoto'] = 'Změnit'; $labels['uploadphoto'] = 'Nahrát fotku'; - $labels['newcontact'] = 'Vytvořit nový kontakt'; $labels['deletecontact'] = 'Smazat vybrané kontakty'; $labels['composeto'] = 'Poslat e-mail'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Vytvořit novou skupinu kontaktů'; $labels['grouprename'] = 'Přejmenovat skupinu'; $labels['groupdelete'] = 'Smazat skupinu'; $labels['groupremoveselected'] = 'Odstranit označené kontakty ze skupiny'; - $labels['previouspage'] = 'Předchozí'; $labels['firstpage'] = 'Zobrazit první zprávy'; $labels['nextpage'] = 'Další'; $labels['lastpage'] = 'Zobrazit poslední zprávy'; - $labels['group'] = 'Skupina'; $labels['groups'] = 'Skupiny'; $labels['listgroup'] = ' Seznam členů skupiny'; $labels['personaladrbook'] = 'Osobní kontakty'; - $labels['searchsave'] = 'Uložit hledání'; $labels['searchdelete'] = 'Smazat hledání'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Importovat kontakty'; $labels['importfromfile'] = 'Importovat ze souboru'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Přidat nové kontakty do seznamu kontaktů:'; $labels['importreplace'] = 'Nahradit celý seznam kontaktů'; $labels['importdesc'] = 'Můžete nahrát kontakty z existujícího adresáře kontaktů.
Momentálně podporujeme kontakty ve formátu vCard nebo CSV (comma-separated).'; $labels['done'] = 'Hotovo'; - -// settings $labels['settingsfor'] = 'Nastavení pro'; $labels['about'] = 'O programu'; $labels['preferences'] = 'Vlastnosti'; $labels['userpreferences'] = 'Vlastnosti uživatele'; $labels['editpreferences'] = 'Upravit vlastnosti uživatele'; - $labels['identities'] = 'Profily'; $labels['manageidentities'] = 'Spravovat profily u tohoto účtu'; $labels['newidentity'] = 'Nový profil'; - $labels['newitem'] = 'Nová položka'; $labels['edititem'] = 'Upravit položku'; - $labels['preferhtml'] = 'Upřednostňovat HTML zobrazení'; $labels['defaultcharset'] = 'Výchozí kódování'; $labels['htmlmessage'] = 'HTML zpráva'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Zacházet s vyskakovacími okny jako se standardn $labels['forwardmode'] = 'Přeposlat zprávu'; $labels['inline'] = 'vloženě'; $labels['asattachment'] = 'jako přílohu'; - $labels['folder'] = 'Složka'; $labels['folders'] = 'Složky'; $labels['foldername'] = 'Jméno složky'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Typ složky'; $labels['personalfolder'] = 'Soukromá složka'; $labels['otherfolder'] = 'Složky ostatních uživatelů'; $labels['sharedfolder'] = 'Sdílená složka'; - $labels['sortby'] = 'Seřadit podle'; $labels['sortasc'] = 'Seřadit vzestupně'; $labels['sortdesc'] = 'Seřadit sestupně'; $labels['undo'] = 'Vrátit zpět'; - $labels['installedplugins'] = 'Nainstalované pluginy'; $labels['plugin'] = 'Zásuvný modul'; $labels['version'] = 'Verze'; $labels['source'] = 'Zdroj'; $labels['license'] = 'Licence'; $labels['support'] = 'Podpora'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Angličtina'; $labels['westerneuropean'] = 'Západní Evropa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamština'; $labels['japanese'] = 'Japonština'; $labels['korean'] = 'Korejština'; $labels['chinese'] = 'Čínština'; - ?> diff --git a/program/localization/cs_CZ/messages.inc b/program/localization/cs_CZ/messages.inc index 59b2c6bd6..26881a0a1 100644 --- a/program/localization/cs_CZ/messages.inc +++ b/program/localization/cs_CZ/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Nelze vytvořit/přesunout složku do vybrané $messages['messagetoobig'] = 'Část zprávy je příliš velká pro zpracování.'; $messages['attachmentvalidationerror'] = 'Varování: Tato příloha je podezřelá, protože její typ se neshoduje s typem uvedeným ve zprávě. Pokud nedůvěřujete odesílateli, neměli byste přílohu otevírat v prohlížeči, protože může obsahovat škodlivý obsah.

Očekáváno: $expected; nalezeno: $detected'; $messages['noscriptwarning'] = 'Upozornění: Tato emailová aplikace vyžaduje Javascript! Prosím, zapněte Javascript v nastavení prohlížeče.'; - ?> diff --git a/program/localization/cy_GB/labels.inc b/program/localization/cy_GB/labels.inc index ea5d047c9..26b4c2717 100644 --- a/program/localization/cy_GB/labels.inc +++ b/program/localization/cy_GB/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Croeso i $product'; $labels['username'] = 'Enw defnyddiwr'; $labels['password'] = 'Cyfrinair'; $labels['server'] = 'Gweinydd'; $labels['login'] = 'Mewngofnodi'; - -// taskbar $labels['logout'] = 'Allgofnodi'; $labels['mail'] = 'E-bost'; $labels['settings'] = 'Gosodiadau Personol'; $labels['addressbook'] = 'Llyfr Cyfeiriadau'; - -// mailbox names $labels['inbox'] = 'Mewnflwch'; $labels['drafts'] = 'Drafftiau'; $labels['sent'] = 'Danfonwyd'; $labels['trash'] = 'Sbwriel'; $labels['junk'] = 'Sothach'; $labels['show_real_foldernames'] = 'Dangos enwau go-iawn ar gyfer ffolderi arbennig'; - -// message listing $labels['subject'] = 'Pwnc'; $labels['from'] = 'Anfonwr'; $labels['sender'] = 'Anfonwr'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Blaenoriaeth'; $labels['organization'] = 'Enw\'r Sefydliad'; $labels['readstatus'] = 'Statws darllen'; $labels['listoptions'] = 'Dewisiadau rhestr...'; - $labels['mailboxlist'] = 'Ffolderi'; $labels['messagesfromto'] = 'Negeseuon $from i $to o $count'; $labels['threadsfromto'] = 'Edefau $from i $to o $count'; $labels['messagenrof'] = 'Neges $nr o $count'; $labels['fromtoshort'] = '$from - $to o $count'; - $labels['copy'] = 'Copio'; $labels['move'] = 'Symud'; $labels['moveto'] = 'Symud i...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Llwytho lawr'; $labels['open'] = 'Agor'; $labels['showattachment'] = 'Dangos'; $labels['showanyway'] = 'Dangos beth bynnag'; - $labels['filename'] = 'Enw ffeil'; $labels['filesize'] = 'Maint ffeil'; - $labels['addtoaddressbook'] = 'Ychwanegu i\'r llyfr cyfeiriadau'; - -// weekdays short $labels['sun'] = 'Sul'; $labels['mon'] = 'Llun'; $labels['tue'] = 'Maw'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mer'; $labels['thu'] = 'Iau'; $labels['fri'] = 'Gwe'; $labels['sat'] = 'Sad'; - -// weekdays long $labels['sunday'] = 'Dydd Sul'; $labels['monday'] = 'Dydd Llun'; $labels['tuesday'] = 'Dydd Mawrth'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Dydd Mercher'; $labels['thursday'] = 'Dydd Iau'; $labels['friday'] = 'Dydd Gwener'; $labels['saturday'] = 'Dydd Sadwrn'; - -// months short $labels['jan'] = 'Ion'; $labels['feb'] = 'Chwe'; $labels['mar'] = 'Maw'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Med'; $labels['oct'] = 'Hyd'; $labels['nov'] = 'Tach'; $labels['dec'] = 'Rhag'; - -// months long $labels['longjan'] = 'Ionawr'; $labels['longfeb'] = 'Chwefror'; $labels['longmar'] = 'Mawrth'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Medi'; $labels['longoct'] = 'Hydref'; $labels['longnov'] = 'Tachwedd'; $labels['longdec'] = 'Rhagfyr'; - $labels['today'] = 'Heddiw'; - -// toolbar buttons $labels['refresh'] = 'Ail-ofyn'; $labels['checkmail'] = 'Edrych am negeseuon newydd'; $labels['compose'] = 'Ysgrifennu neges'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mwy o weithredoedd...'; $labels['more'] = 'Mwy'; $labels['back'] = 'Yn ôl'; $labels['options'] = 'Dewisiadau'; - $labels['select'] = 'Dewis'; $labels['all'] = 'Popeth'; $labels['none'] = 'Dim'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Ehangu Popeth'; $labels['expand-unread'] = 'Ehangu Negeseuon Heb eu darllen'; $labels['collapse-all'] = 'Crebachu Popeth'; $labels['threaded'] = 'Edafedd'; - $labels['autoexpand_threads'] = 'Ehangu edefau neges'; $labels['do_expand'] = 'pob edefyn'; $labels['expand_only_unread'] = 'dim ond gyda negeseuon heb eu darllen'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Rhestr colofnau'; $labels['listsorting'] = 'Colofn trefnu'; $labels['listorder'] = 'Trefn didoli'; $labels['listmode'] = 'Golwg rhestr'; - $labels['folderactions'] = 'Gweithredoedd ffolder...'; $labels['compact'] = 'Crynhoi'; $labels['empty'] = 'Gwagio'; $labels['importmessages'] = 'Mewnforio negeseuon'; - $labels['quota'] = 'Defnydd'; $labels['unknown'] = 'anhysbys'; $labels['unlimited'] = 'diderfyn'; - $labels['quicksearch'] = 'Chwiliad cyflym'; $labels['resetsearch'] = 'Ail-osod chwiliad'; $labels['searchmod'] = 'Addasyddion chwilio'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Y neges yn llawn'; $labels['body'] = 'Corff'; $labels['type'] = 'Math'; $labels['namex'] = 'Enw'; - $labels['openinextwin'] = 'Agor mewn ffenest newydd'; $labels['emlsave'] = 'Llwytho lawr (.eml)'; $labels['changeformattext'] = 'Dangos mewn fformat testun plaen'; $labels['changeformathtml'] = 'Dangos mewn fformat HTML'; - -// message compose $labels['editasnew'] = 'Golygu fel neges newydd'; $labels['send'] = 'Anfon'; $labels['sendmessage'] = 'Danfon nawr'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Cadarnhau derbyn'; $labels['dsn'] = 'Hysbysiad statws danfon'; $labels['mailreplyintro'] = 'Ar $date, ysgrifennodd $sender:'; $labels['originalmessage'] = 'Neges Wreiddiol'; - $labels['editidents'] = 'Golygu personoliaethau'; $labels['spellcheck'] = 'Sillafu'; $labels['checkspelling'] = 'Gwirio sillafu'; $labels['resumeediting'] = 'Ail-ddechrau golygu'; $labels['revertto'] = 'Dychwelyd i'; - $labels['attach'] = 'Atodi'; $labels['attachments'] = 'Atodiadau'; $labels['upload'] = 'Llwytho fyny'; $labels['uploadprogress'] = '$percent ($current o $total)'; $labels['close'] = 'Cau'; $labels['messageoptions'] = 'Dewisiadau neges...'; - $labels['low'] = 'Isel'; $labels['lowest'] = 'Isaf'; $labels['normal'] = 'Cyffredin'; $labels['high'] = 'Uchel'; $labels['highest'] = 'Uchaf'; - $labels['nosubject'] = '(dim pwnc)'; $labels['showimages'] = 'Dangos lluniau'; $labels['alwaysshow'] = 'Dangos lluniau bob amser o $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Mae hwn yn neges ddrafft'; $labels['andnmore'] = '$nr mwy...'; $labels['togglemoreheaders'] = 'Dangos fwy o benynnau\'r neges'; $labels['togglefullheaders'] = 'Toglo penawdau llawn y neges'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Testun plaen'; $labels['savesentmessagein'] = 'Cadw negeseuon a ddanfonir yn'; $labels['dontsave'] = 'peidio cadw'; $labels['maxuploadsize'] = 'Y maint ffeil uchaf a ganiateir yw $size'; - $labels['addcc'] = 'Ychwanegu Cc'; $labels['addbcc'] = 'Ychwanegu Bcc'; $labels['addreplyto'] = 'Ychwanegu Ateb-I'; $labels['addfollowupto'] = 'Ychwanegu Followup-To'; - -// mdn $labels['mdnrequest'] = 'Mae anfonwr y neges hwn wedi gofyn am hysbysiad eich bod wedi darllen y neges. Hoffech chi hysbysu\'r anfonwr?'; $labels['receiptread'] = 'Cadarnhad Derbyn (darllenwyd)'; $labels['yourmessage'] = 'Mae hwn yn gadarnhad o dderbyn eich neges'; $labels['receiptnote'] = 'Nodyn: Mae\'r cadarnhad hwn yn cydnabod fod y neges wedi ei ddangos ar gyfrifiadur y derbynnydd. \'Does dim sicrwydd fod y derbynydd wedi darllen neu ddeall cynnwys y neges.'; - -// address boook $labels['name'] = 'Enw ddangosir'; $labels['firstname'] = 'Enw cyntaf'; $labels['surname'] = 'Enw olaf'; @@ -305,7 +265,6 @@ $labels['search'] = 'Chwilio'; $labels['advsearch'] = 'Chwilio Uwch'; $labels['advanced'] = 'Uwch'; $labels['other'] = 'Arall'; - $labels['typehome'] = 'Cartref'; $labels['typework'] = 'Gwaith'; $labels['typeother'] = 'Arall'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Cynorthwyydd'; $labels['typehomepage'] = 'Gwefan'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Proffil'; - $labels['addfield'] = 'Ychwanegu maes...'; $labels['addcontact'] = 'Ychwanegu cyswllt newydd'; $labels['editcontact'] = 'Golygu cyswllt'; $labels['contacts'] = 'Cysylltiadau'; $labels['contactproperties'] = 'Nodweddion cyswllt'; $labels['personalinfo'] = 'Gwybodaeth bersonol'; - $labels['edit'] = 'Golygu'; $labels['cancel'] = 'Canslo'; $labels['save'] = 'Cadw'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Ail-enwi'; $labels['addphoto'] = 'Ychwanegu'; $labels['replacephoto'] = 'Amnewid'; $labels['uploadphoto'] = 'Llwytho fyny llun'; - $labels['newcontact'] = 'Creu cerdyn cyswllt newydd'; $labels['deletecontact'] = 'Dileu y cysylltiadau a ddewiswyd'; $labels['composeto'] = 'Ysgrifennu neges at'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Creu grŵp cysylltiadau newydd'; $labels['grouprename'] = 'Ail-enwi grŵp'; $labels['groupdelete'] = 'Dileu grŵp'; $labels['groupremoveselected'] = 'Dileu y cysylltiadau dewiswyd o\'r grŵp'; - $labels['previouspage'] = 'Dangos y set flaenorol'; $labels['firstpage'] = 'Dangos y set gyntaf'; $labels['nextpage'] = 'Dangos y set nesaf'; $labels['lastpage'] = 'Dangos y set olaf'; - $labels['group'] = 'Grŵp'; $labels['groups'] = 'Grwpiau'; $labels['listgroup'] = 'Rhestru aelodau\'r grŵp'; $labels['personaladrbook'] = 'Cyfeiriadau Personol'; - $labels['searchsave'] = 'Cadw chwiliad'; $labels['searchdelete'] = 'Dileu chwiliad'; - $labels['import'] = 'Mewnforio'; $labels['importcontacts'] = 'Mewnforio cysylltiadau'; $labels['importfromfile'] = 'Mewnforio o ffeil:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Holl (creu grwpiau os oes angen)'; $labels['importgroupsexisting'] = 'Dim ond ar gyfer grwpiau sy\'n bodoli'; $labels['importdesc'] = 'Fe allwch chi lwytho fyny cysylltiadau o lyfr cyfeiriadau presennol.
Ar hyn o bryd, rydym yn cefnogi mewnforio cyfeiriadau o\'r fformatau vCard neu CSV.'; $labels['done'] = 'Wedi gorffen'; - -// settings $labels['settingsfor'] = 'Gosodiadau ar gyfer'; $labels['about'] = 'Amdan'; $labels['preferences'] = 'Dewisiadau'; $labels['userpreferences'] = 'Dewisiadau\'r defnyddiwr'; $labels['editpreferences'] = 'Golygu dewisiadau\'r defnyddiwr'; - $labels['identities'] = 'Personoliaethau'; $labels['manageidentities'] = 'Rheoli personoliaethau ar gyfer y cyfri hwn'; $labels['newidentity'] = 'Personoliaeth newydd'; - $labels['newitem'] = 'Eitem newydd'; $labels['edititem'] = 'Golygu eitem'; - $labels['preferhtml'] = 'Dangos HTML'; $labels['defaultcharset'] = 'Set Nodau Diofyn'; $labels['htmlmessage'] = 'Neges HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Trin ffenestri naid fel ffenestri arferol'; $labels['forwardmode'] = 'Danfon neges ymlaen'; $labels['inline'] = 'mewnlin'; $labels['asattachment'] = 'fel atodiad'; - $labels['folder'] = 'Ffolder'; $labels['folders'] = 'Ffolderi'; $labels['foldername'] = 'Enw ffolder'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Math Ffolder'; $labels['personalfolder'] = 'Ffolder Preifat'; $labels['otherfolder'] = 'Ffolder Defnyddiwr Arall'; $labels['sharedfolder'] = 'Ffolder Cyhoeddus'; - $labels['sortby'] = 'Trefnu yn ôl'; $labels['sortasc'] = 'Trefn esgynnol'; $labels['sortdesc'] = 'Trefn ddisgynnol'; $labels['undo'] = 'Dad-wneud'; - $labels['installedplugins'] = 'Ategynnau wedi eu gosod'; $labels['plugin'] = 'Ategyn'; $labels['version'] = 'Fersiwn'; $labels['source'] = 'Ffynhonnell'; $labels['license'] = 'Trwydded'; $labels['support'] = 'Gofyn am gymorth'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Saesneg'; $labels['westerneuropean'] = 'Gorllewin Ewropeaidd'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Fietnamaidd'; $labels['japanese'] = 'Japaneaidd'; $labels['korean'] = 'Corëeg'; $labels['chinese'] = 'Tsieineaidd'; - ?> diff --git a/program/localization/cy_GB/messages.inc b/program/localization/cy_GB/messages.inc index 6323d8c9c..4f85adb98 100644 --- a/program/localization/cy_GB/messages.inc +++ b/program/localization/cy_GB/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Methwyd creu/symud ffolder i\'r ffolder rhiant $messages['messagetoobig'] = 'Mae darn y neges yn rhy fawr i\'w brosesu.'; $messages['attachmentvalidationerror'] = 'RHYBUDD! Mae\'r atodiad yn amheus oherwydd nid yw ei fath yn gymharu\'r gyda\'r math ddatganwyd yn y neges. Os nad ydych yn ymddiried yn y danfonwr, ni ddylech agor hwn yn y porwr oherwydd fe all gynnwys ffeil maleisus.

Disgwylwyd:$expected;canfuwyd:$detected'; $messages['noscriptwarning'] = 'Rhybudd: Mae\'r gwasanaeth gwebost angen Javascript i weithio! Er mwyn ei ddefnyddio, galluogwch Javascript yng ngosodiadau eich porwr.'; - ?> diff --git a/program/localization/da_DK/labels.inc b/program/localization/da_DK/labels.inc index a5b9b3bc8..262adf35f 100644 --- a/program/localization/da_DK/labels.inc +++ b/program/localization/da_DK/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brugernavn'; $labels['password'] = 'Adgangskode'; $labels['server'] = 'Server'; $labels['login'] = 'Log på'; - -// taskbar $labels['logout'] = 'Log af'; $labels['mail'] = 'E-mail'; $labels['settings'] = 'Indstillinger'; $labels['addressbook'] = 'Adressebog'; - -// mailbox names $labels['inbox'] = 'Indbakke'; $labels['drafts'] = 'Kladder'; $labels['sent'] = 'Sendt post'; $labels['trash'] = 'Papirkurv'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Emne'; $labels['from'] = 'Afsender'; $labels['sender'] = 'Afsender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Firma'; $labels['readstatus'] = 'Læst status'; $labels['listoptions'] = 'Listeindstillinger'; - $labels['mailboxlist'] = 'Mapper'; $labels['messagesfromto'] = 'Besked $from til $to af $count'; $labels['threadsfromto'] = 'Tråd $from til $to af $count'; $labels['messagenrof'] = 'Besked $nr af $count'; $labels['fromtoshort'] = '$from – $to af $count'; - $labels['copy'] = 'Kopiér'; $labels['move'] = 'Flyt'; $labels['moveto'] = 'Flyt til...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Download'; $labels['open'] = 'Åben'; $labels['showattachment'] = 'Vis'; $labels['showanyway'] = 'Vis alligevel'; - $labels['filename'] = 'Filnavn'; $labels['filesize'] = 'Filstørrelse'; - $labels['addtoaddressbook'] = 'Tilføj til adressebog'; - -// weekdays short $labels['sun'] = 'Søn'; $labels['mon'] = 'Man'; $labels['tue'] = 'Tir'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ons'; $labels['thu'] = 'Tor'; $labels['fri'] = 'Fre'; $labels['sat'] = 'Lør'; - -// weekdays long $labels['sunday'] = 'Søndag'; $labels['monday'] = 'Mandag'; $labels['tuesday'] = 'Tirsdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Onsdag'; $labels['thursday'] = 'Torsdag'; $labels['friday'] = 'Fredag'; $labels['saturday'] = 'Lørdag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'Marts'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'I dag'; - -// toolbar buttons $labels['refresh'] = 'Opdatér'; $labels['checkmail'] = 'Se efter nye beskeder'; $labels['compose'] = 'Ny besked'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Flere funktioner...'; $labels['more'] = 'Mere'; $labels['back'] = 'Tilbage'; $labels['options'] = 'Indstillinger'; - $labels['select'] = 'Vælg'; $labels['all'] = 'Alle'; $labels['none'] = 'Ingen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Udfold alle'; $labels['expand-unread'] = 'Udfold ulæste'; $labels['collapse-all'] = 'Fold alle'; $labels['threaded'] = 'Trådet'; - $labels['autoexpand_threads'] = 'Udfold besked tråde'; $labels['do_expand'] = 'alle tråde'; $labels['expand_only_unread'] = 'kun dem med ulæste beskeder'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Vist kolonne'; $labels['listsorting'] = 'Sorteringskolonne'; $labels['listorder'] = 'Sorter efter'; $labels['listmode'] = 'Listevisningsmode'; - $labels['folderactions'] = 'Mappehandlinger...'; $labels['compact'] = 'Ryd op'; $labels['empty'] = 'Tøm'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Diskforbrug'; $labels['unknown'] = 'ukendt'; $labels['unlimited'] = 'ubegrænset'; - $labels['quicksearch'] = 'Hurtigsøg'; $labels['resetsearch'] = 'Nulstil søgning'; $labels['searchmod'] = 'Søgeparametre'; $labels['msgtext'] = 'Hele beskeden'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Åbn i nyt vindue'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Vis i ren tekst format'; $labels['changeformathtml'] = 'Vis i HTML format'; - -// message compose $labels['editasnew'] = 'Redigér som ny'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send besked'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Anmod om kvittering ved læst'; $labels['dsn'] = 'Anmod om leveringsstatus'; $labels['mailreplyintro'] = '$sender skrev den $date:'; $labels['originalmessage'] = 'Original besked'; - $labels['editidents'] = 'Ret identiteter'; $labels['spellcheck'] = 'Stav'; $labels['checkspelling'] = 'Stavekontrol'; $labels['resumeediting'] = 'Genoptag redigering'; $labels['revertto'] = 'Vend tilbage til'; - $labels['attach'] = 'Vedhæft'; $labels['attachments'] = 'Vedhæftninger'; $labels['upload'] = 'Overfør'; $labels['uploadprogress'] = '$percent ($current af $total)'; $labels['close'] = 'Luk'; $labels['messageoptions'] = 'Beskedmuligheder...'; - $labels['low'] = 'Lav'; $labels['lowest'] = 'Lavest'; $labels['normal'] = 'Normal'; $labels['high'] = 'Høj'; $labels['highest'] = 'Højest'; - $labels['nosubject'] = '(intet emne)'; $labels['showimages'] = 'Vis billeder'; $labels['alwaysshow'] = 'Vis altid billeder fra $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dette er en kladde.'; $labels['andnmore'] = '$nr yderligere...'; $labels['togglemoreheaders'] = 'Vis yderligere headers'; $labels['togglefullheaders'] = 'Ændre rå brevhoveder'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Almindelig tekst'; $labels['savesentmessagein'] = 'Gem afsendt besked i'; $labels['dontsave'] = 'gem ikke'; $labels['maxuploadsize'] = 'Maksimale tilladte filstørrelse er $size'; - $labels['addcc'] = 'Tilføj Cc'; $labels['addbcc'] = 'Tilføj Bcc'; $labels['addreplyto'] = 'Tilføj Svar-Til adresse'; $labels['addfollowupto'] = 'Tilføj følg-op adresse'; - -// mdn $labels['mdnrequest'] = 'Afsenderen af denne besked har bedt om at modtage en bekræftelse når du læser beskeden. Vil du sende kvittering for læsning?'; $labels['receiptread'] = 'Send kvittering for læsning'; $labels['yourmessage'] = 'Dette er en kvittering for at din besked er blevet vist'; $labels['receiptnote'] = 'Bemærk: Denne kvittering bekræfter udelukkende at beskeden blev vist på modtagerens computer. Der er ingen garanti for at modtageren har læst eller forstået beskedens indhold.'; - -// address boook $labels['name'] = 'Vist navn'; $labels['firstname'] = 'Fornavn'; $labels['surname'] = 'Efternavn'; @@ -304,7 +264,6 @@ $labels['search'] = 'Søg'; $labels['advsearch'] = 'Avanceret søg'; $labels['advanced'] = 'Avanceret'; $labels['other'] = 'Andet'; - $labels['typehome'] = 'Hjem'; $labels['typework'] = 'Arbejde'; $labels['typeother'] = 'Andet'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Hjemmeside'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Tilføj felt...'; $labels['addcontact'] = 'Tilføj ny kontakt'; $labels['editcontact'] = 'Redigér kontakt'; $labels['contacts'] = 'Kontakter'; $labels['contactproperties'] = 'Kontaktegenskaber'; $labels['personalinfo'] = 'Personlig information'; - $labels['edit'] = 'Redigér'; $labels['cancel'] = 'Annullér'; $labels['save'] = 'Gem'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Omdøb'; $labels['addphoto'] = 'Tilføj'; $labels['replacephoto'] = 'Erstat'; $labels['uploadphoto'] = 'Overfør billede'; - $labels['newcontact'] = 'Opret nyt kontaktkort'; $labels['deletecontact'] = 'Slet valgte kontakter'; $labels['composeto'] = 'Skriv besked til'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Opret ny kontaktgruppe'; $labels['grouprename'] = 'Omdøb gruppe'; $labels['groupdelete'] = 'Slet gruppe'; $labels['groupremoveselected'] = 'Fjern markerede kontakter fra gruppen'; - $labels['previouspage'] = 'Vis den forrige side'; $labels['firstpage'] = 'Vis første side'; $labels['nextpage'] = 'Vis næste side'; $labels['lastpage'] = 'Vis sidste side'; - $labels['group'] = 'Gruppe'; $labels['groups'] = 'Grupper'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personlige adresser'; - $labels['searchsave'] = 'Gem søgning'; $labels['searchdelete'] = 'Slet søgning'; - $labels['import'] = 'Importér'; $labels['importcontacts'] = 'Importér kontakter'; $labels['importfromfile'] = 'Importér fra fil:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Tilføj nye kontakter til adressebogen:'; $labels['importreplace'] = 'Overskriv hele adressebogen'; $labels['importdesc'] = 'Du kan uploade kontakter fra en eksisterende adressebog.
I øjeblikket supportere vi import af adresser fra vCard og CSV (komma-separeret) data format.'; $labels['done'] = 'Færdig'; - -// settings $labels['settingsfor'] = 'Indstillinger for'; $labels['about'] = 'Om'; $labels['preferences'] = 'Indstillinger'; $labels['userpreferences'] = 'Brugerindstillinger'; $labels['editpreferences'] = 'Redigér brugerindstillinger'; - $labels['identities'] = 'Identiteter'; $labels['manageidentities'] = 'Styr identiteterne for denne konto'; $labels['newidentity'] = 'Ny identitet'; - $labels['newitem'] = 'Nyt punkt'; $labels['edititem'] = 'Redigér punkt'; - $labels['preferhtml'] = 'Vis HTML'; $labels['defaultcharset'] = 'Standard tegnkodning'; $labels['htmlmessage'] = 'HTML-besked'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Behandl popups som standardvinduer'; $labels['forwardmode'] = 'Videresendelse af besked'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'som vedhæftning'; - $labels['folder'] = 'Mappe'; $labels['folders'] = 'Mapper'; $labels['foldername'] = 'Mappenavn'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Mappetype'; $labels['personalfolder'] = 'Privat mappe'; $labels['otherfolder'] = 'Anden brugers mappe'; $labels['sharedfolder'] = 'Offentlig mappe'; - $labels['sortby'] = 'Sortér efter'; $labels['sortasc'] = 'Ældste først'; $labels['sortdesc'] = 'Nyeste først'; $labels['undo'] = 'Fortryd'; - $labels['installedplugins'] = 'Installerede udvidelser'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Kilde'; $labels['license'] = 'Licens'; $labels['support'] = 'Få support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'kB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engelsk'; $labels['westerneuropean'] = 'Vesteuropæisk'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamesisk'; $labels['japanese'] = 'Japansk'; $labels['korean'] = 'Koreansk'; $labels['chinese'] = 'Kinesisk'; - ?> diff --git a/program/localization/da_DK/messages.inc b/program/localization/da_DK/messages.inc index 7429fd4e5..36a249960 100644 --- a/program/localization/da_DK/messages.inc +++ b/program/localization/da_DK/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Kan ikke oprette/flytte mappe ind i valgt mapp $messages['messagetoobig'] = 'Denne del af beskeden er for stor til at blive behandlet.'; $messages['attachmentvalidationerror'] = 'ADVARSEL! Den vedhæftede fil er mistænkelig - Typen stemmer ikke overens med den oplyste type. Hvis du ikke har tillid til afsender, skal du ikke åbne filen da den kan indholde onsindet indhold.

Forventet: $expected; Fundet: $detected'; $messages['noscriptwarning'] = 'Advarsel: Denne webmailclient kræver Javascript! For at kunne bruge den slå venligst Javascripts til i din browserindstillinger.'; - ?> diff --git a/program/localization/de_CH/labels.inc b/program/localization/de_CH/labels.inc index 145a45f57..aafe33e58 100644 --- a/program/localization/de_CH/labels.inc +++ b/program/localization/de_CH/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; $labels['password'] = 'Passwort'; $labels['server'] = 'Server'; $labels['login'] = 'Login'; - -// taskbar $labels['logout'] = 'Logout'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Einstellungen'; $labels['addressbook'] = 'Adressbuch'; - -// mailbox names $labels['inbox'] = 'Posteingang'; $labels['drafts'] = 'Entwürfe'; $labels['sent'] = 'Gesendet'; $labels['trash'] = 'Gelöscht'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Spezialordner nicht übersetzen'; - -// message listing $labels['subject'] = 'Betreff'; $labels['from'] = 'Von'; $labels['sender'] = 'Absender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorität'; $labels['organization'] = 'Organisation'; $labels['readstatus'] = 'Gelesen/Ungelesen'; $labels['listoptions'] = 'Listenoptionen...'; - $labels['mailboxlist'] = 'Ordner'; $labels['messagesfromto'] = 'Nachrichten $from bis $to von $count'; $labels['threadsfromto'] = 'Konversationen $from bis $to von $count'; $labels['messagenrof'] = 'Nachricht $nr von $count'; $labels['fromtoshort'] = '$from – $to von $count'; - $labels['copy'] = 'Kopieren'; $labels['move'] = 'Verschieben'; $labels['moveto'] = 'Verschieben nach...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Download'; $labels['open'] = 'Öffnen'; $labels['showattachment'] = 'Anzeigen'; $labels['showanyway'] = 'Trotzdem anzeigen'; - $labels['filename'] = 'Dateiname'; $labels['filesize'] = 'Dateigrösse'; - $labels['addtoaddressbook'] = 'Ins Adressbuch übernehmen'; - -// weekdays short $labels['sun'] = 'So'; $labels['mon'] = 'Mo'; $labels['tue'] = 'Di'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mi'; $labels['thu'] = 'Do'; $labels['fri'] = 'Fr'; $labels['sat'] = 'Sa'; - -// weekdays long $labels['sunday'] = 'Sonntag'; $labels['monday'] = 'Montag'; $labels['tuesday'] = 'Dienstag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mittwoch'; $labels['thursday'] = 'Donnerstag'; $labels['friday'] = 'Freitag'; $labels['saturday'] = 'Samstag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mär'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dez'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'März'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Dezember'; - $labels['today'] = 'Heute'; - -// toolbar buttons $labels['refresh'] = 'Aktualisieren'; $labels['checkmail'] = 'Auf neue Nachrichten prüfen'; $labels['compose'] = 'Schreiben'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mehr ...'; $labels['more'] = 'Mehr'; $labels['back'] = 'Zurück'; $labels['options'] = 'Optionen'; - $labels['select'] = 'Auswählen'; $labels['all'] = 'Alle'; $labels['none'] = 'Keine'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Alle aufklappen'; $labels['expand-unread'] = 'Ungelesene aufklappen'; $labels['collapse-all'] = 'Alle zuklappen'; $labels['threaded'] = 'Gruppiert'; - $labels['autoexpand_threads'] = 'Konversationen aufklappen'; $labels['do_expand'] = 'alle'; $labels['expand_only_unread'] = 'nur ungelesene'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Spalten'; $labels['listsorting'] = 'Sortierung'; $labels['listorder'] = 'Ordnung'; $labels['listmode'] = 'Anzeigemodus'; - $labels['folderactions'] = 'Ordneraktionen...'; $labels['compact'] = 'Packen'; $labels['empty'] = 'Leeren'; $labels['importmessages'] = 'Nachrichten importieren'; - $labels['quota'] = 'Verwendeter Speicherplatz'; $labels['unknown'] = 'unbekannt'; $labels['unlimited'] = 'unlimitiert'; - $labels['quicksearch'] = 'Schnellsuche'; $labels['resetsearch'] = 'Löschen'; $labels['searchmod'] = 'Suchkriterien ändern'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Ganze Nachricht'; $labels['body'] = 'Inhalt'; $labels['type'] = 'Typ'; $labels['namex'] = 'Name'; - $labels['openinextwin'] = 'In neuem Fenster öffnen'; $labels['emlsave'] = 'Herunterladen (.eml)'; $labels['changeformattext'] = 'Als reiner Text anzeigen'; $labels['changeformathtml'] = 'Als original HTML anzeigen'; - -// message compose $labels['editasnew'] = 'Als neue Nachricht öffnen'; $labels['send'] = 'Senden'; $labels['sendmessage'] = 'Nachricht jetzt senden'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Empfangsbestätigung (MDN)'; $labels['dsn'] = 'Übermittlungsbestätigung (DSN)'; $labels['mailreplyintro'] = 'Am $date, schrieb $sender:'; $labels['originalmessage'] = 'Originalnachricht'; - $labels['editidents'] = 'Absender bearbeiten'; $labels['spellcheck'] = 'Rechtschreibung'; $labels['checkspelling'] = 'Rechtschreibung prüfen'; $labels['resumeediting'] = 'Bearbeitung fortsetzen'; $labels['revertto'] = 'Zurück zu'; - $labels['attach'] = 'Anhängen'; $labels['attachments'] = 'Anhänge'; $labels['upload'] = 'Hochladen'; $labels['uploadprogress'] = '$percent ($current von $total)'; $labels['close'] = 'Schliessen'; $labels['messageoptions'] = 'Optionen...'; - $labels['low'] = 'Niedrig'; $labels['lowest'] = 'Niedrigste'; $labels['normal'] = 'Normal'; $labels['high'] = 'Hoch'; $labels['highest'] = 'Höchste'; - $labels['nosubject'] = '(kein Betreff)'; $labels['showimages'] = 'Bilder anzeigen'; $labels['alwaysshow'] = 'Bilder von $sender immer zeigen'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Dies ist ein Entwurf'; $labels['andnmore'] = '$nr weitere...'; $labels['togglemoreheaders'] = 'Weitere Kopfzeilen anzeigen'; $labels['togglefullheaders'] = 'Original-Kopfzeilen ein-/ausblenden'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Klartext'; $labels['savesentmessagein'] = 'Nachricht speichern in'; $labels['dontsave'] = 'nicht speichern'; $labels['maxuploadsize'] = 'Maximal erlaubte Dateigrösse ist $size'; - $labels['addcc'] = 'Cc hinzufügen'; $labels['addbcc'] = 'Bcc hinzufügen'; $labels['addreplyto'] = 'Antwortadresse hinzufügen'; $labels['addfollowupto'] = 'Followup-To hinzufügen'; - -// mdn $labels['mdnrequest'] = 'Der Sender dieser Nachricht hat eine Empfangsbestätigung angefordert. Möchten Sie diese jetzt senden?'; $labels['receiptread'] = 'Empfangsbestätigung (gelesen)'; $labels['yourmessage'] = 'Dieses ist eine Empfangsbestätigung für Ihre Nachricht'; $labels['receiptnote'] = 'Hinweis: Der Empfänger hat den Empfang der Nachricht bestätigt. Dieses ist keine Garantie, dass die Nachricht gelesen und verstanden wurde.'; - -// address boook $labels['name'] = 'Anzeigename'; $labels['firstname'] = 'Vorname'; $labels['surname'] = 'Nachname'; @@ -305,7 +265,6 @@ $labels['search'] = 'Suche'; $labels['advsearch'] = 'Erweiterte Suche'; $labels['advanced'] = 'Erweitert'; $labels['other'] = 'Andere'; - $labels['typehome'] = 'Zuhause'; $labels['typework'] = 'Arbeit'; $labels['typeother'] = 'Andere'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Homepage'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Feld hinzufügen...'; $labels['addcontact'] = 'Kontakt hinzufügen'; $labels['editcontact'] = 'Kontakt bearbeiten'; $labels['contacts'] = 'Kontakte'; $labels['contactproperties'] = 'Kontaktdaten'; $labels['personalinfo'] = 'Persönliche Informationen'; - $labels['edit'] = 'Bearbeiten'; $labels['cancel'] = 'Abbrechen'; $labels['save'] = 'Speichern'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Umbenennen'; $labels['addphoto'] = 'Hinzufügen'; $labels['replacephoto'] = 'Ersetzen'; $labels['uploadphoto'] = 'Bild hochladen'; - $labels['newcontact'] = 'Neuen Kontakt erfassen'; $labels['deletecontact'] = 'Gewählte Kontakte löschen'; $labels['composeto'] = 'Nachricht verfassen'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Neue Adressgruppe erstellen'; $labels['grouprename'] = 'Gruppe umbenennen'; $labels['groupdelete'] = 'Gruppe löschen'; $labels['groupremoveselected'] = 'Gewählte Kontakte aus Gruppe entfernen'; - $labels['previouspage'] = 'Eine Seite zurück'; $labels['firstpage'] = 'Erste Seite'; $labels['nextpage'] = 'Nächste Seite'; $labels['lastpage'] = 'Letzte Seite'; - $labels['group'] = 'Gruppe'; $labels['groups'] = 'Gruppen'; $labels['listgroup'] = 'Gruppenmitglieder anzeigen'; $labels['personaladrbook'] = 'Persönliches Adressbuch'; - $labels['searchsave'] = 'Suche speichern'; $labels['searchdelete'] = 'Suche löschen'; - $labels['import'] = 'Importieren'; $labels['importcontacts'] = 'Adressen importieren'; $labels['importfromfile'] = 'Import aus Datei:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Alle (nicht vorhandene Gruppen erstellen)'; $labels['importgroupsexisting'] = 'Für für existierende Gruppen'; $labels['importdesc'] = 'Sie können Kontakte aus einem bestehenden Adressbuch hochladen.rnEs können Adressbücher im vCard- oder CSV-Format importiert werden.'; $labels['done'] = 'Fertig'; - -// settings $labels['settingsfor'] = 'Einstellungen für'; $labels['about'] = 'Über'; $labels['preferences'] = 'Einstellungen'; $labels['userpreferences'] = 'Benutzereinstellungen'; $labels['editpreferences'] = 'Einstellungen bearbeiten'; - $labels['identities'] = 'Absender'; $labels['manageidentities'] = 'Absender für dieses Konto verwalten'; $labels['newidentity'] = 'Neuer Absender'; - $labels['newitem'] = 'Neuer Eintrag'; $labels['edititem'] = 'Eintrag bearbeiten'; - $labels['preferhtml'] = 'HTML bevorzugen'; $labels['defaultcharset'] = 'Standard-Zeichensatz'; $labels['htmlmessage'] = 'HTML Nachricht'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Popups als normale Browserfenster öffnen'; $labels['forwardmode'] = 'Weiterleiten einer Nachricht'; $labels['inline'] = 'eingebettet'; $labels['asattachment'] = 'als Anhang'; - $labels['folder'] = 'Ordner'; $labels['folders'] = 'Ordner'; $labels['foldername'] = 'Ordnername'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Ordnertyp'; $labels['personalfolder'] = 'Privater Ordner'; $labels['otherfolder'] = 'Order eines anderen Benutzers'; $labels['sharedfolder'] = 'Öffentlicher Ordner'; - $labels['sortby'] = 'Sortieren nach'; $labels['sortasc'] = 'aufsteigend sortieren'; $labels['sortdesc'] = 'absteigend sortieren'; $labels['undo'] = 'Rückgängig'; - $labels['installedplugins'] = 'Installierte Plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Quellcode'; $labels['license'] = 'Lizenz'; $labels['support'] = 'Support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Englisch'; $labels['westerneuropean'] = 'Westeuropäisch'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamesisch'; $labels['japanese'] = 'Japanisch'; $labels['korean'] = 'Koreanisch'; $labels['chinese'] = 'Chinesisch'; - ?> diff --git a/program/localization/de_CH/messages.inc b/program/localization/de_CH/messages.inc index 13615d4a7..3899a9b8e 100644 --- a/program/localization/de_CH/messages.inc +++ b/program/localization/de_CH/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Konnte den Ordner nicht erstellen/verschieben. $messages['messagetoobig'] = 'Die Nachricht ist zu gross und kann nicht verarbeitet werden.'; $messages['attachmentvalidationerror'] = 'WARNUNG! Dieser Anhang ist verdächtig, da sein Dateityp nicht dem entspricht, was in der Nachricht angegeben wird. Wenn Sie dem Absender nicht vertrauen, sollten Sie diesen Anhang nicht im Browser öffnen, da er Ihrem Computer Schaden zuführen könnte.

Erwartet: $expected; gefunden: $detected'; $messages['noscriptwarning'] = 'Achtung! Dieser Webmail-Service erfordert Javascript. Um ihn zu benutzten aktivieren Sie Javascript in ihren Browser-Einstellungen.'; - ?> diff --git a/program/localization/de_DE/labels.inc b/program/localization/de_DE/labels.inc index 662ad2c70..d7565924a 100644 --- a/program/localization/de_DE/labels.inc +++ b/program/localization/de_DE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; $labels['password'] = 'Passwort'; $labels['server'] = 'Server'; $labels['login'] = 'Anmelden'; - -// taskbar $labels['logout'] = 'Abmelden'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Einstellungen'; $labels['addressbook'] = 'Adressbuch'; - -// mailbox names $labels['inbox'] = 'Posteingang'; $labels['drafts'] = 'Entwürfe'; $labels['sent'] = 'Gesendet'; $labels['trash'] = 'Gelöscht'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Echte Namen für Spezialordner anzeigen'; - -// message listing $labels['subject'] = 'Betreff'; $labels['from'] = 'Von'; $labels['sender'] = 'Absender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorität'; $labels['organization'] = 'Organisation'; $labels['readstatus'] = 'Gelesen/Ungelesen'; $labels['listoptions'] = 'Listenoptionen...'; - $labels['mailboxlist'] = 'Ordner'; $labels['messagesfromto'] = 'Nachrichten $from bis $to von $count'; $labels['threadsfromto'] = 'Konversationen $from bis $to von $count'; $labels['messagenrof'] = 'Nachricht $nr von $count'; $labels['fromtoshort'] = '$from – $to von $count'; - $labels['copy'] = 'Kopieren'; $labels['move'] = 'Verschieben'; $labels['moveto'] = 'Verschieben nach...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Herunterladen'; $labels['open'] = 'Offen'; $labels['showattachment'] = 'Anzeigen'; $labels['showanyway'] = 'Trotzdem anzeigen'; - $labels['filename'] = 'Dateiname'; $labels['filesize'] = 'Dateigröße'; - $labels['addtoaddressbook'] = 'Ins Adressbuch übernehmen'; - -// weekdays short $labels['sun'] = 'So'; $labels['mon'] = 'Mo'; $labels['tue'] = 'Di'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mi'; $labels['thu'] = 'Do'; $labels['fri'] = 'Fr'; $labels['sat'] = 'Sa'; - -// weekdays long $labels['sunday'] = 'Sonntag'; $labels['monday'] = 'Montag'; $labels['tuesday'] = 'Dienstag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mittwoch'; $labels['thursday'] = 'Donnerstag'; $labels['friday'] = 'Freitag'; $labels['saturday'] = 'Samstag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mär'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dez'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'März'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Dezember'; - $labels['today'] = 'Heute'; - -// toolbar buttons $labels['refresh'] = 'Aktualisieren'; $labels['checkmail'] = 'Auf neue Nachrichten überprüfen'; $labels['compose'] = 'Schreiben'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mehr...'; $labels['more'] = 'Mehr'; $labels['back'] = 'Zurück'; $labels['options'] = 'Optionen'; - $labels['select'] = 'Auswahl'; $labels['all'] = 'Alle'; $labels['none'] = 'Keine'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Alle aufklappen'; $labels['expand-unread'] = 'Ungelesene aufklappen'; $labels['collapse-all'] = 'Alle zuklappen'; $labels['threaded'] = 'Gruppiert'; - $labels['autoexpand_threads'] = 'Konversationen aufklappen'; $labels['do_expand'] = 'alle'; $labels['expand_only_unread'] = 'nur ungelesene'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Spalten'; $labels['listsorting'] = 'Sortierung'; $labels['listorder'] = 'Ordnung'; $labels['listmode'] = 'Anzeigemodus'; - $labels['folderactions'] = 'Ordneraktionen...'; $labels['compact'] = 'Packen'; $labels['empty'] = 'Leeren'; $labels['importmessages'] = 'Nachrichten importieren'; - $labels['quota'] = 'Speicherplatz'; $labels['unknown'] = 'unbekannt'; $labels['unlimited'] = 'unbegrenzt'; - $labels['quicksearch'] = 'Schnellsuche'; $labels['resetsearch'] = 'Suche zurücksetzen'; $labels['searchmod'] = 'Suchkriterien ändern'; $labels['msgtext'] = 'Nachricht'; $labels['body'] = 'Inhalt'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'In neuem Fenster öffnen'; $labels['emlsave'] = 'Lokal speichern (.eml)'; $labels['changeformattext'] = 'Als reiner Text anzeigen'; $labels['changeformathtml'] = 'Als original HTML anzeigen'; - -// message compose $labels['editasnew'] = 'Als neue Nachricht öffnen'; $labels['send'] = 'Senden'; $labels['sendmessage'] = 'Nachricht jetzt senden'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Empfangsbestätigung (MDN)'; $labels['dsn'] = 'Übermittlungsbestätigung (DSN)'; $labels['mailreplyintro'] = 'Am $date, schrieb $sender:'; $labels['originalmessage'] = 'Originalnachricht'; - $labels['editidents'] = 'Absender ändern'; $labels['spellcheck'] = 'Rechtschreibung'; $labels['checkspelling'] = 'Rechtschreibung prüfen'; $labels['resumeediting'] = 'Bearbeitung fortsetzen'; $labels['revertto'] = 'Zurück zu'; - $labels['attach'] = 'Anhängen'; $labels['attachments'] = 'Anhänge'; $labels['upload'] = 'Hochladen'; $labels['uploadprogress'] = '$percent ($current von $total)'; $labels['close'] = 'Schließen'; $labels['messageoptions'] = 'Optionen...'; - $labels['low'] = 'Niedrig'; $labels['lowest'] = 'Niedrigste'; $labels['normal'] = 'Normal'; $labels['high'] = 'Hoch'; $labels['highest'] = 'Höchste'; - $labels['nosubject'] = '(kein Betreff)'; $labels['showimages'] = 'Bilder anzeigen'; $labels['alwaysshow'] = 'Bilder von $sender immer zeigen'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dies ist ein Entwurf'; $labels['andnmore'] = '$nr weitere'; $labels['togglemoreheaders'] = 'Zeige weitere Nachrichten-Header'; $labels['togglefullheaders'] = 'Original-Kopfzeilen ein-/ausblenden'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Nur-Text'; $labels['savesentmessagein'] = 'Nachricht speichern in'; $labels['dontsave'] = 'nicht speichern'; $labels['maxuploadsize'] = 'Maximal erlaubte Dateigröße ist $size'; - $labels['addcc'] = 'Cc hinzufügen'; $labels['addbcc'] = 'Bcc hinzufügen'; $labels['addreplyto'] = 'Antwortadresse hinzufügen'; $labels['addfollowupto'] = 'Followup-To hinzufügen'; - -// mdn $labels['mdnrequest'] = 'Der Sender dieser Nachricht möchte gerne eine Lesebestätigung. Wollen Sie dieses bestätigen?'; $labels['receiptread'] = 'Empfangsbestätigung (gelesen)'; $labels['yourmessage'] = 'Dies ist eine Empfangsbestätigung für Ihre Nachricht'; $labels['receiptnote'] = 'Hinweis: Der Empfänger hat den Empfang der Nachricht bestätigt. Dies ist keine Garantie, dass die Nachricht gelesen und verstanden wurde.'; - -// address boook $labels['name'] = 'Angezeigter Name'; $labels['firstname'] = 'Vorname'; $labels['surname'] = 'Nachname'; @@ -304,7 +264,6 @@ $labels['search'] = 'Suche'; $labels['advsearch'] = 'Detaillierte Suche'; $labels['advanced'] = 'Erweitert'; $labels['other'] = 'Andere'; - $labels['typehome'] = 'Privat'; $labels['typework'] = 'Dienstlich'; $labels['typeother'] = 'Andere'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistenz'; $labels['typehomepage'] = 'Internet'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Feld hinzufügen...'; $labels['addcontact'] = 'Kontakt hinzufügen'; $labels['editcontact'] = 'Kontakt bearbeiten'; $labels['contacts'] = 'Kontakte'; $labels['contactproperties'] = 'Kontaktdaten'; $labels['personalinfo'] = 'Persönliche Informationen'; - $labels['edit'] = 'Bearbeiten'; $labels['cancel'] = 'Abbrechen'; $labels['save'] = 'Speichern'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Umbenennen'; $labels['addphoto'] = 'Kontaktbild hinzufügen'; $labels['replacephoto'] = 'Bild ändern'; $labels['uploadphoto'] = 'Bild hochladen'; - $labels['newcontact'] = 'Neuen Kontakt erstellen'; $labels['deletecontact'] = 'Gewählte Kontakte löschen'; $labels['composeto'] = 'Nachricht verfassen'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Neue Kontaktgruppe erstellen'; $labels['grouprename'] = 'Gruppe umbenennen'; $labels['groupdelete'] = 'Gruppe löschen'; $labels['groupremoveselected'] = 'Gewählte Kontakte aus Gruppe entfernen'; - $labels['previouspage'] = 'Seite zurück'; $labels['firstpage'] = 'Erste Seite'; $labels['nextpage'] = 'Nächste Seite'; $labels['lastpage'] = 'Letzte Seite'; - $labels['group'] = 'Gruppe'; $labels['groups'] = 'Gruppen'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Persönliches Adressbuch'; - $labels['searchsave'] = 'Suchergebnisse speichern'; $labels['searchdelete'] = 'Suchergebnisse löschen'; - $labels['import'] = 'Importieren'; $labels['importcontacts'] = 'Kontakte importieren'; $labels['importfromfile'] = 'Import aus Datei:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Einen neuen Kontakt hinzufügen:'; $labels['importreplace'] = 'Bestehendes Adressbuch komplett ersetzen'; $labels['importdesc'] = 'Sie können Kontakte von einem vorhandenen Adressbuch hochladen.
Zur Zeit wird der Import von Adressen im vCard oder CSVFormat unterstützt.'; $labels['done'] = 'Fertig'; - -// settings $labels['settingsfor'] = 'Einstellungen für'; $labels['about'] = 'Über'; $labels['preferences'] = 'Einstellungen'; $labels['userpreferences'] = 'Benutzereinstellungen'; $labels['editpreferences'] = 'Benutzereinstellungen bearbeiten'; - $labels['identities'] = 'Identitäten'; $labels['manageidentities'] = 'Absender für dieses Konto verwalten'; $labels['newidentity'] = 'Neuer Absender'; - $labels['newitem'] = 'Neuer Eintrag'; $labels['edititem'] = 'Eintrag bearbeiten'; - $labels['preferhtml'] = 'HTML anzeigen'; $labels['defaultcharset'] = 'Standard Zeichensatz'; $labels['htmlmessage'] = 'HTML-Nachricht'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Popups als Standard Windows behandeln'; $labels['forwardmode'] = 'Nachrichtenweiterleitung'; $labels['inline'] = 'eingebettet'; $labels['asattachment'] = 'als Anhang'; - $labels['folder'] = 'Ordner'; $labels['folders'] = 'Ordner'; $labels['foldername'] = 'Ordnername'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Ordnertyp'; $labels['personalfolder'] = 'Privater Ordner'; $labels['otherfolder'] = 'Ordner eines anderen Benutzers'; $labels['sharedfolder'] = 'Öffentlicher Ordner'; - $labels['sortby'] = 'Sortieren nach'; $labels['sortasc'] = 'Aufsteigend sortieren'; $labels['sortdesc'] = 'Absteigend sortieren'; $labels['undo'] = 'Rückgängig machen'; - $labels['installedplugins'] = 'Installierte Plugins'; $labels['plugin'] = 'Erweiterung'; $labels['version'] = 'Version'; $labels['source'] = 'Quellcode'; $labels['license'] = 'Lizenz'; $labels['support'] = 'Support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Englisch'; $labels['westerneuropean'] = 'West Europäisch'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamesisch'; $labels['japanese'] = 'Japanisch'; $labels['korean'] = 'Koreanisch'; $labels['chinese'] = 'Chinesisch'; - ?> diff --git a/program/localization/de_DE/messages.inc b/program/localization/de_DE/messages.inc index 7b6099924..c931b026a 100644 --- a/program/localization/de_DE/messages.inc +++ b/program/localization/de_DE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Konnte den Ordner nicht erstellen/verschieben. $messages['messagetoobig'] = 'Die Nachricht ist zu gross und kann nicht verarbeitet werden.'; $messages['attachmentvalidationerror'] = 'WARNUNG! Dieser Anhang ist verdächtig, weil sein Typ nicht dem in der Nachricht deklarierten Typ entspricht. Wenn Sie dem Sender nicht trauen, sollten Sie den Anhang nicht öffnen, weil er schadhaften Inhalte beinhalten könnte.

Erwartet: $expected; gefunden: $detected'; $messages['noscriptwarning'] = 'Warnung: Dieser Webmail-Service erfordert Javascript. Um ihn zu benutzten aktivieren Sie Javascript in ihren Browser-Einstellungen.'; - ?> diff --git a/program/localization/el_GR/labels.inc b/program/localization/el_GR/labels.inc index d3030e574..054cf4990 100644 --- a/program/localization/el_GR/labels.inc +++ b/program/localization/el_GR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Καλώς ήρθατε στο $product'; $labels['username'] = 'Όνομα Χρήστη'; $labels['password'] = 'Κωδικός Πρόσβασης'; $labels['server'] = 'Εξυπηρετητής'; $labels['login'] = 'Σύνδεση'; - -// taskbar $labels['logout'] = 'Αποσύνδεση'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Ρυθμίσεις'; $labels['addressbook'] = 'Επαφές'; - -// mailbox names $labels['inbox'] = 'Εισερχόμενα'; $labels['drafts'] = 'Πρόχειρα'; $labels['sent'] = 'Απεσταλμένα'; $labels['trash'] = 'Κάδος Απορριμάτων'; $labels['junk'] = 'Ανεπιθύμητα'; $labels['show_real_foldernames'] = 'Εμφάνιση πραγματικών ονομάτων για ειδικούς φακέλους'; - -// message listing $labels['subject'] = 'Θέμα'; $labels['from'] = 'Αποστολέας'; $labels['sender'] = 'Αποστολέας'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Πρoτεραιότητα'; $labels['organization'] = 'Οργανισμός'; $labels['readstatus'] = 'Κατάσταση ανάγνωσης'; $labels['listoptions'] = 'Κατάλογος επιλογών'; - $labels['mailboxlist'] = 'Φάκελοι'; $labels['messagesfromto'] = 'Μηνύματα $from από $to έως $count'; $labels['threadsfromto'] = 'Θέματα $from έως $to από $count'; $labels['messagenrof'] = 'Μήνυμα $nr από $count'; $labels['fromtoshort'] = '$from – $to από $count'; - $labels['copy'] = 'Αντιγραφή'; $labels['move'] = 'Μετακίνηση'; $labels['moveto'] = 'Μετακίνηση σε...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Λήψη'; $labels['open'] = 'Ανοιγμα'; $labels['showattachment'] = 'Εμφάνιση'; $labels['showanyway'] = 'Εμφάνιση'; - $labels['filename'] = 'Όνομα αρχείου'; $labels['filesize'] = 'Μέγεθος αρχείου'; - $labels['addtoaddressbook'] = 'Προσθήκη στο βιβλίο διευθύνσεων'; - -// weekdays short $labels['sun'] = 'Κυρ'; $labels['mon'] = 'Δευτ'; $labels['tue'] = 'Τρι'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Τετ'; $labels['thu'] = 'Πεμπ'; $labels['fri'] = 'Παρ'; $labels['sat'] = 'Σαβ'; - -// weekdays long $labels['sunday'] = 'Κυριακή'; $labels['monday'] = 'Δευτέρα'; $labels['tuesday'] = 'Τρίτη'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Τετάρτη'; $labels['thursday'] = 'Πέμπτη'; $labels['friday'] = 'Παρασκευή'; $labels['saturday'] = 'Σάββατο'; - -// months short $labels['jan'] = 'Ιαν'; $labels['feb'] = 'Φεβ'; $labels['mar'] = 'Μαρ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Σεπ'; $labels['oct'] = 'Οκτ'; $labels['nov'] = 'Νοε'; $labels['dec'] = 'Δεκ'; - -// months long $labels['longjan'] = 'Ιανουάριος'; $labels['longfeb'] = 'Φεβρουάριος'; $labels['longmar'] = 'Μάρτιος'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Σεπτέμβριος'; $labels['longoct'] = 'Οκτώβριος'; $labels['longnov'] = 'Νοέμβριος'; $labels['longdec'] = 'Δεκέμβριος'; - $labels['today'] = 'Σήμερα'; - -// toolbar buttons $labels['refresh'] = 'Ανανέωση'; $labels['checkmail'] = 'Έλεγχος για νέα μηνύματα'; $labels['compose'] = 'Δημιουργία μηνύματος'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Περισσότερες ενέργειες...'; $labels['more'] = 'Περισσότερα'; $labels['back'] = 'Επιστροφή'; $labels['options'] = 'Επιλογές'; - $labels['select'] = 'Επιλέξτε'; $labels['all'] = 'Όλα'; $labels['none'] = 'Κανένα'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Ανάπτυξη όλων'; $labels['expand-unread'] = 'Ανάπτυξη των μη αναγνωσμένων'; $labels['collapse-all'] = 'Σύμπτυξη όλων'; $labels['threaded'] = 'Θεματοποιημένα'; - $labels['autoexpand_threads'] = 'Ανάπτυξη θεματοποιημένων μηνυμάτων'; $labels['do_expand'] = 'όλα τα θέματα'; $labels['expand_only_unread'] = 'μόνο με τα μη αναγνωσμένα μηνύματα'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Στήλες'; $labels['listsorting'] = 'Ταξινόμηση στηλών'; $labels['listorder'] = 'Σειρά ταξινόμησης'; $labels['listmode'] = 'Προβολή σε λίστα'; - $labels['folderactions'] = 'Ενέργειες στους φακέλους'; $labels['compact'] = 'Συμπίεση'; $labels['empty'] = 'Άδειασμα'; $labels['importmessages'] = 'Εισαγωγή μηνυμάτων'; - $labels['quota'] = 'Χρήση δίσκου'; $labels['unknown'] = 'άγνωστο'; $labels['unlimited'] = 'απεριόριστο'; - $labels['quicksearch'] = 'Γρήγορη Αναζήτηση'; $labels['resetsearch'] = 'Επαναφορά Αναζήτησης'; $labels['searchmod'] = 'Aλλαγή αναζήτησης'; $labels['msgtext'] = 'Σε όλο το μήνυμα'; $labels['body'] = 'Σώμα'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Άνοιγμα σε νέο παράθυρο'; $labels['emlsave'] = 'Λήψη αρχείου (.eml)'; $labels['changeformattext'] = 'Εμφάνιση σε μορφή απλού κειμένου'; $labels['changeformathtml'] = 'Εμφάνιση σε μορφή HTML'; - -// message compose $labels['editasnew'] = 'Επεξεργασία σαν νέο'; $labels['send'] = 'Αποστολή'; $labels['sendmessage'] = 'Αποστολή μηνύματος'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Αναφορά Παράδοσης'; $labels['dsn'] = 'Κατάσταση αναφοράς παράδοσης'; $labels['mailreplyintro'] = 'Στις $date, $sender έγραψε:'; $labels['originalmessage'] = 'Αρχικό μήνυμα'; - $labels['editidents'] = 'Επεξεργασία ταυτοτήτων'; $labels['spellcheck'] = 'Συλλαβισμός'; $labels['checkspelling'] = 'Έλεγχος ορθογραφίας'; $labels['resumeediting'] = 'Συνέχεια επεξεργασίας'; $labels['revertto'] = 'Επαναφορά στο'; - $labels['attach'] = 'Επισύναψη'; $labels['attachments'] = 'Συνημμένα'; $labels['upload'] = 'Φόρτωση'; $labels['uploadprogress'] = '$percent ($current από $total)'; $labels['close'] = 'Κλείσιμο'; $labels['messageoptions'] = 'Επιλογές μηνύματος'; - $labels['low'] = 'Χαμηλή'; $labels['lowest'] = 'Χαμηλότερη'; $labels['normal'] = 'Κανονική'; $labels['high'] = 'Υψηλή'; $labels['highest'] = 'Μέγιστη δυνατή'; - $labels['nosubject'] = '(χωρίς θέμα)'; $labels['showimages'] = 'Προβολή εικόνων'; $labels['alwaysshow'] = 'Να προβάλλονται πάντα οι εικόνες που αποστέλλονται από τον $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Αυτό το μήνυμα έχει σημανθεί σ $labels['andnmore'] = '$nr περισσότερα...'; $labels['togglemoreheaders'] = 'Εμφάνιση περισσότερων κεφαλίδων'; $labels['togglefullheaders'] = 'Εμφάνιση ακατέργαστων κεφαλίδων μηνύματος'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Απλό κείμενο'; $labels['savesentmessagein'] = 'Αποθήκευση απεσταλμένου στο φάκελο'; $labels['dontsave'] = 'να μην αποθηκευθεί'; $labels['maxuploadsize'] = 'Το μέγιστο επιτρεπόμενο μέγεθος αρχείου είναι $size'; - $labels['addcc'] = 'Προσθήκη Παραλήπτη Κοινοποίησης'; $labels['addbcc'] = 'Προσθήκη Παραλήπτη Κρυφής Κοινοποίησης'; $labels['addreplyto'] = 'Προσθήκη Απάντησης-Στο'; $labels['addfollowupto'] = 'Προσθήκη Σε συνέχεια του'; - -// mdn $labels['mdnrequest'] = 'Ο αποστολέας αυτού του μηνύματος, έχει ζητήσει να ειδοποιηθεί όταν θα το διαβάσετε. Θέλετε να επιτρέψετε την ενημέρωσή του;'; $labels['receiptread'] = 'Αναφορά παράδοσης (διαβάστε την)'; $labels['yourmessage'] = 'Αυτό είναι μια αναφορά παράδοσης για το μήνυμά σας'; $labels['receiptnote'] = 'Σημείωση: Αυτή η αναφορά επιβεβαιώνει μόνο ότι το μήνυμά σας εμφανίστηκε στον υπολογιστή του παραλήπτη. Δεν επιβεβαιώνει ότι ο παραλήπτης έχει διαβάσει ή έχει κατανοήσει το περιεχόμενό του.'; - -// address boook $labels['name'] = 'Εμφανιζόμενο όνομα'; $labels['firstname'] = 'Όνομα'; $labels['surname'] = 'Επώνυμο'; @@ -304,7 +264,6 @@ $labels['search'] = 'Αναζήτηση'; $labels['advsearch'] = 'Προηγμένη Αναζήτηση'; $labels['advanced'] = 'Προχωρημένες ρυθμίσεις'; $labels['other'] = 'Άλλα'; - $labels['typehome'] = 'Οικία'; $labels['typework'] = 'Εργασία'; $labels['typeother'] = 'Άλλα'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Υπάλληλος'; $labels['typehomepage'] = 'Αρχική Σελίδα'; $labels['typeblog'] = 'Ιστολόγιο'; $labels['typeprofile'] = 'Προφίλ'; - $labels['addfield'] = 'Προσθήκη πεδίου...'; $labels['addcontact'] = 'Προσθήκη νέας επαφής'; $labels['editcontact'] = 'Επεξεργασία επαφής'; $labels['contacts'] = 'Επαφές'; $labels['contactproperties'] = 'Ιδιότητες επαφών'; $labels['personalinfo'] = 'Προσωπικές πληροφορίες'; - $labels['edit'] = 'Επεξεργασία'; $labels['cancel'] = 'Ακύρωση'; $labels['save'] = 'Αποθήκευση'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Μετονομασία'; $labels['addphoto'] = 'Προσθήκη'; $labels['replacephoto'] = 'Αντικατάσταση'; $labels['uploadphoto'] = 'Φόρτωση εικόνας'; - $labels['newcontact'] = 'Δημιουργία νέας κάρτας επαφής'; $labels['deletecontact'] = 'Διαγραφή επιλεγμένων επαφών'; $labels['composeto'] = 'Σύνθεση μηνύματος προς'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Δημιουργία νέας Ομάδας επα $labels['grouprename'] = 'Μετονομασία ομάδας'; $labels['groupdelete'] = 'Διαγραφή ομάδας'; $labels['groupremoveselected'] = 'Αφαίρεση επιλεγμένων επαφών από την ομάδα'; - $labels['previouspage'] = 'Εμφάνιση προηγούμενης σελίδας'; $labels['firstpage'] = 'Εμφάνιση της πρώτης σελίδας'; $labels['nextpage'] = 'Εμφάνιση επόμενης σελίδας'; $labels['lastpage'] = 'Εμφάνιση της τελευταίας σελίδας'; - $labels['group'] = 'Ομάδα'; $labels['groups'] = 'Ομάδες'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Προσωπικές Διυθύνσεις'; - $labels['searchsave'] = 'Αποθήκευση αναζήτησης'; $labels['searchdelete'] = 'Διαγραφή αποθηκευμένης αναζήτησης'; - $labels['import'] = 'Εισαγωγή'; $labels['importcontacts'] = 'Εισαγωγή επαφών'; $labels['importfromfile'] = 'Εισαγωγή από το αρχείο:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Προσθήκη νέων επαφών στο βιβ $labels['importreplace'] = 'Αντικατάσταση όλου του βιβλίου διευθύνσεων'; $labels['importdesc'] = 'Μπορείτε να ανεβάσετε επαφές από ένα υπάρχον βιβλίο διευθύνσεων.
Υποστηρίζεται η εισαγωγή διευθύνσεων από αρχεία τύπου vCard ή CSV (διαχωρισμένα με κόμμα).'; $labels['done'] = 'Ολοκληρώθηκε'; - -// settings $labels['settingsfor'] = 'Ρυθμίσεις για'; $labels['about'] = 'Σχετικά'; $labels['preferences'] = 'Προτιμήσεις'; $labels['userpreferences'] = 'Προτιμήσεις χρήστη'; $labels['editpreferences'] = 'Επεξεργασία προτιμήσεων χρήστη'; - $labels['identities'] = 'Ταυτότητες'; $labels['manageidentities'] = 'Διαχείριση ταυτοτήτων για αυτόν το λογαριασμό'; $labels['newidentity'] = 'Νέα ταυτότητα'; - $labels['newitem'] = 'Νέο αντικείμενο'; $labels['edititem'] = 'Επεξεργασία αντικειμένου'; - $labels['preferhtml'] = 'Προβολή σε HTML'; $labels['defaultcharset'] = 'Προεπιλεγμένη κωδικοποίηση χαρακτήρων'; $labels['htmlmessage'] = 'Μήνυμα σε μορφή HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Χειριστείτε τα αναδυόμενα $labels['forwardmode'] = 'Προώθηση μηνυμάτων'; $labels['inline'] = 'με εσνωμάτωση'; $labels['asattachment'] = 'σαν επισύναψη'; - $labels['folder'] = 'Φάκελος'; $labels['folders'] = 'Φάκελοι'; $labels['foldername'] = 'Όνομα φακέλου'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Τύπος φακέλου'; $labels['personalfolder'] = 'Προσωπικός φάκελος'; $labels['otherfolder'] = 'Φάκελοι άλλων χρηστών'; $labels['sharedfolder'] = 'Κοινόχρηστος φάκελος'; - $labels['sortby'] = 'Ταξινόμηση κατά'; $labels['sortasc'] = 'Αύξουσα ταξινόμηση'; $labels['sortdesc'] = 'Φθίνουσα ταξινόμηση'; $labels['undo'] = 'Αναίρεση'; - $labels['installedplugins'] = 'Εγκατεστημένα πρόσθετα'; $labels['plugin'] = 'Πρόσθετο'; $labels['version'] = 'Έκδοση'; $labels['source'] = 'Προέλευση'; $labels['license'] = 'Άδεια χρήσης'; $labels['support'] = 'Υποστήριξη'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Αγγλικά'; $labels['westerneuropean'] = 'Δυτικής Ευρώπης'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Βιετναμέζικα'; $labels['japanese'] = 'Ιαπωνικά'; $labels['korean'] = 'Κορεατικά'; $labels['chinese'] = 'Κινεζικά'; - ?> diff --git a/program/localization/el_GR/messages.inc b/program/localization/el_GR/messages.inc index 504baa674..0d51c7af6 100644 --- a/program/localization/el_GR/messages.inc +++ b/program/localization/el_GR/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Δεν είναι δυνατή η δημιου $messages['messagetoobig'] = 'Το τμήμα μήνυματος είναι πολύ μεγάλο για επεξεργασια. '; $messages['attachmentvalidationerror'] = 'ΠΡΟΕΙΔΟΠΟΊΗΣΗ! Αυτή η κατάσχεση είναι ύποπτη, επειδή ο τύπος δεν ταιριάζει με τον τύπο που δηλώνεται στο μήνυμα. Εάν δεν εμπιστεύεστε τον αποστολέα, δεν θα πρέπει να το ανοίγετε στο πρόγραμμα περιήγησης επειδή μπορεί να περιέχει κακόβουλο περιεχόμενο.

Expected: $expected; found: $detected '; $messages['noscriptwarning'] = 'Προειδοποίηση : Αυτή η υπηρεσία webmail απαιτεί Javascript! Για να ΤΟ χρησιμοποιήσετε ενεργοποιήστε τΟ JavaScript στις ρυθμίσεις του browser σας. '; - ?> diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc index f903b0cf5..dde825be6 100644 --- a/program/localization/en_GB/labels.inc +++ b/program/localization/en_GB/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Username'; $labels['password'] = 'Password'; $labels['server'] = 'Server'; $labels['login'] = 'Login'; - -// taskbar $labels['logout'] = 'Logout'; $labels['mail'] = 'Mail'; $labels['settings'] = 'Settings'; $labels['addressbook'] = 'Address Book'; - -// mailbox names $labels['inbox'] = 'Inbox'; $labels['drafts'] = 'Drafts'; $labels['sent'] = 'Sent'; $labels['trash'] = 'Deleted Items'; $labels['junk'] = 'Junk'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Subject'; $labels['from'] = 'From'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priority'; $labels['organization'] = 'Company'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Folders'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Copy'; $labels['move'] = 'Move'; $labels['moveto'] = 'Move to...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Download'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'File name'; $labels['filesize'] = 'File size'; - $labels['addtoaddressbook'] = 'Add to address book'; - -// weekdays short $labels['sun'] = 'Sun'; $labels['mon'] = 'Mon'; $labels['tue'] = 'Tue'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Wed'; $labels['thu'] = 'Thu'; $labels['fri'] = 'Fri'; $labels['sat'] = 'Sat'; - -// weekdays long $labels['sunday'] = 'Sunday'; $labels['monday'] = 'Monday'; $labels['tuesday'] = 'Tuesday'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Wednesday'; $labels['thursday'] = 'Thursday'; $labels['friday'] = 'Friday'; $labels['saturday'] = 'Saturday'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'January'; $labels['longfeb'] = 'February'; $labels['longmar'] = 'March'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'October'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Today'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Check for new messages'; $labels['compose'] = 'Compose'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Select'; $labels['all'] = 'All'; $labels['none'] = 'None'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Compact'; $labels['empty'] = 'Empty'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'unknown'; $labels['unlimited'] = 'unlimited'; - $labels['quicksearch'] = 'Quick search'; $labels['resetsearch'] = 'Reset search'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send now'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Check spelling'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Attachments'; $labels['upload'] = 'Upload'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Close'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; $labels['high'] = 'High'; $labels['highest'] = 'Highest'; - $labels['nosubject'] = '(no subject)'; $labels['showimages'] = 'Display images'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Display Name'; $labels['firstname'] = 'First Name'; $labels['surname'] = 'Last Name'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Add new contact'; $labels['editcontact'] = 'Edit contact'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Edit'; $labels['cancel'] = 'Cancel'; $labels['save'] = 'Save'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Create new contact card'; $labels['deletecontact'] = 'Delete selected contacts'; $labels['composeto'] = 'Compose mail to'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Show previous set'; $labels['firstpage'] = 'Show first set'; $labels['nextpage'] = 'Show next set'; $labels['lastpage'] = 'Show last set'; - $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Settings for'; $labels['about'] = 'About'; $labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'User preferences'; $labels['editpreferences'] = 'Edit user preferences'; - $labels['identities'] = 'Identities'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'New identity'; - $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; - $labels['preferhtml'] = 'Display HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Message'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Folders'; $labels['foldername'] = 'Folder name'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Sort by'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'Licence'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/en_GB/messages.inc b/program/localization/en_GB/messages.inc index 9509451ed..a034268df 100644 --- a/program/localization/en_GB/messages.inc +++ b/program/localization/en_GB/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/eo/labels.inc b/program/localization/eo/labels.inc index 3c2930c89..cc4271d98 100644 --- a/program/localization/eo/labels.inc +++ b/program/localization/eo/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bonvenon al $product'; $labels['username'] = 'Uzantnomo'; $labels['password'] = 'Pasvorto'; $labels['server'] = 'Servilo'; $labels['login'] = 'Ensaluti'; - -// taskbar $labels['logout'] = 'Elsaluti'; $labels['mail'] = 'Retpoŝto'; $labels['settings'] = 'Agordoj'; $labels['addressbook'] = 'Adresaro'; - -// mailbox names $labels['inbox'] = 'Ricevitujo'; $labels['drafts'] = 'Malnetujo'; $labels['sent'] = 'Senditujo'; $labels['trash'] = 'Rubujo'; $labels['junk'] = 'Spamujo'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Temo'; $labels['from'] = 'Sendanto'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritato'; $labels['organization'] = 'Organizo'; $labels['readstatus'] = 'Legis statuson'; $labels['listoptions'] = 'List-agordoj...'; - $labels['mailboxlist'] = 'Dosierujoj'; $labels['messagesfromto'] = 'Mesaĝoj ekde $from ĝis $to de $count'; $labels['threadsfromto'] = 'Fadenoj $from al $to de $count'; $labels['messagenrof'] = 'Mesaĝo $nr-a de $count'; $labels['fromtoshort'] = '$from - $to de $count'; - $labels['copy'] = 'Kopii'; $labels['move'] = 'Movi'; $labels['moveto'] = 'transloku al...'; @@ -68,13 +59,9 @@ $labels['download'] = 'elŝutu'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Dosiernomo'; $labels['filesize'] = 'Dosiergrando'; - $labels['addtoaddressbook'] = 'Aldonu al adresaro'; - -// weekdays short $labels['sun'] = 'Dim'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mer'; $labels['thu'] = 'Ĵaŭ'; $labels['fri'] = 'Ven'; $labels['sat'] = 'Sab'; - -// weekdays long $labels['sunday'] = 'Dimanĉo'; $labels['monday'] = 'Lundo'; $labels['tuesday'] = 'Mardo'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Merkredo'; $labels['thursday'] = 'Ĵaŭdo'; $labels['friday'] = 'Vendredo'; $labels['saturday'] = 'Sabato'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Januaro'; $labels['longfeb'] = 'Februaro'; $labels['longmar'] = 'Marto'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembro'; $labels['longoct'] = 'Oktobro'; $labels['longnov'] = 'Novembro'; $labels['longdec'] = 'Decembro'; - $labels['today'] = 'Hodiaŭ'; - -// toolbar buttons $labels['refresh'] = 'Aktualigi'; $labels['checkmail'] = 'Kontroli por novaj mesaĝoj'; $labels['compose'] = 'Verki'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Pliaj agoj'; $labels['more'] = 'Pli'; $labels['back'] = 'Malantaŭen'; $labels['options'] = 'Agordoj'; - $labels['select'] = 'Elektu'; $labels['all'] = 'Ĉion'; $labels['none'] = 'Nenion'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Malfaldi ĉion'; $labels['expand-unread'] = 'Malfaldi Nelegitajn'; $labels['collapse-all'] = 'Faldi ĉion'; $labels['threaded'] = 'Fadenita'; - $labels['autoexpand_threads'] = 'Malfaldi mesaĝ-fadenojn'; $labels['do_expand'] = 'Ĉiuj fadenoj'; $labels['expand_only_unread'] = 'Nur kun nelegitaj mesaĝoj'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List-rubrikoj'; $labels['listsorting'] = 'Ordig-rubriko'; $labels['listorder'] = 'Ordig-ordo'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Dosierujo-agoj'; $labels['compact'] = 'Kompakta'; $labels['empty'] = 'Malplena'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Diskuzo'; $labels['unknown'] = 'nekonata'; $labels['unlimited'] = 'senlima'; - $labels['quicksearch'] = 'Rapida serĉo'; $labels['resetsearch'] = 'Vakigu serĉon'; $labels['searchmod'] = 'Serĉ-opcioj'; $labels['msgtext'] = 'Tuta mesaĝo'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Malfermu en nova fenestro'; $labels['emlsave'] = 'Elŝutu (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Redaktu kiel nova'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Sendu mesaĝon'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Ricev-status-konfirmo'; $labels['mailreplyintro'] = 'Je $date, $sender skribis:'; $labels['originalmessage'] = 'Originala mesaĝo'; - $labels['editidents'] = 'Redaktu identojn'; $labels['spellcheck'] = 'Literumu'; $labels['checkspelling'] = 'Kontrolu literumadon'; $labels['resumeediting'] = 'Rekomencu redaktadon'; $labels['revertto'] = 'Reiru al'; - $labels['attach'] = 'Alfiksu'; $labels['attachments'] = 'Alfiksaĵoj'; $labels['upload'] = 'Alŝutu'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Fermi'; $labels['messageoptions'] = 'Mesaĝ-agordoj...'; - $labels['low'] = 'Malalta'; $labels['lowest'] = 'Plej malalta'; $labels['normal'] = 'Normala'; $labels['high'] = 'Alta'; $labels['highest'] = 'Plej alta'; - $labels['nosubject'] = '(sen temo)'; $labels['showimages'] = 'Montru bildojn'; $labels['alwaysshow'] = 'Ĉiam montru bildojn de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Ĉi-mesaĝo estas malneto'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plata teksto'; $labels['savesentmessagein'] = 'Konservu senditan mesaĝon en'; $labels['dontsave'] = 'Ne konservu'; $labels['maxuploadsize'] = 'Maksimuma permesata dosier-grando estas $size'; - $labels['addcc'] = 'Aldonu kopi-ricevanton'; $labels['addbcc'] = 'Aldonu blindan kopi-ricevanton'; $labels['addreplyto'] = 'Aldonu Respondu-Al'; $labels['addfollowupto'] = 'Aldonu Respondu-Al'; - -// mdn $labels['mdnrequest'] = 'La sendinto de ĉi tiu mesaĝo petis sciigon de kiam vi legas ĝin. Ĉu volas sciigi la sendinton?'; $labels['receiptread'] = 'Legokonfirmo'; $labels['yourmessage'] = 'Jen estas legokonfirmo de via mesaĝo'; $labels['receiptnote'] = 'Notu: Ĉi tiu konfirmo nur asertas ke la mesaĝo estis malfermita je la komputilo de la ricevinto. Ne estas garantio ke la ricevinto legis aŭ komprenis la enhavon.'; - -// address boook $labels['name'] = 'Nomo'; $labels['firstname'] = 'Antaŭnomo'; $labels['surname'] = 'Familia nomo'; @@ -304,7 +264,6 @@ $labels['search'] = 'Serĉu'; $labels['advsearch'] = 'Detala sercô'; $labels['advanced'] = 'Altnivela'; $labels['other'] = 'Alia'; - $labels['typehome'] = 'Hejmo'; $labels['typework'] = 'Laboro'; $labels['typeother'] = 'Alia'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistanto'; $labels['typehomepage'] = 'Hejmpaĝo'; $labels['typeblog'] = 'Blogo'; $labels['typeprofile'] = 'Profilo'; - $labels['addfield'] = 'Aldonu kampon...'; $labels['addcontact'] = 'Aldonu kontakton'; $labels['editcontact'] = 'Redaktu kontakton'; $labels['contacts'] = 'Kontaktoj'; $labels['contactproperties'] = 'Kontakt-informoj'; $labels['personalinfo'] = 'Personaj informoj'; - $labels['edit'] = 'Redaktu'; $labels['cancel'] = 'Nuligi'; $labels['save'] = 'Konservi'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Alinomu'; $labels['addphoto'] = 'Aldonu'; $labels['replacephoto'] = 'Anstataŭu'; $labels['uploadphoto'] = 'Alŝutu bildon'; - $labels['newcontact'] = 'Kreu novan kontakton'; $labels['deletecontact'] = 'Forigu elektatajn kontaktojn'; $labels['composeto'] = 'Verku mesaĝon al'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Montru auntaŭan'; $labels['firstpage'] = 'Montru unuan'; $labels['nextpage'] = 'Montru sekvan'; $labels['lastpage'] = 'Montru lastan'; - $labels['group'] = 'Group'; $labels['groups'] = 'Grupoj'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Persona Adresoj'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Preferoj de'; $labels['about'] = 'About'; $labels['preferences'] = 'Preferoj'; $labels['userpreferences'] = 'Uzant-preferoj'; $labels['editpreferences'] = 'Redaktu uzant-preferojn'; - $labels['identities'] = 'Identoj'; $labels['manageidentities'] = 'Administru identojn de ĉi tiu konto'; $labels['newidentity'] = 'Nova idento'; - $labels['newitem'] = 'Nova ero'; $labels['edititem'] = 'Redaktu eron'; - $labels['preferhtml'] = 'Montru HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Mesaĝo'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Dosierujo'; $labels['folders'] = 'Dosierujoj'; $labels['foldername'] = 'Dosierujo-nomo'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Ordigu per'; $labels['sortasc'] = 'Ordigu kreskante'; $labels['sortdesc'] = 'Ordigu malkreskante'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/eo/messages.inc b/program/localization/eo/messages.inc index a7765e442..214b86444 100644 --- a/program/localization/eo/messages.inc +++ b/program/localization/eo/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/es_AR/labels.inc b/program/localization/es_AR/labels.inc index 5bc53f7f0..01777df79 100644 --- a/program/localization/es_AR/labels.inc +++ b/program/localization/es_AR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; $labels['password'] = 'Contraseña'; $labels['server'] = 'Servidor'; $labels['login'] = 'Entrar'; - -// taskbar $labels['logout'] = 'Cerrar sesión'; $labels['mail'] = 'Correo'; $labels['settings'] = 'Configuración'; $labels['addressbook'] = 'Contactos'; - -// mailbox names $labels['inbox'] = 'Entrada'; $labels['drafts'] = 'Borradores'; $labels['sent'] = 'Enviados'; $labels['trash'] = 'Papelera'; $labels['junk'] = 'Basura'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Asunto'; $labels['from'] = 'Remitente'; $labels['sender'] = 'Remitente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridad'; $labels['organization'] = 'Organización'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'Listar opciones...'; - $labels['mailboxlist'] = 'Carpetas'; $labels['messagesfromto'] = 'Mensajes $from a $to de $count'; $labels['threadsfromto'] = '$from a $to de $count conversaciones'; $labels['messagenrof'] = 'Mensaje $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descargar'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Mostrar'; $labels['showanyway'] = 'Mostrar esto siempre'; - $labels['filename'] = 'Nombre del archivo'; $labels['filesize'] = 'Tamaño del archivo'; - $labels['addtoaddressbook'] = 'Añadir a contactos'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mié'; $labels['thu'] = 'Jue'; $labels['fri'] = 'Vie'; $labels['sat'] = 'Sáb'; - -// weekdays long $labels['sunday'] = 'Domingo'; $labels['monday'] = 'Lunes'; $labels['tuesday'] = 'Martes'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Miércoles'; $labels['thursday'] = 'Jueves'; $labels['friday'] = 'Viernes'; $labels['saturday'] = 'Sábado'; - -// months short $labels['jan'] = 'Ene'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dic'; - -// months long $labels['longjan'] = 'Enero'; $labels['longfeb'] = 'Febrero'; $labels['longmar'] = 'Marzo'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septiembre'; $labels['longoct'] = 'Octubre'; $labels['longnov'] = 'Noviembre'; $labels['longdec'] = 'Diciembre'; - $labels['today'] = 'Hoy'; - -// toolbar buttons $labels['refresh'] = 'Actualizar'; $labels['checkmail'] = 'Revisar si hay nuevos mensajes'; $labels['compose'] = 'Escribir un mensaje'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mas acciones...'; $labels['more'] = 'Más'; $labels['back'] = 'Atrás'; $labels['options'] = 'Opciones'; - $labels['select'] = 'Elija'; $labels['all'] = 'Todos'; $labels['none'] = 'Ninguno'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandir Todos'; $labels['expand-unread'] = 'Expandir No Leidos'; $labels['collapse-all'] = 'Colapsar Todos'; $labels['threaded'] = 'Como conversaciones'; - $labels['autoexpand_threads'] = 'Expandir mensajes en conversación'; $labels['do_expand'] = 'todas las conversaciones'; $labels['expand_only_unread'] = 'solo con mensajes no leídos'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Listar columnas'; $labels['listsorting'] = 'Ordenar por'; $labels['listorder'] = 'Ordenado por'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Acciones de carpeta...'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Vaciar'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Uso de disco'; $labels['unknown'] = 'desconocido'; $labels['unlimited'] = 'sin límite'; - $labels['quicksearch'] = 'Búsqueda rápida'; $labels['resetsearch'] = 'Reajustar la búsqueda'; $labels['searchmod'] = 'Opciones de búsqueda'; $labels['msgtext'] = 'Mensaje completo'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Abrir en ventana nueva'; $labels['emlsave'] = 'Guardar (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Editar como nuevo'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar ahora el mensaje'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Acuse de recibo'; $labels['dsn'] = 'Notificación de estado del envío'; $labels['mailreplyintro'] = 'El $date, $sender escribió:'; $labels['originalmessage'] = 'Mensaje original'; - $labels['editidents'] = 'Editar identidades'; $labels['spellcheck'] = 'Gramática'; $labels['checkspelling'] = 'Revisar ortografía'; $labels['resumeediting'] = 'Continuar edición'; $labels['revertto'] = 'Revertir a'; - $labels['attach'] = 'Adjuntar'; $labels['attachments'] = 'Adjuntos'; $labels['upload'] = 'Agregar'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Cerrar'; $labels['messageoptions'] = 'Opciones de mensaje...'; - $labels['low'] = 'Bajo'; $labels['lowest'] = 'Bajísimo'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alto'; $labels['highest'] = 'Altísimo'; - $labels['nosubject'] = '(sin asunto)'; $labels['showimages'] = 'Mostrar imágenes'; $labels['alwaysshow'] = 'Siempre mostrar imágenes de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Este es un borrador.'; $labels['andnmore'] = '$nr más...'; $labels['togglemoreheaders'] = 'Mostrarme más encabezados de mensaje'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto'; $labels['savesentmessagein'] = 'Guardar mensaje enviado en'; $labels['dontsave'] = 'no guardar'; $labels['maxuploadsize'] = 'El tamaño maximo permitido por archivo es $size'; - $labels['addcc'] = 'Añadir Cc'; $labels['addbcc'] = 'Añadir Cco'; $labels['addreplyto'] = 'Añadir Respuesta a'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'El emisor de este mensaje desea ser notificado cuando usted lo lea. ¿Quiere enviar esta notificación?'; $labels['receiptread'] = 'Notificación de lectura'; $labels['yourmessage'] = 'Esta es una notificación de lectura de su mensaje'; $labels['receiptnote'] = 'Nota: Esta notificación sólo significa que su mensaje fue mostrado en la computadora del receptor. No hay garantía de que el receptor haya leído o entendido el contenido del mensaje.'; - -// address boook $labels['name'] = 'Nombre completo'; $labels['firstname'] = 'Nombre'; $labels['surname'] = 'Apellido'; @@ -304,7 +264,6 @@ $labels['search'] = 'Buscar'; $labels['advsearch'] = 'Búsqueda Avanzada'; $labels['advanced'] = 'Avanzado'; $labels['other'] = 'Otro'; - $labels['typehome'] = 'Particular'; $labels['typework'] = 'Laboral'; $labels['typeother'] = 'Otro'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistente'; $labels['typehomepage'] = 'Página Personal'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Agregar campo...'; $labels['addcontact'] = 'Añadir nuevo contacto'; $labels['editcontact'] = 'Editar contacto'; $labels['contacts'] = 'Contactos'; $labels['contactproperties'] = 'Propiedades del contacto'; $labels['personalinfo'] = 'Información personal'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Cancelar'; $labels['save'] = 'Guardar'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Renombrar'; $labels['addphoto'] = 'Agregar'; $labels['replacephoto'] = 'Reemplazar'; $labels['uploadphoto'] = 'Subir foto'; - $labels['newcontact'] = 'Añadir nuevo contacto'; $labels['deletecontact'] = 'Eliminar contactos seleccionados'; $labels['composeto'] = 'Enviar mensaje a'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crear Nuevo Grupo de Contacto'; $labels['grouprename'] = 'Renombrar grupo'; $labels['groupdelete'] = 'Eliminar grupo'; $labels['groupremoveselected'] = 'Remover del grupo los contactos seleccionados'; - $labels['previouspage'] = 'Mostrar grupo anterior'; $labels['firstpage'] = 'Mostrar primer grupo'; $labels['nextpage'] = 'Mostrar siguiente grupo'; $labels['lastpage'] = 'Mostrar último grupo'; - $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Direcciones personales'; - $labels['searchsave'] = 'Guardar búsqueda'; $labels['searchdelete'] = 'Eliminar búsqueda'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde el archivo:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Agregar nuevos contactos a la libreta de direcciones: $labels['importreplace'] = 'Reemplazar completamente la lista de contactos'; $labels['importdesc'] = 'Puedes subir contactos desde una libreta de direcciones existente.
Actualmente soportamos la importación de direcciones utilizando el formato vCard o CSV (Valores Separados por Coma).'; $labels['done'] = 'Hecho'; - -// settings $labels['settingsfor'] = 'Configuración para'; $labels['about'] = 'Acerca de'; $labels['preferences'] = 'Preferencias'; $labels['userpreferences'] = 'Preferencias de usuario'; $labels['editpreferences'] = 'Editar preferencias de usuario'; - $labels['identities'] = 'Identidades'; $labels['manageidentities'] = 'Gestionar identidades para esta cuenta'; $labels['newidentity'] = 'Nueva identidad'; - $labels['newitem'] = 'Nuevo'; $labels['edititem'] = 'Editar'; - $labels['preferhtml'] = 'Prefiero HTML'; $labels['defaultcharset'] = 'Juego de Caracteres por Defecto'; $labels['htmlmessage'] = 'Mensaje HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Carpeta'; $labels['folders'] = 'Carpetas'; $labels['foldername'] = 'Nombre de carpeta'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Orden ascendente'; $labels['sortdesc'] = 'Orden descendente'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Ingles'; $labels['westerneuropean'] = 'Europa Occidental'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Japonés'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chino'; - ?> diff --git a/program/localization/es_AR/messages.inc b/program/localization/es_AR/messages.inc index 1a0240222..34c83e01e 100644 --- a/program/localization/es_AR/messages.inc +++ b/program/localization/es_AR/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'No se pudo crear/mover la carpeta dentro de la $messages['messagetoobig'] = 'El mensaje es demasiado grande para ser procesado.'; $messages['attachmentvalidationerror'] = 'Advertencia! Este archivo adjunto es sospechoso porque su tipo no concuerda con el tipo declarado en el mensaje. Si no confias en el remitente, no deberías abrirlo en el navegador porque puede contener código malicioso.

Se esperaba: $expected; Se encontró: $detected'; $messages['noscriptwarning'] = 'Advertencia: Este servicio de webmail requiere Javascript! Para usarlo, por favor, habilite Javascript en las preferencia de tu navegador.'; - ?> diff --git a/program/localization/es_ES/labels.inc b/program/localization/es_ES/labels.inc index 11d14fa08..82b503e22 100644 --- a/program/localization/es_ES/labels.inc +++ b/program/localization/es_ES/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; $labels['password'] = 'Contraseña'; $labels['server'] = 'Servidor'; $labels['login'] = 'Iniciar sesión'; - -// taskbar $labels['logout'] = 'Cerrar sesión'; $labels['mail'] = 'Correo'; $labels['settings'] = 'Configuración'; $labels['addressbook'] = 'Contactos'; - -// mailbox names $labels['inbox'] = 'Entrada'; $labels['drafts'] = 'Borradores'; $labels['sent'] = 'Enviados'; $labels['trash'] = 'Papelera'; $labels['junk'] = 'SPAM'; $labels['show_real_foldernames'] = 'Mostrar nombres reales para carpetas especiales'; - -// message listing $labels['subject'] = 'Asunto'; $labels['from'] = 'Remitente'; $labels['sender'] = 'Remitente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridad'; $labels['organization'] = 'Organización'; $labels['readstatus'] = 'Leer estado'; $labels['listoptions'] = 'Lista de opciones...'; - $labels['mailboxlist'] = 'Carpetas'; $labels['messagesfromto'] = 'Mensajes $from a $to de $count'; $labels['threadsfromto'] = 'Hilos $from a $to de $count'; $labels['messagenrof'] = 'Mensaje $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a…'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descargar'; $labels['open'] = 'Abrir'; $labels['showattachment'] = 'Mostrar'; $labels['showanyway'] = 'Mostrarlo de todos modos'; - $labels['filename'] = 'Nombre del archivo'; $labels['filesize'] = 'Tamaño del archivo'; - $labels['addtoaddressbook'] = 'Añadir a contactos'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mié'; $labels['thu'] = 'Jue'; $labels['fri'] = 'Vie'; $labels['sat'] = 'Sáb'; - -// weekdays long $labels['sunday'] = 'Domingo'; $labels['monday'] = 'Lunes'; $labels['tuesday'] = 'Martes'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Miércoles'; $labels['thursday'] = 'Jueves'; $labels['friday'] = 'Viernes'; $labels['saturday'] = 'Sábado'; - -// months short $labels['jan'] = 'Ene'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dic'; - -// months long $labels['longjan'] = 'Enero'; $labels['longfeb'] = 'Febrero'; $labels['longmar'] = 'Marzo'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septiembre'; $labels['longoct'] = 'Octubre'; $labels['longnov'] = 'Noviembre'; $labels['longdec'] = 'Diciembre'; - $labels['today'] = 'Hoy'; - -// toolbar buttons $labels['refresh'] = 'Actualizar'; $labels['checkmail'] = 'Revisar si hay mensajes nuevos'; $labels['compose'] = 'Redactar'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Más acciones…'; $labels['more'] = 'Más'; $labels['back'] = 'Volver'; $labels['options'] = 'Opciones'; - $labels['select'] = 'Elija'; $labels['all'] = 'Todos'; $labels['none'] = 'Ninguno'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandir todos'; $labels['expand-unread'] = 'Expandir no leídos'; $labels['collapse-all'] = 'Colapsar todos'; $labels['threaded'] = 'Encadenados'; - $labels['autoexpand_threads'] = 'Expandir hilos de mensajes'; $labels['do_expand'] = 'todos los hilos'; $labels['expand_only_unread'] = 'solo con mensajes no leídos'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Listar columnas'; $labels['listsorting'] = 'Columna de listado'; $labels['listorder'] = 'Orden de listado'; $labels['listmode'] = 'Modo de vista de lista'; - $labels['folderactions'] = 'Acciones de bandeja...'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Vaciar'; $labels['importmessages'] = 'Importar mensajes'; - $labels['quota'] = 'Uso de disco'; $labels['unknown'] = 'desconocido'; $labels['unlimited'] = 'sin límite'; - $labels['quicksearch'] = 'Búsqueda rápida'; $labels['resetsearch'] = 'Reiniciar la búsqueda'; $labels['searchmod'] = 'Opciones de búsqueda'; $labels['msgtext'] = 'Mensaje completo'; $labels['body'] = 'Cuerpo'; $labels['type'] = 'Tipo'; - $labels['openinextwin'] = 'Abrir en nueva ventana'; $labels['emlsave'] = 'Descargar (.eml)'; $labels['changeformattext'] = 'Mostrar en formato de texto sencillo'; $labels['changeformathtml'] = 'Mostrar en formato HTML'; - -// message compose $labels['editasnew'] = 'Editar como nuevo'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar ahora el mensaje'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Acuse de recibo'; $labels['dsn'] = 'Entrega de notificaciones de estado'; $labels['mailreplyintro'] = 'El $date, $sender escribió:'; $labels['originalmessage'] = 'Mensaje original'; - $labels['editidents'] = 'Editar identidades'; $labels['spellcheck'] = 'Corrector ortográfico'; $labels['checkspelling'] = 'Revisar ortografía'; $labels['resumeediting'] = 'Continuar edición'; $labels['revertto'] = 'Revertir a'; - $labels['attach'] = 'Adjuntar'; $labels['attachments'] = 'Adjuntos'; $labels['upload'] = 'Subir'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Cerrar'; $labels['messageoptions'] = 'Opciones de mensaje...'; - $labels['low'] = 'Bajo'; $labels['lowest'] = 'Bajísimo'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alto'; $labels['highest'] = 'Altísimo'; - $labels['nosubject'] = '(sin asunto)'; $labels['showimages'] = 'Mostrar imágenes'; $labels['alwaysshow'] = 'Mostrar siempre imágenes de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Este mensaje es un borrador'; $labels['andnmore'] = '$nr más…'; $labels['togglemoreheaders'] = 'Mostrar más encabezados del mensaje'; $labels['togglefullheaders'] = 'Mostrar u ocultar encabezados de mensajes'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Sólo texto'; $labels['savesentmessagein'] = 'Guardar mensaje enviado en'; $labels['dontsave'] = 'No guardar'; $labels['maxuploadsize'] = 'Tamaño de archivo máximo permitido: $size'; - $labels['addcc'] = 'Añadir Cc'; $labels['addbcc'] = 'Añadir Cco'; $labels['addreplyto'] = 'Añadir Responder a'; $labels['addfollowupto'] = 'Añadir Seguir a'; - -// mdn $labels['mdnrequest'] = 'El emisor de este mensaje desea ser notificado cuando usted lo lea. ¿Quiere enviar esta notificación?'; $labels['receiptread'] = 'Notificación de lectura'; $labels['yourmessage'] = 'Esto es un acuse de recibo de su mensaje'; $labels['receiptnote'] = 'Nota: Esta notificación sólo significa que su mensaje fue abierto en el ordenador del destinatario. Eso no garantiza que el destinatario haya leído o entendido el contenido del mensaje.'; - -// address boook $labels['name'] = 'Nombre para mostrar'; $labels['firstname'] = 'Nombre'; $labels['surname'] = 'Apellido'; @@ -304,7 +264,6 @@ $labels['search'] = 'Buscar'; $labels['advsearch'] = 'Búsqueda avanzada'; $labels['advanced'] = 'Avanzadas'; $labels['other'] = 'Otro'; - $labels['typehome'] = 'Casa'; $labels['typework'] = 'Trabajo'; $labels['typeother'] = 'Otro'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Auxiliar'; $labels['typehomepage'] = 'Inicio'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Añadir campo...'; $labels['addcontact'] = 'Añadir nuevo contacto'; $labels['editcontact'] = 'Editar contacto'; $labels['contacts'] = 'Contactos'; $labels['contactproperties'] = 'Propiedades del contacto'; $labels['personalinfo'] = 'Información personal'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Cancelar'; $labels['save'] = 'Guardar'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Renombrar'; $labels['addphoto'] = 'Añadir'; $labels['replacephoto'] = 'Reemplazar'; $labels['uploadphoto'] = 'Subir foto'; - $labels['newcontact'] = 'Crear nueva tarjeta de contacto'; $labels['deletecontact'] = 'Eliminar contactos seleccionados'; $labels['composeto'] = 'Escribir mensaje a'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crear un nuevo grupo de contactos'; $labels['grouprename'] = 'Renombrar grupo'; $labels['groupdelete'] = 'Borrar grupo'; $labels['groupremoveselected'] = 'Eliminar los contactos seleccionados del grupo'; - $labels['previouspage'] = 'Mostrar grupo anterior'; $labels['firstpage'] = 'Mostrar primer grupo'; $labels['nextpage'] = 'Mostrar grupo siguiente'; $labels['lastpage'] = 'Mostrar último grupo'; - $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'Listar miembros del grupo'; $labels['personaladrbook'] = 'Direcciones personales'; - $labels['searchsave'] = 'Guardar búsqueda'; $labels['searchdelete'] = 'Borrar búsqueda'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde archivo:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Añadir un nuevo contacto a la los contactos:'; $labels['importreplace'] = 'Reemplazar toda la lista de contactos'; $labels['importdesc'] = 'Puede subir contactos desde una libreta de direcciones existente.
Actualmente permitimos la importación desde los formatos de datos vCard o CSV (separados por comas).'; $labels['done'] = 'Hecho'; - -// settings $labels['settingsfor'] = 'Configuración para'; $labels['about'] = 'Acerca de'; $labels['preferences'] = 'Preferencias'; $labels['userpreferences'] = 'Preferencias de usuario'; $labels['editpreferences'] = 'Editar preferencias de usuario'; - $labels['identities'] = 'Identidades'; $labels['manageidentities'] = 'Gestionar identidades para esta cuenta'; $labels['newidentity'] = 'Nueva identidad'; - $labels['newitem'] = 'Nuevo'; $labels['edititem'] = 'Editar'; - $labels['preferhtml'] = 'Prefiero HTML'; $labels['defaultcharset'] = 'Juego de caracteres predeterminado'; $labels['htmlmessage'] = 'Mensaje HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Gestionar ventanas emergentes como ventanas están $labels['forwardmode'] = 'Reenvío de mensajes'; $labels['inline'] = 'en línea'; $labels['asattachment'] = 'como adjunto'; - $labels['folder'] = 'Bandeja'; $labels['folders'] = 'Carpetas'; $labels['foldername'] = 'Nombre de bandeja'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tipo de bandeja'; $labels['personalfolder'] = 'Bandeja privada'; $labels['otherfolder'] = 'Bandeja de otro usuario'; $labels['sharedfolder'] = 'Bandeja pública'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Orden ascendente'; $labels['sortdesc'] = 'Orden descendente'; $labels['undo'] = 'Deshacer'; - $labels['installedplugins'] = 'Complementos instalados'; $labels['plugin'] = 'Complemento'; $labels['version'] = 'Versión'; $labels['source'] = 'Origen'; $labels['license'] = 'Licencia'; $labels['support'] = 'Obtener soporte'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglés'; $labels['westerneuropean'] = 'Europeo occidental'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Japonés'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chino'; - ?> diff --git a/program/localization/es_ES/messages.inc b/program/localization/es_ES/messages.inc index d4bd81402..c4481a2d6 100644 --- a/program/localization/es_ES/messages.inc +++ b/program/localization/es_ES/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'No se puede crear/mover la carpeta a la carpet $messages['messagetoobig'] = 'Esta parte del mensaje es demasiada grande para procesarla.'; $messages['attachmentvalidationerror'] = '¡ATENCIÓN! Este adjunto es sospechoso porque su tipo no coincide con el tipo declarado en el mensaje. Si no confía en su remitente, no debería abrirlo en su navegador porque podría tener contenido malicioso.
Esperado: $expected; encontrado: $detected'; $messages['noscriptwarning'] = 'Advertencia: ¡este servicio de webmail necesita Javascript! Para poder usarlo habilite el soporte de Javascript en su navegador, por favor.'; - ?> diff --git a/program/localization/et_EE/labels.inc b/program/localization/et_EE/labels.inc index a8bc28403..7d0d57020 100644 --- a/program/localization/et_EE/labels.inc +++ b/program/localization/et_EE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Tere tulemast! See on $product.'; $labels['username'] = 'Kasutajanimi'; $labels['password'] = 'Parool'; $labels['server'] = 'Server'; $labels['login'] = 'Logi sisse'; - -// taskbar $labels['logout'] = 'Logi välja'; $labels['mail'] = 'Postkast'; $labels['settings'] = 'Seaded'; $labels['addressbook'] = 'Aadressiraamat'; - -// mailbox names $labels['inbox'] = 'Saabuvad'; $labels['drafts'] = 'Mustandid'; $labels['sent'] = 'Saadetud'; $labels['trash'] = 'Prügikast'; $labels['junk'] = 'Rämps'; $labels['show_real_foldernames'] = 'Näita eriliste kaustade päris nimesid'; - -// message listing $labels['subject'] = 'Pealkiri'; $labels['from'] = 'Saatja'; $labels['sender'] = 'Saatja'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Tähtsus'; $labels['organization'] = 'Organisatsioon'; $labels['readstatus'] = 'Lugemise staatus'; $labels['listoptions'] = 'Nimekirja valikud…'; - $labels['mailboxlist'] = 'Kaustad'; $labels['messagesfromto'] = 'Kirjed $from kuni $to, kokku $count'; $labels['threadsfromto'] = 'Lõimed $from kuni $to, kokku $count'; $labels['messagenrof'] = 'Kiri $nr, kokku $count'; $labels['fromtoshort'] = '$from – $to kokku $count'; - $labels['copy'] = 'Kopeeri'; $labels['move'] = 'Liiguta'; $labels['moveto'] = 'liiguta kausta...'; @@ -68,13 +59,9 @@ $labels['download'] = 'laadi arvutisse'; $labels['open'] = 'Ava'; $labels['showattachment'] = 'Näita'; $labels['showanyway'] = 'Näita ikka'; - $labels['filename'] = 'Faili nimi'; $labels['filesize'] = 'Faili suurus'; - $labels['addtoaddressbook'] = 'Lisa aadressiraamatusse'; - -// weekdays short $labels['sun'] = 'P'; $labels['mon'] = 'E'; $labels['tue'] = 'T'; @@ -82,8 +69,6 @@ $labels['wed'] = 'K'; $labels['thu'] = 'N'; $labels['fri'] = 'R'; $labels['sat'] = 'L'; - -// weekdays long $labels['sunday'] = 'Pühapäev'; $labels['monday'] = 'Esmaspäev'; $labels['tuesday'] = 'Teisipäev'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Kolmapäev'; $labels['thursday'] = 'Neljapäev'; $labels['friday'] = 'Reede'; $labels['saturday'] = 'Laupäev'; - -// months short $labels['jan'] = 'jaan'; $labels['feb'] = 'veebr'; $labels['mar'] = 'märts'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sept'; $labels['oct'] = 'okt'; $labels['nov'] = 'nov'; $labels['dec'] = 'dets'; - -// months long $labels['longjan'] = 'Jaanuar'; $labels['longfeb'] = 'Veebruar'; $labels['longmar'] = 'Märts'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktoober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Detsember'; - $labels['today'] = 'Täna'; - -// toolbar buttons $labels['refresh'] = 'Värskenda'; $labels['checkmail'] = 'Kontrolli uusi kirju'; $labels['compose'] = 'Koosta kiri'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Muud toimingud...'; $labels['more'] = 'Rohkem'; $labels['back'] = 'Tagasi'; $labels['options'] = 'Valikud'; - $labels['select'] = 'Vali'; $labels['all'] = 'kõik'; $labels['none'] = 'Puudub'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Laienda kõik'; $labels['expand-unread'] = 'Laienda lugemata'; $labels['collapse-all'] = 'Pane kõik kokku'; $labels['threaded'] = 'Lõimedena'; - $labels['autoexpand_threads'] = 'Laienda kirjade lõimed'; $labels['do_expand'] = 'kõik lõimed'; $labels['expand_only_unread'] = 'ainult lugemata kirjadega'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Näita veerge'; $labels['listsorting'] = 'Järjestus veerg'; $labels['listorder'] = 'Järjestus suund'; $labels['listmode'] = 'Nimekirja vaatamise režiim'; - $labels['folderactions'] = 'Kausta tegevused...'; $labels['compact'] = 'Tihenda'; $labels['empty'] = 'Tühjenda'; $labels['importmessages'] = 'Impordi kirju'; - $labels['quota'] = 'Kettakasutus'; $labels['unknown'] = 'teadmata'; $labels['unlimited'] = 'piiramatu'; - $labels['quicksearch'] = 'Kiirotsing'; $labels['resetsearch'] = 'Lähtesta otsing'; $labels['searchmod'] = 'Otsingu laiendid'; $labels['msgtext'] = 'Kogu kirjast'; $labels['body'] = 'Keha'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Ava uues aknas'; $labels['emlsave'] = 'Salvesta (.eml)'; $labels['changeformattext'] = 'Näita lihttekstina'; $labels['changeformathtml'] = 'Näita HTMLis'; - -// message compose $labels['editasnew'] = 'Kasuta uue kirja põhjana'; $labels['send'] = 'Saada'; $labels['sendmessage'] = 'Saada kiri kohe'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Kättesaamiskinnitus'; $labels['dsn'] = 'Kohalejõudmise teavitus'; $labels['mailreplyintro'] = '$date kirjutas $sender:'; $labels['originalmessage'] = 'Esialgne kiri'; - $labels['editidents'] = 'Muuda Identiteete'; $labels['spellcheck'] = 'Õigekiri'; $labels['checkspelling'] = 'Kontrolli õigekirja'; $labels['resumeediting'] = 'Jätka muutmist'; $labels['revertto'] = 'Pööra tagasi'; - $labels['attach'] = 'Manusta'; $labels['attachments'] = 'Manused'; $labels['upload'] = 'Kinnita manus'; $labels['uploadprogress'] = '$percent ($current, kokku $total)'; $labels['close'] = 'Sulge'; $labels['messageoptions'] = 'Kirja valikud...'; - $labels['low'] = 'Madal'; $labels['lowest'] = 'Madalaim'; $labels['normal'] = 'Tavaline'; $labels['high'] = 'Kõrge'; $labels['highest'] = 'Kõrgeim'; - $labels['nosubject'] = '(teema puudub)'; $labels['showimages'] = 'Näita pilte'; $labels['alwaysshow'] = 'Näita alati $sender saadetud pilte'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'See on mustand.'; $labels['andnmore'] = '$nr veel…'; $labels['togglemoreheaders'] = 'Näita rohkem kirja päiseid'; $labels['togglefullheaders'] = 'Näita/peida algseid päiseid'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Lihttekst'; $labels['savesentmessagein'] = 'Salvesta saadetud kirjad kausta'; $labels['dontsave'] = 'ära salvesta'; $labels['maxuploadsize'] = 'Faili maksimaalne lubatud suurus on $size'; - $labels['addcc'] = 'Lisa koopia'; $labels['addbcc'] = 'Lisa pimekoopia'; $labels['addreplyto'] = 'Lisa vastus aadressile'; $labels['addfollowupto'] = 'Lisa Followup-To'; - -// mdn $labels['mdnrequest'] = 'Selle kirja saatja soovib saada kinnitust kirja lugemise kohta. Kas soovid kinnituse saata?'; $labels['receiptread'] = 'Kättesaamiskinnitus (leotud)'; $labels['yourmessage'] = 'See on sinu saadetud kirja kättesaamiskinnitus'; $labels['receiptnote'] = 'Märkus: Kättesaamiskinnituse saamine tähendab ainult seda, et saaja on kirja avanud. Pole mingit garantiid, et ta kirja tegelikult luges ja selle sisust aru sai.'; - -// address boook $labels['name'] = 'Näidatav nimi'; $labels['firstname'] = 'Eesnimi'; $labels['surname'] = 'Perekonnanimi'; @@ -304,7 +264,6 @@ $labels['search'] = 'Otsi'; $labels['advsearch'] = 'Täpsem otsing'; $labels['advanced'] = 'Edasijõudnutele'; $labels['other'] = 'Muu'; - $labels['typehome'] = 'Kodu'; $labels['typework'] = 'Töö'; $labels['typeother'] = 'Muu'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Veebileht'; $labels['typeblog'] = 'Ajaveeb'; $labels['typeprofile'] = 'Profiil'; - $labels['addfield'] = 'Lisa väli...'; $labels['addcontact'] = 'Uue kontakti lisamine'; $labels['editcontact'] = 'Muuda kontakti'; $labels['contacts'] = 'Kontaktid'; $labels['contactproperties'] = 'Kontakti omadused'; $labels['personalinfo'] = 'Isiklik info'; - $labels['edit'] = 'Muuda'; $labels['cancel'] = 'Katkesta'; $labels['save'] = 'Salvesta'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Nimeta ümber'; $labels['addphoto'] = 'Lisa'; $labels['replacephoto'] = 'Asenda'; $labels['uploadphoto'] = 'Lisa foto'; - $labels['newcontact'] = 'Uue sissekande loomine'; $labels['deletecontact'] = 'Kustuta märgistatud kontaktid'; $labels['composeto'] = 'Kirjuta kiri'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Loo uus kontaktigrupp'; $labels['grouprename'] = 'Nimeta grupp ümber'; $labels['groupdelete'] = 'Kustuta grupp'; $labels['groupremoveselected'] = 'Eemalda valitud kontaktid grupist'; - $labels['previouspage'] = 'Näita eelmist lehte'; $labels['firstpage'] = 'Näita esimest komplekti'; $labels['nextpage'] = 'Näita järgmist lehte'; $labels['lastpage'] = 'Näita viimast komplekti'; - $labels['group'] = 'Grupp'; $labels['groups'] = 'Grupid'; $labels['listgroup'] = 'Näita grupi liikmeid'; $labels['personaladrbook'] = 'Isiklikud aadressid'; - $labels['searchsave'] = 'Salvesta otsing'; $labels['searchdelete'] = 'Kustuta otsing'; - $labels['import'] = 'Impordi'; $labels['importcontacts'] = 'Impordi kontakte'; $labels['importfromfile'] = 'Impordi failist:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Lisa uued kontaktid aadressiraamatusse:'; $labels['importreplace'] = 'Asenda kogu aadressiraamat'; $labels['importdesc'] = 'Sa saad laadida kontakte olemasolevast aadressiraamatust.
Praegu on võimalik importida vCard või CSV (komaga eraldatud) formaadis andmeid. '; $labels['done'] = 'Valmis'; - -// settings $labels['settingsfor'] = 'Kasutajaeelistused kontole'; $labels['about'] = 'Programmist lähemalt'; $labels['preferences'] = 'Eelistused'; $labels['userpreferences'] = 'Kasutaja eelistused'; $labels['editpreferences'] = 'Muuda kasutaja eelistusi'; - $labels['identities'] = 'Identiteedid'; $labels['manageidentities'] = 'Halda selle konto identiteete'; $labels['newidentity'] = 'Uus identiteet'; - $labels['newitem'] = 'Uus sissekanne'; $labels['edititem'] = 'Muuda sissekannet'; - $labels['preferhtml'] = 'Eelista HTMLi'; $labels['defaultcharset'] = 'Vaikimisi märgistik'; $labels['htmlmessage'] = 'HTML kirjad'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Käsitle hüpikaknaid tavaliste akendena'; $labels['forwardmode'] = 'Kirja edastamine'; $labels['inline'] = 'kirja sees'; $labels['asattachment'] = 'manusena'; - $labels['folder'] = 'Kaust'; $labels['folders'] = 'Kaustad'; $labels['foldername'] = 'Kausta nimi'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Kausta tüüp'; $labels['personalfolder'] = 'Isiklik kaust'; $labels['otherfolder'] = 'Teiste kasutajate kaust'; $labels['sharedfolder'] = 'Avalik kaust'; - $labels['sortby'] = 'Järjesta'; $labels['sortasc'] = 'Järjesta kasvavalt'; $labels['sortdesc'] = 'Järjesta kahanevalt'; $labels['undo'] = 'Võta tagasi'; - $labels['installedplugins'] = 'Paigaldatud pluginad'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versioon'; $labels['source'] = 'Allikas'; $labels['license'] = 'Litsents'; $labels['support'] = 'Küsi abi'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KiB'; $labels['MB'] = 'MiB'; $labels['GB'] = 'GiB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'inglise'; $labels['westerneuropean'] = 'Lääne-Euroopa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'vietnami'; $labels['japanese'] = 'jaapani'; $labels['korean'] = 'korea'; $labels['chinese'] = 'hiina'; - ?> diff --git a/program/localization/et_EE/messages.inc b/program/localization/et_EE/messages.inc index 4d58b0a75..42060123d 100644 --- a/program/localization/et_EE/messages.inc +++ b/program/localization/et_EE/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Kasuta loomine/liigutamine valitud kausta nurj $messages['messagetoobig'] = 'Kiri on töötlemiseks liiga suur.'; $messages['attachmentvalidationerror'] = 'HOIATUS! See manus on kahtlane, sest selle tüüp ei ole vastavuses kirjas määratuga. Kui sa ei usalda kirja saatjat, siis ei tohiks seda brauseris avada, sest see võib sisaldada pahavara.

Oodati: $expected; leiti: $detected'; $messages['noscriptwarning'] = 'Hoiatus: see veebimaili teenus vajab Javascripti! Teenuse kasutamiseks luba Javascript oma brauseri seadetes.'; - ?> diff --git a/program/localization/eu_ES/labels.inc b/program/localization/eu_ES/labels.inc index fedce7de5..293c656fa 100644 --- a/program/localization/eu_ES/labels.inc +++ b/program/localization/eu_ES/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Ongi etorri $product'; $labels['username'] = 'Erabiltzailea'; $labels['password'] = 'Pasahitza'; $labels['server'] = 'Zerbitzaria'; $labels['login'] = 'Saio hasiera'; - -// taskbar $labels['logout'] = 'Irten'; $labels['mail'] = 'ePosta'; $labels['settings'] = 'Ezarpen Pertsonalak'; $labels['addressbook'] = 'Helbide Liburua'; - -// mailbox names $labels['inbox'] = 'Sarrera'; $labels['drafts'] = 'Zirriborroak'; $labels['sent'] = 'Bidalitakoak'; $labels['trash'] = 'Zakarrontzia'; $labels['junk'] = 'Zabor-posta'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Gaia'; $labels['from'] = 'Nork'; $labels['sender'] = 'Igorlea'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Lehentasuna'; $labels['organization'] = 'Erakundea'; $labels['readstatus'] = 'Irakurketaren egoera'; $labels['listoptions'] = 'Zerrendaren aukerak...'; - $labels['mailboxlist'] = 'Karpetak'; $labels['messagesfromto'] = '$from -tik $to -ra $count mezuetatik'; $labels['threadsfromto'] = '$from -etik $to -rako gaiak (guztira $count)'; $labels['messagenrof'] = '$nr mezua $count -tik'; $labels['fromtoshort'] = '$from - $to , guztira $count'; - $labels['copy'] = 'Kopia'; $labels['move'] = 'Mugitu'; $labels['moveto'] = 'mugitu hona...'; @@ -68,13 +59,9 @@ $labels['download'] = 'deskargatu'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Fitxategi Izena'; $labels['filesize'] = 'Fitxategi Tamaina'; - $labels['addtoaddressbook'] = 'Helbide liburura gehitu'; - -// weekdays short $labels['sun'] = 'Iga'; $labels['mon'] = 'Al'; $labels['tue'] = 'As'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Azt'; $labels['thu'] = 'Og'; $labels['fri'] = 'Or'; $labels['sat'] = 'Lar'; - -// weekdays long $labels['sunday'] = 'Igandea'; $labels['monday'] = 'Astelehena'; $labels['tuesday'] = 'Asteartea'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Asteazkena'; $labels['thursday'] = 'Osteguna'; $labels['friday'] = 'Ostirala'; $labels['saturday'] = 'Larunbata'; - -// months short $labels['jan'] = 'Urt'; $labels['feb'] = 'Ots'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Ira'; $labels['oct'] = 'Urr'; $labels['nov'] = 'Aza'; $labels['dec'] = 'Abe'; - -// months long $labels['longjan'] = 'Urtarrila'; $labels['longfeb'] = 'Otsaila'; $labels['longmar'] = 'Martxoa'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Iraila'; $labels['longoct'] = 'Urria'; $labels['longnov'] = 'Azaroa'; $labels['longdec'] = 'Abendua'; - $labels['today'] = 'Gaur'; - -// toolbar buttons $labels['refresh'] = 'Eguneratu'; $labels['checkmail'] = 'Mezu berrien bila arakatu'; $labels['compose'] = 'Mezu bat sortu'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Ekintza gehiago...'; $labels['more'] = 'Gehiago'; $labels['back'] = 'Atzera'; $labels['options'] = 'Aukerak'; - $labels['select'] = 'Hautatu'; $labels['all'] = 'Denak'; $labels['none'] = 'Bat ere ez'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Trinkotu'; $labels['empty'] = 'Hustu'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disko erabilera'; $labels['unknown'] = 'ezezaguna'; $labels['unlimited'] = 'mugagabea'; - $labels['quicksearch'] = 'Bilaketa azkarra'; $labels['resetsearch'] = 'Bilaketa berrabiarazi'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Lehio berrian ireki'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Mezua orain bidali'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Bidaltzaileari itzuli'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Jatorrizko mezua'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Egiaztaketa ortografikoa'; $labels['resumeediting'] = 'Editatzen jarraitu'; $labels['revertto'] = 'Itzuli hona'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Eranskinak'; $labels['upload'] = 'Igo'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Itxi'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Baxua'; $labels['lowest'] = 'Baxuena'; $labels['normal'] = 'Normala'; $labels['high'] = 'Altua'; $labels['highest'] = 'Altuena'; - $labels['nosubject'] = '(gairik gabea)'; $labels['showimages'] = 'Irudiak bistarazi'; $labels['alwaysshow'] = 'Beti ikusi $sender -en irudiak'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Testu laua'; $labels['savesentmessagein'] = 'Gorde mezua hemen'; $labels['dontsave'] = 'ez gorde'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Gehitu Cc (kopia)'; $labels['addbcc'] = 'Gehitu Bcc (kopia ezkutua)'; $labels['addreplyto'] = 'Gehitu erantzun-honi'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'Mezu honen bidaltzaileak mezua irakurtzen duzunean jakinaraztea eskatu du. Bidaltzailea ohartu nahi duzu?'; $labels['receiptread'] = 'Itzulketa agiria (irakurria)'; $labels['yourmessage'] = 'Hau zure mezuaren Itzulketa Agiria da'; $labels['receiptnote'] = 'Oharra: Agiri honek hartzailearen ordenagailuan mezua ikusi dala adierazten du besterik gabe. Honek ez du esan nahi hartzaileak mezua irakurri edo/eta ulertu duenik:'; - -// address boook $labels['name'] = 'Izena bistarazi'; $labels['firstname'] = 'Izena'; $labels['surname'] = 'Abizena'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Txartel berria gehitu'; $labels['editcontact'] = 'Txartela editatu'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Informazio pertsonala'; - $labels['edit'] = 'Editatu'; $labels['cancel'] = 'Utzi'; $labels['save'] = 'Gorde'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Helbide liburu txartel berria sortu'; $labels['deletecontact'] = 'Aukeraturiko txartelak ezabatu'; $labels['composeto'] = 'Bidali mezua honi:'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Aurreko sorta ikusi'; $labels['firstpage'] = 'Lehenengo sorta ikusi'; $labels['nextpage'] = 'Hurrengo sorta ikusi'; $labels['lastpage'] = 'Azken sorta ikusi'; - $labels['group'] = 'Group'; $labels['groups'] = 'Taldeak'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Helbide pertsonalak'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Honen ezarpenak:'; $labels['about'] = 'About'; $labels['preferences'] = 'Hobespenak'; $labels['userpreferences'] = 'Erabiltzaile hobespenak'; $labels['editpreferences'] = 'Erabiltzaile hobespenak editatu'; - $labels['identities'] = 'Identitateak'; $labels['manageidentities'] = 'Kontu honetako identitateak kudeatu'; $labels['newidentity'] = 'Identitate berria'; - $labels['newitem'] = 'Elementu berria'; $labels['edititem'] = 'Elementua Editatu'; - $labels['preferhtml'] = 'HTML nahiago'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Mezua'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Karpeta'; $labels['folders'] = 'Karpetak'; $labels['foldername'] = 'Karpeta izena'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Honela ordenatu'; $labels['sortasc'] = 'Goraka ordenatu'; $labels['sortdesc'] = 'Beheraka ordenatu'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/eu_ES/messages.inc b/program/localization/eu_ES/messages.inc index 6dd781530..a74cf7f2a 100644 --- a/program/localization/eu_ES/messages.inc +++ b/program/localization/eu_ES/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Ezin da karpeta sortu/mugi hautatutako goragok $messages['messagetoobig'] = 'Mezu-zatia handiegia da prozesatzeko.'; $messages['attachmentvalidationerror'] = 'KONTUZ! Eranskin hau susmagarria da zeren bere izaera ez dator bat mezuan deklaratutakoarekin. Bidaltzailearekin fidatzen ez bazara ez zenuke nabigatzailean ireki behar eduki maltzurra izan dezakeelako.

Deklaratua: $expected; erreala: $detected'; $messages['noscriptwarning'] = 'Kontuz: web-posta zerbitzu honek Javascript behar du! Erabili nahi baduzu gaitu Javascript zure nabigatzailearen hobespenetan.'; - ?> diff --git a/program/localization/fa_AF/labels.inc b/program/localization/fa_AF/labels.inc index 38154c23c..d29006c14 100644 --- a/program/localization/fa_AF/labels.inc +++ b/program/localization/fa_AF/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'به اين پروژه خوش امديد'; $labels['username'] = 'نام کاربر'; $labels['password'] = 'شفر'; $labels['server'] = 'سرور'; $labels['login'] = 'داخل شدن'; - -// taskbar $labels['logout'] = 'خروج'; $labels['mail'] = 'ايميل'; $labels['settings'] = 'تنظیمات شخصی'; $labels['addressbook'] = 'کتاب ادرس'; - -// mailbox names $labels['inbox'] = 'نامه های ارسالي'; $labels['drafts'] = 'نامه های ناتکمیل'; $labels['sent'] = 'ارسال شده'; $labels['trash'] = 'اشغال دانی'; $labels['junk'] = 'بیکاره'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'مضمون'; $labels['from'] = 'ارسال کننده'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'اولویت'; $labels['organization'] = 'تنظیمات'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'پوشه ها'; $labels['messagesfromto'] = 'از مقدار پيغام به مقدار حساب شده'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'از شمار پيغام های حساب شده'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'تکثیر'; $labels['move'] = 'Move'; $labels['moveto'] = 'انتقال بدهید به ...'; @@ -68,13 +59,9 @@ $labels['download'] = 'داونلود کردن'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'نام فايل'; $labels['filesize'] = 'اندازه فايل'; - $labels['addtoaddressbook'] = 'در کتاب ادرس علاوه نماييد'; - -// weekdays short $labels['sun'] = 'يکشنپبه'; $labels['mon'] = 'دوشنبه'; $labels['tue'] = 'سه شنبه'; @@ -82,8 +69,6 @@ $labels['wed'] = 'چهارشنبه'; $labels['thu'] = 'پنج شنبه'; $labels['fri'] = 'جمعه'; $labels['sat'] = 'شنبه'; - -// weekdays long $labels['sunday'] = 'يکشنبه'; $labels['monday'] = 'دوشنبه'; $labels['tuesday'] = 'سه شنبه'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'چهارشنبه'; $labels['thursday'] = 'پنج شنبه'; $labels['friday'] = 'جمعه'; $labels['saturday'] = 'شنبه'; - -// months short $labels['jan'] = 'جنوری'; $labels['feb'] = 'فبروری'; $labels['mar'] = 'مارچ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'سپتمبر'; $labels['oct'] = 'اکتوبر'; $labels['nov'] = 'نومبر'; $labels['dec'] = 'دسمبر'; - -// months long $labels['longjan'] = 'جنوری'; $labels['longfeb'] = 'فبروری'; $labels['longmar'] = 'مارچ'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'سپتمبر'; $labels['longoct'] = 'اکتوبر'; $labels['longnov'] = 'نومبر'; $labels['longdec'] = 'دسمبر'; - $labels['today'] = 'امروز'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'بررسي کردن پيغام های جديد'; $labels['compose'] = 'نوشتن پیام حدید'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'انتخاب کردن'; $labels['all'] = 'تمام'; $labels['none'] = 'هيچ کدام'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'خلاصه'; $labels['empty'] = 'خالي'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = '‌طريقه استعمال ديسک'; $labels['unknown'] = 'نامعلوم'; $labels['unlimited'] = 'نامعين/ نامحدود'; - $labels['quicksearch'] = 'جستجوی سریع'; $labels['resetsearch'] = 'بازنشاندن جستجو'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'در پینجره ای جدید باز کنید'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'پيغام را همين حالا ارسال کنيد'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'رسید برای مراجعت نامه'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'املا را بررسي کنيد'; $labels['resumeediting'] = 'ادامه / بازگشت به تصحیی کردن / نوشتن'; $labels['revertto'] = 'رجوع کردن به'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'ضميمه ها'; $labels['upload'] = 'اپلود کردن'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'بستن'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'کم'; $labels['lowest'] = 'کمترین'; $labels['normal'] = 'عادی'; $labels['high'] = 'عالي'; $labels['highest'] = 'عاليترين'; - $labels['nosubject'] = 'مضمون ندارد'; $labels['showimages'] = 'نمايش دادن تصاوير'; $labels['alwaysshow'] = 'همیشه نشان بده تصاویر را از این فرسیتنده﷼'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'ایچ تی ام ایل'; $labels['plaintoggle'] = 'متن ساده'; $labels['savesentmessagein'] = 'پیام ارسال شده را ذخیره کن در'; $labels['dontsave'] = 'ذخیره نکنید'; $labels['maxuploadsize'] = '$sizeزیاد ترین اندازه اجازه داده شده فایل عبارت است از'; - $labels['addcc'] = 'نسخیه دوم را علاوه کنید'; $labels['addbcc'] = 'نسخه پنهان را علاوه کنید'; $labels['addreplyto'] = 'علاوه کردن'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'فرستانده این پیام خواهش نموده زمانیکه شما نامه را خواندید براش آگاهی داده شود آيا شما ميخواهيد که فرستنده را آګاه سازيد'; $labels['receiptread'] = 'بازگشت رسید (خوانده شده)'; $labels['yourmessage'] = 'برای پيغام شما اين يک رسید بازگشت است'; $labels['receiptnote'] = 'يادداشت : اين رسيد شما را فقط اګاه ميسازد که پيغام به کامپیوتر گیرنده نمایش داده شده است هیچ گارنتی وجود ندارد که گیرنده پیام این پیام را خوانده و یا مطالب آن را درک کرده باشد.'; - -// address boook $labels['name'] = 'نشان دادن نام'; $labels['firstname'] = 'اسم/ نام'; $labels['surname'] = 'اسم فاميلي / تخلص'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'آدرس جديد را علاوه کنيد'; $labels['editcontact'] = 'آدرس جدید را تصحیح کنید'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'تصحيح کردن'; $labels['cancel'] = 'لغو کردن/ حذف کردن'; $labels['save'] = 'حفظ کردن'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'کارت تماس جديد را بسازيد'; $labels['deletecontact'] = 'آدرس های انتخاب شده را حذف کنيد'; $labels['composeto'] = 'ايمیل را نوشته کنيد به'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'بسته قبلي را نشان دهيد'; $labels['firstpage'] = 'بسته اولي را نشان دهيد'; $labels['nextpage'] = 'بسته بعدي را نشان دهيد'; $labels['lastpage'] = 'بسته اخير را نشان دهيد'; - $labels['group'] = 'Group'; $labels['groups'] = 'گروه ها'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'ادرس های شخصي'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'وارد کردن'; $labels['importcontacts'] = 'آدرس ها را وارد نمایید'; $labels['importfromfile'] = 'از یک فایل وارد نمایید'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'تمام کتاب آدرس ها را عوض نمایید'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'اجرا شد'; - -// settings $labels['settingsfor'] = 'تنظیمات برای'; $labels['about'] = 'About'; $labels['preferences'] = 'ترجيحات'; $labels['userpreferences'] = 'ترجيحات کاربر'; $labels['editpreferences'] = 'تصحيح کردن ترجيحات کاربر'; - $labels['identities'] = 'شناخت ها'; $labels['manageidentities'] = 'اداره کردن شناسای ها برای اين آدرس'; $labels['newidentity'] = 'شناخت جديد'; - $labels['newitem'] = 'فقره جديد'; $labels['edititem'] = 'تصحيح کردن فقره'; - $labels['preferhtml'] = 'نشان دادن ايچ ټي ام ايل'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'پيغام ايچ ټي‌ام ايل'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'پوشه'; $labels['folders'] = 'پوشه ها'; $labels['foldername'] = 'نام پوشه'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'فهرست کردن توسط'; $labels['sortasc'] = 'فهرست کردن از طرف بالا به پايين'; $labels['sortdesc'] = 'فهرست کردن از طرف پايين به بالا'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'بایت'; $labels['KB'] = 'کیلو بایت'; $labels['MB'] = 'میگا بایت'; $labels['GB'] = 'گیگا بایت'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/fa_AF/messages.inc b/program/localization/fa_AF/messages.inc index 51ad5b717..b748b2a3f 100644 --- a/program/localization/fa_AF/messages.inc +++ b/program/localization/fa_AF/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/fa_IR/labels.inc b/program/localization/fa_IR/labels.inc index 79bfbbe9d..11ce5d61b 100644 --- a/program/localization/fa_IR/labels.inc +++ b/program/localization/fa_IR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'به $product خوش آمدید'; $labels['username'] = 'نام کاربری'; $labels['password'] = 'گذرواژه'; $labels['server'] = 'سرویس‌دهنده'; $labels['login'] = 'ورود'; - -// taskbar $labels['logout'] = 'برون‌رفت'; $labels['mail'] = 'نامه'; $labels['settings'] = 'تنظیمات'; $labels['addressbook'] = 'دفتر نشانی'; - -// mailbox names $labels['inbox'] = 'صندوق ورودی'; $labels['drafts'] = 'پیش‌نویس‌ها'; $labels['sent'] = 'فرستاده شده'; $labels['trash'] = 'سطل آشغال'; $labels['junk'] = 'بنجل'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'موضوع'; $labels['from'] = 'از'; $labels['sender'] = 'فرستنده'; @@ -54,13 +47,11 @@ $labels['priority'] = 'اولویت'; $labels['organization'] = 'سازمان'; $labels['readstatus'] = 'وضعیت خوانده شدن'; $labels['listoptions'] = 'فهرست گزینه‌ها...'; - $labels['mailboxlist'] = 'پوشه‌ها'; $labels['messagesfromto'] = 'پیغام‌ها $from تا $to از $count'; $labels['threadsfromto'] = 'رشته‌ها $from تا $to از $count'; $labels['messagenrof'] = 'پیغام $nr از $count'; $labels['fromtoshort'] = '$from - $to از $count'; - $labels['copy'] = 'رونوشت'; $labels['move'] = 'انتقال'; $labels['moveto'] = 'انتقال به...'; @@ -68,13 +59,9 @@ $labels['download'] = 'بارگیری'; $labels['open'] = 'باز کردن'; $labels['showattachment'] = 'نمایش'; $labels['showanyway'] = 'نمایش آن در هر صورت'; - $labels['filename'] = 'نام پرونده'; $labels['filesize'] = 'اندازه پرونده'; - $labels['addtoaddressbook'] = 'افزودن به دفتر نشانی‌ها'; - -// weekdays short $labels['sun'] = '۱ش'; $labels['mon'] = '۲ش'; $labels['tue'] = '۳ش'; @@ -82,8 +69,6 @@ $labels['wed'] = '۴ش'; $labels['thu'] = '۵ش'; $labels['fri'] = 'جم'; $labels['sat'] = 'ش'; - -// weekdays long $labels['sunday'] = 'یک‌شنبه'; $labels['monday'] = 'دوشنبه'; $labels['tuesday'] = 'سه‌شنبه'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'چهارشنبه'; $labels['thursday'] = 'پنج‌شنبه'; $labels['friday'] = 'جمعه'; $labels['saturday'] = 'شنبه'; - -// months short $labels['jan'] = 'ژان'; $labels['feb'] = 'فور'; $labels['mar'] = 'مار'; @@ -105,8 +88,6 @@ $labels['sep'] = 'سپت'; $labels['oct'] = 'اُکت'; $labels['nov'] = 'نوا'; $labels['dec'] = 'دسا'; - -// months long $labels['longjan'] = 'ژانویه'; $labels['longfeb'] = 'فوریه'; $labels['longmar'] = 'مارس'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'سپتامبر'; $labels['longoct'] = 'اکتبر'; $labels['longnov'] = 'نوامبر'; $labels['longdec'] = 'دسامبر'; - $labels['today'] = 'امروز'; - -// toolbar buttons $labels['refresh'] = 'نوسازی'; $labels['checkmail'] = 'بررسی پیغام‌های جدید'; $labels['compose'] = 'نوشتن پیغام'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'کارهای دیگر...'; $labels['more'] = 'بيشتر'; $labels['back'] = 'بازگشت'; $labels['options'] = 'تنظیمات'; - $labels['select'] = 'انتخاب'; $labels['all'] = 'همه'; $labels['none'] = 'هیچ‌کدام'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'باز کردن همه'; $labels['expand-unread'] = 'بازکردن خوانده نشده‌ها'; $labels['collapse-all'] = 'جمع کردن همه'; $labels['threaded'] = 'رشته شده'; - $labels['autoexpand_threads'] = 'باز کردن رشته‌های پیغام'; $labels['do_expand'] = 'همه رشته‌ها'; $labels['expand_only_unread'] = 'فقط با پیغام‌های خوانده نشده'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'ستون‌های فهرست'; $labels['listsorting'] = 'ستون مرتب‌سازی'; $labels['listorder'] = 'ترتیب مرتب‌سازی'; $labels['listmode'] = 'نوع مشاهده فهرست'; - $labels['folderactions'] = 'اعمال پوشه...'; $labels['compact'] = 'فشرده'; $labels['empty'] = 'خالی'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'فضای استفاده شده'; $labels['unknown'] = 'ناشناخته'; $labels['unlimited'] = 'نامحدود'; - $labels['quicksearch'] = 'جستجوی سریع'; $labels['resetsearch'] = 'جستجوی دوباره'; $labels['searchmod'] = 'اصلاحات جستجو'; $labels['msgtext'] = 'کل پیغام'; $labels['body'] = 'بدنه'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'باز کردن در پنجره‌ی جدید'; $labels['emlsave'] = 'بارگیری (.eml)'; $labels['changeformattext'] = 'نمایش در قالب متنی'; $labels['changeformathtml'] = 'نمایش در قالب اچ‌تی‌ام‌ال'; - -// message compose $labels['editasnew'] = 'ویرایش به عنوان جدید'; $labels['send'] = 'ارسال'; $labels['sendmessage'] = 'ارسال پیغام'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'رسید دریافت'; $labels['dsn'] = 'اعلام وضعیت دریافت'; $labels['mailreplyintro'] = 'در $date، $sender نوشته است:'; $labels['originalmessage'] = 'پیغام اصلی'; - $labels['editidents'] = 'ویرایش شناسه‌ها'; $labels['spellcheck'] = 'املاء'; $labels['checkspelling'] = 'بررسی املایی'; $labels['resumeediting'] = 'ادامه‌ی ویرایش'; $labels['revertto'] = 'برگرداندن به'; - $labels['attach'] = 'پیوست کردن'; $labels['attachments'] = 'پیوست‌ها'; $labels['upload'] = 'بارگذاری'; $labels['uploadprogress'] = '$percent ($current از$total)'; $labels['close'] = 'بستن'; $labels['messageoptions'] = 'گزینه‌های پیغام...'; - $labels['low'] = 'کم'; $labels['lowest'] = 'کم‌ترین'; $labels['normal'] = 'معمولی'; $labels['high'] = 'زیاد'; $labels['highest'] = 'بیش‌ترین'; - $labels['nosubject'] = '(بدون موضوع)'; $labels['showimages'] = 'نمایش عکس‌ها'; $labels['alwaysshow'] = 'همیشه عکس‌های دریافتی از $sender را نمایش داده شود'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'این یک پیغام پیش‌نویس است.'; $labels['andnmore'] = '$nr بیشتر...'; $labels['togglemoreheaders'] = 'نمایش سربرگ‌های بیشتر پیغام'; $labels['togglefullheaders'] = 'تعویض سربرگ‌های پیغام خام'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'متن ساده'; $labels['savesentmessagein'] = 'ذخیره پیغام ارسالی در'; $labels['dontsave'] = 'ذخیره نکن'; $labels['maxuploadsize'] = 'حجم پرونده حداکثر تا میزان $size می‌باشد'; - $labels['addcc'] = 'افزودن رونوشت'; $labels['addbcc'] = 'افزودن رونوشت مخفی'; $labels['addreplyto'] = 'افزودن پاسخ-به'; $labels['addfollowupto'] = 'افزودن پیگیری-به'; - -// mdn $labels['mdnrequest'] = 'فرستنده‌ی این پیغام خواسته است که وقتی شما این پیغام را می‌خوانید، آگاه شود. آیا مایلید فرستنده را آگاه سازید؟'; $labels['receiptread'] = 'رسید دریافت (خواندن)'; $labels['yourmessage'] = 'این یک رسید دریافت برای پیغام شماست'; $labels['receiptnote'] = 'تذکر: این رسید فقط تصدیق می‌کند که پیغام، روی رایانه گیرنده نمایش داده شده است. هیچ تضمینی نیست که گیرنده، محتوای پیغام را خوانده یا فهمیده باشد.'; - -// address boook $labels['name'] = 'نمایش نام'; $labels['firstname'] = 'نام'; $labels['surname'] = 'نام خانوادگی'; @@ -304,7 +264,6 @@ $labels['search'] = 'جستجو'; $labels['advsearch'] = 'جستجوی پیشرفته'; $labels['advanced'] = 'پیشرفته'; $labels['other'] = 'سایر'; - $labels['typehome'] = 'منزل'; $labels['typework'] = 'کار'; $labels['typeother'] = 'سایر'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'دستیار'; $labels['typehomepage'] = 'صفحه خانگی'; $labels['typeblog'] = 'بلاگ'; $labels['typeprofile'] = 'نمایه'; - $labels['addfield'] = 'افزودن زمینه...'; $labels['addcontact'] = 'افزودن تماس جدید'; $labels['editcontact'] = 'ویرایش تماس'; $labels['contacts'] = 'تماس‌ها'; $labels['contactproperties'] = 'خصوصیات تماس'; $labels['personalinfo'] = 'اطلاعات شخصی'; - $labels['edit'] = 'ویرایش'; $labels['cancel'] = 'لغو'; $labels['save'] = 'ذخیره'; @@ -335,7 +292,6 @@ $labels['rename'] = 'تغییر نام'; $labels['addphoto'] = 'افزودن'; $labels['replacephoto'] = 'جایگزینی'; $labels['uploadphoto'] = 'بارگذاری تصویر'; - $labels['newcontact'] = 'ایجاد کارت تماس جدید'; $labels['deletecontact'] = 'حذف تماس‌های انتخاب شده'; $labels['composeto'] = 'نوشتن پیغام به'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'افزودن گروه تماس جدید'; $labels['grouprename'] = 'تغییر نام گروه'; $labels['groupdelete'] = 'حذف گروه'; $labels['groupremoveselected'] = 'حذف نشانی‌های انتخاب شده از گروه'; - $labels['previouspage'] = 'نمایش صفحه قبلی'; $labels['firstpage'] = 'نمایش صفحه اول'; $labels['nextpage'] = 'نمایش صفحه بعدی'; $labels['lastpage'] = 'نمایش صفحه آخر'; - $labels['group'] = 'گروه'; $labels['groups'] = 'گروه‌ها'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'نشانی‌های شخصی'; - $labels['searchsave'] = 'ذخیره جستجو'; $labels['searchdelete'] = 'حذف جستجو'; - $labels['import'] = 'وارد کردن'; $labels['importcontacts'] = 'وارد کردن تماس‌ها'; $labels['importfromfile'] = 'وارد کردن از پرونده‌ی:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'افزودن تماس‌های جدید به دفتر $labels['importreplace'] = 'جایگیزینی کامل دفتر نشانی'; $labels['importdesc'] = 'شما می‌توانید تماس‌ها را از یک دفتر نشانی موجود بارگذاری نمایید.
هم اکنون ما وارد کردن آدرس‌ها را از vCard یا قالب داده CVS (جدا شده با کاما) پشتیبانی می‌کنیم.'; $labels['done'] = 'انجام شد'; - -// settings $labels['settingsfor'] = 'تنظیمات برای'; $labels['about'] = 'درباره'; $labels['preferences'] = 'ترجیحات'; $labels['userpreferences'] = 'ترجیحات کاربر'; $labels['editpreferences'] = 'ویرایش ترجیحات کاربر'; - $labels['identities'] = 'شناسه‌ها'; $labels['manageidentities'] = 'مدیریت شناسه‌ها برای این حساب'; $labels['newidentity'] = 'شناسه جدید'; - $labels['newitem'] = 'مورد جدید'; $labels['edititem'] = 'ویرایش مورد'; - $labels['preferhtml'] = 'HTML نمایش'; $labels['defaultcharset'] = 'مجموعه نمایه پیش‌فرض'; $labels['htmlmessage'] = 'HTML پیغام'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'بازگردانی پیغام'; $labels['inline'] = 'خطی'; $labels['asattachment'] = 'به عنوان پیوست'; - $labels['folder'] = 'پوشه'; $labels['folders'] = 'پوشه‌ها'; $labels['foldername'] = 'نام پوشه'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'نوع پوشه'; $labels['personalfolder'] = 'پوشه خصوصی'; $labels['otherfolder'] = 'پوشه کاربران دیگر'; $labels['sharedfolder'] = 'پوشه عمومی'; - $labels['sortby'] = 'مرتب‌سازی بر اساس'; $labels['sortasc'] = 'مرتب‌سازی صعودی'; $labels['sortdesc'] = 'مرتب‌سازی نزولی'; $labels['undo'] = 'برگردان'; - $labels['installedplugins'] = 'افزونه‌های نصب شده'; $labels['plugin'] = 'افزونه'; $labels['version'] = 'نسخه'; $labels['source'] = 'منبع'; $labels['license'] = 'گواهینامه'; $labels['support'] = 'پشتیبانی'; - -// units $labels['B'] = 'بایت'; $labels['KB'] = 'کیلوبایت'; $labels['MB'] = 'مگابایت'; $labels['GB'] = 'گیگابایت'; - -// character sets $labels['unicode'] = 'یونیکد'; $labels['english'] = 'انگلیسی'; $labels['westerneuropean'] = 'اروپای غربی'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'ویتنامی'; $labels['japanese'] = 'ژاپنی'; $labels['korean'] = 'کره‌ای'; $labels['chinese'] = 'چینی'; - ?> diff --git a/program/localization/fa_IR/messages.inc b/program/localization/fa_IR/messages.inc index 3f3f861d6..8e563bb4e 100644 --- a/program/localization/fa_IR/messages.inc +++ b/program/localization/fa_IR/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'به دلیل نداشتن حق دسترسی، $messages['messagetoobig'] = 'بخش پیغام برای پردازش آن خیلی بزرگ است.'; $messages['attachmentvalidationerror'] = 'هشدار! این پیوست مشکوک است زیرا نوع آن با نوعی که در پیغام اشاره شده مطابقت ندارد. اگر شما به فرستنده اطمینان ندارید، نباید آن را در مرورگر باز نمایید زیرا ممکن است که شامل محتوای مخرب باشد.

مورد انتظار: $expected; یافت شده: $detected'; $messages['noscriptwarning'] = 'هشدار: این برنامه به جاوااسکریپت نیاز دارد! برای استفاده از این برنامه لطفا جاوااسکریپت را در تنظیمات مرورگر خود فعال نمایید.'; - ?> diff --git a/program/localization/fi_FI/labels.inc b/program/localization/fi_FI/labels.inc index ef0f0bff0..a81e2c039 100644 --- a/program/localization/fi_FI/labels.inc +++ b/program/localization/fi_FI/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Tervetuloa $product -käyttäjäksi'; $labels['username'] = 'Käyttäjätunnus'; $labels['password'] = 'Salasana'; $labels['server'] = 'Palvelin'; $labels['login'] = 'Kirjaudu'; - -// taskbar $labels['logout'] = 'Kirjaudu ulos'; $labels['mail'] = 'Sähköposti'; $labels['settings'] = 'Asetukset'; $labels['addressbook'] = 'Osoitekirja'; - -// mailbox names $labels['inbox'] = 'Saapuneet'; $labels['drafts'] = 'Luonnokset'; $labels['sent'] = 'Lähetetyt'; $labels['trash'] = 'Roskakori'; $labels['junk'] = 'Roskaposti'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Aihe'; $labels['from'] = 'Lähettäjä'; $labels['sender'] = 'Lähettäjä'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Tärkeys'; $labels['organization'] = 'Organisaatio'; $labels['readstatus'] = 'Luettu'; $labels['listoptions'] = 'Listaa valinnat...'; - $labels['mailboxlist'] = 'Kansiot'; $labels['messagesfromto'] = 'Viestit $from-$to/$count'; $labels['threadsfromto'] = 'Viestiketjut $from-$to/$count'; $labels['messagenrof'] = 'Viesti $nr/$count'; $labels['fromtoshort'] = '$from - $to (yhteensä $count)'; - $labels['copy'] = 'Kopioi'; $labels['move'] = 'Siirrä'; $labels['moveto'] = 'siirrä kansioon...'; @@ -68,13 +59,9 @@ $labels['download'] = 'lataa'; $labels['open'] = 'Avaa'; $labels['showattachment'] = 'Näytä'; $labels['showanyway'] = 'Näytä silti'; - $labels['filename'] = 'Tiedoston nimi'; $labels['filesize'] = 'Tiedoston koko'; - $labels['addtoaddressbook'] = 'Lisää osoitekirjaan'; - -// weekdays short $labels['sun'] = 'Su'; $labels['mon'] = 'Ma'; $labels['tue'] = 'Ti'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ke'; $labels['thu'] = 'To'; $labels['fri'] = 'Pe'; $labels['sat'] = 'La'; - -// weekdays long $labels['sunday'] = 'Sunnuntai'; $labels['monday'] = 'Maanantai'; $labels['tuesday'] = 'Tiistai'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Keskiviikko'; $labels['thursday'] = 'Torstai'; $labels['friday'] = 'Perjantai'; $labels['saturday'] = 'Lauantai'; - -// months short $labels['jan'] = 'Tammi'; $labels['feb'] = 'Helmi'; $labels['mar'] = 'Maalis'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Syys'; $labels['oct'] = 'Loka'; $labels['nov'] = 'Marras'; $labels['dec'] = 'Joulu'; - -// months long $labels['longjan'] = 'Tammikuu'; $labels['longfeb'] = 'Helmikuu'; $labels['longmar'] = 'Maaliskuu'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Syyskuu'; $labels['longoct'] = 'Lokakuu'; $labels['longnov'] = 'Marraskuu'; $labels['longdec'] = 'Joulukuu'; - $labels['today'] = 'Tänään'; - -// toolbar buttons $labels['refresh'] = 'Päivitä'; $labels['checkmail'] = 'Tarkista saapuneet viestit'; $labels['compose'] = 'Viestin kirjoitus'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Lisää toimintoja...'; $labels['more'] = 'Lisää'; $labels['back'] = 'Takaisin'; $labels['options'] = 'Asetukset'; - $labels['select'] = 'Valitse'; $labels['all'] = 'Kaikki'; $labels['none'] = 'Ei mikään'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Laajenna kaikki'; $labels['expand-unread'] = 'Laajenna lukemattomat'; $labels['collapse-all'] = 'Kutista kaikki'; $labels['threaded'] = 'Säikeet'; - $labels['autoexpand_threads'] = 'Laajenna viestiketjut automaattisesti'; $labels['do_expand'] = 'kaikki viestiketjut'; $labels['expand_only_unread'] = 'vain ne joissa lukemattomia viestejä'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Näkyvät kentät'; $labels['listsorting'] = 'Lajittelu kenttä'; $labels['listorder'] = 'Lajittelu järjestys'; $labels['listmode'] = 'Listausnäkymä'; - $labels['folderactions'] = 'Kansiotoiminnot...'; $labels['compact'] = 'Tiivistä'; $labels['empty'] = 'Tyhjennä'; $labels['importmessages'] = 'Tuo viestejä'; - $labels['quota'] = 'Levytila'; $labels['unknown'] = 'tuntematon'; $labels['unlimited'] = 'rajoittamaton'; - $labels['quicksearch'] = 'Pikahaku'; $labels['resetsearch'] = 'Nollaa haku'; $labels['searchmod'] = 'Hakukriteerit'; $labels['msgtext'] = 'Koko viesti'; $labels['body'] = 'Runko'; $labels['type'] = 'Tyyppi'; - $labels['openinextwin'] = 'Avaa uudessa ikkunassa'; $labels['emlsave'] = 'Tallenna (.eml)'; $labels['changeformattext'] = 'Näytä raakatekstimuodossa'; $labels['changeformathtml'] = 'Näytä HTML-muodossa'; - -// message compose $labels['editasnew'] = 'Muokkaa uutena'; $labels['send'] = 'Lähetä'; $labels['sendmessage'] = 'Lähetä viesti'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Perillesaapumisilmoitus'; $labels['dsn'] = 'Toimituksen tilailmoitus'; $labels['mailreplyintro'] = '$sender kirjoitti $date:'; $labels['originalmessage'] = 'Alkuperäinen viesti'; - $labels['editidents'] = 'Muokkaa identiteettejä'; $labels['spellcheck'] = 'Oikeinkirjoitus'; $labels['checkspelling'] = 'Tarkista oikeinkirjoitus'; $labels['resumeediting'] = 'Jatka muokkausta'; $labels['revertto'] = 'Muuta takaisin'; - $labels['attach'] = 'Liitä'; $labels['attachments'] = 'Liitetiedostot'; $labels['upload'] = 'Lisää'; $labels['uploadprogress'] = '$percent ($current, yhteensä $total)'; $labels['close'] = 'Sulje'; $labels['messageoptions'] = 'Viestin asetukset...'; - $labels['low'] = 'Matala'; $labels['lowest'] = 'Matalin'; $labels['normal'] = 'Normaali'; $labels['high'] = 'Korkea'; $labels['highest'] = 'Korkein'; - $labels['nosubject'] = '(ei otsikkoa)'; $labels['showimages'] = 'Näytä kuvat'; $labels['alwaysshow'] = 'Näytä aina lähettäjältä $sender saapuneet kuvat'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Tämä on luonnosviesti.'; $labels['andnmore'] = '$nr lisää...'; $labels['togglemoreheaders'] = 'Näytä lisää viestiotsakkeita'; $labels['togglefullheaders'] = 'Viestin otsakkeet päällä/pois'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Tavallinen teksti'; $labels['savesentmessagein'] = 'Tallenna lähetetty viesti kansioon'; $labels['dontsave'] = 'Älä tallenna'; $labels['maxuploadsize'] = 'Suurin sallittu tiedostokoko on $size'; - $labels['addcc'] = 'Lisää kopio'; $labels['addbcc'] = 'Lisää piilokopio'; $labels['addreplyto'] = 'Lisää vastausosoite'; $labels['addfollowupto'] = 'Lisää keskustelunsiirto'; - -// mdn $labels['mdnrequest'] = 'Viestin lähettäjä on pyytänyt kuittauksen siitä että olet lukenut viestin. Haluatko lähettää kuittauksen?'; $labels['receiptread'] = 'Lukukuittaus'; $labels['yourmessage'] = 'Tämä viesti on kuittaus lähettämällesi viestille'; $labels['receiptnote'] = 'Huom! Kuittaus tarkoittaa vain sitä, että viesti on avattu vastaanottajan tietokoneella. Se ei tarkoita että vastaanottaja on myös lukenut tai ymmärtänyt viestin.'; - -// address boook $labels['name'] = 'Näkyvä nimi'; $labels['firstname'] = 'Etunimi'; $labels['surname'] = 'Sukunimi'; @@ -304,7 +264,6 @@ $labels['search'] = 'Haku'; $labels['advsearch'] = 'Tarkennettu haku'; $labels['advanced'] = 'Lisäasetukset'; $labels['other'] = 'Muu'; - $labels['typehome'] = 'Koti'; $labels['typework'] = 'Työ'; $labels['typeother'] = 'Muu'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Avustaja'; $labels['typehomepage'] = 'Kotisivu'; $labels['typeblog'] = 'Blogi'; $labels['typeprofile'] = 'Profiili'; - $labels['addfield'] = 'Lisää kenttä...'; $labels['addcontact'] = 'Lisää uusi yhteystieto'; $labels['editcontact'] = 'Muokkaa yhteystietoa'; $labels['contacts'] = 'Yhteystiedot'; $labels['contactproperties'] = 'Yhteystiedon ominaisuudet'; $labels['personalinfo'] = 'Henkilökohtaiset tiedot'; - $labels['edit'] = 'Muokkaa'; $labels['cancel'] = 'Peruuta'; $labels['save'] = 'Tallenna'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Nimeä uudelleen'; $labels['addphoto'] = 'Lisää'; $labels['replacephoto'] = 'Korvaa'; $labels['uploadphoto'] = 'Lähetä kuva'; - $labels['newcontact'] = 'Luo uusi yhteystieto'; $labels['deletecontact'] = 'Poista valitut yhteystiedot'; $labels['composeto'] = 'Kirjoita viesti yhteystiedolle'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Luo uusi yhteystietoryhmä'; $labels['grouprename'] = 'Nimeä ryhmä uudelleen'; $labels['groupdelete'] = 'Poista ryhmä'; $labels['groupremoveselected'] = 'Poista valitut yhteystiedot ryhmästä'; - $labels['previouspage'] = 'Näytä edellinen luettelo'; $labels['firstpage'] = 'Näytä ensimmäinen luettelo'; $labels['nextpage'] = 'Näytä seuraava luettelo'; $labels['lastpage'] = 'Näytä viimeinen luettelo'; - $labels['group'] = 'Ryhmä'; $labels['groups'] = 'Ryhmät'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Henkilökohtaiset osoitteet'; - $labels['searchsave'] = 'Tallenna haku'; $labels['searchdelete'] = 'Poista haku'; - $labels['import'] = 'Tuo'; $labels['importcontacts'] = 'Tuo yhteystiedot'; $labels['importfromfile'] = 'Tuo tiedostosta:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Lisää uudet yhteystiedot osoitekirjaan:'; $labels['importreplace'] = 'Korvaa koko osoitekirja'; $labels['importdesc'] = 'Voit tuoda yhteystietoja olemassa olevasta osoitekirjasta.
Tuettuja muotoja ovat vCard ja CSV (pilkuin erotetut arvot).'; $labels['done'] = 'Valmis'; - -// settings $labels['settingsfor'] = 'Asetukset'; $labels['about'] = 'Tietoja'; $labels['preferences'] = 'Asetukset'; $labels['userpreferences'] = 'Käyttäjän asetukset'; $labels['editpreferences'] = 'Muokkaa käyttäjän asetuksia'; - $labels['identities'] = 'Identiteetit'; $labels['manageidentities'] = 'Muokkaa tunnuksen identiteettejä'; $labels['newidentity'] = 'Uusi identiteetti'; - $labels['newitem'] = 'Uusi'; $labels['edititem'] = 'Muokkaa'; - $labels['preferhtml'] = 'Käytä HTML:aa'; $labels['defaultcharset'] = 'Oletusmerkistökoodaus'; $labels['htmlmessage'] = 'HTML-viesti'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Käsittele popup-ikkunoita tavallisina ikkunoina'; $labels['forwardmode'] = 'Viestin välitys'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'liitteenä'; - $labels['folder'] = 'Kansio'; $labels['folders'] = 'Kansiot'; $labels['foldername'] = 'Kansion nimi'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Kansion tyyppi'; $labels['personalfolder'] = 'Yksityinen kansio'; $labels['otherfolder'] = 'Toisen käyttäjän kansio'; $labels['sharedfolder'] = 'Julkinen kansio'; - $labels['sortby'] = 'Järjestä'; $labels['sortasc'] = 'Järjestä nousevasti (a-ö)'; $labels['sortdesc'] = 'Järjestä laskevasti (ö-a)'; $labels['undo'] = 'Kumoa'; - $labels['installedplugins'] = 'Asennetut lisäosat'; $labels['plugin'] = 'Liitännäinen'; $labels['version'] = 'Versio'; $labels['source'] = 'Lähde'; $labels['license'] = 'Lisenssi'; $labels['support'] = 'Hanki tukea'; - -// units $labels['B'] = 't'; $labels['KB'] = 'Kt'; $labels['MB'] = 'Mt'; $labels['GB'] = 'Gt'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Englantilainen'; $labels['westerneuropean'] = 'Länsieurooppalainen'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamilainen'; $labels['japanese'] = 'Japanilainen'; $labels['korean'] = 'Korealainen'; $labels['chinese'] = 'Kiinalainen'; - ?> diff --git a/program/localization/fi_FI/messages.inc b/program/localization/fi_FI/messages.inc index adcb36607..075162f12 100644 --- a/program/localization/fi_FI/messages.inc +++ b/program/localization/fi_FI/messages.inc @@ -165,5 +165,4 @@ $messages['parentnotwritable'] = 'Kansiota ei voitu siirtää tai luoda valittuu $messages['messagetoobig'] = 'Viestiosa on liian suuri prosessoitavaksi.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Varoitus: Tämä verkkopohjainen sähköpostipalvelu vaatii Javascriptin toimiakseen. Ota Javascript käyttöön selaimesi asetuksista.'; - ?> diff --git a/program/localization/fr_FR/csv2vcard.inc b/program/localization/fr_FR/csv2vcard.inc index bb77001b5..0c6787124 100644 --- a/program/localization/fr_FR/csv2vcard.inc +++ b/program/localization/fr_FR/csv2vcard.inc @@ -16,13 +16,7 @@ +-----------------------------------------------------------------------+ */ -// This is a list of CSV column names specified in CSV file header -// These must be original texts used in Outlook/Thunderbird exported csv files -// Encoding UTF-8 - $map = array(); - -// MS Outlook 2010 $map['anniversary'] = "Anniversaire de mariage ou fête"; $map['assistants_name'] = "Nom de l''assistant(e)"; $map['assistants_phone'] = "Téléphone de l''assistant(e)"; @@ -69,8 +63,6 @@ $map['spouse'] = "Conjoint(e)"; $map['suffix'] = "Suffixe"; $map['title'] = "Titre"; $map['web_page'] = "Page Web"; - -// Thunderbird $map['birth_day'] = "Jour"; $map['birth_month'] = "Mois"; $map['birth_year'] = "Année de naissance"; @@ -91,6 +83,4 @@ $map['work_phone'] = "Tél. professionnel"; $map['work_address'] = "Adresse professionnelle"; $map['work_country'] = "Région"; $map['work_zipcode'] = "Code postal"; - -// Other $map['_home_city'] = "Ville"; diff --git a/program/localization/fr_FR/labels.inc b/program/localization/fr_FR/labels.inc index 3dc0e5ef8..5acddc621 100644 --- a/program/localization/fr_FR/labels.inc +++ b/program/localization/fr_FR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bienvenue sur $product'; $labels['username'] = 'Utilisateur'; $labels['password'] = 'Mot de passe'; $labels['server'] = 'Serveur'; $labels['login'] = 'Connexion'; - -// taskbar $labels['logout'] = 'Déconnexion'; $labels['mail'] = 'Courriel'; $labels['settings'] = 'Paramètres'; $labels['addressbook'] = 'Carnet d\'adresses'; - -// mailbox names $labels['inbox'] = 'Messages reçus'; $labels['drafts'] = 'Brouillons'; $labels['sent'] = 'Messages envoyés'; $labels['trash'] = 'Corbeille'; $labels['junk'] = 'Indésirables'; $labels['show_real_foldernames'] = 'Montrer les noms réels pour les dossiers spéciaux'; - -// message listing $labels['subject'] = 'Objet'; $labels['from'] = 'De'; $labels['sender'] = 'Expéditeur'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorité'; $labels['organization'] = 'Organisation'; $labels['readstatus'] = 'Statut de lecture'; $labels['listoptions'] = 'Lister les options...'; - $labels['mailboxlist'] = 'Dossiers'; $labels['messagesfromto'] = 'Messages de $from à $to sur $count'; $labels['threadsfromto'] = 'Fil de $from à $to sur $count'; $labels['messagenrof'] = 'Message $nr sur $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copier'; $labels['move'] = 'Déplacer'; $labels['moveto'] = 'Déplacer vers...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Télécharger'; $labels['open'] = 'Ouvrir'; $labels['showattachment'] = 'Afficher'; $labels['showanyway'] = 'Afficher quand même'; - $labels['filename'] = 'Nom du fichier'; $labels['filesize'] = 'Taille du fichier'; - $labels['addtoaddressbook'] = 'Ajouter au carnet d\'adresses'; - -// weekdays short $labels['sun'] = 'Dim'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mer'; $labels['thu'] = 'Jeu'; $labels['fri'] = 'Ven'; $labels['sat'] = 'Sam'; - -// weekdays long $labels['sunday'] = 'Dimanche'; $labels['monday'] = 'Lundi'; $labels['tuesday'] = 'Mardi'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mercredi'; $labels['thursday'] = 'Jeudi'; $labels['friday'] = 'Vendredi'; $labels['saturday'] = 'Samedi'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Fév'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Déc'; - -// months long $labels['longjan'] = 'Janvier'; $labels['longfeb'] = 'Février'; $labels['longmar'] = 'Mars'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembre'; $labels['longoct'] = 'Octobre'; $labels['longnov'] = 'Novembre'; $labels['longdec'] = 'Décembre'; - $labels['today'] = 'Aujourd\'hui'; - -// toolbar buttons $labels['refresh'] = 'Actualiser'; $labels['checkmail'] = 'Vérification des nouveaux messages'; $labels['compose'] = 'Composer un nouveau message'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Plus d\'actions...'; $labels['more'] = 'Plus'; $labels['back'] = 'Retour'; $labels['options'] = 'Paramètres'; - $labels['select'] = 'Sélectionner'; $labels['all'] = 'Tous'; $labels['none'] = 'Aucun'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Tout afficher'; $labels['expand-unread'] = 'Afficher non-lu(s)'; $labels['collapse-all'] = 'Fermer tous'; $labels['threaded'] = 'Par sujet'; - $labels['autoexpand_threads'] = 'Développer les sujets'; $labels['do_expand'] = 'Tous les sujets'; $labels['expand_only_unread'] = 'uniquement avec des messages non-lus'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Lister les colonnes'; $labels['listsorting'] = 'Colonne de tri'; $labels['listorder'] = 'Ordre de tri'; $labels['listmode'] = 'Mode d\'affichage de la liste'; - $labels['folderactions'] = 'Actions du dossier...'; $labels['compact'] = 'Compacter'; $labels['empty'] = 'Vider'; $labels['importmessages'] = 'Importer des messages'; - $labels['quota'] = 'Occupation disque'; $labels['unknown'] = 'inconnue'; $labels['unlimited'] = 'illimitée'; - $labels['quicksearch'] = 'Recherche rapide'; $labels['resetsearch'] = 'Réinitialiser la recherche'; $labels['searchmod'] = 'Portée de la recherche'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Message entier'; $labels['body'] = 'Corps'; $labels['type'] = 'Type'; $labels['namex'] = 'Nom'; - $labels['openinextwin'] = 'Ouvrir dans une nouvelle fenêtre'; $labels['emlsave'] = 'Télécharger (.eml)'; $labels['changeformattext'] = 'Afficher au format texte'; $labels['changeformathtml'] = 'Afficher au format HTML'; - -// message compose $labels['editasnew'] = 'Éditer en tant que nouveau message'; $labels['send'] = 'Envoyer'; $labels['sendmessage'] = 'Envoyer un message'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Accusé de réception'; $labels['dsn'] = 'Notification d\'état de distribution'; $labels['mailreplyintro'] = 'Le $date, $sender a écrit :'; $labels['originalmessage'] = 'Message original'; - $labels['editidents'] = 'Modifier les identités'; $labels['spellcheck'] = 'Orthographe'; $labels['checkspelling'] = 'Vérifier l\'orthographe'; $labels['resumeediting'] = 'Retourner à l\'édition'; $labels['revertto'] = 'Revenir à'; - $labels['attach'] = 'Joindre'; $labels['attachments'] = 'Fichiers joints'; $labels['upload'] = 'Transférer'; $labels['uploadprogress'] = '$percent ($current sur $total)'; $labels['close'] = 'Fermer'; $labels['messageoptions'] = 'Options du message'; - $labels['low'] = 'Basse'; $labels['lowest'] = 'La plus basse'; $labels['normal'] = 'Normale'; $labels['high'] = 'Élevée'; $labels['highest'] = 'La plus élevée'; - $labels['nosubject'] = '(pas de sujet)'; $labels['showimages'] = 'Afficher les images'; $labels['alwaysshow'] = 'Toujours afficher les images de $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Ceci est un brouillon.'; $labels['andnmore'] = 'Plus de $nr...'; $labels['togglemoreheaders'] = 'Afficher plus d\'en-têtes du message'; $labels['togglefullheaders'] = 'Afficher/Cacher l\'entête du message'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texte brut'; $labels['savesentmessagein'] = 'Enregistrer le message envoyé dans'; $labels['dontsave'] = 'ne pas enregistrer'; $labels['maxuploadsize'] = 'La taille maximum autorisée pour un fichier est $size'; - $labels['addcc'] = 'Ajouter Cc'; $labels['addbcc'] = 'Ajouter Cci'; $labels['addreplyto'] = 'Ajouter Répondre à'; $labels['addfollowupto'] = 'Ajouter Faire suivre à'; - -// mdn $labels['mdnrequest'] = 'L\'expéditeur de ce message a demandé d\'être prévenu quand vous lirez ce message. Souhaitez-vous prévenir l\'expéditeur ?'; $labels['receiptread'] = 'Accusé de réception (lu)'; $labels['yourmessage'] = 'Ceci est un accusé de réception pour votre message'; $labels['receiptnote'] = 'Note : Cet accusé de réception indique seulement que le message a été affiché sur l\'ordinateur du destinataire. Il n\'y a aucune garantie que le destinataire ait lu ou compris le contenu du message.'; - -// address boook $labels['name'] = 'Nom à afficher'; $labels['firstname'] = 'Prénom'; $labels['surname'] = 'Nom'; @@ -305,7 +265,6 @@ $labels['search'] = 'Rechercher'; $labels['advsearch'] = 'Recherche avancée'; $labels['advanced'] = 'Détails'; $labels['other'] = 'Autre'; - $labels['typehome'] = 'Domicile'; $labels['typework'] = 'Travail'; $labels['typeother'] = 'Autre'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Assistante'; $labels['typehomepage'] = 'Accueil'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Ajouter un champ...'; $labels['addcontact'] = 'Ajouter le contact sélectionné à votre carnet d\'adresses'; $labels['editcontact'] = 'Modifier le contact'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Propriétés du contact'; $labels['personalinfo'] = 'Informations personnelles'; - $labels['edit'] = 'Modifier'; $labels['cancel'] = 'Annuler'; $labels['save'] = 'Enregistrer'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Renommer'; $labels['addphoto'] = 'Ajouter'; $labels['replacephoto'] = 'Remplacer'; $labels['uploadphoto'] = 'Transférer une photo'; - $labels['newcontact'] = 'Créer un nouveau contact'; $labels['deletecontact'] = 'Supprimer les contacts sélectionnés'; $labels['composeto'] = 'Écrire un message à'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Créer un nouveau groupe de contacts'; $labels['grouprename'] = 'Renommer le groupe'; $labels['groupdelete'] = 'Supprimer le groupe'; $labels['groupremoveselected'] = 'Retirer les contacts sélectionnés du groupe'; - $labels['previouspage'] = 'Montrer page précédente'; $labels['firstpage'] = 'Voir la première page'; $labels['nextpage'] = 'Montrer page suivante'; $labels['lastpage'] = 'Voir la dernière page'; - $labels['group'] = 'Groupe'; $labels['groups'] = 'Groupes'; $labels['listgroup'] = 'Liste des membres du groupe'; $labels['personaladrbook'] = 'Adresses personnelles'; - $labels['searchsave'] = 'Enregistrer la recherche'; $labels['searchdelete'] = 'Supprimer la recherche'; - $labels['import'] = 'Importer'; $labels['importcontacts'] = 'Importer les contacts'; $labels['importfromfile'] = 'Importer depuis un fichier :'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Tous (créer les groupes si nécessaire)'; $labels['importgroupsexisting'] = 'Uniquement pour les groupes existants'; $labels['importdesc'] = 'Vous pouvez transférer des contacts à partir d\'un carnet d\'adresses existant.
Nous supportons actuellement l\'importation d\'adresses à partir des format de données vCard ou CSV (champs séparés par une virgule).'; $labels['done'] = 'Terminé'; - -// settings $labels['settingsfor'] = 'Paramètres pour'; $labels['about'] = 'A propos'; $labels['preferences'] = 'Préférences'; $labels['userpreferences'] = 'Préférences utilisateur'; $labels['editpreferences'] = 'Modifier les préférences utilisateur'; - $labels['identities'] = 'Identités'; $labels['manageidentities'] = 'Gérer les identités pour ce compte'; $labels['newidentity'] = 'Nouvelle identité'; - $labels['newitem'] = 'Nouvel élément'; $labels['edititem'] = 'Modifier l\'élément'; - $labels['preferhtml'] = 'Afficher en HTML'; $labels['defaultcharset'] = 'Encodage par défaut'; $labels['htmlmessage'] = 'Message en HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Manipuler les menus surgissants comme des fenêtre $labels['forwardmode'] = 'Transfert des messages'; $labels['inline'] = 'dans le corps'; $labels['asattachment'] = 'en pièce jointe'; - $labels['folder'] = 'Dossier'; $labels['folders'] = 'Dossiers'; $labels['foldername'] = 'Nom du dossier'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Type de répertoire'; $labels['personalfolder'] = 'Répertoire privé'; $labels['otherfolder'] = 'Répertoire d\'autres utilisateurs'; $labels['sharedfolder'] = 'Répertoire public'; - $labels['sortby'] = 'Trier par'; $labels['sortasc'] = 'Tri ascendant'; $labels['sortdesc'] = 'Tri descendant'; $labels['undo'] = 'Annuler'; - $labels['installedplugins'] = 'Extensions installées'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'Licence'; $labels['support'] = 'Obtenir un support technique'; - -// units $labels['B'] = 'o'; $labels['KB'] = 'ko'; $labels['MB'] = 'Mo'; $labels['GB'] = 'Go'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Anglais'; $labels['westerneuropean'] = 'Europe de l\'Ouest'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamien'; $labels['japanese'] = 'Japonais'; $labels['korean'] = 'Coréen'; $labels['chinese'] = 'Chinois'; - ?> diff --git a/program/localization/fr_FR/messages.inc b/program/localization/fr_FR/messages.inc index a736e103e..b57f43c8d 100644 --- a/program/localization/fr_FR/messages.inc +++ b/program/localization/fr_FR/messages.inc @@ -167,5 +167,4 @@ $messages['parentnotwritable'] = 'Impossible de créer/déplacer le dossier dans $messages['messagetoobig'] = 'Le message est trop gros pour être traité.'; $messages['attachmentvalidationerror'] = 'ATTENTION ! Cette pièce jointe est suspecte car son type ne correspond pas au type déclaré dans ce message. Si vous ne faites pas confiance à l\'expéditeur, vous ne devriez pas l\'ouvrir dans le navigateur, car il peut contenir des contenus malveillants.

Attendu : $expected; trouvé : $detected'; $messages['noscriptwarning'] = 'Atention : Ce service de webmail nécessite Javascript ! Pour pouvoir l\'utiliser, merci d\'activer Javascript dans les préférences de votre navigateur.'; - ?> diff --git a/program/localization/fy_NL/labels.inc b/program/localization/fy_NL/labels.inc index 5ffd906eb..ba518f4e6 100644 --- a/program/localization/fy_NL/labels.inc +++ b/program/localization/fy_NL/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Brûkersnamme'; $labels['password'] = 'Wachtwurd'; $labels['server'] = 'Server'; $labels['login'] = 'Ynlogge'; - -// taskbar $labels['logout'] = 'Ôfmelde'; $labels['mail'] = 'Mail'; $labels['settings'] = 'Ynstellingen'; $labels['addressbook'] = 'Adresboek'; - -// mailbox names $labels['inbox'] = 'Inbox'; $labels['drafts'] = 'Konsepten'; $labels['sent'] = 'Stjoerd'; $labels['trash'] = 'Jiskefet'; $labels['junk'] = 'Junk'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Ûnderwerp'; $labels['from'] = 'Fan'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priority'; $labels['organization'] = 'Organisaasje'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Mappen'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Kopieare'; $labels['move'] = 'Ferplaatse'; $labels['moveto'] = 'Move to...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Delhelje'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Toane'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'File name'; $labels['filesize'] = 'Triemgrutte'; - $labels['addtoaddressbook'] = 'Add to address book'; - -// weekdays short $labels['sun'] = 'sne'; $labels['mon'] = 'moa'; $labels['tue'] = 'tii'; @@ -82,8 +69,6 @@ $labels['wed'] = 'woa'; $labels['thu'] = 'toa'; $labels['fri'] = 'fre'; $labels['sat'] = 'sno'; - -// weekdays long $labels['sunday'] = 'snein'; $labels['monday'] = 'moandei'; $labels['tuesday'] = 'tiisdei'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'woansdei'; $labels['thursday'] = 'tongersdei'; $labels['friday'] = 'freed'; $labels['saturday'] = 'sneon'; - -// months short $labels['jan'] = 'jan'; $labels['feb'] = 'feb'; $labels['mar'] = 'mrt'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sep'; $labels['oct'] = 'okt'; $labels['nov'] = 'nov'; $labels['dec'] = 'des'; - -// months long $labels['longjan'] = 'jannewaris'; $labels['longfeb'] = 'febrewaris'; $labels['longmar'] = 'maart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'septimber'; $labels['longoct'] = 'oktober'; $labels['longnov'] = 'novimber'; $labels['longdec'] = 'desimber'; - $labels['today'] = 'Hjoed'; - -// toolbar buttons $labels['refresh'] = 'Ferfarskje'; $labels['checkmail'] = 'Check for new messages'; $labels['compose'] = 'Compose'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Select'; $labels['all'] = 'All'; $labels['none'] = 'None'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Compact'; $labels['empty'] = 'Empty'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'unknown'; $labels['unlimited'] = 'unlimited'; - $labels['quicksearch'] = 'Quick search'; $labels['resetsearch'] = 'Reset search'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send message'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Check spelling'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Attachments'; $labels['upload'] = 'Upload'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Close'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; $labels['high'] = 'High'; $labels['highest'] = 'Highest'; - $labels['nosubject'] = '(no subject)'; $labels['showimages'] = 'Display images'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Display Name'; $labels['firstname'] = 'First Name'; $labels['surname'] = 'Last Name'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Add new contact'; $labels['editcontact'] = 'Edit contact'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Edit'; $labels['cancel'] = 'Cancel'; $labels['save'] = 'Save'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Create new contact card'; $labels['deletecontact'] = 'Delete selected contacts'; $labels['composeto'] = 'Compose mail to'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Show previous page'; $labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'Show next page'; $labels['lastpage'] = 'Show last page'; - $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Settings for'; $labels['about'] = 'About'; $labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'User preferences'; $labels['editpreferences'] = 'Edit user preferences'; - $labels['identities'] = 'Identities'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'New identity'; - $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; - $labels['preferhtml'] = 'Display HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Message'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Mappen'; $labels['foldername'] = 'Folder name'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Sort by'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/fy_NL/messages.inc b/program/localization/fy_NL/messages.inc index 16f4c67bf..2ac9519b5 100644 --- a/program/localization/fy_NL/messages.inc +++ b/program/localization/fy_NL/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ga_IE/labels.inc b/program/localization/ga_IE/labels.inc old mode 100755 new mode 100644 index 9fffaf42a..f8103bef0 --- a/program/localization/ga_IE/labels.inc +++ b/program/localization/ga_IE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Fáilte go $product'; $labels['username'] = 'Úsáideoir'; $labels['password'] = 'Pasfhocal'; $labels['server'] = 'Freastalaí'; $labels['login'] = 'Logáil isteach'; - -// taskbar $labels['logout'] = 'Logáil amach'; $labels['mail'] = 'Postas'; $labels['settings'] = 'Socruithe Pearsanta'; $labels['addressbook'] = 'Leabhair Seoltaí'; - -// mailbox names $labels['inbox'] = 'Isteach'; $labels['drafts'] = 'Dréachtaí'; $labels['sent'] = 'Amach'; $labels['trash'] = 'Bosca bruscair'; $labels['junk'] = 'Dramhaíl'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Ábhair'; $labels['from'] = 'Seolaí'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Tosaíocht'; $labels['organization'] = 'Eagraíocht'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Fillteán'; $labels['messagesfromto'] = 'Teachtaireachta as $from go $to as $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Teachtaireacht $nr as $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Cóipeáil'; $labels['move'] = 'Bog'; $labels['moveto'] = 'bog go...'; @@ -68,13 +59,9 @@ $labels['download'] = 'síos-luchtú'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Comhad'; $labels['filesize'] = 'Toirt'; - $labels['addtoaddressbook'] = 'Sábháil i mo leabhair seoltaí'; - -// weekdays short $labels['sun'] = 'Do'; $labels['mon'] = 'Lu'; $labels['tue'] = 'Mh'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ch'; $labels['thu'] = 'Dé'; $labels['fri'] = 'Ao'; $labels['sat'] = 'Sa'; - -// weekdays long $labels['sunday'] = 'Domhnach'; $labels['monday'] = 'An Luan'; $labels['tuesday'] = 'An Mháirt'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'An Chéadaoin'; $labels['thursday'] = 'An Déardaoin'; $labels['friday'] = 'Aoine'; $labels['saturday'] = 'An Satharn'; - -// months short $labels['jan'] = 'Ean'; $labels['feb'] = 'Fea'; $labels['mar'] = 'Már'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Sam'; $labels['dec'] = 'Nol'; - -// months long $labels['longjan'] = 'Eanáir'; $labels['longfeb'] = 'Feabhra'; $labels['longmar'] = 'Márta'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Meán Fómhair'; $labels['longoct'] = 'Deireadh Fómhair'; $labels['longnov'] = 'Samhain'; $labels['longdec'] = 'Nollag'; - $labels['today'] = 'Inniu'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Seiceáil chun teachtaireacht nua'; $labels['compose'] = 'Scríobh teachtaireacht'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Togh'; $labels['all'] = 'An uile'; $labels['none'] = 'Aon cheann'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Comhbhrúigh'; $labels['empty'] = 'Folmhaigh'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Toilleadh diosca atá athláimhe'; $labels['unknown'] = 'gan aithne'; $labels['unlimited'] = 'gan teorainn'; - $labels['quicksearch'] = 'Mearcuardaigh'; $labels['resetsearch'] = 'Athshocraigh an cuardach'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Seol mo teachtaireacht láithreach bonn'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Admháil léite'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Fiosrú ar mo litriú'; $labels['resumeediting'] = 'Athdhúisigh eagarthóireacht'; $labels['revertto'] = 'Filleadh ar'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Iatání'; $labels['upload'] = 'Aistriú suas'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Dún'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Íseal'; $labels['lowest'] = 'Is Ísle'; $labels['normal'] = 'Gnách'; $labels['high'] = 'Ard'; $labels['highest'] = 'Is Airde'; - $labels['nosubject'] = '(Níl aon Ábhair)'; $labels['showimages'] = 'Taispeáin na híomhánna'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Téacs amháin'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Leasainm'; $labels['firstname'] = 'Ainm baiste'; $labels['surname'] = 'Sloinne'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Sábháil duine nua'; $labels['editcontact'] = 'Chuir chara in eagar'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Athraigh'; $labels['cancel'] = 'Cealaigh'; $labels['save'] = 'Sábháil'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Scríobh carta teagmháil nua'; $labels['deletecontact'] = 'Scrios na daoine seo'; $labels['composeto'] = 'Scríobh teachtaireacht go'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Taispeáin an foireann roimhe seo'; $labels['firstpage'] = 'Taispeáin an céad foireann'; $labels['nextpage'] = 'Taispeáin an foireann ina dhiaidh sin'; $labels['lastpage'] = 'Taispeáin an foireann deireanach'; - $labels['group'] = 'Group'; $labels['groups'] = 'Grúpaí'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Seoltaí Pearsanta'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Socruithe chun'; $labels['about'] = 'About'; $labels['preferences'] = 'Tosaíocht'; $labels['userpreferences'] = 'Tosaíocht Pearsanta'; $labels['editpreferences'] = 'Athraigh tosaíocht pearsanta'; - $labels['identities'] = 'Céannachtaí'; $labels['manageidentities'] = 'Stiúir céannachtaí i cuntas seo'; $labels['newidentity'] = 'Céannacht nua'; - $labels['newitem'] = 'Mír nua'; $labels['edititem'] = 'Athraigh mhír'; - $labels['preferhtml'] = 'Taispeáin an HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Teachtaireacht HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Fillteán'; $labels['folders'] = 'Fillteán'; $labels['foldername'] = 'Ainm fillteán'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Sórtáil trí'; $labels['sortasc'] = 'Sórtáil in ord méadaitheach'; $labels['sortdesc'] = 'Sórtáil in ord neartaitheach'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ga_IE/messages.inc b/program/localization/ga_IE/messages.inc old mode 100755 new mode 100644 index b837c9d16..b614ecbe1 --- a/program/localization/ga_IE/messages.inc +++ b/program/localization/ga_IE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/gl_ES/labels.inc b/program/localization/gl_ES/labels.inc index c624c462e..4e00a286f 100644 --- a/program/localization/gl_ES/labels.inc +++ b/program/localization/gl_ES/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Benvido a $product'; $labels['username'] = 'Nome de usuario'; $labels['password'] = 'Contrasinal'; $labels['server'] = 'Servidor'; $labels['login'] = 'Acceder'; - -// taskbar $labels['logout'] = 'Saír'; $labels['mail'] = 'Caixa de entrada'; $labels['settings'] = 'Axustes persoais'; $labels['addressbook'] = 'Caderno de enderezos'; - -// mailbox names $labels['inbox'] = 'Caixa de entrada'; $labels['drafts'] = 'Borradores'; $labels['sent'] = 'Enviados'; $labels['trash'] = 'Cubo do lixo'; $labels['junk'] = 'Correo lixo'; $labels['show_real_foldernames'] = 'Amosar nomes reáis para cartafois especiáis'; - -// message listing $labels['subject'] = 'Asunto'; $labels['from'] = 'Remitente'; $labels['sender'] = 'Remitente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridade'; $labels['organization'] = 'Organización'; $labels['readstatus'] = 'Estado da lectura'; $labels['listoptions'] = 'Opcións de lista...'; - $labels['mailboxlist'] = 'Cartafoles'; $labels['messagesfromto'] = 'Mensaxes da $from á $to de $count'; $labels['threadsfromto'] = 'Fíos do $from ao $to de $count'; $labels['messagenrof'] = 'Mensaxe $nr de $count'; $labels['fromtoshort'] = '$from - $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descargar'; $labels['open'] = 'Abrir'; $labels['showattachment'] = 'Amosar'; $labels['showanyway'] = 'Amosala de tódolos xeitos'; - $labels['filename'] = 'Nome de ficheiro'; $labels['filesize'] = 'Tamaño de ficheiro'; - $labels['addtoaddressbook'] = 'Engadir ao caderno de enderezos'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mér'; $labels['thu'] = 'Xov'; $labels['fri'] = 'Ven'; $labels['sat'] = 'Sáb'; - -// weekdays long $labels['sunday'] = 'Domingo'; $labels['monday'] = 'Luns'; $labels['tuesday'] = 'Martes'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mércores'; $labels['thursday'] = 'Xoves'; $labels['friday'] = 'Venres'; $labels['saturday'] = 'Sábado'; - -// months short $labels['jan'] = 'Xan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Set'; $labels['oct'] = 'Out'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Xaneiro'; $labels['longfeb'] = 'Febreiro'; $labels['longmar'] = 'Marzo'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Setembro'; $labels['longoct'] = 'Outubro'; $labels['longnov'] = 'Novembro'; $labels['longdec'] = 'Decembro'; - $labels['today'] = 'Hoxe'; - -// toolbar buttons $labels['refresh'] = 'Actualizar'; $labels['checkmail'] = 'Procurar novas mensaxes'; $labels['compose'] = 'Redactar unha mensaxe'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Máis accións...'; $labels['more'] = 'Máis'; $labels['back'] = 'Atrás'; $labels['options'] = 'Opcións'; - $labels['select'] = 'Seleccionar'; $labels['all'] = 'Todas'; $labels['none'] = 'Ningunha'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandir todos'; $labels['expand-unread'] = 'Expandir os non lidos'; $labels['collapse-all'] = 'Contraer todos'; $labels['threaded'] = 'Agrupar conversas'; - $labels['autoexpand_threads'] = 'Expandir os fíos de mensaxes'; $labels['do_expand'] = 'tódolos fíos'; $labels['expand_only_unread'] = 'só con mensaxes non lidas'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Enumerar columnas'; $labels['listsorting'] = 'Ordenar pola columna'; $labels['listorder'] = 'Ordenación'; $labels['listmode'] = 'Modo de vista da lista'; - $labels['folderactions'] = 'Accións cos cartafoles'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Baleirar'; $labels['importmessages'] = 'Importar mensaxes'; - $labels['quota'] = 'Uso de disco'; $labels['unknown'] = 'descoñecido'; $labels['unlimited'] = 'ilimitado'; - $labels['quicksearch'] = 'Busca rápida'; $labels['resetsearch'] = 'Restablecer a busca'; $labels['searchmod'] = 'Modificadores de busca'; $labels['msgtext'] = 'Mensaxe enteira'; $labels['body'] = 'Corpo'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Abrir nunha nova fiestra'; $labels['emlsave'] = 'Gardar (.eml)'; $labels['changeformattext'] = 'Amosar en texto plano'; $labels['changeformathtml'] = 'Amosar en HTML'; - -// message compose $labels['editasnew'] = 'Editar como nova'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar a mensaxe agora'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Notificación da entrega'; $labels['dsn'] = 'Notificación do estado de envío (DSN)'; $labels['mailreplyintro'] = 'O $date, $sender escribiu:'; $labels['originalmessage'] = 'Mensaxe orixinal'; - $labels['editidents'] = 'Modificar identidades'; $labels['spellcheck'] = 'Ortografía'; $labels['checkspelling'] = 'Revisar a ortografía'; $labels['resumeediting'] = 'Voltar á edición'; $labels['revertto'] = 'Voltar a'; - $labels['attach'] = 'Anexar'; $labels['attachments'] = 'Ficheiros anexos'; $labels['upload'] = 'Cargar'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Pechar'; $labels['messageoptions'] = 'Opcións da mensaxe...'; - $labels['low'] = 'Baixa'; $labels['lowest'] = 'A máis baixa'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alta'; $labels['highest'] = 'A máis alta'; - $labels['nosubject'] = '(Sen asunto)'; $labels['showimages'] = 'Amosar as imaxes'; $labels['alwaysshow'] = 'Amosar sempre as imaxes nas mensaxes de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Esta mensaxe é un borrador'; $labels['andnmore'] = '$nr máis...'; $labels['togglemoreheaders'] = 'Amosar máis cabecerias'; $labels['togglefullheaders'] = 'Conmutar cabeceiras en bruto'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Só texto'; $labels['savesentmessagein'] = 'Gardar a mensaxe enviada en'; $labels['dontsave'] = 'non gardar'; $labels['maxuploadsize'] = 'O tamaño máximo permitido por ficheiro é de $size'; - $labels['addcc'] = 'Engadir copia (CC)'; $labels['addbcc'] = 'Engadir copia oculta (BCC)'; $labels['addreplyto'] = 'Engadir respostar a (Reply-To)'; $labels['addfollowupto'] = 'Engadir respostar a todos (Followup-To)'; - -// mdn $labels['mdnrequest'] = 'O remitente desta mensaxe pediu ser notificado cando vostede a lea. Quere notificar ao remitente?'; $labels['receiptread'] = 'Notificación da entrega da mensaxe (lectura)'; $labels['yourmessage'] = 'Esta é unha notificación da entrega da súa mensaxe'; $labels['receiptnote'] = 'Nota: Esta notificación só confirma que a mensaxe se abriu no computador do destinatario. Non asegura que o destinatario a lera ou entendera o seu contido.'; - -// address boook $labels['name'] = 'Nome completo'; $labels['firstname'] = 'Nome'; $labels['surname'] = 'Apelidos'; @@ -304,7 +264,6 @@ $labels['search'] = 'Procurar'; $labels['advsearch'] = 'Procura avanzada'; $labels['advanced'] = 'Avanzado'; $labels['other'] = 'Outro'; - $labels['typehome'] = 'Casa'; $labels['typework'] = 'Traballo'; $labels['typeother'] = 'Outro'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistente'; $labels['typehomepage'] = 'Páxina principal'; $labels['typeblog'] = 'Blogue'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Engadir campo'; $labels['addcontact'] = 'Engadir novo contacto'; $labels['editcontact'] = 'Modificar este contacto'; $labels['contacts'] = 'Contactos'; $labels['contactproperties'] = 'Propiedades do contacto'; $labels['personalinfo'] = 'Información persoal'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Cancelar'; $labels['save'] = 'Gardar'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Mudar o nome'; $labels['addphoto'] = 'Engadir'; $labels['replacephoto'] = 'Substituír'; $labels['uploadphoto'] = 'Subir foto'; - $labels['newcontact'] = 'Novo contacto'; $labels['deletecontact'] = 'Eliminar os contactos seleccionados'; $labels['composeto'] = 'Redactar mensaxe para'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crear novo grupo de contactos'; $labels['grouprename'] = 'Mudar o nome do grupo'; $labels['groupdelete'] = 'Borrar o grupo'; $labels['groupremoveselected'] = 'Eliminar do grupo os contactos seleccionados'; - $labels['previouspage'] = 'Amosar o grupo anterior'; $labels['firstpage'] = 'Amosar o primeiro grupo'; $labels['nextpage'] = 'Amosar o seguinte grupo'; $labels['lastpage'] = 'Amosar o último grupo'; - $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Enderezos persoais'; - $labels['searchsave'] = 'Gardar procura'; $labels['searchdelete'] = 'Eliminar procura'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde ficheiro:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Engadir contactos ao caderno de enderezos:'; $labels['importreplace'] = 'Substituír completamente o caderno de enderezos'; $labels['importdesc'] = 'Pode cargar contactos desde un caderno de enderezos preexistente.
Pódense importar enderezos en formato vCard ou CSV (valores separados por comas)'; $labels['done'] = 'Rematado'; - -// settings $labels['settingsfor'] = 'Axustes de'; $labels['about'] = 'Acerca de'; $labels['preferences'] = 'Preferencias'; $labels['userpreferences'] = 'Preferencias de usuario'; $labels['editpreferences'] = 'Editar preferencias de usuario'; - $labels['identities'] = 'Identidades'; $labels['manageidentities'] = 'Administrar as identidades desta conta'; $labels['newidentity'] = 'Nova identidade'; - $labels['newitem'] = 'Novo'; $labels['edititem'] = 'Editar'; - $labels['preferhtml'] = 'Prefiro HTML'; $labels['defaultcharset'] = 'Xogo de caracteres por omisión'; $labels['htmlmessage'] = 'Mensaxe HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Manexar avisos emerxentes como xanelas estándar'; $labels['forwardmode'] = 'Reenvio de mensaxes'; $labels['inline'] = 'inserido'; $labels['asattachment'] = 'coma anexo'; - $labels['folder'] = 'Cartafol'; $labels['folders'] = 'Cartafoles'; $labels['foldername'] = 'Nome do cartafol'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tipo do cartafol'; $labels['personalfolder'] = 'Cartafol privado'; $labels['otherfolder'] = 'Cartafol de outro usuario'; $labels['sharedfolder'] = 'Cartafol público'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Orde ascendente'; $labels['sortdesc'] = 'Orde descendente'; $labels['undo'] = 'Desfacer'; - $labels['installedplugins'] = 'Complementos instalados'; $labels['plugin'] = 'Complemento'; $labels['version'] = 'Versión'; $labels['source'] = 'Fonte'; $labels['license'] = 'Licenza'; $labels['support'] = 'Obter axuda'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KiB'; $labels['MB'] = 'MiB'; $labels['GB'] = 'GiB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglés'; $labels['westerneuropean'] = 'Europeo Occidental'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Xaponés'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chinés'; - ?> diff --git a/program/localization/gl_ES/messages.inc b/program/localization/gl_ES/messages.inc index 8fc2cb424..f291fccfe 100644 --- a/program/localization/gl_ES/messages.inc +++ b/program/localization/gl_ES/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Non foi posible crear/mover o cartafol no cart $messages['messagetoobig'] = 'A mensaxe é demasiado grande para procesala'; $messages['attachmentvalidationerror'] = 'ATENCIÓN! Este anexo é sospeitoso porque o seu tipo non coincide o tipo declarado na mensaxe. Se non confía no remitente, non debería abrilo, porque podería conter un virus ou malware.

Tipo agardado: $expected; Tipo detectado: $detected'; $messages['noscriptwarning'] = 'Atención: Este servicio de correo web precisa de Javascript!. Por favor, active javascript nas opción do seu navegador.'; - ?> diff --git a/program/localization/he_IL/labels.inc b/program/localization/he_IL/labels.inc index 7ad04ab4a..b079c3c38 100644 --- a/program/localization/he_IL/labels.inc +++ b/program/localization/he_IL/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'ברוך בואך אל $product'; $labels['username'] = 'שם משתמש'; $labels['password'] = 'סיסמה'; $labels['server'] = 'שרת'; $labels['login'] = 'כניסה'; - -// taskbar $labels['logout'] = 'יציאה'; $labels['mail'] = 'רשימת הודעות'; $labels['settings'] = 'הגדרות אישיות'; $labels['addressbook'] = 'פנקס כתובות'; - -// mailbox names $labels['inbox'] = 'נכנס'; $labels['drafts'] = 'טיוטות'; $labels['sent'] = 'נשלח'; $labels['trash'] = 'אשפה'; $labels['junk'] = 'זבל'; $labels['show_real_foldernames'] = 'הצגת שמות אמיתיים של תיקיות מיוחדות'; - -// message listing $labels['subject'] = 'נושא'; $labels['from'] = 'מאת'; $labels['sender'] = 'השולח'; @@ -54,13 +47,11 @@ $labels['priority'] = 'עדיפות'; $labels['organization'] = 'ארגון'; $labels['readstatus'] = 'נקרא'; $labels['listoptions'] = 'הצגת אפשרויות...'; - $labels['mailboxlist'] = 'תיקיות'; $labels['messagesfromto'] = 'הודעות $from עד $to מתוך $count'; $labels['threadsfromto'] = 'שרשור $from עד $to מתוך $count'; $labels['messagenrof'] = 'הודעה $nr מתוך $count'; $labels['fromtoshort'] = '$from – $to מתוך $count'; - $labels['copy'] = 'העתק'; $labels['move'] = 'העבר'; $labels['moveto'] = 'תיוק ב...'; @@ -68,13 +59,9 @@ $labels['download'] = 'הורדה'; $labels['open'] = 'לפתוח'; $labels['showattachment'] = 'הצגה'; $labels['showanyway'] = 'להציג בכל מקרה'; - $labels['filename'] = 'שם קובץ'; $labels['filesize'] = 'גודל קובץ'; - $labels['addtoaddressbook'] = 'הוספה לפנקס כתובות'; - -// weekdays short $labels['sun'] = 'יום א'; $labels['mon'] = 'יום ב'; $labels['tue'] = 'יום ג'; @@ -82,8 +69,6 @@ $labels['wed'] = 'יום ד'; $labels['thu'] = 'יום ה'; $labels['fri'] = 'יום ו'; $labels['sat'] = 'יום ש'; - -// weekdays long $labels['sunday'] = 'ראשון'; $labels['monday'] = 'שני'; $labels['tuesday'] = 'שלישי'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'רביעי'; $labels['thursday'] = 'חמישי'; $labels['friday'] = 'ששי'; $labels['saturday'] = 'שבת'; - -// months short $labels['jan'] = 'ינו'; $labels['feb'] = 'פבר'; $labels['mar'] = 'מרץ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'ספט'; $labels['oct'] = 'אוק'; $labels['nov'] = 'נוב'; $labels['dec'] = 'דצמ'; - -// months long $labels['longjan'] = 'ינואר'; $labels['longfeb'] = 'פברואר'; $labels['longmar'] = 'מרץ'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'ספטמבר'; $labels['longoct'] = 'אוקטובר'; $labels['longnov'] = 'נובמבר'; $labels['longdec'] = 'דצמבר'; - $labels['today'] = 'היום'; - -// toolbar buttons $labels['refresh'] = 'רענון'; $labels['checkmail'] = 'משיכת הודעות חדשות'; $labels['compose'] = 'כתיבת הודעה'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'פעולות נוספות...'; $labels['more'] = 'עוד'; $labels['back'] = 'חזרה'; $labels['options'] = 'אפשרויות'; - $labels['select'] = 'בחירה'; $labels['all'] = 'הכל'; $labels['none'] = 'כלום'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'הרחבה כלית'; $labels['expand-unread'] = 'הרחבה טרם נקרא'; $labels['collapse-all'] = 'כינוס כללי'; $labels['threaded'] = 'משורשר'; - $labels['autoexpand_threads'] = 'הרחבת הודעות משורשרות'; $labels['do_expand'] = 'כל השרשורים'; $labels['expand_only_unread'] = 'רק עם הודעות שטרם נקראו'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'רשימת עמודות'; $labels['listsorting'] = 'המיון לפי העמודה'; $labels['listorder'] = 'סדר מיון'; $labels['listmode'] = 'אופן הצגת רשימה'; - $labels['folderactions'] = 'פעולות על תיקים'; $labels['compact'] = 'פינוי שטח לא מנוצל'; $labels['empty'] = 'ריקון'; $labels['importmessages'] = 'ייבוא הודעות'; - $labels['quota'] = 'ניצול קיבולת'; $labels['unknown'] = 'לא ידוע'; $labels['unlimited'] = 'ללא הגבלה'; - $labels['quicksearch'] = 'חיפוש מהיר'; $labels['resetsearch'] = 'ניקוי תיבת החיפוש'; $labels['searchmod'] = 'מאפייני חיפוש'; $labels['msgtext'] = 'כל ההודעה'; $labels['body'] = 'גוף ההודעה'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'פתיחה בחלון חדש'; $labels['emlsave'] = 'הורדת הודעה בפורמט EML'; $labels['changeformattext'] = 'הצגה בפורמט לא מעוצב'; $labels['changeformathtml'] = 'הצגה בפורמט HTML'; - -// message compose $labels['editasnew'] = 'עריכת ההודעה כחדשה'; $labels['send'] = 'שלח'; $labels['sendmessage'] = 'משלוח מיידי'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'אישור קבלה'; $labels['dsn'] = 'הודעה על מצב המסירה'; $labels['mailreplyintro'] = ':כתב $sender, $date בתאריך'; $labels['originalmessage'] = 'הודעה מקורית'; - $labels['editidents'] = 'עריכת זהויות'; $labels['spellcheck'] = 'איות'; $labels['checkspelling'] = 'בדיקת איות'; $labels['resumeediting'] = 'המשך עריכה'; $labels['revertto'] = 'חזור למצב קודם'; - $labels['attach'] = 'צירוף'; $labels['attachments'] = 'צרופות'; $labels['upload'] = 'העלאה'; $labels['uploadprogress'] = '( $total מתוך $current ) $percent'; $labels['close'] = 'סגירה'; $labels['messageoptions'] = 'אפשרויות הודעה...'; - $labels['low'] = 'נמוך'; $labels['lowest'] = 'נמוך ביותר'; $labels['normal'] = 'רגיל'; $labels['high'] = 'גבוה'; $labels['highest'] = 'גבוה ביותר'; - $labels['nosubject'] = '(ללא נושא)'; $labels['showimages'] = 'הצגת תמונות'; $labels['alwaysshow'] = '$sender תמיד להציג תמונות מאת'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'זו טיוטה של הודעה'; $labels['andnmore'] = 'עוד $nr'; $labels['togglemoreheaders'] = 'הראה נתוני מערכת נוספים של ההודעה'; $labels['togglefullheaders'] = 'הראה / בטל צפיה בנתוני מערכת של ההודעה'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'ללא עיצוב'; $labels['savesentmessagein'] = 'היכן לשמור ההודעה?'; $labels['dontsave'] = 'ללא שמירה'; $labels['maxuploadsize'] = 'גודל מקסימלי לקובץ הוא $size'; - $labels['addcc'] = 'הוספת מכותב לידיעה'; $labels['addbcc'] = 'הוספת מכותב נסתר'; $labels['addreplyto'] = 'הוספת כתובת למענה'; $labels['addfollowupto'] = 'הוספת כתובת להעברת הודעה'; - -// mdn $labels['mdnrequest'] = 'השולח ביקש לדעת אם ההודעה נקראה. האם להודיע לשולח?'; $labels['receiptread'] = 'אישור קבלה (נקרא)'; $labels['yourmessage'] = 'אישור קבלה להודעתך'; $labels['receiptnote'] = 'הערה: האישור אינו מבטיח שהנמען קרא או הבין את תוכן ההודעה.'; - -// address boook $labels['name'] = 'שם להצגה'; $labels['firstname'] = 'שם פרטי'; $labels['surname'] = 'שם משפחה'; @@ -304,7 +264,6 @@ $labels['search'] = 'חיפוש'; $labels['advsearch'] = 'חיםוש מתקדם'; $labels['advanced'] = 'מתקדם'; $labels['other'] = 'אחר'; - $labels['typehome'] = 'בית'; $labels['typework'] = 'עבודה'; $labels['typeother'] = 'אחר'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'עוזר/ת'; $labels['typehomepage'] = 'דף הבית'; $labels['typeblog'] = 'יומן רשת'; $labels['typeprofile'] = 'פרופיל'; - $labels['addfield'] = 'הוסף שדה'; $labels['addcontact'] = 'הוספת איש קשר'; $labels['editcontact'] = 'עריכת איש קשר'; $labels['contacts'] = 'אנשי קשר'; $labels['contactproperties'] = 'מאפייני איש קשר'; $labels['personalinfo'] = 'מידע אישי'; - $labels['edit'] = 'עריכה'; $labels['cancel'] = 'ביטול'; $labels['save'] = 'שמירה'; @@ -335,7 +292,6 @@ $labels['rename'] = 'שינוי שם'; $labels['addphoto'] = 'הוספה'; $labels['replacephoto'] = 'החלפה'; $labels['uploadphoto'] = 'העלאת תמונה'; - $labels['newcontact'] = 'איש קשר חדש'; $labels['deletecontact'] = 'מחיקת אנשי קשר מסומנים'; $labels['composeto'] = 'יצירת הודעה אל'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'יצירת קבוצה חדשה של אנשי קש $labels['grouprename'] = 'שינוי שם קבוצה'; $labels['groupdelete'] = 'מחיקת קבוצה'; $labels['groupremoveselected'] = 'אנשי הקשר שנבחרו יוסרו מהקבוצה'; - $labels['previouspage'] = 'הצגת הקבוצה הקודמת'; $labels['firstpage'] = 'הצגת הקבוצה הראשונה'; $labels['nextpage'] = 'הצגת הקבוצה הבאה'; $labels['lastpage'] = 'הצגת הקבוצה האחרונה'; - $labels['group'] = 'קבוצה'; $labels['groups'] = 'קבוצות'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'כתובות פרטיות'; - $labels['searchsave'] = 'שמירת החיפוש'; $labels['searchdelete'] = 'מחיקת החיפוש'; - $labels['import'] = 'ייבוא'; $labels['importcontacts'] = 'ייבוא אנשי קשר'; $labels['importfromfile'] = 'ייבוא מקובץ'; @@ -372,21 +324,16 @@ $labels['importdesc'] = 'ניתן לטעון אנשי קשר מקובץ חיצו vCard או CSV המופרד על ידי פסיקים.'; $labels['done'] = 'בוצע'; - -// settings $labels['settingsfor'] = 'הגדרות עבור'; $labels['about'] = 'אודות'; $labels['preferences'] = 'העדפות'; $labels['userpreferences'] = 'העדפות משתמש'; $labels['editpreferences'] = 'עריכה של העדפות משתמש'; - $labels['identities'] = 'זהויות'; $labels['manageidentities'] = 'ניהול זהויות לחשבון זה'; $labels['newidentity'] = 'זהות חדשה'; - $labels['newitem'] = 'רשומה חדשה'; $labels['edititem'] = 'עריכת רשומה'; - $labels['preferhtml'] = 'הצגת HTML'; $labels['defaultcharset'] = 'ברירת מחדל של תווים'; $labels['htmlmessage'] = 'תוכן HTML'; @@ -482,7 +429,6 @@ $labels['standardwindows'] = 'חלונות קופצים יטופלו כחלונ $labels['forwardmode'] = 'הפנית הודעות'; $labels['inline'] = 'חלק מההודעה'; $labels['asattachment'] = 'כצרופה'; - $labels['folder'] = 'תיק'; $labels['folders'] = 'תיקיות'; $labels['foldername'] = 'שם תיק'; @@ -503,26 +449,20 @@ $labels['foldertype'] = 'סוג תיקיה'; $labels['personalfolder'] = 'תיקיה פרטית'; $labels['otherfolder'] = 'תיקית משתמש נוספת'; $labels['sharedfolder'] = 'תיקיה ציבורית'; - $labels['sortby'] = 'מיון לפי'; $labels['sortasc'] = 'מיון בסדר עולה'; $labels['sortdesc'] = 'מיון בסדר יורד'; $labels['undo'] = 'ביטול שינוי'; - $labels['installedplugins'] = 'תוספים מותקנים'; $labels['plugin'] = 'תוסף תוכנה'; $labels['version'] = 'גירסה'; $labels['source'] = 'מקור'; $labels['license'] = 'רשיון'; $labels['support'] = 'קבלת תמיכה'; - -// units $labels['B'] = 'בייט'; $labels['KB'] = 'ק"ב'; $labels['MB'] = 'מ"ב'; $labels['GB'] = 'ג"ב'; - -// character sets $labels['unicode'] = 'יוניקוד'; $labels['english'] = 'אנגלית'; $labels['westerneuropean'] = 'מערב אירופי'; @@ -541,5 +481,4 @@ $labels['vietnamese'] = 'וויטנאמי'; $labels['japanese'] = 'יפני'; $labels['korean'] = 'קוריאני'; $labels['chinese'] = 'סיני'; - ?> diff --git a/program/localization/he_IL/messages.inc b/program/localization/he_IL/messages.inc index 37ebcea01..81d24b87a 100644 --- a/program/localization/he_IL/messages.inc +++ b/program/localization/he_IL/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'לא ניתן ליצור/להעביר תיקי $messages['messagetoobig'] = 'ההודעה גדולה מעבר ליכולת העיבוד של התוכנה'; $messages['attachmentvalidationerror'] = 'זהירות ! הצרופה חשודה כי אינה מהסוג שצוין בהודעה. אם לא ניתן לבטוח בשולח אזי להמנע מלפתוח את הקובץ בדפדפן כי הקובץ יכול להכיל קוד זדוני.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'זהירות! תוכנה זו דורשת שימוש בג\'אווהסקריפט! כדי להשתמש בכלי, יש לבחור באפשרות זו בהגדרות הדפדפן.'; - ?> diff --git a/program/localization/hi_IN/labels.inc b/program/localization/hi_IN/labels.inc index 303e0b5fb..9d944264a 100644 --- a/program/localization/hi_IN/labels.inc +++ b/program/localization/hi_IN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product में स्वागत है'; $labels['username'] = 'यूसरनाम'; $labels['password'] = 'पासवर्ड'; $labels['server'] = 'सर्वर'; $labels['login'] = 'लॉगिन'; - -// taskbar $labels['logout'] = 'लॉगआऊट'; $labels['mail'] = 'ई-मेल'; $labels['settings'] = 'निजी सैटिंग'; $labels['addressbook'] = 'पता खाता'; - -// mailbox names $labels['inbox'] = 'इनबॉक्स'; $labels['drafts'] = 'ड्राफ़ट'; $labels['sent'] = 'भेजा गया'; $labels['trash'] = 'रद्दी'; $labels['junk'] = 'स्पैम'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'विशय'; $labels['from'] = 'भेजने वाला'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'मेल की महत्वपूर्णता'; $labels['organization'] = 'संस्था'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'फ़ोल्डर'; $labels['messagesfromto'] = '$from से ले कर $to, $count मेल में से'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr नम्बर मेल, $count में से'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'कार्बन'; $labels['move'] = 'स्थानांतरित करें'; $labels['moveto'] = 'खीस्काऐं...'; @@ -68,13 +59,9 @@ $labels['download'] = 'डाऊनलोड'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'फ़ाईल नाम'; $labels['filesize'] = 'फ़ाईल माप'; - $labels['addtoaddressbook'] = 'पता खाते में जोडें'; - -// weekdays short $labels['sun'] = 'रवि'; $labels['mon'] = 'सोम'; $labels['tue'] = 'मंग'; @@ -82,8 +69,6 @@ $labels['wed'] = 'बुध'; $labels['thu'] = 'गुरु'; $labels['fri'] = 'शुक्र'; $labels['sat'] = 'शनि'; - -// weekdays long $labels['sunday'] = 'रविवार'; $labels['monday'] = 'सोमवार'; $labels['tuesday'] = 'मंगलवार'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'बुधवार'; $labels['thursday'] = 'गुरुवार'; $labels['friday'] = 'शुक्रवार'; $labels['saturday'] = 'शनिवार'; - -// months short $labels['jan'] = 'जनवरी'; $labels['feb'] = 'फ़रवरी'; $labels['mar'] = 'मार्च'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'जनवरी'; $labels['longfeb'] = 'फ़रवरी'; $labels['longmar'] = 'मार्च'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'सितंबर'; $labels['longoct'] = 'अक्टूबर'; $labels['longnov'] = 'नवम्बर'; $labels['longdec'] = 'दिसंबर'; - $labels['today'] = 'आज'; - -// toolbar buttons $labels['refresh'] = 'ताज़ा करें'; $labels['checkmail'] = 'नये मेल लाऐं'; $labels['compose'] = 'मेल लिखें'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'चुनें'; $labels['all'] = 'सभी'; $labels['none'] = 'कोई नहीं'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'छोटा करें'; $labels['empty'] = 'मेल रद्दी में डालें'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'डिस्क उपयोग'; $labels['unknown'] = 'अज्ञात'; $labels['unlimited'] = 'असीम'; - $labels['quicksearch'] = 'तेज़ खोज'; $labels['resetsearch'] = 'खोज खाली करें'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'मेल भेजें'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'मेल रसीद'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'स्पैलिंग जाँचें'; $labels['resumeediting'] = 'सम्पादन फिर शुरू करें'; $labels['revertto'] = 'पहले की स्थिती पर जाऐं'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'जुडे फाईल'; $labels['upload'] = 'अपलोड'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बंद'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'कम'; $labels['lowest'] = 'सबसे कम'; $labels['normal'] = 'साधारण'; $labels['high'] = 'उच्च'; $labels['highest'] = 'उच्चतम'; - $labels['nosubject'] = '(कोई विशय नहीं)'; $labels['showimages'] = 'चित्र दिखाऐं'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'ऐच-टी-ऐम-एल (HTML)'; $labels['plaintoggle'] = 'सादा पाठ'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'दिखने वाला नाम'; $labels['firstname'] = 'पहला नाम'; $labels['surname'] = 'उपनाम'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नया पता जोडें'; $labels['editcontact'] = 'पता सम्पाद'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'सम्पाद'; $labels['cancel'] = 'रद्द'; $labels['save'] = 'सहेज'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'नया पता कार्ड बनाऐं'; $labels['deletecontact'] = 'चुने पते मिटाऐं'; $labels['composeto'] = 'को मेल भेजें'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'इससे पहले के बन्डल को दिखाऐं'; $labels['firstpage'] = 'पहला बन्डल दिखाऐं'; $labels['nextpage'] = 'अगला बन्डल दिखाऐं'; $labels['lastpage'] = 'आखिरी बन्डल दिखाऐं'; - $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'इनके विन्यास:'; $labels['about'] = 'About'; $labels['preferences'] = 'पसंद'; $labels['userpreferences'] = 'यूसर पसंद'; $labels['editpreferences'] = 'यूसर पसंद सम्पादें'; - $labels['identities'] = 'पहचान'; $labels['manageidentities'] = 'इस खाते के पहचान व्यवस्थित करें'; $labels['newidentity'] = 'नया पहचान'; - $labels['newitem'] = 'नया चीज़'; $labels['edititem'] = 'चीज़ सम्पादें'; - $labels['preferhtml'] = 'ऐच-टी-ऐम-ऐल(HTML) दिखाऐं'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ऐच-टी-ऐम-ऐल (HTML) रूप मेल करें'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'फ़ोल्डर'; $labels['folders'] = 'फ़ोल्डर'; $labels['foldername'] = 'फ़ोल्डर नाम'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'ऐसे तय करें'; $labels['sortasc'] = 'पहले से आखीरी तय करें'; $labels['sortdesc'] = 'आखीरी से पहले तय करें'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/hi_IN/messages.inc b/program/localization/hi_IN/messages.inc index ffbc6f436..1865863a7 100644 --- a/program/localization/hi_IN/messages.inc +++ b/program/localization/hi_IN/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/hr_HR/labels.inc b/program/localization/hr_HR/labels.inc index 4578fed2b..e26fe7ca5 100644 --- a/program/localization/hr_HR/labels.inc +++ b/program/localization/hr_HR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Dobrodošli na $product'; $labels['username'] = 'Korisničko ime'; $labels['password'] = 'Lozinka'; $labels['server'] = 'Poslužitelj'; $labels['login'] = 'Prijava'; - -// taskbar $labels['logout'] = 'Odjava'; $labels['mail'] = 'Pošta'; $labels['settings'] = 'Postavke'; $labels['addressbook'] = 'Imenik'; - -// mailbox names $labels['inbox'] = 'Pristigla pošta'; $labels['drafts'] = 'Predlošci'; $labels['sent'] = 'Poslano'; $labels['trash'] = 'Smeće'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Naslov'; $labels['from'] = 'Od'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organizacija'; $labels['readstatus'] = 'Pročitano'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Mape'; $labels['messagesfromto'] = 'Poruke od $from do $to od ukupno $count'; $labels['threadsfromto'] = 'Teme od $from do $to od ukupno $count'; $labels['messagenrof'] = 'Poruka broj $nr od $count'; $labels['fromtoshort'] = '$from - $to od $count'; - $labels['copy'] = 'Kopiraj'; $labels['move'] = 'Premjesti'; $labels['moveto'] = 'Premjesti u...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Preuzmi (download)'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Ime datoteke'; $labels['filesize'] = 'Veličina datoteke'; - $labels['addtoaddressbook'] = 'Dodaj u imenik'; - -// weekdays short $labels['sun'] = 'Ned'; $labels['mon'] = 'Pon'; $labels['tue'] = 'Uto'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Sri'; $labels['thu'] = 'Čet'; $labels['fri'] = 'Pet'; $labels['sat'] = 'Sub'; - -// weekdays long $labels['sunday'] = 'Nedjelja'; $labels['monday'] = 'Ponedjeljak'; $labels['tuesday'] = 'Utorak'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Srijeda'; $labels['thursday'] = 'Četvrtak'; $labels['friday'] = 'Petak'; $labels['saturday'] = 'Subota'; - -// months short $labels['jan'] = 'Sij'; $labels['feb'] = 'Velj'; $labels['mar'] = 'Ožu'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Ruj'; $labels['oct'] = 'Lis'; $labels['nov'] = 'Stu'; $labels['dec'] = 'Pro'; - -// months long $labels['longjan'] = 'Siječanj'; $labels['longfeb'] = 'Veljača'; $labels['longmar'] = 'Ožujak'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Rujan'; $labels['longoct'] = 'Listopad'; $labels['longnov'] = 'Studeni'; $labels['longdec'] = 'Prosinac'; - $labels['today'] = 'Danas'; - -// toolbar buttons $labels['refresh'] = 'Osvježi'; $labels['checkmail'] = 'Provjera novih poruka'; $labels['compose'] = 'Nova poruka'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Više akcija'; $labels['more'] = 'Više'; $labels['back'] = 'Natrag'; $labels['options'] = 'Postavke'; - $labels['select'] = 'Odaberi'; $labels['all'] = 'Sve'; $labels['none'] = 'Ništa'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Proširi sve'; $labels['expand-unread'] = 'Proširi nepročitane'; $labels['collapse-all'] = 'Zatvori sve'; $labels['threaded'] = 'Tematski prikaz'; - $labels['autoexpand_threads'] = 'Proširi teme poruka'; $labels['do_expand'] = 'Sve teme'; $labels['expand_only_unread'] = 'samo s nepročitanim porukama'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Kolone'; $labels['listsorting'] = 'Sortirajuća kolona'; $labels['listorder'] = 'Sortirajući redoslijed'; $labels['listmode'] = 'Model pregleda listi'; - $labels['folderactions'] = 'Akcije mapa'; $labels['compact'] = 'Kompresiranje'; $labels['empty'] = 'Isprazni'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Kvota'; $labels['unknown'] = 'nepoznato'; $labels['unlimited'] = 'beskonačna'; - $labels['quicksearch'] = 'Brza pretraga'; $labels['resetsearch'] = 'Prikaži sve poruke'; $labels['searchmod'] = 'Postavke pretrage'; $labels['msgtext'] = 'Cijela poruka'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Otvori u novom prozoru'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Uredi kao novo'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Pošalji poruku'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Potvrda o primitku poruke'; $labels['dsn'] = 'Potvrda o poslanoj poruci'; $labels['mailreplyintro'] = 'Dana $date, $sender je napisao(la):'; $labels['originalmessage'] = 'Izvorna Poruka'; - $labels['editidents'] = 'Promijeni identitete'; $labels['spellcheck'] = 'Piši'; $labels['checkspelling'] = 'Provjera pravopisa'; $labels['resumeediting'] = 'Povratak u pisanje'; $labels['revertto'] = 'Vrati na'; - $labels['attach'] = 'Priloži'; $labels['attachments'] = 'Privitci (Attachments)'; $labels['upload'] = 'Dodaj'; $labels['uploadprogress'] = '$percent ($current od $total)'; $labels['close'] = 'Zatvori'; $labels['messageoptions'] = 'Opcije poruka...'; - $labels['low'] = 'Nizak'; $labels['lowest'] = 'Najniži'; $labels['normal'] = 'Srednji'; $labels['high'] = 'Visok'; $labels['highest'] = 'Najviši'; - $labels['nosubject'] = '(bez naslova)'; $labels['showimages'] = 'Prikaži slike'; $labels['alwaysshow'] = 'Uvijek prikaži slike od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Ova poruka je skica (draft)'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Samo tekst'; $labels['savesentmessagein'] = 'Spremi poslane poruke u'; $labels['dontsave'] = 'ne spremaj'; $labels['maxuploadsize'] = 'Maksimalna dozvoljena velicina datoteke je $size'; - $labels['addcc'] = 'Dodaj Cc'; $labels['addbcc'] = 'Dodaj Bcc'; $labels['addreplyto'] = 'Dodaj Odgovori-na'; $labels['addfollowupto'] = 'Dodaj Nastavak-na'; - -// mdn $labels['mdnrequest'] = 'Pošiljaoc ove poruke je tražio da bude obaviješten o njenom primitku. Želite li obavijestiti pošiljaoca?'; $labels['receiptread'] = 'Vrati potvrdu (pročitano)'; $labels['yourmessage'] = 'Ovo je vraćena potvrda vaše poruke'; $labels['receiptnote'] = 'Info: Ova poruka samo potvrđuje da se poruka prikazala na računalu primaoca. Nema garancije da je primaoc pročitao ili razumio sadržaj poruke.'; - -// address boook $labels['name'] = 'Puno ime'; $labels['firstname'] = 'Ime'; $labels['surname'] = 'Prezime'; @@ -304,7 +264,6 @@ $labels['search'] = 'Pretraga'; $labels['advsearch'] = 'Napredna Pretraga'; $labels['advanced'] = 'Napredno'; $labels['other'] = 'Ostalo'; - $labels['typehome'] = 'Kućni broj'; $labels['typework'] = 'Poslovni broj'; $labels['typeother'] = 'Ostalo'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistent'; $labels['typehomepage'] = 'Početna stranica'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Dodaj polje...'; $labels['addcontact'] = 'Dodaj novi kontakt'; $labels['editcontact'] = 'Izmjeni kontakt'; $labels['contacts'] = 'Kontakti'; $labels['contactproperties'] = 'Svojstva kontakta'; $labels['personalinfo'] = 'Osobni podaci'; - $labels['edit'] = 'Izmjeni'; $labels['cancel'] = 'Odustani'; $labels['save'] = 'Spremi'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Preimenuj'; $labels['addphoto'] = 'Dodaj'; $labels['replacephoto'] = 'Smijeniti'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Dodaj novi kontakt'; $labels['deletecontact'] = 'Obriši odabrane kontakte'; $labels['composeto'] = 'Napiši mail...'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Napravi novu kontaktnu grupu'; $labels['grouprename'] = 'Promijeni ime grupe'; $labels['groupdelete'] = 'Izbriši grupu'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Prethodna strana'; $labels['firstpage'] = 'Prva strana'; $labels['nextpage'] = 'Slijedeća strana'; $labels['lastpage'] = 'Zadnja strana'; - $labels['group'] = 'Grupa'; $labels['groups'] = 'Grupe'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Privatna adresa'; - $labels['searchsave'] = 'Pohrani pretragu'; $labels['searchdelete'] = 'Obriši pretragu'; - $labels['import'] = 'Uvoz'; $labels['importcontacts'] = 'Uvoz kontakta'; $labels['importfromfile'] = 'Uvezi iz datoteke:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Dodaj nove kontakte u imenik:'; $labels['importreplace'] = 'Prepiši cijeli adresar'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Završeno'; - -// settings $labels['settingsfor'] = 'Postavke za'; $labels['about'] = 'O programu'; $labels['preferences'] = 'Postavke'; $labels['userpreferences'] = 'Korisničke postavke'; $labels['editpreferences'] = 'Izmjena postavki'; - $labels['identities'] = 'Identiteti'; $labels['manageidentities'] = 'Podesi identitete za ovaj nalog'; $labels['newidentity'] = 'Dodaj identitet'; - $labels['newitem'] = 'Novo'; $labels['edititem'] = 'Uredi'; - $labels['preferhtml'] = 'HTML format u prednosti'; $labels['defaultcharset'] = 'Zadani skup znakova'; $labels['htmlmessage'] = 'HTML format poruke'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Mapa'; $labels['folders'] = 'Mape'; $labels['foldername'] = 'Ime mape'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Vrsta mape'; $labels['personalfolder'] = 'Privatna mapa'; $labels['otherfolder'] = 'Mapa drugih korisnika'; $labels['sharedfolder'] = 'Javna mapa'; - $labels['sortby'] = 'Sortiraj po'; $labels['sortasc'] = 'Sortiraj rastućim nizom'; $labels['sortdesc'] = 'Sortiraj opadajućim nizom'; $labels['undo'] = 'Poništi'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Inačica'; $labels['source'] = 'Izvor'; $labels['license'] = 'Licenca'; $labels['support'] = 'Podrška'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engleski'; $labels['westerneuropean'] = 'Zapadno Evropski'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vijetnamski'; $labels['japanese'] = 'Japanski'; $labels['korean'] = 'Korejski'; $labels['chinese'] = 'Kineski'; - ?> diff --git a/program/localization/hr_HR/messages.inc b/program/localization/hr_HR/messages.inc index 0b96c97f2..58a6858cd 100644 --- a/program/localization/hr_HR/messages.inc +++ b/program/localization/hr_HR/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nije moguće stvoriti/pomaknuti mapu u odabran $messages['messagetoobig'] = 'Dio poruke je prevelik za procesiranje.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/hu_HU/labels.inc b/program/localization/hu_HU/labels.inc index 5e09df163..e263b120e 100644 --- a/program/localization/hu_HU/labels.inc +++ b/program/localization/hu_HU/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Üdvözli a $product'; $labels['username'] = 'Felhasználónév'; $labels['password'] = 'Jelszó'; $labels['server'] = 'Szerver'; $labels['login'] = 'Bejelentkezés'; - -// taskbar $labels['logout'] = 'Kijelentkezés'; $labels['mail'] = 'E-mail'; $labels['settings'] = 'Beállítások'; $labels['addressbook'] = 'Címjegyzék'; - -// mailbox names $labels['inbox'] = 'Érkezett levelek'; $labels['drafts'] = 'Piszkozatok'; $labels['sent'] = 'Küldött levelek'; $labels['trash'] = 'Törölt elemek'; $labels['junk'] = 'Kéretlen levelek'; $labels['show_real_foldernames'] = 'Az valós nevek megjelenítése a speciális mappáknál.'; - -// message listing $labels['subject'] = 'Tárgy'; $labels['from'] = 'Feladó'; $labels['sender'] = 'Feladó'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Sürgősség'; $labels['organization'] = 'Szervezet'; $labels['readstatus'] = 'Olvasott'; $labels['listoptions'] = 'Üzenetlista beállítások...'; - $labels['mailboxlist'] = 'Mappák'; $labels['messagesfromto'] = 'Üzenetek: $from - $to / $count'; $labels['threadsfromto'] = 'Témák ($from - $to, összesen $count)'; $labels['messagenrof'] = '$nr / $count üzenet'; $labels['fromtoshort'] = '$from – $to / $count'; - $labels['copy'] = 'Másolás'; $labels['move'] = 'Áthelyezés'; $labels['moveto'] = 'Áthelyezés...'; @@ -68,13 +59,9 @@ $labels['download'] = 'letöltés'; $labels['open'] = 'Megnyítás'; $labels['showattachment'] = 'Megjelenítés'; $labels['showanyway'] = 'Megjelnités mindenképpen'; - $labels['filename'] = 'Fájl neve'; $labels['filesize'] = 'Fájl mérete'; - $labels['addtoaddressbook'] = 'Hozzáadás a címjegyzékhez'; - -// weekdays short $labels['sun'] = 'Vas'; $labels['mon'] = 'Hét'; $labels['tue'] = 'Kedd'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Szer'; $labels['thu'] = 'Csüt'; $labels['fri'] = 'Pén'; $labels['sat'] = 'Szom'; - -// weekdays long $labels['sunday'] = 'Vasárnap'; $labels['monday'] = 'Hétfő'; $labels['tuesday'] = 'Kedd'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Szerda'; $labels['thursday'] = 'Csütörtök'; $labels['friday'] = 'Péntek'; $labels['saturday'] = 'Szombat'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Febr'; $labels['mar'] = 'Márc'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Szept'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Január'; $labels['longfeb'] = 'Február'; $labels['longmar'] = 'Március'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Szeptember'; $labels['longoct'] = 'Október'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Ma'; - -// toolbar buttons $labels['refresh'] = 'Frissítés'; $labels['checkmail'] = 'Új üzenetek ellenőrzése'; $labels['compose'] = 'Üzenet létrehozása'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'További műveletek...'; $labels['more'] = 'Még egy'; $labels['back'] = 'Vissza'; $labels['options'] = 'Beállítások'; - $labels['select'] = 'Kijelölés'; $labels['all'] = 'Összes'; $labels['none'] = 'Nincs'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Összes kibontása'; $labels['expand-unread'] = 'Olvasatlanok kibontása'; $labels['collapse-all'] = 'Összes összecsukása'; $labels['threaded'] = 'Téma nézet'; - $labels['autoexpand_threads'] = 'Témák kibontása'; $labels['do_expand'] = 'minden téma'; $labels['expand_only_unread'] = 'csak ahol van olvasatlan üzenet'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Oszlopok listája'; $labels['listsorting'] = 'Rendezés oszlopa'; $labels['listorder'] = 'Rendezés sorrendje'; $labels['listmode'] = 'Megjelenítési mód'; - $labels['folderactions'] = 'Mappaműveletek...'; $labels['compact'] = 'Tömörítés'; $labels['empty'] = 'Kiürítés'; $labels['importmessages'] = 'Üzenetek importálása'; - $labels['quota'] = 'Helyfoglalás'; $labels['unknown'] = 'ismeretlen'; $labels['unlimited'] = 'korlátlan'; - $labels['quicksearch'] = 'Gyorskeresés'; $labels['resetsearch'] = 'Alapállapot'; $labels['searchmod'] = 'Keresési opciók'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Teljes üzenet'; $labels['body'] = 'Törzs'; $labels['type'] = 'Típus'; $labels['namex'] = 'Név'; - $labels['openinextwin'] = 'Megnyitás új ablakban'; $labels['emlsave'] = 'Letöltés (.eml)'; $labels['changeformattext'] = 'Megjelenítés sima szöveges formátumban'; $labels['changeformathtml'] = 'Megjelenítés HTML formátumban'; - -// message compose $labels['editasnew'] = 'Szerkesztés újként'; $labels['send'] = 'Küldés'; $labels['sendmessage'] = 'Üzenet küldése'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Olvasási visszaigazolás'; $labels['dsn'] = 'Kézbesítési visszaigazolás'; $labels['mailreplyintro'] = '$date időpontban $sender ezt írta:'; $labels['originalmessage'] = 'Eredeti üzenet'; - $labels['editidents'] = 'Azonosítók szerkesztése'; $labels['spellcheck'] = 'Helyesírás ellenőrzés'; $labels['checkspelling'] = 'Helyesírás-ellenőrzés'; $labels['resumeediting'] = 'Helyesírás-ellenőrzés vége'; $labels['revertto'] = 'Visszaállítás erre'; - $labels['attach'] = 'Csatolás'; $labels['attachments'] = 'Csatolmányok'; $labels['upload'] = 'Feltöltés'; $labels['uploadprogress'] = '$percent ($current / $total)'; $labels['close'] = 'Bezárás'; $labels['messageoptions'] = 'Üzenetbeállítások...'; - $labels['low'] = 'Alacsony'; $labels['lowest'] = 'Legkisebb'; $labels['normal'] = 'Normál'; $labels['high'] = 'Magas'; $labels['highest'] = 'Legmagasabb'; - $labels['nosubject'] = '(nincs tárgy)'; $labels['showimages'] = 'Képek megjelenítése'; $labels['alwaysshow'] = 'Képek megjelenítése mindig, ha a feladó $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Ez egy piszkozat.'; $labels['andnmore'] = 'további $nr...'; $labels['togglemoreheaders'] = 'Több üzenet fejrész(header) megjelenítése'; $labels['togglefullheaders'] = 'Nyers üzenet fejléc megjelenítés- elrejtés'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Egyszerű szöveg'; $labels['savesentmessagein'] = 'Elküldött üzenet mentése ide'; $labels['dontsave'] = 'nincs mentés'; $labels['maxuploadsize'] = 'A maximális feltölthető fájl mérete $size'; - $labels['addcc'] = 'Cc (Másolati cím) hozzáadása'; $labels['addbcc'] = 'Bcc (titkos másolati cím) hozzáadása'; $labels['addreplyto'] = 'Válaszcím hozzáadása'; $labels['addfollowupto'] = 'Hírcsoport válasz hozzáadása'; - -// mdn $labels['mdnrequest'] = 'Az üzenet küldője értesítést kér arról, hogy elolvasta a levelet. El legyen küldve az olvasási visszaigazolás?'; $labels['receiptread'] = 'Olvasási visszaigazolás (olvasott)'; $labels['yourmessage'] = 'Ez az üzenete olvasási visszaigazolása'; $labels['receiptnote'] = 'Megjegyzés: Ez az olvasási visszaigazolás csak azt igazolja, hogy az üzenet megjelenítésre került a címzett számítógépén. Nincs rá garancia, hogy a címzett elolvasta volna az üzenetet illetve megértette volna annak tartalmát.'; - -// address boook $labels['name'] = 'Megjelenített név'; $labels['firstname'] = 'Keresztnév'; $labels['surname'] = 'Vezetéknév'; @@ -305,7 +265,6 @@ $labels['search'] = 'Keresés'; $labels['advsearch'] = 'Részletes keresés'; $labels['advanced'] = 'Haladó'; $labels['other'] = 'Egyéb'; - $labels['typehome'] = 'Otthon'; $labels['typework'] = 'Munkahely'; $labels['typeother'] = 'Egyéb'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Asszisztens'; $labels['typehomepage'] = 'Weboldal'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Új mező hozzáadása...'; $labels['addcontact'] = 'Új kapcsolat hozzáadása'; $labels['editcontact'] = 'Kapcsolat szerkesztése'; $labels['contacts'] = 'Kapcsolatok'; $labels['contactproperties'] = 'Kapcsolat tulajdonságai'; $labels['personalinfo'] = 'Személyes adatok'; - $labels['edit'] = 'Szerkesztés'; $labels['cancel'] = 'Mégsem'; $labels['save'] = 'Mentés'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Átnevezés'; $labels['addphoto'] = 'Kép hozzáadása'; $labels['replacephoto'] = 'Kép cseréje'; $labels['uploadphoto'] = 'Fotó feltöltése'; - $labels['newcontact'] = 'Új kapcsolat létrehozása'; $labels['deletecontact'] = 'Kijelölt kapcsolatok törlése'; $labels['composeto'] = 'E-mail küldése erre a címre'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Új csoport'; $labels['grouprename'] = 'Csoport átnevezése'; $labels['groupdelete'] = 'Csoport törlése'; $labels['groupremoveselected'] = 'A kijelölt partnerek törlése a csopotból'; - $labels['previouspage'] = 'Előző oldal'; $labels['firstpage'] = 'Első oldal'; $labels['nextpage'] = 'Következő oldal'; $labels['lastpage'] = 'Utolsó oldal'; - $labels['group'] = 'Csoport'; $labels['groups'] = 'Csoportok'; $labels['listgroup'] = 'Csoport tagjainak listája'; $labels['personaladrbook'] = 'Személyes címjegyzék'; - $labels['searchsave'] = 'Keresés mentése'; $labels['searchdelete'] = 'Keresés törlése'; - $labels['import'] = 'Importálás'; $labels['importcontacts'] = 'Kapcsolatok importálása'; $labels['importfromfile'] = 'Importálás fájlból:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Mind(csoport létrehozása amennyiben szükséges) $labels['importgroupsexisting'] = 'Csak már létező csoportoknak'; $labels['importdesc'] = 'Feltölthetsz partnereket egyébb már létező címjegyzékekből.
Jelenleg a következő két tipusú címjegyzékek importálása lehetséges vCard és a CSV (comma-separated/vesszővel tagolt) formátum.'; $labels['done'] = 'Kész'; - -// settings $labels['settingsfor'] = 'Beállítás'; $labels['about'] = 'Névjegy'; $labels['preferences'] = 'Beállítások'; $labels['userpreferences'] = 'Felhasználói beállítások'; $labels['editpreferences'] = 'Felhasználói beállítások szerkesztése'; - $labels['identities'] = 'Azonosítók'; $labels['manageidentities'] = 'Hozzáférés azonosítóinak kezelése'; $labels['newidentity'] = 'Új azonosító'; - $labels['newitem'] = 'Új elem'; $labels['edititem'] = 'Elem szerkesztése'; - $labels['preferhtml'] = 'HTML megjelenítés'; $labels['defaultcharset'] = 'Alapértelmezett karakterkódolás'; $labels['htmlmessage'] = 'HTML üzenet'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'A felugró ablakok használata szokásos ablakkén $labels['forwardmode'] = 'Üzenet továbbítás'; $labels['inline'] = 'beágyazott'; $labels['asattachment'] = 'csatolmányként'; - $labels['folder'] = 'Mappa'; $labels['folders'] = 'Mappák'; $labels['foldername'] = 'Mappa neve'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Mappa típusa'; $labels['personalfolder'] = 'Privát mappa'; $labels['otherfolder'] = 'Más felhasználó(k) mappája'; $labels['sharedfolder'] = 'Megosztott mappa'; - $labels['sortby'] = 'Rendezés'; $labels['sortasc'] = 'növekvő'; $labels['sortdesc'] = 'csökkenő'; $labels['undo'] = 'Visszavonás'; - $labels['installedplugins'] = 'Telepített bővítmények'; $labels['plugin'] = 'Bővítmény'; $labels['version'] = 'Verzió'; $labels['source'] = 'Forrás'; $labels['license'] = 'Licensz'; $labels['support'] = 'Támogatás'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Angol'; $labels['westerneuropean'] = 'Nyugat-európai'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnámi'; $labels['japanese'] = 'Japán'; $labels['korean'] = 'Koreai'; $labels['chinese'] = 'Kínai'; - ?> diff --git a/program/localization/hu_HU/messages.inc b/program/localization/hu_HU/messages.inc index d54589f42..0223841da 100644 --- a/program/localization/hu_HU/messages.inc +++ b/program/localization/hu_HU/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nem sikerült a mappa létrehozása/mozgatása $messages['messagetoobig'] = 'Az üzenetrész túl nagy a feldolgozáshoz.'; $messages['attachmentvalidationerror'] = 'FIGYELEM! A csatalmány veszélyes lehet, mert a típusa nem egyezik az üzenetben beállított típussal. Amennyiben nem megbizható az üzenet küldője, ne nyissa meg a csatolmányt a böngészőben mert ártalmas lehet a tartalma.

Üzenetben beállított tipus: $expected; az érzékelt típus: $detected'; $messages['noscriptwarning'] = 'FIGYELEM: Ez webmail szolgáltatása igényli a Javascript futtatásának a lehetőségét! Amennyiben használni szeretné, engedélyezze a JavaScript futtatását a böngészőjének a beállatásaiban.'; - ?> diff --git a/program/localization/hy_AM/labels.inc b/program/localization/hy_AM/labels.inc index 8ee9316c4..17e25f612 100644 --- a/program/localization/hy_AM/labels.inc +++ b/program/localization/hy_AM/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Բարի գալուստ $product'; $labels['username'] = 'Օգտվող'; $labels['password'] = 'Գաղտնաբառ'; $labels['server'] = 'Սերվեր'; $labels['login'] = 'Մուտք'; - -// taskbar $labels['logout'] = 'Ելք'; $labels['mail'] = 'Էլ–փոստ'; $labels['settings'] = 'Նախասիրություններ'; $labels['addressbook'] = 'Հասցեներ'; - -// mailbox names $labels['inbox'] = 'Փոստարկղ'; $labels['drafts'] = 'Սևագրեր'; $labels['sent'] = 'Ուղարկված'; $labels['trash'] = 'Աղբարկղ'; $labels['junk'] = 'Թափոն'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Վերնագիր'; $labels['from'] = 'Ուղարկող'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Առավելություն'; $labels['organization'] = 'Կազմակերպություն'; $labels['readstatus'] = 'Ընթերցման կարգավիճակ'; $labels['listoptions'] = 'Ցուցակի ընտրանքներ…'; - $labels['mailboxlist'] = 'Դարակներ'; $labels['messagesfromto'] = 'Նամակներ $from–ից $to–ը եղած $count–ից'; $labels['threadsfromto'] = 'Թեմաներ $from-ից $to ընդհանուր $count-ից'; $labels['messagenrof'] = 'Նամակ $nr եղած $count–ից'; $labels['fromtoshort'] = '$from-ից $to ընդհանուր $count-ից'; - $labels['copy'] = 'Cc'; $labels['move'] = 'Տեղափոխել'; $labels['moveto'] = 'Տեղափոխել...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Քաշել'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Ֆայլի անուն'; $labels['filesize'] = 'Ֆայլի չափ'; - $labels['addtoaddressbook'] = 'Հիշել հասցեն'; - -// weekdays short $labels['sun'] = 'Կիր'; $labels['mon'] = 'Երկ'; $labels['tue'] = 'Երք'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Չրք'; $labels['thu'] = 'Հնգ'; $labels['fri'] = 'Ուրբ'; $labels['sat'] = 'Շբթ'; - -// weekdays long $labels['sunday'] = 'Կիրակի'; $labels['monday'] = 'Երկուշաբթի'; $labels['tuesday'] = 'Երեքշաբթի'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Չորեքշաբթի'; $labels['thursday'] = 'Հինգշաբթի'; $labels['friday'] = 'Ուրբաթ'; $labels['saturday'] = 'Շաբաթ'; - -// months short $labels['jan'] = 'Հնվ'; $labels['feb'] = 'Փետ'; $labels['mar'] = 'Մար'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Սեպ'; $labels['oct'] = 'Հոկ'; $labels['nov'] = 'Նոյ'; $labels['dec'] = 'Դեկ'; - -// months long $labels['longjan'] = 'Հունվար'; $labels['longfeb'] = 'Փետրվար'; $labels['longmar'] = 'Մարտ'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Սեպտեմբեր'; $labels['longoct'] = 'Հոկտեմբեր'; $labels['longnov'] = 'Նոյեմբեր'; $labels['longdec'] = 'Դեկտեմբեր'; - $labels['today'] = 'Այսօր'; - -// toolbar buttons $labels['refresh'] = 'Թարմացնել'; $labels['checkmail'] = 'Ստուգել նոր նամակները'; $labels['compose'] = 'Գրել նամակ'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Հավելյալ գործողություններ $labels['more'] = 'Ավելին'; $labels['back'] = 'Ետ'; $labels['options'] = 'Ընտրանքներ'; - $labels['select'] = 'Նշել'; $labels['all'] = 'Բոլորը'; $labels['none'] = 'Չնշել'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Ընդլայնել բոլորը'; $labels['expand-unread'] = 'Ընդլայնել չկարդացվածը'; $labels['collapse-all'] = 'Փլչել բոլորը'; $labels['threaded'] = 'Թեմավորված'; - $labels['autoexpand_threads'] = 'Բաց անել թեմաները'; $labels['do_expand'] = 'բոլոր թեմաները'; $labels['expand_only_unread'] = 'միայն չկարդացված հաղորդագրություններով'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Ցուցակի սյունյակներ'; $labels['listsorting'] = 'Տեսակավորման սյունյակ'; $labels['listorder'] = 'Տեսակավորման կարգը'; $labels['listmode'] = 'Ցուցակով տեսքի տարբերակը'; - $labels['folderactions'] = 'Պանակի գործողություններ…'; $labels['compact'] = 'Սեղմել'; $labels['empty'] = 'Դատարկել'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Դիսկային տարածք'; $labels['unknown'] = 'անհայտ'; $labels['unlimited'] = 'անսահմանափակ'; - $labels['quicksearch'] = 'Արագ որոնում'; $labels['resetsearch'] = 'Վերսկսել որոնումը'; $labels['searchmod'] = 'Որոնման փոփոխիչներ'; $labels['msgtext'] = 'Ողջ հաղորդագրությունը'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Բացել նոր պատուհանում'; $labels['emlsave'] = 'Ներբեռնել (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Խմբագրել որպես նոր'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Ուղարկել'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Ստացման հավաստագիր'; $labels['dsn'] = 'Առաքման կարգավիճակի ծանուցում'; $labels['mailreplyintro'] = '$date-ին, $sender-ը գրեց.'; $labels['originalmessage'] = 'Առաջին հաղորդագրությունը'; - $labels['editidents'] = 'Խմբագրել ինքնությունները'; $labels['spellcheck'] = 'Տառասխալներ'; $labels['checkspelling'] = 'Ստուգել ուղագրությունը'; $labels['resumeediting'] = 'Շարունակել խմբագրումը'; $labels['revertto'] = 'Վերականգնել'; - $labels['attach'] = 'Կցել'; $labels['attachments'] = 'Կցումներ'; $labels['upload'] = 'Բեռնել'; $labels['uploadprogress'] = '$percent ($current $total-ից)'; $labels['close'] = 'Փակել'; $labels['messageoptions'] = 'Հաղորդագրության ընտրանքներ…'; - $labels['low'] = 'Ցածր'; $labels['lowest'] = 'Նվազագույն'; $labels['normal'] = 'Նորմալ'; $labels['high'] = 'Կարևոր'; $labels['highest'] = 'Կարևորագույն'; - $labels['nosubject'] = '(առանց վերնագրի)'; $labels['showimages'] = 'Ցուցադրել նկարները'; $labels['alwaysshow'] = 'Միշտ ցուցադրել պատկերները $sender–ից'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Սա հաղորդագրության սևագիր է'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Պարզ տեքստ'; $labels['savesentmessagein'] = 'Գրանցել ուղարկված նամակը'; $labels['dontsave'] = 'Չ՛գրանցել'; $labels['maxuploadsize'] = 'Առավելագույն թույլատրելի ֆայլի չափը $size է'; - $labels['addcc'] = 'Ավելացնել Cc'; $labels['addbcc'] = 'Ավելացնել Bcc'; $labels['addreplyto'] = 'Ավելացնել Reply-To'; $labels['addfollowupto'] = 'Ավելացնել հավելում'; - -// mdn $labels['mdnrequest'] = 'Նամակի հեղինակը խնդրել է նամակը կարդալուն պես տեղեկացնել իրեն։ Ցանկանում էք Տեղեկացնե՞լ։'; $labels['receiptread'] = 'Նամակի ընթերցման ծանուցագիր'; $labels['yourmessage'] = 'Սա Ձեր նամակի ընթերցման ծանուցագիրն է'; $labels['receiptnote'] = 'Նշում՝ Այս ծանուցագիրը ընդամենը տեղեկացնում է, որ նամակը ցուցադրվել է հասցեատիրոջ համակարչով։ Չկա որևիցե երաշխիք, որ հասցեատերը իսկապես կարդացել է նամակը։'; - -// address boook $labels['name'] = 'Մականուն'; $labels['firstname'] = 'Անուն'; $labels['surname'] = 'Ազգանուն'; @@ -304,7 +264,6 @@ $labels['search'] = 'Որոնում'; $labels['advsearch'] = 'Խորացված որոնում'; $labels['advanced'] = 'Խորացված'; $labels['other'] = 'Այլ'; - $labels['typehome'] = 'Տուն'; $labels['typework'] = 'Աշխատանք'; $labels['typeother'] = 'Այլ'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Օգնական'; $labels['typehomepage'] = 'Սկիզբ'; $labels['typeblog'] = 'Բլոգ'; $labels['typeprofile'] = 'Պրոֆայլ'; - $labels['addfield'] = 'Ավելացնել դաշտ…'; $labels['addcontact'] = 'Գրանցել նշած հասցեն'; $labels['editcontact'] = 'Խմբագրել հասցեն'; $labels['contacts'] = 'Կապորդներ'; $labels['contactproperties'] = 'Կապորդի հատկանիշներ'; $labels['personalinfo'] = 'Անձնական տվյալներ'; - $labels['edit'] = 'Խմբագրել'; $labels['cancel'] = 'Չեղարկել'; $labels['save'] = 'Հիշել'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Վերանվանել'; $labels['addphoto'] = 'Ավելացնել'; $labels['replacephoto'] = 'Փոխարինել'; $labels['uploadphoto'] = 'Վերբեռնել լուսանկար'; - $labels['newcontact'] = 'Ստեղծել նոր հասցեքարտ'; $labels['deletecontact'] = 'Ջնջել նշած նամակները'; $labels['composeto'] = 'Գրել նամակ'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Ստեղծել կապորդների նոր խու $labels['grouprename'] = 'Վերանվանել խումբը'; $labels['groupdelete'] = 'Ջնջել խումբը'; $labels['groupremoveselected'] = 'Հեռացնել նշված անձանց խմբից'; - $labels['previouspage'] = 'Ցուցադրել նախորդ էջը'; $labels['firstpage'] = 'Ցուցադրել առաջին էջը'; $labels['nextpage'] = 'Ցուցադրել հաջորդ էջը'; $labels['lastpage'] = 'Ցուցադրել վերջին էջը'; - $labels['group'] = 'Խումբ'; $labels['groups'] = 'Խմբեր'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Անձնական հասցեներ'; - $labels['searchsave'] = 'Պահպանել որոնումը'; $labels['searchdelete'] = 'Ջնջել որոնումը'; - $labels['import'] = 'Ներկրել'; $labels['importcontacts'] = 'Ներկրել հասցեներ'; $labels['importfromfile'] = 'Ներկրել ֆայլից'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Ավելացնել նոր կապորդներ հասց $labels['importreplace'] = 'Փոխել ողջ հասցեագիրքը'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Ավարտված է'; - -// settings $labels['settingsfor'] = 'Նախասիրություններ'; $labels['about'] = 'Նկարագիր'; $labels['preferences'] = 'Նախընտրանքներ'; $labels['userpreferences'] = 'Օգտվողի նախընտրանքներ'; $labels['editpreferences'] = 'Խմբագրել օգտվողի նախընտրանքները'; - $labels['identities'] = 'Անձիք'; $labels['manageidentities'] = 'Կարգավորել անձանց'; $labels['newidentity'] = 'Նոր անձ'; - $labels['newitem'] = 'Նոր իր'; $labels['edititem'] = 'Խմբագրել իրը'; - $labels['preferhtml'] = 'Գերադասել HTML'; $labels['defaultcharset'] = 'Լռելյալ տառաշար'; $labels['htmlmessage'] = 'HTML նամակ'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Դարակ'; $labels['folders'] = 'Դարակներ'; $labels['foldername'] = 'Դարակի անուն'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Պանակի տեսակ'; $labels['personalfolder'] = 'Անձնական պանակ'; $labels['otherfolder'] = 'Այլ օգտվողի պանակ'; $labels['sharedfolder'] = 'Հանրային պանակ'; - $labels['sortby'] = 'Դասավորել'; $labels['sortasc'] = 'ըստ աճման'; $labels['sortdesc'] = 'ըստ նվազման'; $labels['undo'] = 'Ետարկել'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Խրիչ'; $labels['version'] = 'Տարբերակ'; $labels['source'] = 'Աղբյուր'; $labels['license'] = 'Արտոնագիր'; $labels['support'] = 'Ստանալ օգնություն'; - -// units $labels['B'] = 'Բ'; $labels['KB'] = 'ԿԲ'; $labels['MB'] = 'ՄԲ'; $labels['GB'] = 'ԳԲ'; - -// character sets $labels['unicode'] = 'Յունիկոդ'; $labels['english'] = 'Անգլերեն'; $labels['westerneuropean'] = 'Արևմտա-Եվրոպական'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Վիետնամական'; $labels['japanese'] = 'Ճապոնական'; $labels['korean'] = 'Կորեական'; $labels['chinese'] = 'Չինական'; - ?> diff --git a/program/localization/hy_AM/messages.inc b/program/localization/hy_AM/messages.inc index 2128a188c..909133e41 100644 --- a/program/localization/hy_AM/messages.inc +++ b/program/localization/hy_AM/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Նշված պանակի մեջ պանակի ս $messages['messagetoobig'] = 'Հաղորդագրության մասը չափազանց մեծ է սպասարկման համար։'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ia/labels.inc b/program/localization/ia/labels.inc index 1cd614d35..9baf2c5f3 100644 --- a/program/localization/ia/labels.inc +++ b/program/localization/ia/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Benvenite a $product'; $labels['username'] = 'Nomine de usator'; $labels['password'] = 'Contrasigno'; $labels['server'] = 'Servitor'; $labels['login'] = 'Apertura de session'; - -// taskbar $labels['logout'] = 'Clauder session'; $labels['mail'] = 'E-posta'; $labels['settings'] = 'Configurationes'; $labels['addressbook'] = 'Adressario'; - -// mailbox names $labels['inbox'] = 'Cassa de entrata'; $labels['drafts'] = 'Drafts'; $labels['sent'] = 'Inviate'; $labels['trash'] = 'Trash'; $labels['junk'] = 'Junk'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Subjecto'; $labels['from'] = 'Ex'; $labels['sender'] = 'Expeditor'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritate'; $labels['organization'] = 'Organisation'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Dossieres'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a'; @@ -68,13 +59,9 @@ $labels['download'] = 'Discargar'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Monstrar'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Nomine de file'; $labels['filesize'] = 'Dimension del file'; - $labels['addtoaddressbook'] = 'Adder al adressario'; - -// weekdays short $labels['sun'] = 'dom'; $labels['mon'] = 'lun'; $labels['tue'] = 'mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'mer'; $labels['thu'] = 'jov'; $labels['fri'] = 'ven'; $labels['sat'] = 'sab'; - -// weekdays long $labels['sunday'] = 'Dominica'; $labels['monday'] = 'Lunedi'; $labels['tuesday'] = 'Martedi'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mercuridi'; $labels['thursday'] = 'Jovedi'; $labels['friday'] = 'Venerdi'; $labels['saturday'] = 'Sabbato'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'januario'; $labels['longfeb'] = 'Februario'; $labels['longmar'] = 'Martio'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembre'; $labels['longoct'] = 'Octobre'; $labels['longnov'] = 'Novembre'; $labels['longdec'] = 'Decembre'; - $labels['today'] = 'Hodie'; - -// toolbar buttons $labels['refresh'] = 'Refrescar'; $labels['checkmail'] = 'Verificar nove messages'; $labels['compose'] = 'Componer'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'Plus'; $labels['back'] = 'Retornar'; $labels['options'] = 'Optiones'; - $labels['select'] = 'Seliger'; $labels['all'] = 'Totes'; $labels['none'] = 'Necun'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Actiones de dossier...'; $labels['compact'] = 'Compacte'; $labels['empty'] = 'Vacue'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'incognite'; $labels['unlimited'] = 'unlimited'; - $labels['quicksearch'] = 'Cerca rapide'; $labels['resetsearch'] = 'Reinitialisar cerca'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Message complete'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Aperir in nove fenestra'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Modificar como nove'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Inviar message'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Message original'; - $labels['editidents'] = 'Modificar identitates'; $labels['spellcheck'] = 'Orthographia'; $labels['checkspelling'] = 'Verificar orthographia'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'Attachar'; $labels['attachments'] = 'Attachamentos'; $labels['upload'] = 'Incargar'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Clauder'; $labels['messageoptions'] = 'Optiones de message...'; - $labels['low'] = 'Basse'; $labels['lowest'] = 'Minimal'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alte'; $labels['highest'] = 'Maximal'; - $labels['nosubject'] = '(sin subjecto)'; $labels['showimages'] = 'Monstrar imagines'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto plan'; $labels['savesentmessagein'] = 'Salveguardar message inviate in'; $labels['dontsave'] = 'non salveguardar'; $labels['maxuploadsize'] = 'Le dimension maximal de iste file es $size'; - $labels['addcc'] = 'Adder Cc'; $labels['addbcc'] = 'Adder Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Monstrar nomine'; $labels['firstname'] = 'Nomine'; $labels['surname'] = 'Nomine de familia'; @@ -304,7 +264,6 @@ $labels['search'] = 'Cercar'; $labels['advsearch'] = 'Cerca avantiate'; $labels['advanced'] = 'Avantiate'; $labels['other'] = 'Altere'; - $labels['typehome'] = 'Domo'; $labels['typework'] = 'Labor'; $labels['typeother'] = 'Altere'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistente'; $labels['typehomepage'] = 'Pagina principal'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profilo'; - $labels['addfield'] = 'Adder campo...'; $labels['addcontact'] = 'Adder nove contacto'; $labels['editcontact'] = 'Modificar contacto'; $labels['contacts'] = 'Contactos'; $labels['contactproperties'] = 'Proprietates de contacto'; $labels['personalinfo'] = 'Information personal'; - $labels['edit'] = 'Modificar'; $labels['cancel'] = 'Cancellar'; $labels['save'] = 'Salveguardar'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Renominar'; $labels['addphoto'] = 'Adder'; $labels['replacephoto'] = 'Reimplaciar'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Crear un nove carta de contacto'; $labels['deletecontact'] = 'Deler contactos seligite'; $labels['composeto'] = 'Compose mail to'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crear un nove gruppo de contacto'; $labels['grouprename'] = 'Renominar gruppo'; $labels['groupdelete'] = 'Deler gruppo'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Show previous page'; $labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'Show next page'; $labels['lastpage'] = 'Show last page'; - $labels['group'] = 'Gruppo'; $labels['groups'] = 'Gruppos'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Adresses personal'; - $labels['searchsave'] = 'Salveguardar cerca'; $labels['searchdelete'] = 'Deler cerca'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar ex file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Adder nove contactos al adressario'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Facite'; - -// settings $labels['settingsfor'] = 'Configurationes pro'; $labels['about'] = 'A proposito'; $labels['preferences'] = 'Preferentias'; $labels['userpreferences'] = 'Preferentias de usator'; $labels['editpreferences'] = 'Modificar preferentias de usator'; - $labels['identities'] = 'Identitates'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'Nove identitate'; - $labels['newitem'] = 'Nove elemento'; $labels['edititem'] = 'Modificar elemento'; - $labels['preferhtml'] = 'Monstrar HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Message HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Dossier'; $labels['folders'] = 'Dossieres'; $labels['foldername'] = 'Nomine de dossier'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Typo de dossier'; $labels['personalfolder'] = 'Dossier private'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Dossier public'; - $labels['sortby'] = 'Ordinar per'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Fonte'; $labels['license'] = 'Licentia'; $labels['support'] = 'Obtener supporte'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Anglese'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japonese'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ia/messages.inc b/program/localization/ia/messages.inc index d6fbba87d..427302a6c 100644 --- a/program/localization/ia/messages.inc +++ b/program/localization/ia/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/id_ID/labels.inc b/program/localization/id_ID/labels.inc index a8d5f4c5b..20e54a976 100644 --- a/program/localization/id_ID/labels.inc +++ b/program/localization/id_ID/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Selamat datang di $product'; $labels['username'] = 'Username'; $labels['password'] = 'Password'; $labels['server'] = 'Server'; $labels['login'] = 'Masuk'; - -// taskbar $labels['logout'] = 'Keluar'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Pengaturan'; $labels['addressbook'] = 'Buku Alamat'; - -// mailbox names $labels['inbox'] = 'Kotak Masuk'; $labels['drafts'] = 'Konsep'; $labels['sent'] = 'Terkirim'; $labels['trash'] = 'Surat Terhapus'; $labels['junk'] = 'Sampah'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Judul'; $labels['from'] = 'Pengirim'; $labels['sender'] = 'Pengirim'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritas'; $labels['organization'] = 'Organisasi'; $labels['readstatus'] = 'Status Terbaca'; $labels['listoptions'] = 'Daftar Pilihan...'; - $labels['mailboxlist'] = 'Semua Folder'; $labels['messagesfromto'] = 'Pesan dari $from sampai $to dari total $count'; $labels['threadsfromto'] = 'Untaian dari $from sampai $to dari total $count'; $labels['messagenrof'] = 'Pesan $nr dari total $count'; $labels['fromtoshort'] = '$from - $to dari total $count'; - $labels['copy'] = 'Salin'; $labels['move'] = 'Pindahkan'; $labels['moveto'] = 'Pindahkan ke...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Unduh'; $labels['open'] = 'Buka'; $labels['showattachment'] = 'Tampilkan'; $labels['showanyway'] = 'Tampilkan saja'; - $labels['filename'] = 'Nama berkas'; $labels['filesize'] = 'Ukuran berkas'; - $labels['addtoaddressbook'] = 'Tambah ke buku alamat'; - -// weekdays short $labels['sun'] = 'Min'; $labels['mon'] = 'Sen'; $labels['tue'] = 'Sel'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Rab'; $labels['thu'] = 'Kam'; $labels['fri'] = 'Jum'; $labels['sat'] = 'Sab'; - -// weekdays long $labels['sunday'] = 'Minggu'; $labels['monday'] = 'Senin'; $labels['tuesday'] = 'Selasa'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Rabu'; $labels['thursday'] = 'Kamis'; $labels['friday'] = 'Jumat'; $labels['saturday'] = 'Sabtu'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Des'; - -// months long $labels['longjan'] = 'Januari'; $labels['longfeb'] = 'Februari'; $labels['longmar'] = 'Maret'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Spetember'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Desember'; - $labels['today'] = 'Hari ini'; - -// toolbar buttons $labels['refresh'] = 'Segarkan'; $labels['checkmail'] = 'Periksa pesan baru'; $labels['compose'] = 'Tulis sebuah pesan'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Tindakan lain..'; $labels['more'] = 'Berikutnya'; $labels['back'] = 'Kembali'; $labels['options'] = 'Pilihan'; - $labels['select'] = 'Pilih'; $labels['all'] = 'Semua'; $labels['none'] = 'Tidak ada'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Bentangkan Semua'; $labels['expand-unread'] = 'Bentangkan yang Belum Terbaca'; $labels['collapse-all'] = 'Lipat Semua'; $labels['threaded'] = 'Teruntai'; - $labels['autoexpand_threads'] = 'Bentangkan pesan teruntai'; $labels['do_expand'] = 'semua untaian'; $labels['expand_only_unread'] = 'hanya pesan yang belum terbaca'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Perlihatkan kolom'; $labels['listsorting'] = 'Mengurutkan kolom'; $labels['listorder'] = 'Mengurutkan susunan'; $labels['listmode'] = 'Perlihatkan mode tinjauan'; - $labels['folderactions'] = 'Tindakan pada folder...'; $labels['compact'] = 'Rampingkan'; $labels['empty'] = 'Kosong'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Penggunaan ruang'; $labels['unknown'] = 'Tidak dikenal'; $labels['unlimited'] = 'Tidak terbatas'; - $labels['quicksearch'] = 'Pencarian cepat'; $labels['resetsearch'] = 'Atur ulang pencarian'; $labels['searchmod'] = 'Peubah pencarian'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Seluruh pesan'; $labels['body'] = 'Badan'; $labels['type'] = 'Tipe'; $labels['namex'] = 'Nama'; - $labels['openinextwin'] = 'Buka dalam jendela baru'; $labels['emlsave'] = 'Unduh (.eml)'; $labels['changeformattext'] = 'Tampilkan dalam format text biasa'; $labels['changeformathtml'] = 'Tampilkan dalam format HTML'; - -// message compose $labels['editasnew'] = 'Sunting sebagai pesan baru'; $labels['send'] = 'Kirim'; $labels['sendmessage'] = 'Kirim pesan'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Tanda terima kembali'; $labels['dsn'] = 'Pemberitahuan status terkirim'; $labels['mailreplyintro'] = 'Pada $date, $sender menulis:'; $labels['originalmessage'] = 'Pesan Asli'; - $labels['editidents'] = 'Ubah identitas'; $labels['spellcheck'] = 'Ejaan'; $labels['checkspelling'] = 'Pemeriksaan ejaan'; $labels['resumeediting'] = 'Lanjutkan menyunting'; $labels['revertto'] = 'Kembalikan ke'; - $labels['attach'] = 'Lampirkan'; $labels['attachments'] = 'Sisipan'; $labels['upload'] = 'Unggah'; $labels['uploadprogress'] = '$percent ($current dari $total)'; $labels['close'] = 'Tutup'; $labels['messageoptions'] = 'Pilihan pesan...'; - $labels['low'] = 'Rendah'; $labels['lowest'] = 'Paling Rendah'; $labels['normal'] = 'Normal'; $labels['high'] = 'Tinggi'; $labels['highest'] = 'Paling tinggi'; - $labels['nosubject'] = '(tanpa judul)'; $labels['showimages'] = 'Tampilkan gambar'; $labels['alwaysshow'] = 'Selalu tampilkan gambar dari $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Ini adalah konsep surat.'; $labels['andnmore'] = '$nr lagi...'; $labels['togglemoreheaders'] = 'Tampilkan kepala pesan lebih lanjut'; $labels['togglefullheaders'] = 'Beralih kepala pesan penuh'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Teks murni'; $labels['savesentmessagein'] = 'Simpan pesan terkirim di'; $labels['dontsave'] = 'Jangan disimpan'; $labels['maxuploadsize'] = 'Ukuran file maksimal adalah $size'; - $labels['addcc'] = 'Tambah Cc'; $labels['addbcc'] = 'Tambah Bcc'; $labels['addreplyto'] = 'Tambah Balas Ke'; $labels['addfollowupto'] = 'Tambahkan Tindak-Lanjut-Ke'; - -// mdn $labels['mdnrequest'] = 'Pengirim pesan ini telah meminta untuk diberitahu ketika Anda membaca pesan ini. Apakah anda ingin memberitahu pengirim?'; $labels['receiptread'] = 'Tanda Terima (baca)'; $labels['yourmessage'] = 'Ini adalah Tanda Terima untuk pesan Anda'; $labels['receiptnote'] = 'Catatan: Tanda Terima ini hanya mengesahkan bahwa pesan telah diperlihatkan pada komputer penerima. Tidak ada jaminan bahwa penerima telah membaca atau mengerti isi pesan.'; - -// address boook $labels['name'] = 'Nama yang ditampilkan'; $labels['firstname'] = 'Nama depan'; $labels['surname'] = 'Nama belakang'; @@ -305,7 +265,6 @@ $labels['search'] = 'Cari'; $labels['advsearch'] = 'Pencarian Lebih Lanjut'; $labels['advanced'] = 'Tingkat lanjut'; $labels['other'] = 'Lainnya'; - $labels['typehome'] = 'Rumah'; $labels['typework'] = 'Kantor'; $labels['typeother'] = 'Lainnya'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Asisten'; $labels['typehomepage'] = 'Laman Web'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Tambah kolom isian'; $labels['addcontact'] = 'Tambah kontak baru'; $labels['editcontact'] = 'Ubah kontak'; $labels['contacts'] = 'Daftar kontak'; $labels['contactproperties'] = 'Properti kontak'; $labels['personalinfo'] = 'Informasi pribadi'; - $labels['edit'] = 'Ubah'; $labels['cancel'] = 'Batal'; $labels['save'] = 'Simpan'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Ganti nama'; $labels['addphoto'] = 'Tambah'; $labels['replacephoto'] = 'Ganti'; $labels['uploadphoto'] = 'Unggah foto'; - $labels['newcontact'] = 'Buat kartu kontak baru'; $labels['deletecontact'] = 'Hapus kontak terpilih'; $labels['composeto'] = 'Tulis surat kepada'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Buat Grup baru'; $labels['grouprename'] = 'Ganti nama grup'; $labels['groupdelete'] = 'Hapus grup'; $labels['groupremoveselected'] = 'Hapus kontak terpilih dari grup'; - $labels['previouspage'] = 'Perlihatkan himpunan sebelumnya'; $labels['firstpage'] = 'Perlihatkan himpunan pertama'; $labels['nextpage'] = 'Perlihatkan himpunan selanjutnya'; $labels['lastpage'] = 'Perlihatkan himpunan terakhir'; - $labels['group'] = 'Kelompok'; $labels['groups'] = 'Kelompok'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Alamat pribadi'; - $labels['searchsave'] = 'Simpan pencarian'; $labels['searchdelete'] = 'Hapus pencarian'; - $labels['import'] = 'Impor'; $labels['importcontacts'] = 'Impor kontak'; $labels['importfromfile'] = 'Impor dari berkas:'; @@ -371,21 +323,16 @@ $labels['importtarget'] = 'Tambahkan kontak baru ke buku alamat:'; $labels['importreplace'] = 'Ganti seluruh buku alamat'; $labels['importdesc'] = 'Anda dapat mengunggah kontak dari buku alamat yang telah ada.
Saat ini kami mendukung import alamat dari format data vCard atau CSV (comma-separated).'; $labels['done'] = 'Selesai'; - -// settings $labels['settingsfor'] = 'Pengaturan untuk'; $labels['about'] = 'Informasi program'; $labels['preferences'] = 'Pilihan'; $labels['userpreferences'] = 'Pilihan pengguna'; $labels['editpreferences'] = 'Ubah pilihan pengguna'; - $labels['identities'] = 'Identitas'; $labels['manageidentities'] = 'Atur identitas untuk akun ini'; $labels['newidentity'] = 'Identitas baru'; - $labels['newitem'] = 'Item baru'; $labels['edititem'] = 'Ubah item'; - $labels['preferhtml'] = 'Lebih suka HTML'; $labels['defaultcharset'] = 'Default Character'; $labels['htmlmessage'] = 'Pesan HTML'; @@ -481,7 +428,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Meneruskan pesan'; $labels['inline'] = 'dalam surat'; $labels['asattachment'] = 'sebagai sisipan'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Semua Folder'; $labels['foldername'] = 'Nama folder'; @@ -502,26 +448,20 @@ $labels['foldertype'] = 'Jenis folder'; $labels['personalfolder'] = 'Folder pribadi'; $labels['otherfolder'] = 'Folder pengguna lain'; $labels['sharedfolder'] = 'Folder publik'; - $labels['sortby'] = 'Urut berdasarkan'; $labels['sortasc'] = 'Urut menaik'; $labels['sortdesc'] = 'Urut menurun'; $labels['undo'] = 'Batalkan'; - $labels['installedplugins'] = 'Plugin terpasang'; $labels['plugin'] = 'Pengaya'; $labels['version'] = 'Versi'; $labels['source'] = 'Sumber'; $labels['license'] = 'Lisensi'; $labels['support'] = 'Dukungan'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inggris'; $labels['westerneuropean'] = 'Eropa Barat'; @@ -540,5 +480,4 @@ $labels['vietnamese'] = 'Vietnam'; $labels['japanese'] = 'Jepang'; $labels['korean'] = 'Korea'; $labels['chinese'] = 'Cina'; - ?> diff --git a/program/localization/id_ID/messages.inc b/program/localization/id_ID/messages.inc index a81b2ab01..bcce58cc6 100644 --- a/program/localization/id_ID/messages.inc +++ b/program/localization/id_ID/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Tidak bisa membuat/memindahkan map ke map indu $messages['messagetoobig'] = 'Pesan terlalu besar untuk diproses.'; $messages['attachmentvalidationerror'] = 'PERINGATAN! Lampiran ini mencurigakan karena jenisnya tidak cocok dengan jenis yang dinyatakan di dalam pesan. Jika Anda tidak mempercayai pengirim, Anda tidak perlu membukanya di browser karena mungkin berisi konten berbahaya.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Peringatan: Layanan ini membutuhkan Javascript! Untuk menggunakannya silahkan aktifkan Javascript di pengaturan browser Anda.'; - ?> diff --git a/program/localization/is_IS/labels.inc b/program/localization/is_IS/labels.inc index c2859ce75..384a2265b 100644 --- a/program/localization/is_IS/labels.inc +++ b/program/localization/is_IS/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Velkomin í $product'; $labels['username'] = 'Netfang'; $labels['password'] = 'Lykilorð'; $labels['server'] = 'Póstþjónn'; $labels['login'] = 'Innskrá'; - -// taskbar $labels['logout'] = 'Útskrá'; $labels['mail'] = 'Tölvupóstur'; $labels['settings'] = 'Stillingar'; $labels['addressbook'] = 'Nafnaskrá'; - -// mailbox names $labels['inbox'] = 'Innhólf'; $labels['drafts'] = 'Drög'; $labels['sent'] = 'Sent'; $labels['trash'] = 'Rusl'; $labels['junk'] = 'Ruslpóstur'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Titill'; $labels['from'] = 'Frá'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Forgangur'; $labels['organization'] = 'Stofnun'; $labels['readstatus'] = 'Lesmerking'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Möppur'; $labels['messagesfromto'] = 'Skeyti $from til $to af $count'; $labels['threadsfromto'] = 'Þræðir $from til $to af $count'; $labels['messagenrof'] = 'Skeyti $nr af $count'; $labels['fromtoshort'] = '$from - $to af $count'; - $labels['copy'] = 'Afrit'; $labels['move'] = 'Færa'; $labels['moveto'] = 'Færa í...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Hlaða niður'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Skráarheiti'; $labels['filesize'] = 'Skráarstærð'; - $labels['addtoaddressbook'] = 'Bæta í nafnaskrá'; - -// weekdays short $labels['sun'] = 'sunn.'; $labels['mon'] = 'mán.'; $labels['tue'] = 'þrið.'; @@ -82,8 +69,6 @@ $labels['wed'] = 'miðv.'; $labels['thu'] = 'fimm.'; $labels['fri'] = 'föst.'; $labels['sat'] = 'laug.'; - -// weekdays long $labels['sunday'] = 'sunnudagur'; $labels['monday'] = 'mánudagur'; $labels['tuesday'] = 'þriðjudagur'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'miðvikudagur'; $labels['thursday'] = 'fimmtudagur'; $labels['friday'] = 'föstudagur'; $labels['saturday'] = 'laugardagur'; - -// months short $labels['jan'] = 'jan'; $labels['feb'] = 'feb'; $labels['mar'] = 'mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sep'; $labels['oct'] = 'okt'; $labels['nov'] = 'nóv'; $labels['dec'] = 'des'; - -// months long $labels['longjan'] = 'janúar'; $labels['longfeb'] = 'febrúar'; $labels['longmar'] = 'mars'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'september'; $labels['longoct'] = 'október'; $labels['longnov'] = 'nóvember'; $labels['longdec'] = 'desember'; - $labels['today'] = 'Í dag'; - -// toolbar buttons $labels['refresh'] = 'Endurhlaða'; $labels['checkmail'] = 'Gá að nýjum skeytum'; $labels['compose'] = 'Semja skeyti'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Fleiri aðgerðir...'; $labels['more'] = 'Meira'; $labels['back'] = 'Til baka'; $labels['options'] = 'Valkostir'; - $labels['select'] = 'Velja'; $labels['all'] = 'Allt'; $labels['none'] = 'Ekkert'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Þenja allt út'; $labels['expand-unread'] = 'Þenja ólesið'; $labels['collapse-all'] = 'Fella allt saman'; $labels['threaded'] = 'Þrætt'; - $labels['autoexpand_threads'] = 'Þenja skeytaþræði út'; $labels['do_expand'] = 'allir þræðir'; $labels['expand_only_unread'] = 'aðeins ólesin skeyti'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Listadálkar'; $labels['listsorting'] = 'Röðunardálkur'; $labels['listorder'] = 'Röðun'; $labels['listmode'] = 'Listayfirlit'; - $labels['folderactions'] = 'Möppuaðgerðir...'; $labels['compact'] = 'Pakka'; $labels['empty'] = 'Tæma'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Gagnamagn'; $labels['unknown'] = 'óþekkt'; $labels['unlimited'] = 'ótakmarkað'; - $labels['quicksearch'] = 'Flýtileit'; $labels['resetsearch'] = 'Tæma leit'; $labels['searchmod'] = 'Leitarskilyrði'; $labels['msgtext'] = 'Allt skeytið'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Opna í nýjum glugga'; $labels['emlsave'] = 'Niðurhlaða (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Breyta sem nýju'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Senda skeytið núna'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Kvittun við lestur'; $labels['dsn'] = 'Afhendingarstaða'; $labels['mailreplyintro'] = 'Þann $date, $sender reit:'; $labels['originalmessage'] = 'Upprunalegt skeyti'; - $labels['editidents'] = 'Breyta sjálfum'; $labels['spellcheck'] = 'Stafsetning'; $labels['checkspelling'] = 'Athuga stafsetningu'; $labels['resumeediting'] = 'Aftur í ritham'; $labels['revertto'] = 'Hverfa til'; - $labels['attach'] = 'Viðhengi'; $labels['attachments'] = 'Viðhengi'; $labels['upload'] = 'Hlaða upp'; $labels['uploadprogress'] = '$percent ($current af $total)'; $labels['close'] = 'Loka'; $labels['messageoptions'] = 'Skeytisvalmöguleikar...'; - $labels['low'] = 'Lágt'; $labels['lowest'] = 'Lægst'; $labels['normal'] = 'Venjulegt'; $labels['high'] = 'Hátt'; $labels['highest'] = 'Hæst'; - $labels['nosubject'] = '(án titils)'; $labels['showimages'] = 'Sýna myndir'; $labels['alwaysshow'] = 'Sýna alltaf myndir frá $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Þetta eru drög að skeyti'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Venjulegur texti'; $labels['savesentmessagein'] = 'Vista send skeyti í'; $labels['dontsave'] = 'ekki vista'; $labels['maxuploadsize'] = 'Leyfileg hámarksstærð skjals er $size'; - $labels['addcc'] = 'Bæta við Cc'; $labels['addbcc'] = 'Bæta við Bcc'; $labels['addreplyto'] = 'Bæta við Reply-To'; $labels['addfollowupto'] = 'Nýtt svar við'; - -// mdn $labels['mdnrequest'] = 'Sendandi þessa skeytið hefur óskað þess að þú látir vita að þú hafir lesið þetta skeyti. Viltu láta hann vita?'; $labels['receiptread'] = 'Kvittun (lesa)'; $labels['yourmessage'] = 'Þetta er kvittun fyrir skeytið'; $labels['receiptnote'] = 'ATH: Þessi kvittun segir aðeins til um að skeytið kom upp á skjánum á viðtakanda. Það er engin sönnun um að hann hafi lesið eða skilið innihaldið.'; - -// address boook $labels['name'] = 'Skjánafn'; $labels['firstname'] = 'Eiginnafn'; $labels['surname'] = 'Eftirnafn'; @@ -304,7 +264,6 @@ $labels['search'] = 'Leit'; $labels['advsearch'] = 'Ítarleg leit'; $labels['advanced'] = 'Flóknari stillingar'; $labels['other'] = 'Annað'; - $labels['typehome'] = 'Heimamappa'; $labels['typework'] = 'Vinnusími'; $labels['typeother'] = 'Annað'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Aðstoðarmaður'; $labels['typehomepage'] = 'Vefur'; $labels['typeblog'] = 'Blogg'; $labels['typeprofile'] = 'Mannlýsing'; - $labels['addfield'] = 'Bæta við svæði...'; $labels['addcontact'] = 'Nýr tengiliður'; $labels['editcontact'] = 'Lagfæra'; $labels['contacts'] = 'Tengiliðir'; $labels['contactproperties'] = 'Eiginleikar'; $labels['personalinfo'] = 'Persónulegar upplýsingar'; - $labels['edit'] = 'Breyta'; $labels['cancel'] = 'Hætta við'; $labels['save'] = 'Vista'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Endurnefna'; $labels['addphoto'] = 'Bæta við'; $labels['replacephoto'] = 'Skipta út'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Búa til nýtt nafnspjald'; $labels['deletecontact'] = 'Eyða völdum tengiliðum'; $labels['composeto'] = 'Skrifa skeyti til'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Nýr tengiliðahópur'; $labels['grouprename'] = 'Breyta nafni hóps'; $labels['groupdelete'] = 'Fjarlægja hóp'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Sýna fyrri síðu'; $labels['firstpage'] = 'Sýna fyrstu síðu'; $labels['nextpage'] = 'Sýna næstu síðu'; $labels['lastpage'] = 'Sýna síðustu síðu'; - $labels['group'] = 'Hópur'; $labels['groups'] = 'Hópar'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Persónuleg heimilisföng'; - $labels['searchsave'] = 'Vista leit'; $labels['searchdelete'] = 'Eyða leit'; - $labels['import'] = 'Flytja inn'; $labels['importcontacts'] = 'Flytja inn nafnspjöld'; $labels['importfromfile'] = 'Flytja inn af skrá'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Bæta nýjum tengiliðum við:'; $labels['importreplace'] = 'Skipta út allri netfangaskránni'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Búið'; - -// settings $labels['settingsfor'] = 'Stillingar fyrir'; $labels['about'] = 'Um forritið'; $labels['preferences'] = 'Stillingar'; $labels['userpreferences'] = 'Notendastillingar'; $labels['editpreferences'] = 'Breyta notendastillingum'; - $labels['identities'] = 'Auðkenni'; $labels['manageidentities'] = 'Stjórna auðkennum þessa reiknings'; $labels['newidentity'] = 'Nýtt auðkenni'; - $labels['newitem'] = 'Nýtt'; $labels['edititem'] = 'Breyta'; - $labels['preferhtml'] = 'Vil HTML'; $labels['defaultcharset'] = 'Venjulegt stafasett'; $labels['htmlmessage'] = 'HTML skeyti'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Mappa'; $labels['folders'] = 'Möppur'; $labels['foldername'] = 'Nafn möppu'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Möpputegund'; $labels['personalfolder'] = 'Einkamappa'; $labels['otherfolder'] = 'Möppur annara notenda'; $labels['sharedfolder'] = 'Opin mappa'; - $labels['sortby'] = 'Raða eftir'; $labels['sortasc'] = 'Raða vaxandi'; $labels['sortdesc'] = 'Raða minnkandi'; $labels['undo'] = 'Taka til baka'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Viðbætur'; $labels['version'] = 'Útgáfa'; $labels['source'] = 'Uppruni'; $labels['license'] = 'Notkunarleyfi'; $labels['support'] = 'Fá aðstoð'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Enska'; $labels['westerneuropean'] = 'Vesturevrópskt'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Víetnamskt'; $labels['japanese'] = 'Japanskt'; $labels['korean'] = 'Kóreska'; $labels['chinese'] = 'Kínverska'; - ?> diff --git a/program/localization/is_IS/messages.inc b/program/localization/is_IS/messages.inc index 731a19791..089ac8c0a 100644 --- a/program/localization/is_IS/messages.inc +++ b/program/localization/is_IS/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/it_IT/labels.inc b/program/localization/it_IT/labels.inc index 55cd432f7..9c38af06f 100644 --- a/program/localization/it_IT/labels.inc +++ b/program/localization/it_IT/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Benvenuto in $product'; $labels['username'] = 'Utente'; $labels['password'] = 'Password'; $labels['server'] = 'Server'; $labels['login'] = 'Entra'; - -// taskbar $labels['logout'] = 'Esci'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Impostazioni'; $labels['addressbook'] = 'Rubrica'; - -// mailbox names $labels['inbox'] = 'Posta in arrivo'; $labels['drafts'] = 'Bozze'; $labels['sent'] = 'Inviata'; $labels['trash'] = 'Cestino'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Oggetto'; $labels['from'] = 'Mittente'; $labels['sender'] = 'Mittente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorità'; $labels['organization'] = 'Società'; $labels['readstatus'] = 'Visualizza lo stato'; $labels['listoptions'] = 'Elenco opzioni...'; - $labels['mailboxlist'] = 'Cartelle'; $labels['messagesfromto'] = 'Messaggi da $from a $to di $count'; $labels['threadsfromto'] = 'Thread da $from a $to di $count'; $labels['messagenrof'] = 'Messaggio $nr di $count'; $labels['fromtoshort'] = '$from – $to di $count'; - $labels['copy'] = 'Copia'; $labels['move'] = 'Sposta'; $labels['moveto'] = 'Sposta in...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Download'; $labels['open'] = 'Apri'; $labels['showattachment'] = 'Visualizza'; $labels['showanyway'] = 'Visualizza comunque'; - $labels['filename'] = 'Nome file'; $labels['filesize'] = 'Dimensione file'; - $labels['addtoaddressbook'] = 'Aggiungi alla rubrica'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mer'; $labels['thu'] = 'Gio'; $labels['fri'] = 'Ven'; $labels['sat'] = 'Sab'; - -// weekdays long $labels['sunday'] = 'Domenica'; $labels['monday'] = 'Lunedì'; $labels['tuesday'] = 'Martedì'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mercoledì'; $labels['thursday'] = 'Giovedì'; $labels['friday'] = 'Venerdì'; $labels['saturday'] = 'Sabato'; - -// months short $labels['jan'] = 'Gen'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Set'; $labels['oct'] = 'Ott'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dic'; - -// months long $labels['longjan'] = 'Gennaio'; $labels['longfeb'] = 'Febbraio'; $labels['longmar'] = 'Marzo'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Settembre'; $labels['longoct'] = 'Ottobre'; $labels['longnov'] = 'Novembre'; $labels['longdec'] = 'Dicembre'; - $labels['today'] = 'Oggi'; - -// toolbar buttons $labels['refresh'] = 'Aggiorna'; $labels['checkmail'] = 'Controlla nuovi messaggi'; $labels['compose'] = 'Scrivi un messaggio'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Altre operazioni...'; $labels['more'] = 'Di più'; $labels['back'] = 'Indietro'; $labels['options'] = 'Opzioni'; - $labels['select'] = 'Seleziona'; $labels['all'] = 'Tutti'; $labels['none'] = 'Nessuno'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Espandi tutto'; $labels['expand-unread'] = 'Espandi non letti'; $labels['collapse-all'] = 'Richiudi tutti'; $labels['threaded'] = 'Per argomenti'; - $labels['autoexpand_threads'] = 'Espandi'; $labels['do_expand'] = 'tutti i thread'; $labels['expand_only_unread'] = 'solo con messaggi non letti'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Elenco Colonne'; $labels['listsorting'] = 'Ordina per'; $labels['listorder'] = 'Ordinamento'; $labels['listmode'] = 'Modalità di visualizzazione'; - $labels['folderactions'] = 'Operazioni cartella'; $labels['compact'] = 'Compatta'; $labels['empty'] = 'Svuota'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Spazio utilizzato'; $labels['unknown'] = 'sconosciuto'; $labels['unlimited'] = 'illimitato'; - $labels['quicksearch'] = 'Ricerca veloce'; $labels['resetsearch'] = 'Annulla ricerca'; $labels['searchmod'] = 'Ambito di ricerca'; $labels['msgtext'] = 'Intero messaggio'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Apri in una nuova finestra'; $labels['emlsave'] = 'Scarica (.eml)'; $labels['changeformattext'] = 'Visualizza nel formato testo semplice'; $labels['changeformathtml'] = 'Visualizza nel formato HTML'; - -// message compose $labels['editasnew'] = 'Modifica come nuovo'; $labels['send'] = 'Invia'; $labels['sendmessage'] = 'Invia il messaggio adesso'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Ricevuta di ritorno'; $labels['dsn'] = 'Notifica di consegna'; $labels['mailreplyintro'] = 'Il $date $sender ha scritto:'; $labels['originalmessage'] = 'Messaggio originale'; - $labels['editidents'] = 'Modifica identità'; $labels['spellcheck'] = 'Controllo ortografico'; $labels['checkspelling'] = 'Controlla ortografia'; $labels['resumeediting'] = 'Torna al messaggio'; $labels['revertto'] = 'Ripristina'; - $labels['attach'] = 'Allega'; $labels['attachments'] = 'Allegati'; $labels['upload'] = 'Aggiungi'; $labels['uploadprogress'] = '$percent ($current di $total)'; $labels['close'] = 'Chiudi'; $labels['messageoptions'] = 'Opzioni messaggi...'; - $labels['low'] = 'Bassa'; $labels['lowest'] = 'Molto bassa'; $labels['normal'] = 'Normale'; $labels['high'] = 'Alta'; $labels['highest'] = 'Molto alta'; - $labels['nosubject'] = '(nessun oggetto)'; $labels['showimages'] = 'Visualizza immagini'; $labels['alwaysshow'] = 'Mostra sempre immagini da $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Questa è una bozza.'; $labels['andnmore'] = 'ancora $nr...'; $labels['togglemoreheaders'] = 'Mostra più intestazioni dei messaggi'; $labels['togglefullheaders'] = 'Visualizza header raw'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Testo semplice'; $labels['savesentmessagein'] = 'Salva i messaggi inviati in'; $labels['dontsave'] = 'non salvare'; $labels['maxuploadsize'] = 'La dimensione massima consentita è $size'; - $labels['addcc'] = 'Aggiungi Cc'; $labels['addbcc'] = 'Aggiungi Bcc'; $labels['addreplyto'] = 'Aggiungi Rispondi a'; $labels['addfollowupto'] = 'Aggiungi Followup-To'; - -// mdn $labels['mdnrequest'] = 'Il mittente ha richiesto di ricevere una notifica dell\'avvenuta lettura del messaggio. Si desidera inviare tale notifica?'; $labels['receiptread'] = 'Ricevuta di ritorno (letto)'; $labels['yourmessage'] = 'Questa è la ricevuta di ritorno del messaggio inviato'; $labels['receiptnote'] = 'Nota: questa Ricevuta di ritorno attesta solamente che il messaggio è stato visualizzato nel computer del destinatario. Non c\'è pertanto alcuna garanzia che il destinatario abbia letto o compreso il suo contenuto.'; - -// address boook $labels['name'] = 'Nome visualizzato'; $labels['firstname'] = 'Nome'; $labels['surname'] = 'Cognome'; @@ -304,7 +264,6 @@ $labels['search'] = 'Ricerca'; $labels['advsearch'] = 'Ricerca avanzata'; $labels['advanced'] = 'Opzioni avanzate'; $labels['other'] = 'Altro'; - $labels['typehome'] = 'Casa'; $labels['typework'] = 'Lavoro'; $labels['typeother'] = 'Altro'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistente'; $labels['typehomepage'] = 'Home page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profilo'; - $labels['addfield'] = 'Aggiungi campo...'; $labels['addcontact'] = 'Aggiungi contatto alla rubrica'; $labels['editcontact'] = 'Modifica contatto'; $labels['contacts'] = 'Contatti'; $labels['contactproperties'] = 'Proprietà contatto'; $labels['personalinfo'] = 'Informazioni personali'; - $labels['edit'] = 'Modifica'; $labels['cancel'] = 'Annulla'; $labels['save'] = 'Salva'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rinomina'; $labels['addphoto'] = 'Aggiungi'; $labels['replacephoto'] = 'Sostituisci'; $labels['uploadphoto'] = 'Carica foto'; - $labels['newcontact'] = 'Crea un nuovo contatto'; $labels['deletecontact'] = 'Elimina i contatti selezionati'; $labels['composeto'] = 'Invia email a'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Crea un nuovo gruppo'; $labels['grouprename'] = 'Rinomina il gruppo'; $labels['groupdelete'] = 'Cancella il gruppo'; $labels['groupremoveselected'] = 'Rimuovi i contatti selezionati dal gruppo'; - $labels['previouspage'] = 'Pagina precedente'; $labels['firstpage'] = 'Prima pagina'; $labels['nextpage'] = 'Pagina successiva'; $labels['lastpage'] = 'Ultima pagina'; - $labels['group'] = 'Gruppo'; $labels['groups'] = 'Gruppi'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Rubrica Personale'; - $labels['searchsave'] = 'Salva ricerca'; $labels['searchdelete'] = 'Elimina ricerca'; - $labels['import'] = 'Importa'; $labels['importcontacts'] = 'Importa contatti'; $labels['importfromfile'] = 'Importa da file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Aggiungi nuovi contattu alla rubrica:'; $labels['importreplace'] = 'Sostituisci l\'intera rubrica'; $labels['importdesc'] = 'Puoi caricare i contatti da una rubrica esistente.
Attualmente si possono importare contatti in formato vCard o CSV (comma-separated).'; $labels['done'] = 'Fatto'; - -// settings $labels['settingsfor'] = 'Impostazioni per'; $labels['about'] = 'Informazioni'; $labels['preferences'] = 'Preferenze'; $labels['userpreferences'] = 'Preferenze utente'; $labels['editpreferences'] = 'Modifica le preferenze per l\'utente'; - $labels['identities'] = 'Identità'; $labels['manageidentities'] = 'Gestisci le identità per questo account'; $labels['newidentity'] = 'Nuova identità'; - $labels['newitem'] = 'Nuovo elemento'; $labels['edititem'] = 'Modifica elemento'; - $labels['preferhtml'] = 'Mostra HTML'; $labels['defaultcharset'] = 'Set di caratteri predefinito'; $labels['htmlmessage'] = 'Messaggio HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Gestisci i popup come finestre standard'; $labels['forwardmode'] = 'Inoltro messaggi'; $labels['inline'] = 'In linea'; $labels['asattachment'] = 'come allegato'; - $labels['folder'] = 'Cartella'; $labels['folders'] = 'Cartelle'; $labels['foldername'] = 'Nome cartella'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tipo di cartella'; $labels['personalfolder'] = 'Cartella privata'; $labels['otherfolder'] = 'Cartella di un altro utente'; $labels['sharedfolder'] = 'Cartella pubblica'; - $labels['sortby'] = 'Ordina per'; $labels['sortasc'] = 'Ordinamento crescente'; $labels['sortdesc'] = 'Ordinamento decrescente'; $labels['undo'] = 'Annulla'; - $labels['installedplugins'] = 'Plugin Installati'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versione'; $labels['source'] = 'Sorgente'; $labels['license'] = 'Licenza'; $labels['support'] = 'Ottieni supporto'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglese'; $labels['westerneuropean'] = 'Europa occidentale'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Giapponese'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Cinese'; - ?> diff --git a/program/localization/it_IT/messages.inc b/program/localization/it_IT/messages.inc index 502ecba25..66eb85730 100644 --- a/program/localization/it_IT/messages.inc +++ b/program/localization/it_IT/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Impossibile creare o muovere la cartella: acce $messages['messagetoobig'] = 'La parte del messaggio è troppo grande per essere processata.'; $messages['attachmentvalidationerror'] = 'ATTENZIONE! Questo allegato è sospetto poiché non rispetta il tipo dichiarato nel messaggio. Se non conosci il mittente, non dovresti aprire l\'allegato nel browser in quanto potrebbe contenere malware.

Atteso: $expected; rilevato: $detected'; $messages['noscriptwarning'] = 'Attenzione: questo servizio di webmail richiede Javascript! Per utilizzarlo abilita Javascript nelle impostazioni del tuo browser.'; - ?> diff --git a/program/localization/ja_JP/labels.inc b/program/localization/ja_JP/labels.inc index 767aff23a..3bed99866 100644 --- a/program/localization/ja_JP/labels.inc +++ b/program/localization/ja_JP/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$productにようこそ'; $labels['username'] = 'ユーザー名'; $labels['password'] = 'パスワード'; $labels['server'] = 'サーバー'; $labels['login'] = 'ログイン'; - -// taskbar $labels['logout'] = 'ログアウト'; $labels['mail'] = '電子メール'; $labels['settings'] = '設定'; $labels['addressbook'] = 'アドレス帳'; - -// mailbox names $labels['inbox'] = '受信箱'; $labels['drafts'] = '下書き'; $labels['sent'] = '送信済み'; $labels['trash'] = 'ごみ箱'; $labels['junk'] = '迷惑メール'; $labels['show_real_foldernames'] = '特殊フォルダーの実際の名前を表示'; - -// message listing $labels['subject'] = '件名'; $labels['from'] = '発信者'; $labels['sender'] = '送信者'; @@ -54,13 +47,11 @@ $labels['priority'] = '優先度'; $labels['organization'] = '企業名'; $labels['readstatus'] = '閲覧の状態'; $labels['listoptions'] = '一覧のオプション...'; - $labels['mailboxlist'] = 'フォルダー'; $labels['messagesfromto'] = '$count通の$from通目から$to通目のメッセージ'; $labels['threadsfromto'] = '$count通の$from通目から$to通目のスレッド'; $labels['messagenrof'] = '$count通の$nr通目のメッセージ'; $labels['fromtoshort'] = '$count通の$from通目から$to通目'; - $labels['copy'] = 'コピー'; $labels['move'] = '移動'; $labels['moveto'] = 'フォルダーに移動'; @@ -68,13 +59,9 @@ $labels['download'] = 'ダウンロード'; $labels['open'] = '開く'; $labels['showattachment'] = '表示'; $labels['showanyway'] = 'とにかく表示'; - $labels['filename'] = 'ファイル名'; $labels['filesize'] = 'ファイルの大きさ'; - $labels['addtoaddressbook'] = 'アドレス帳に追加'; - -// weekdays short $labels['sun'] = '日'; $labels['mon'] = '月'; $labels['tue'] = '火'; @@ -82,8 +69,6 @@ $labels['wed'] = '水'; $labels['thu'] = '木'; $labels['fri'] = '金'; $labels['sat'] = '土'; - -// weekdays long $labels['sunday'] = '日曜日'; $labels['monday'] = '月曜日'; $labels['tuesday'] = '火曜日'; @@ -91,8 +76,6 @@ $labels['wednesday'] = '水曜日'; $labels['thursday'] = '木曜日'; $labels['friday'] = '金曜日'; $labels['saturday'] = '土曜日'; - -// months short $labels['jan'] = '1月'; $labels['feb'] = '2月'; $labels['mar'] = '3月'; @@ -105,8 +88,6 @@ $labels['sep'] = '9月'; $labels['oct'] = '10月'; $labels['nov'] = '11月'; $labels['dec'] = '12月'; - -// months long $labels['longjan'] = '1月'; $labels['longfeb'] = '2月'; $labels['longmar'] = '3月'; @@ -119,10 +100,7 @@ $labels['longsep'] = '9月'; $labels['longoct'] = '10月'; $labels['longnov'] = '11月'; $labels['longdec'] = '12月'; - $labels['today'] = '今日'; - -// toolbar buttons $labels['refresh'] = '再読込み'; $labels['checkmail'] = '新しく届いたメッセージを確認'; $labels['compose'] = 'メッセージの作成'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'その他の操作...'; $labels['more'] = '続く'; $labels['back'] = '戻る'; $labels['options'] = 'オプション'; - $labels['select'] = '選択'; $labels['all'] = 'すべて'; $labels['none'] = 'なし'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'すべて展開'; $labels['expand-unread'] = '未開封のメッセージを展開'; $labels['collapse-all'] = 'すべて折りたたむ'; $labels['threaded'] = 'スレッド化'; - $labels['autoexpand_threads'] = 'メッセージのスレッドを展開'; $labels['do_expand'] = 'すべてのスレッド'; $labels['expand_only_unread'] = '未読のメッセージだけ'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = '列を一覧'; $labels['listsorting'] = '並べ替える列'; $labels['listorder'] = '並べ替える順序'; $labels['listmode'] = '一覧表示モード'; - $labels['folderactions'] = 'フォルダーの操作...'; $labels['compact'] = '圧縮'; $labels['empty'] = '空'; $labels['importmessages'] = 'メッセージをインポート'; - $labels['quota'] = 'ディスクの使用状況'; $labels['unknown'] = '不明'; $labels['unlimited'] = '無制限'; - $labels['quicksearch'] = '高速検索'; $labels['resetsearch'] = '検索を解除'; $labels['searchmod'] = '検索の条件'; $labels['msgtext'] = 'メッセージ全体'; $labels['body'] = '本文'; $labels['type'] = 'Type'; - $labels['openinextwin'] = '新しいウィンドウで開く'; $labels['emlsave'] = 'ダウンロード(.eml形式)'; $labels['changeformattext'] = 'テキスト形式で表示'; $labels['changeformathtml'] = 'HTML形式で表示'; - -// message compose $labels['editasnew'] = '新しいメッセージとして編集'; $labels['send'] = '送信'; $labels['sendmessage'] = 'メッセージを送信'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = '開封確認'; $labels['dsn'] = '配送状態通知'; $labels['mailreplyintro'] = '$date に $sender さんは書きました:'; $labels['originalmessage'] = '元のメッセージ'; - $labels['editidents'] = '識別情報を編集'; $labels['spellcheck'] = 'スペル'; $labels['checkspelling'] = 'スペルチェック'; $labels['resumeediting'] = '編集を再開'; $labels['revertto'] = '元に戻す'; - $labels['attach'] = '添付'; $labels['attachments'] = '添付ファイル'; $labels['upload'] = 'アップロード'; $labels['uploadprogress'] = '$percent ($current / $total)'; $labels['close'] = '閉じる'; $labels['messageoptions'] = 'メッセージのオプション...'; - $labels['low'] = '低'; $labels['lowest'] = '最低'; $labels['normal'] = '通常'; $labels['high'] = '高'; $labels['highest'] = '最高'; - $labels['nosubject'] = '(件名なし)'; $labels['showimages'] = '画像を表示'; $labels['alwaysshow'] = '$sender から届いた画像は常に表示'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'これは下書きのメッセージです。'; $labels['andnmore'] = 'さらに$nr件...'; $labels['togglemoreheaders'] = 'さらにメッセージのヘッダーを表示'; $labels['togglefullheaders'] = 'メッセージヘッダーの生の表示と切り替え'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'テキスト'; $labels['savesentmessagein'] = '送信したメッセージの保存先'; $labels['dontsave'] = '保存しない'; $labels['maxuploadsize'] = '添付可能なファイルは最大で$sizeです。'; - $labels['addcc'] = '写し(Cc)を追加'; $labels['addbcc'] = '隠した写し(Bcc)を追加'; $labels['addreplyto'] = '返信先(Reply-To)を追加'; $labels['addfollowupto'] = 'フォロー先(Followup-Toを追加'; - -// mdn $labels['mdnrequest'] = 'このメッセージを読んだときに、送信者が通知を受けたいと依頼しています。開封確認の通知を送信しますか?'; $labels['receiptread'] = '開封確認(表示済み)'; $labels['yourmessage'] = 'これはあなたが送信したメッセージに対する開封確認です。'; $labels['receiptnote'] = '注意: この開封確認は、メッセージが宛先のコンピューターで表示されたことだけを知らせるものです。受信者がメッセージを読んだり、内容を理解したと保証するものではありません。'; - -// address boook $labels['name'] = '表示名'; $labels['firstname'] = '名'; $labels['surname'] = '姓'; @@ -304,7 +264,6 @@ $labels['search'] = '検索'; $labels['advsearch'] = '高度な検索'; $labels['advanced'] = '高度'; $labels['other'] = 'その他'; - $labels['typehome'] = '自宅'; $labels['typework'] = '職場'; $labels['typeother'] = 'その他'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'アシスタント'; $labels['typehomepage'] = 'ホームページ'; $labels['typeblog'] = 'ブログ'; $labels['typeprofile'] = 'プロフィール'; - $labels['addfield'] = '項目を追加...'; $labels['addcontact'] = '新しい連絡先を追加'; $labels['editcontact'] = '連絡先を編集'; $labels['contacts'] = '連絡先'; $labels['contactproperties'] = '連絡先の属性'; $labels['personalinfo'] = '個人情報'; - $labels['edit'] = '編集'; $labels['cancel'] = '取り消し'; $labels['save'] = '保存'; @@ -335,7 +292,6 @@ $labels['rename'] = '名前を変更'; $labels['addphoto'] = '追加'; $labels['replacephoto'] = '置き換え'; $labels['uploadphoto'] = '写真をアップロード'; - $labels['newcontact'] = '新しい連絡先カードを作成'; $labels['deletecontact'] = '選択した連絡先を削除'; $labels['composeto'] = 'この連絡先宛にメッセージを作成'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = '連絡先グループを新しく作成'; $labels['grouprename'] = 'グループ名を変更'; $labels['groupdelete'] = 'グループを削除'; $labels['groupremoveselected'] = '選択した連絡先をグループから削除'; - $labels['previouspage'] = '前のページを表示'; $labels['firstpage'] = '最初のページを表示'; $labels['nextpage'] = '次のページを表示'; $labels['lastpage'] = '最後のページを表示'; - $labels['group'] = 'グループ'; $labels['groups'] = 'グループ'; $labels['listgroup'] = 'グループのメンバーを一覧'; $labels['personaladrbook'] = '個人の住所'; - $labels['searchsave'] = '検索情報を保存'; $labels['searchdelete'] = '検索情報を削除'; - $labels['import'] = 'インポート'; $labels['importcontacts'] = '連絡先をインポート'; $labels['importfromfile'] = 'ファイルからインポート'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'アドレス帳に新しい連絡先の追加:'; $labels['importreplace'] = 'アドレス帳全体と置き換え'; $labels['importdesc'] = '連絡先を既存のアドレス帳からアップロードできます。
現在、vCardまたはCSV(コンマ区切り)のデータ形式からアドレスのインポートをサポートしています。'; $labels['done'] = '完了'; - -// settings $labels['settingsfor'] = '次の設定:'; $labels['about'] = 'このプログラムについて'; $labels['preferences'] = '設定'; $labels['userpreferences'] = 'ユーザー設定'; $labels['editpreferences'] = 'ユーザー設定を変更'; - $labels['identities'] = '識別情報'; $labels['manageidentities'] = 'このアカウントの識別情報を管理'; $labels['newidentity'] = '新しい識別情報'; - $labels['newitem'] = '新しい項目'; $labels['edititem'] = '項目の編集'; - $labels['preferhtml'] = 'HTMLを表示'; $labels['defaultcharset'] = '初期設定の文字セット'; $labels['htmlmessage'] = 'HTMLメッセージ'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'ポップアップを通常のウィンドウと $labels['forwardmode'] = 'メッセージの転送形式'; $labels['inline'] = 'インライン'; $labels['asattachment'] = '添付ファイル'; - $labels['folder'] = 'フォルダー'; $labels['folders'] = 'フォルダー'; $labels['foldername'] = 'フォルダー名'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'フォルダーの種類'; $labels['personalfolder'] = '個人フォルダー'; $labels['otherfolder'] = '他のユーザーのフォルダー'; $labels['sharedfolder'] = '公開フォルダー'; - $labels['sortby'] = '並べ替え'; $labels['sortasc'] = '昇順で並べ替え'; $labels['sortdesc'] = '降順で並べ替え'; $labels['undo'] = '取り消し'; - $labels['installedplugins'] = 'インストールしているプラグイン'; $labels['plugin'] = 'プラグイン'; $labels['version'] = 'バージョン'; $labels['source'] = 'ソース'; $labels['license'] = 'ライセンス'; $labels['support'] = 'サポートを得る'; - -// units $labels['B'] = 'バイト'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = '英語'; $labels['westerneuropean'] = '西ヨーロッパ言語'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'ベトナム語'; $labels['japanese'] = '日本語'; $labels['korean'] = '韓国語'; $labels['chinese'] = '中国語'; - ?> diff --git a/program/localization/ja_JP/messages.inc b/program/localization/ja_JP/messages.inc index 820b52d96..267bcea42 100644 --- a/program/localization/ja_JP/messages.inc +++ b/program/localization/ja_JP/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = '選択した親フォルダーに作成また $messages['messagetoobig'] = 'その処理をするにはメッセージ部分が大きすぎます。'; $messages['attachmentvalidationerror'] = '警告! この添付ファイルはメッセージの宣言と一致しない種類という理由のため疑わしいです。送信者を信頼できないなら、悪意のある内容を含んでいるかもしれないのでブラウザーで開いてはなりません。

予測した種類: $expected; 発見した種類: $found'; $messages['noscriptwarning'] = '警告: このウェブメールサービスにはJavascriptが必要です! 使用するにはJavascriptをブラウザーの設定で有効にしてください。'; - ?> diff --git a/program/localization/ka_GE/labels.inc b/program/localization/ka_GE/labels.inc old mode 100755 new mode 100644 index b0126c44e..5200057bb --- a/program/localization/ka_GE/labels.inc +++ b/program/localization/ka_GE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'მოგესალმებათ $product'; $labels['username'] = 'მომხმარებელი'; $labels['password'] = 'პაროლი'; $labels['server'] = 'სერვერი'; $labels['login'] = 'შესვლა'; - -// taskbar $labels['logout'] = 'გამოსვლა'; $labels['mail'] = 'ელფოსტა'; $labels['settings'] = 'პარამეტრები'; $labels['addressbook'] = 'მისამართები'; - -// mailbox names $labels['inbox'] = 'მიღებული'; $labels['drafts'] = 'დროებითი'; $labels['sent'] = 'გაგზავნილი'; $labels['trash'] = 'წაშლილი'; $labels['junk'] = 'სპამი'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'სათაური'; $labels['from'] = 'გამგზავნი'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'პრიორიტეტი'; $labels['organization'] = 'ორგანიზაცია'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'საქაღალდეები'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'შეტყობინება $nr დან $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'ასლი'; $labels['move'] = 'გადატანა'; $labels['moveto'] = 'გადატანა...'; @@ -68,13 +59,9 @@ $labels['download'] = 'გადმოწერა'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ფაილის სახელი'; $labels['filesize'] = 'ფაილის ზომა'; - $labels['addtoaddressbook'] = 'მისამართებში დამატება'; - -// weekdays short $labels['sun'] = 'კვი'; $labels['mon'] = 'ორშ'; $labels['tue'] = 'სამ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'ოთხ'; $labels['thu'] = 'ხუთ'; $labels['fri'] = 'პარ'; $labels['sat'] = 'შაბ'; - -// weekdays long $labels['sunday'] = 'კვირა'; $labels['monday'] = 'ორშაბათი'; $labels['tuesday'] = 'სამშაბათი'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'ოთხშაბათი'; $labels['thursday'] = 'ხუთშაბათი'; $labels['friday'] = 'პარასკევი'; $labels['saturday'] = 'შაბათი'; - -// months short $labels['jan'] = 'იან'; $labels['feb'] = 'თებ'; $labels['mar'] = 'მარ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'სექ'; $labels['oct'] = 'ოქტ'; $labels['nov'] = 'ნოე'; $labels['dec'] = 'დეკ'; - -// months long $labels['longjan'] = 'იანვარი'; $labels['longfeb'] = 'თებერვალი'; $labels['longmar'] = 'მარტი'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'სექტემბერი'; $labels['longoct'] = 'ოქტომბერი'; $labels['longnov'] = 'ნოემბერი'; $labels['longdec'] = 'დეკემბერი'; - $labels['today'] = 'დღეს'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'შემოწმება ახალ შეტყობინებაზე'; $labels['compose'] = 'შეტყობინების დაწერა'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'მეტი მოქმედება...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'მონიშვნა'; $labels['all'] = 'ყველა'; $labels['none'] = 'არცერთი'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'ყველას გაშლა'; $labels['expand-unread'] = 'წაუკითხავის გაშლა'; $labels['collapse-all'] = 'ყველას დაკეცვა'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'დალაგება'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'შეკუმშვა'; $labels['empty'] = 'გაცარიელება'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'შეზღუდვა'; $labels['unknown'] = 'უცნობი'; $labels['unlimited'] = 'შეუზღუდავი'; - $labels['quicksearch'] = 'სწრაფი ძიება'; $labels['resetsearch'] = 'ძიების გასუფთავება'; $labels['searchmod'] = 'ძებნის ვარიანტები'; $labels['msgtext'] = 'ყველა შეტყობინება'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'გახსნა ახალ ფანჯარაში'; $labels['emlsave'] = 'გადმოწერა (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'რედაქტირება როგორც ახლის'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'შეტყობინების გაგზავნა'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'პასუხის მოთხოვნა'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ორთოგრაფიული შემოწმება'; $labels['resumeediting'] = 'რედაქტირების გაგრძელება'; $labels['revertto'] = 'გაუქმება'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'გზავნილები'; $labels['upload'] = 'ატვირთვა'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'დახურვა'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'დაბალი'; $labels['lowest'] = 'უდაბლესი'; $labels['normal'] = 'საშუალო'; $labels['high'] = 'მაღალი'; $labels['highest'] = 'უმაღლესი'; - $labels['nosubject'] = '(უსათაურო)'; $labels['showimages'] = 'გამოსახულების ჩვენება'; $labels['alwaysshow'] = 'ყოველთვის გამოაჩინე სურათები $sender –გან'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'ტექსტური'; $labels['savesentmessagein'] = 'შეინახე შეტყობინება'; $labels['dontsave'] = 'არ შეინახო'; $labels['maxuploadsize'] = 'მაქსიმალური დაშვებული ფაილის ზომა $size'; - $labels['addcc'] = 'დაამატე კოპიო'; $labels['addbcc'] = 'დაამატე ფარული კოპიო'; $labels['addreplyto'] = 'დაამატე გამომგზავნი'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'გამომგზავნს სურს შეიტყოს წერილის მიღება. გსურთ შეატყობინოთ გამომგზავნს?'; $labels['receiptread'] = 'გზავნილის დაბრუნება'; $labels['yourmessage'] = 'ეს არის მიღების დასტური თქვენს შეტყობინებაზე'; $labels['receiptnote'] = 'განმარტება: ეს ნიშნავს რომ ადრესატმა მიიღო შეტყობინება. მაგრამ, არ ნიშნავს რომ წაიკითხა ან გაიგო ტექსტი'; - -// address boook $labels['name'] = 'სრული სახელი'; $labels['firstname'] = 'სახელი'; $labels['surname'] = 'გვარი'; @@ -304,7 +264,6 @@ $labels['search'] = 'ძებნა'; $labels['advsearch'] = 'გაფართოებული ძებნა'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'სხვა'; - $labels['typehome'] = 'სახლი'; $labels['typework'] = 'სამსახური'; $labels['typeother'] = 'სხვა'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'ბლოგი'; $labels['typeprofile'] = 'პროფილი'; - $labels['addfield'] = 'ველის დამატება...'; $labels['addcontact'] = 'კონტაქტებში დამატება'; $labels['editcontact'] = 'კონტაქტის რედაქტირება'; $labels['contacts'] = 'კონტაქტები'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'პირადი ინფორმაცია'; - $labels['edit'] = 'რედაქტირება'; $labels['cancel'] = 'გაუქმება'; $labels['save'] = 'შენახვა'; @@ -335,7 +292,6 @@ $labels['rename'] = 'გადარქმევა'; $labels['addphoto'] = 'დამატება'; $labels['replacephoto'] = 'გამოცვლა'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'კონტაქტის შექმნა'; $labels['deletecontact'] = 'მონიშნელი კონტაქტის წაშლა'; $labels['composeto'] = 'ფოსტის გაგზავნა შერჩეულ ადრესატებთან'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'ახალი საკონტაქტო ჯ $labels['grouprename'] = 'ჯგუფის სახელის შეცვლა'; $labels['groupdelete'] = 'ჯგუფის წაშლა'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'წინას ჩვენება'; $labels['firstpage'] = 'პირველის ჩვენება'; $labels['nextpage'] = 'შემდეგის ჩვენება'; $labels['lastpage'] = 'ბოლოს ჩვენება'; - $labels['group'] = 'ჯგუფი'; $labels['groups'] = 'ჯგუფები'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'პერსონალური მისამართები'; - $labels['searchsave'] = 'ძებნის შენახვა'; $labels['searchdelete'] = 'ძებნის წაშლა'; - $labels['import'] = 'შემოტანა'; $labels['importcontacts'] = 'კონტაქტების შემოტანა'; $labels['importfromfile'] = 'შემოტანა ფაილიდან:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ჩაანაცვლეთ არსებული მისამართები'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'დასრულებულია'; - -// settings $labels['settingsfor'] = 'პარამეტრები'; $labels['about'] = 'About'; $labels['preferences'] = 'პარამეტრები'; $labels['userpreferences'] = 'მომხმარებლის პარამეტრები'; $labels['editpreferences'] = 'მომხმარებლის პარამეტრების რედაქტირება'; - $labels['identities'] = 'პროფილები'; $labels['manageidentities'] = 'პროფილების მართვა'; $labels['newidentity'] = 'ახალი პროფილი'; - $labels['newitem'] = 'ახალი'; $labels['edititem'] = 'რედაქტირება'; - $labels['preferhtml'] = 'როგორც HTML'; $labels['defaultcharset'] = 'ნაგულისხმები სიმბოლოთა ნაკრები'; $labels['htmlmessage'] = 'HTML შეტყობინება'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'საქაღალდე'; $labels['folders'] = 'საქაღალდეები'; $labels['foldername'] = 'საქაღალდის დასახელება'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'დასტის ტიპი'; $labels['personalfolder'] = 'კერძო დასტა'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'საჯარო დასტა'; - $labels['sortby'] = 'დალაგება'; $labels['sortasc'] = 'დალაგება ზრდადობით'; $labels['sortdesc'] = 'დალაგება კლებადობით'; $labels['undo'] = 'დაბრუნება'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'ბტ'; $labels['KB'] = 'კბტ'; $labels['MB'] = 'მბტ'; $labels['GB'] = 'გბტ'; - -// character sets $labels['unicode'] = 'უნიკოდი'; $labels['english'] = 'ინსგლისური'; $labels['westerneuropean'] = 'დასავლურევროპული'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'ვიეტნამური'; $labels['japanese'] = 'იაპონური'; $labels['korean'] = 'კორეული'; $labels['chinese'] = 'ჩინური'; - ?> diff --git a/program/localization/ka_GE/messages.inc b/program/localization/ka_GE/messages.inc old mode 100755 new mode 100644 index c0cdd98f0..218bd731b --- a/program/localization/ka_GE/messages.inc +++ b/program/localization/ka_GE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/km_KH/labels.inc b/program/localization/km_KH/labels.inc index bc2836a53..8ef06c029 100644 --- a/program/localization/km_KH/labels.inc +++ b/program/localization/km_KH/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product សូមស្វាគមន៍'; $labels['username'] = 'ឈ្មោះអ្នកប្រើ'; $labels['password'] = 'ពាក្យសំងាត់'; $labels['server'] = 'ម៉ាស៊ីនមេ'; $labels['login'] = 'ពិនិត្យចូល'; - -// taskbar $labels['logout'] = 'ពិនិត្យចេញ'; $labels['mail'] = 'អ៊ីមែល'; $labels['settings'] = 'កំនត់ការប្រើប្រាស់'; $labels['addressbook'] = 'សៀវភៅអាសយដ្ឋាន'; - -// mailbox names $labels['inbox'] = 'ប្រអប់សំបុត្រ'; $labels['drafts'] = 'សំបុត្រពង្រៀង'; $labels['sent'] = 'សំបុត្រដែលបានបញ្ជូន'; $labels['trash'] = 'ធុងសំរាម'; $labels['junk'] = 'សំបុត្រមិនល្អ'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'ចំណងជើង'; $labels['from'] = 'អ្នកផ្ញើ'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'អទិភាព'; $labels['organization'] = 'អង្គភាព'; $labels['readstatus'] = 'ស្ថានភាពនៃការអាន'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'ថតទាំងអស់'; $labels['messagesfromto'] = 'សំបុត្រពី $from ទៅដល់ $toក្នុងចំណោម $count សំបុត្រ'; $labels['threadsfromto'] = 'បន្តុំសំបុត្រពី $from ទៅដល់ $toក្នុងចំណោម $count សំបុត្រ'; $labels['messagenrof'] = 'សំបុត្រ $nr នៃ $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'ចំលង'; $labels['move'] = 'ផ្ទេរ'; $labels['moveto'] = 'ផ្ទេរទៅ'; @@ -68,13 +59,9 @@ $labels['download'] = 'ទាញយក'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ឈ្មោះឯកសារ'; $labels['filesize'] = 'ទំហំឯកសារ'; - $labels['addtoaddressbook'] = 'រក្សាទុកក្នុងសៀវភៅអាសយដ្ឋាន'; - -// weekdays short $labels['sun'] = 'អាទិត្យ'; $labels['mon'] = 'ច័ន្ទ'; $labels['tue'] = 'អង្គារ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'ពុធ'; $labels['thu'] = 'ព្រហស្បតិ៍'; $labels['fri'] = 'សុក្រ'; $labels['sat'] = 'សៅរ៍'; - -// weekdays long $labels['sunday'] = 'អាទិត្យ'; $labels['monday'] = 'ច័ន្ទ'; $labels['tuesday'] = 'អង្គារ'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'ពុធ'; $labels['thursday'] = 'ព្រហស្បតិ៍'; $labels['friday'] = 'សុក្រ'; $labels['saturday'] = 'សៅរ៍'; - -// months short $labels['jan'] = 'មករា'; $labels['feb'] = 'កុម្ភះ'; $labels['mar'] = 'មិនា'; @@ -105,8 +88,6 @@ $labels['sep'] = 'កញ្ញា'; $labels['oct'] = 'តុលា'; $labels['nov'] = 'វិច្ឆិកា'; $labels['dec'] = 'ធ្នូ'; - -// months long $labels['longjan'] = 'មករា'; $labels['longfeb'] = 'កុម្ភះ'; $labels['longmar'] = 'មិនា'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'កញ្ញា'; $labels['longoct'] = 'តុលា'; $labels['longnov'] = 'វិច្ឆិកា'; $labels['longdec'] = 'ធ្នូ'; - $labels['today'] = 'ថ្ងៃនេះ'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'ពិនិត្យសំបុត្រថ្មី'; $labels['compose'] = 'សរសេរសំបុត្រថ្មី'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'ជ្រើសរើស'; $labels['all'] = 'ទាំងអស់'; $labels['none'] = 'មិនតំរៀប'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'បង្ហាញសំបុត្រទាំងអ $labels['expand-unread'] = 'បង្ហាញសំបុត្រមិនទាន់អាន'; $labels['collapse-all'] = 'បិទសំបុត្រទាំងអស់'; $labels['threaded'] = 'បានបែកចែកជាក្រុមរួច'; - $labels['autoexpand_threads'] = 'បង្ហាញបណ្តុំសំបុត្រ'; $labels['do_expand'] = 'បណ្តុំទាំងអស់'; $labels['expand_only_unread'] = 'បង្ហាញតែសំបុត្រដែលមិនទាន់អាន'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'តារាងជួរឈ'; $labels['listsorting'] = 'តំរៀបជួរឈ'; $labels['listorder'] = 'លំដាប់នៃការតំរៀប'; $labels['listmode'] = 'បង្ហាញជាតារាង'; - $labels['folderactions'] = 'មុខងារថត'; $labels['compact'] = 'បង្រួម'; $labels['empty'] = 'ទទេរ'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'ទំហំសំបុត្រទាំងអស់ដែលមាន'; $labels['unknown'] = 'មិនស្គាល់'; $labels['unlimited'] = 'គ្មានកំនត់'; - $labels['quicksearch'] = 'ស្វែងរក'; $labels['resetsearch'] = 'កំណត់លក្ខខ័ណ្ឌស្វែងរកជាថ្មី'; $labels['searchmod'] = 'កែសំរួលលក្ខខ័ណ្ឌស្វែងរក'; $labels['msgtext'] = 'សំបុត្រទាំងមូល'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'បើកក្នុងវីនដូវថ្មី'; $labels['emlsave'] = 'រក្សាទុកទិន្នន័យជាឯកសារប្រភេទ(.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'កែហើយរក្សាទុកដូចជាសំបុត្រថ្មី'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'ផ្ញើសំបុត្រនេះ'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'អត្ថបទបញ្ជាក់ពីកា $labels['dsn'] = 'ប្រាប់អំពីស្ថានភាពផ្ញើ'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'ផ្លាស់ប្តូរអត្តសញ្ញាណ'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ពិនិត្យអក្ខរាវិរុទ្ធ'; $labels['resumeediting'] = 'បន្តរការកែតំរូវ'; $labels['revertto'] = 'ត្រលប់ទៅ'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'ឯកសារភ្ជាប់'; $labels['upload'] = 'ភ្ជាប់ឯកសារ'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'បិទ'; $labels['messageoptions'] = 'កំណត់ជំរើសរបស់សំបុត្រ'; - $labels['low'] = 'ទាប'; $labels['lowest'] = 'ទាបបំផុត'; $labels['normal'] = 'ធម្មតា'; $labels['high'] = 'ខ្ពស់'; $labels['highest'] = 'ខ្ពស់បំផុត'; - $labels['nosubject'] = '(គ្មានចំណងជើង)'; $labels['showimages'] = 'បង្ហាញរូបភាព'; $labels['alwaysshow'] = 'បង្ហាញជានិច្ចរាល់រូបភាពបញ្ជូនពី$sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'អត្ថបទ HTML'; $labels['plaintoggle'] = 'អត្ថបទធម្មតា'; $labels['savesentmessagein'] = 'រក្សាសំបុត្រដែលបានផ្ញើក្នុង'; $labels['dontsave'] = 'មិនរក្សាទុក'; $labels['maxuploadsize'] = 'ទំហំឯកសារធំបំផុតដែលអាចភ្ជាប់បានគឺ$size'; - $labels['addcc'] = 'បន្ថែម Cc'; $labels['addbcc'] = 'បន្ថែម Bcc'; $labels['addreplyto'] = 'បន្ថែម Reply-To'; $labels['addfollowupto'] = 'បន្ថែម Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'អត្ថបទផ្ញើត្រលប់ (បានអាន)'; $labels['yourmessage'] = 'នេះគឺជាអត្ថបទផ្ញើត្រលប់សំរាប់សំបុត្ររបស់លោកអ្នក។'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'ឈ្មោះសំរាប់បង្ហាញ'; $labels['firstname'] = 'នាមត្រកូល'; $labels['surname'] = 'នាមខ្លួន'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'ផ្សេងពីនេះ'; - $labels['typehome'] = 'គេហដ្ឋាន'; $labels['typework'] = 'កន្លែងធ្វើការ'; $labels['typeother'] = 'ផ្សេងពីនេះ'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'ជំនួយការ'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'បន្ថែម'; $labels['addcontact'] = 'បន្ថែមអាសយដ្ឋានទាក់ទង'; $labels['editcontact'] = 'កែប្រែអាសយដ្ឋានទាក់ទង'; $labels['contacts'] = 'អាសយដ្ឋានទាក់ទងទាំងអស់'; $labels['contactproperties'] = 'ព័ត៌មានអំពីទំនាក់ទំនង'; $labels['personalinfo'] = 'ព័ត៌មានផ្ទាល់ខ្លួន'; - $labels['edit'] = 'កែតំរូវ'; $labels['cancel'] = 'លះបង់'; $labels['save'] = 'រក្សាទុក'; @@ -335,7 +292,6 @@ $labels['rename'] = 'ប្តូរឈ្មោះ'; $labels['addphoto'] = 'បន្ថែមរូបថត'; $labels['replacephoto'] = 'លុបរូបថត'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'បង្កើតអាសយដ្ឋានទាក់ទងថ្មី'; $labels['deletecontact'] = 'លុបអាសយដ្ឋានទាក់ទងដែលបានជ្រើសរើស'; $labels['composeto'] = 'ផ្ញើសំបុត្រទៅ'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'បង្កើតក្រុមអាសយដ $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'ទំព័រមុន'; $labels['firstpage'] = 'ទំព័រដំបូង'; $labels['nextpage'] = 'ទំព័របន្ទាប់'; $labels['lastpage'] = 'ទំព័រចុងក្រោយ'; - $labels['group'] = 'ក្រុម'; $labels['groups'] = 'ក្រុម'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'អាសយដ្ឋានផ្ទាល់ខ្លួន'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'បញ្ចូល'; $labels['importcontacts'] = 'បញ្ចូលអាសយដ្ឋាន'; $labels['importfromfile'] = 'បញ្ចូលពី ឯកសារ'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ផ្លាស់ប្តូរអាសយដ្ឋានទាំងអស់'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'ចប់រួចរាល់'; - -// settings $labels['settingsfor'] = 'កំណត់សំរាប់'; $labels['about'] = 'About'; $labels['preferences'] = 'កំណត់តាមការចូលចិត្ត'; $labels['userpreferences'] = 'កំណត់តាមការចូលចិត្តរបស់អ្នកប្រើ'; $labels['editpreferences'] = 'ផ្លាស់ប្តូរការចូលចិត្តរបស់អ្នកប្រើ'; - $labels['identities'] = 'អត្តសញ្ញាណ'; $labels['manageidentities'] = 'គ្រប់គ្រងអត្តសញ្ញាណ'; $labels['newidentity'] = 'អត្តសញ្ញាណថ្មី'; - $labels['newitem'] = 'វត្ថុថ្មី'; $labels['edititem'] = 'កែប្រែវត្ថុ'; - $labels['preferhtml'] = 'បង្ហាញជា HTML'; $labels['defaultcharset'] = 'លេខកូតអក្សរមានស្រាប់'; $labels['htmlmessage'] = 'សំបុត្រប្រភេទ HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'ថត'; $labels['folders'] = 'ថតទាំងអស់'; $labels['foldername'] = 'ឈ្មោះថត'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'តំរៀបតាម'; $labels['sortasc'] = 'តំរៀបតាមលំដាប់ចុះ'; $labels['sortdesc'] = 'តំរៀបតាមលំដាប់ឡើង'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'យូនីកូដ'; $labels['english'] = 'ភាសាអង់គ្លេស'; $labels['westerneuropean'] = 'អឺរ៉ុបខាងលិច'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'ភាសាវៀតណាម'; $labels['japanese'] = 'ភាសាជប៉ុន'; $labels['korean'] = 'ភាសាកូរ៉េ'; $labels['chinese'] = 'ភាសាចិន'; - ?> diff --git a/program/localization/km_KH/messages.inc b/program/localization/km_KH/messages.inc index 35bb10244..aef7d983e 100644 --- a/program/localization/km_KH/messages.inc +++ b/program/localization/km_KH/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ko_KR/labels.inc b/program/localization/ko_KR/labels.inc index 60a9275ac..4aa1541a8 100644 --- a/program/localization/ko_KR/labels.inc +++ b/program/localization/ko_KR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product에 오신 것을 환영합니다'; $labels['username'] = '사용자명'; $labels['password'] = '암호'; $labels['server'] = '서버'; $labels['login'] = '로그인'; - -// taskbar $labels['logout'] = '로그아웃'; $labels['mail'] = '메일'; $labels['settings'] = '설정'; $labels['addressbook'] = '주소록'; - -// mailbox names $labels['inbox'] = '받은 편지함'; $labels['drafts'] = '임시 보관함'; $labels['sent'] = '보낸 편지함'; $labels['trash'] = '휴지통'; $labels['junk'] = '스팸 편지함'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = '제목'; $labels['from'] = '보내는 사람'; $labels['sender'] = '발신인'; @@ -54,13 +47,11 @@ $labels['priority'] = '우선순위'; $labels['organization'] = '기관'; $labels['readstatus'] = '읽음 상태'; $labels['listoptions'] = '목록 옵션...'; - $labels['mailboxlist'] = '폴더'; $labels['messagesfromto'] = '총 $count개 중 $from 번째부터 $to 번째까지의 메시지'; $labels['threadsfromto'] = '총 $count개 중 $from 번째부터 $to 번째까지의 스레드'; $labels['messagenrof'] = '총 $count개 중 $nr 번째 메시지'; $labels['fromtoshort'] = '총 $count개 중 $from 번째 - $to 번째'; - $labels['copy'] = '복사'; $labels['move'] = '이동'; $labels['moveto'] = '이동할 위치...'; @@ -68,13 +59,9 @@ $labels['download'] = '다운로드'; $labels['open'] = '열기'; $labels['showattachment'] = '보기'; $labels['showanyway'] = '그래도 항상 보기'; - $labels['filename'] = '파일명'; $labels['filesize'] = '파일 크기'; - $labels['addtoaddressbook'] = '주소록에 추가'; - -// weekdays short $labels['sun'] = '일'; $labels['mon'] = '월'; $labels['tue'] = '화'; @@ -82,8 +69,6 @@ $labels['wed'] = '수'; $labels['thu'] = '목'; $labels['fri'] = '금'; $labels['sat'] = '토'; - -// weekdays long $labels['sunday'] = '일요일'; $labels['monday'] = '월요일'; $labels['tuesday'] = '화요일'; @@ -91,8 +76,6 @@ $labels['wednesday'] = '수요일'; $labels['thursday'] = '목요일'; $labels['friday'] = '금요일'; $labels['saturday'] = '토요일'; - -// months short $labels['jan'] = '1월'; $labels['feb'] = '2월'; $labels['mar'] = '3월'; @@ -105,8 +88,6 @@ $labels['sep'] = '9월'; $labels['oct'] = '10월'; $labels['nov'] = '11월'; $labels['dec'] = '12월'; - -// months long $labels['longjan'] = '1월'; $labels['longfeb'] = '2월'; $labels['longmar'] = '3월'; @@ -119,10 +100,7 @@ $labels['longsep'] = '9월'; $labels['longoct'] = '10월'; $labels['longnov'] = '11월'; $labels['longdec'] = '12월'; - $labels['today'] = '오늘'; - -// toolbar buttons $labels['refresh'] = '새로 고침'; $labels['checkmail'] = '새 메시지 확인'; $labels['compose'] = '메시지 작성'; @@ -155,7 +133,6 @@ $labels['moreactions'] = '추가 동작...'; $labels['more'] = '더보기'; $labels['back'] = '뒤로'; $labels['options'] = '옵션'; - $labels['select'] = '선택'; $labels['all'] = '모두'; $labels['none'] = '없음'; @@ -174,7 +151,6 @@ $labels['expand-all'] = '모두 확장'; $labels['expand-unread'] = '읽지 않은 메시지 확장'; $labels['collapse-all'] = '모두 접기'; $labels['threaded'] = '스레드화됨'; - $labels['autoexpand_threads'] = '메시지 스레드 확장'; $labels['do_expand'] = '모든 스레드'; $labels['expand_only_unread'] = '읽지 않은 메시지에만 적용'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = '열 목록 보기'; $labels['listsorting'] = '열 정렬'; $labels['listorder'] = '정렬 순서'; $labels['listmode'] = '화면 모드 목록 보기'; - $labels['folderactions'] = '폴더 명령'; $labels['compact'] = '간단하게'; $labels['empty'] = '비어 있음'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = '디스크 사용량'; $labels['unknown'] = '알 수 없음'; $labels['unlimited'] = '제한 없음'; - $labels['quicksearch'] = '빠른 검색'; $labels['resetsearch'] = '검색 재설정'; $labels['searchmod'] = '수정자 검색'; $labels['msgtext'] = '전체 메시지'; $labels['body'] = '본문'; $labels['type'] = 'Type'; - $labels['openinextwin'] = '새 창에서 열기'; $labels['emlsave'] = '다운로드(.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = '새 메시지로 편집'; $labels['send'] = '보내기'; $labels['sendmessage'] = '메일 보내기'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = '수신 확인'; $labels['dsn'] = '전송 상태 알림'; $labels['mailreplyintro'] = '$date에 $sender이(가) 작성한 내용:'; $labels['originalmessage'] = '원본 메세지'; - $labels['editidents'] = '신원 편집'; $labels['spellcheck'] = '맞춤법'; $labels['checkspelling'] = '맞춤법 검사하기'; $labels['resumeediting'] = '편집 계속하기'; $labels['revertto'] = '돌아가기'; - $labels['attach'] = '첨부'; $labels['attachments'] = '첨부파일'; $labels['upload'] = '업로드'; $labels['uploadprogress'] = '$percent ($total개 중 $current개)'; $labels['close'] = '닫기'; $labels['messageoptions'] = '메시지 옵션...'; - $labels['low'] = '낮음'; $labels['lowest'] = '가장 낮음'; $labels['normal'] = '보통'; $labels['high'] = '높음'; $labels['highest'] = '가장 높음'; - $labels['nosubject'] = '(제목 없음)'; $labels['showimages'] = '이미지 보기'; $labels['alwaysshow'] = '$sender에서 수신된 이미지 항상 보기'; @@ -251,25 +217,19 @@ $labels['isdraft'] = '이것은 작성 중인 메시지입니다.'; $labels['andnmore'] = '$nr 더 보기...'; $labels['togglemoreheaders'] = '메시지 헤더 더 보기'; $labels['togglefullheaders'] = '원 메시지 헤더 표시/숨기기'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = '일반 텍스트'; $labels['savesentmessagein'] = '보낸 메시지를 다음 위치에 저장'; $labels['dontsave'] = '저장하지 않음'; $labels['maxuploadsize'] = '최대 허용 파일 크기는 $size 입니다'; - $labels['addcc'] = '참조 추가'; $labels['addbcc'] = '숨은 참조 추가'; $labels['addreplyto'] = '회신 주소 추가'; $labels['addfollowupto'] = '전달 추가'; - -// mdn $labels['mdnrequest'] = '이 메시지를 보낸 사람이 사용자가 이 메시지를 읽었을 때 읽음 확인을 요청했습니다. 보낸 사람에게 알리시겠습니까?'; $labels['receiptread'] = '수신 확인 (읽음)'; $labels['yourmessage'] = '이것은 사용자의 메시지에 대한 수신 확인입니다.'; $labels['receiptnote'] = '참고: 이 수신 확인은 이 메시지가 받는 사람의 컴퓨터에 표시되었다는 것만을 의미합니다. 받는 사람이 메시지 내용을 읽거나 이해했다는 보장은 없습니다.'; - -// address boook $labels['name'] = '표시명'; $labels['firstname'] = '이름'; $labels['surname'] = '성'; @@ -304,7 +264,6 @@ $labels['search'] = '검색'; $labels['advsearch'] = '고급 검색'; $labels['advanced'] = '고급'; $labels['other'] = '기타'; - $labels['typehome'] = '자택'; $labels['typework'] = '직장'; $labels['typeother'] = '기타'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = '비서'; $labels['typehomepage'] = '홈페이지'; $labels['typeblog'] = '블로그'; $labels['typeprofile'] = '자기소개'; - $labels['addfield'] = '필드 추가..'; $labels['addcontact'] = '새 연락처 추가'; $labels['editcontact'] = '연락처 편집'; $labels['contacts'] = '연락처'; $labels['contactproperties'] = '연락처 속성'; $labels['personalinfo'] = '개인 정보'; - $labels['edit'] = '편집'; $labels['cancel'] = '취소'; $labels['save'] = '저장'; @@ -335,7 +292,6 @@ $labels['rename'] = '이름 변경'; $labels['addphoto'] = '추가'; $labels['replacephoto'] = '바꾸기'; $labels['uploadphoto'] = '사진 업로드'; - $labels['newcontact'] = '새 연락처 카드 생성'; $labels['deletecontact'] = '선택한 연락처 삭제'; $labels['composeto'] = '메일 작성 대상'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = '새 연락처 그룹 생성'; $labels['grouprename'] = '그룹명 변경'; $labels['groupdelete'] = '그룹 삭제'; $labels['groupremoveselected'] = '그룹에서 선택한 연락처 제거'; - $labels['previouspage'] = '이전 페이지 보기'; $labels['firstpage'] = '처음 페이지 보기'; $labels['nextpage'] = '다음 페이지 보기'; $labels['lastpage'] = '마지막 페이지 보기'; - $labels['group'] = '그룹'; $labels['groups'] = '그룹'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = '개인 주소'; - $labels['searchsave'] = '검색 저장'; $labels['searchdelete'] = '검색 삭제'; - $labels['import'] = '가져오기'; $labels['importcontacts'] = '연락처 가져오기'; $labels['importfromfile'] = '파일에서 가져오기:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = '새 연락처를 주소록에 추가:'; $labels['importreplace'] = '전체 주소록을 바꾸기'; $labels['importdesc'] = '기존 주소록에서 연락처를 가져올 수 있습니다.
현재 vCard 데이터 형식에서 주소 가져오기를 지원합니다.\''; $labels['done'] = '완료'; - -// settings $labels['settingsfor'] = '설정'; $labels['about'] = '정보...'; $labels['preferences'] = '환경설정'; $labels['userpreferences'] = '사용자 환경설정'; $labels['editpreferences'] = '사용자 환경설정 편집'; - $labels['identities'] = '신원'; $labels['manageidentities'] = '이 계정의 신원 관리'; $labels['newidentity'] = '새 신원'; - $labels['newitem'] = '새 항목'; $labels['edititem'] = '항목 편집'; - $labels['preferhtml'] = 'HTML 표시'; $labels['defaultcharset'] = '기본 인코딩'; $labels['htmlmessage'] = 'HTML 메시지'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = '메시지 전달'; $labels['inline'] = '본문 내용으로'; $labels['asattachment'] = '첨부파일로'; - $labels['folder'] = '폴더'; $labels['folders'] = '폴더'; $labels['foldername'] = '폴더명'; @@ -501,26 +447,20 @@ $labels['foldertype'] = '폴더 유형'; $labels['personalfolder'] = '개인 폴더'; $labels['otherfolder'] = '다른 사용자의 폴더'; $labels['sharedfolder'] = '공유 폴더'; - $labels['sortby'] = '정렬 방식'; $labels['sortasc'] = '오름차순으로 정렬'; $labels['sortdesc'] = '내림차순으로 정렬'; $labels['undo'] = '실행 취소'; - $labels['installedplugins'] = '설치된 플러그인'; $labels['plugin'] = '플러그인'; $labels['version'] = '버전'; $labels['source'] = '소스'; $labels['license'] = '라이선스'; $labels['support'] = '지원 요청'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = '유니코드'; $labels['english'] = '영어'; $labels['westerneuropean'] = '서유럽어'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = '베트남어'; $labels['japanese'] = '일본어'; $labels['korean'] = '한국어'; $labels['chinese'] = '중국어'; - ?> diff --git a/program/localization/ko_KR/messages.inc b/program/localization/ko_KR/messages.inc index ace6dc8d7..ac0667b8d 100644 --- a/program/localization/ko_KR/messages.inc +++ b/program/localization/ko_KR/messages.inc @@ -173,5 +173,4 @@ $messages['parentnotwritable'] = '선택한 상위 폴더에 폴더를 생성/ $messages['messagetoobig'] = '메시지 부분이 처리하기에는 너무 큽니다.'; $messages['attachmentvalidationerror'] = '경고! 이 첨부 파일의 유형이 메시지에서 선언된 유형과 일치하지 않기 때문에 의심됩니다. 발신인을 신뢰할 수 없을 경우, 악성 코드를 포함할 수도 있기 때문에 브라우저에서 열지 않는 것이 좋습니다.

예상한 유형: $expected; 발견된 유형: $found'; $messages['noscriptwarning'] = '경고: 이 웹 메일 서비스는 자바스크립트가 필요합니다! 이 기능을 사용하시려면 자바스크립트를 브라우저 설정에서 활성화하시기 바랍니다.'; - ?> diff --git a/program/localization/ku/labels.inc b/program/localization/ku/labels.inc index 6a3c16a5f..80003b1ff 100644 --- a/program/localization/ku/labels.inc +++ b/program/localization/ku/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bixêr hatî $product \'ê'; $labels['username'] = 'Bikarhêner'; $labels['password'] = 'Nasnav'; $labels['server'] = 'Pêşkêşkar'; $labels['login'] = 'Têkevê'; - -// taskbar $labels['logout'] = 'Derkeve'; $labels['mail'] = 'E-Peyam'; $labels['settings'] = 'Mîhengên Takekesî'; $labels['addressbook'] = 'Lênûska Navnîşanan'; - -// mailbox names $labels['inbox'] = 'Hatî'; $labels['drafts'] = 'Hilanînî'; $labels['sent'] = 'Şandî'; $labels['trash'] = 'Çop'; $labels['junk'] = 'Biikêrnehatî'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Mijar'; $labels['from'] = 'Şandyar'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Girîngî'; $labels['organization'] = 'Sazî'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Peldank'; $labels['messagesfromto'] = 'Peyam $count ên di navbera $from - $to'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr a peyama $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Kopiya Karbon'; $labels['move'] = 'Move'; $labels['moveto'] = 'bibe...'; @@ -68,13 +59,9 @@ $labels['download'] = 'daxe'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Navê pelê'; $labels['filesize'] = 'Mezinahiya pelê'; - $labels['addtoaddressbook'] = 'Têxe lênûska navnîşanan'; - -// weekdays short $labels['sun'] = 'Yş'; $labels['mon'] = 'Dş'; $labels['tue'] = 'Sş'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Çş'; $labels['thu'] = 'Pş'; $labels['fri'] = 'În'; $labels['sat'] = 'Şe'; - -// weekdays long $labels['sunday'] = 'Yekşem'; $labels['monday'] = 'Duşem'; $labels['tuesday'] = 'Sêşem'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Çarşem'; $labels['thursday'] = 'Pêncşem'; $labels['friday'] = 'În'; $labels['saturday'] = 'Şemî'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'January'; $labels['longfeb'] = 'February'; $labels['longmar'] = 'March'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'October'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Îro'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Li peyamên nû venihêre'; $labels['compose'] = 'Peyamekê biafirîne'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Hilbijêre'; $labels['all'] = 'Hemû'; $labels['none'] = 'Ne yek jî'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Kompakt'; $labels['empty'] = 'Vala Bike'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Bikaranîna dîskê'; $labels['unknown'] = 'nayê zanîn'; $labels['unlimited'] = 'bêsînor'; - $labels['quicksearch'] = 'Lêgerîna bilez'; $labels['resetsearch'] = 'Lêgerînê reset bike'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Peyamê niha bişîne'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Rapora Vegerînê'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Kontrola rastnivîsê'; $labels['resumeediting'] = 'Serastkirinê bidomîne'; $labels['revertto'] = 'Şûnde bîne'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Pêvek'; $labels['upload'] = 'Bar bike'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Bigire'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Nizm'; $labels['lowest'] = 'Nizmtirîn'; $labels['normal'] = 'Asayî'; $labels['high'] = 'Bilind'; $labels['highest'] = 'Bilintirîn'; - $labels['nosubject'] = '(bê mijar)'; $labels['showimages'] = 'Xuyakirina wêneyan'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Deqa tazî'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Cc Têxê'; $labels['addbcc'] = 'Bcc Têxê'; $labels['addreplyto'] = 'Bibersivîne têxê'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'Şandyara/ê vê peyamê xwest dema ku te peyam vekir, jê re hişyarî here. Dixwazî jê re hişyarî here?'; $labels['receiptread'] = 'Rapora Vegerînê (xwendî)'; $labels['yourmessage'] = 'Ev rapora vegerîna peyama te ye'; $labels['receiptnote'] = 'Nîşe: Ev dide zanîn ka peyama te şand hat xwendin an na. Naveroka peyamê bi mîgogerî nayê zanîn.'; - -// address boook $labels['name'] = 'Navê xuya dibe'; $labels['firstname'] = 'Nav'; $labels['surname'] = 'Paşnav'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Têkiliyeke nû têxê'; $labels['editcontact'] = 'Têkiliyê serast bike'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Serast bike'; $labels['cancel'] = 'Betal'; $labels['save'] = 'Tomar bike'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'kardeke nû a têkiliyê biafirîne'; $labels['deletecontact'] = 'Têkiliyên hilbijartî jê bibe'; $labels['composeto'] = 'Ji têkiliya hilbijartî re peyam bişîne'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Seta berê nîşan bide'; $labels['firstpage'] = 'Seta yekemîn nîşan bide'; $labels['nextpage'] = 'Seta di rêzê de nîşan bide'; $labels['lastpage'] = 'Seta dawî nîşan bide'; - $labels['group'] = 'Group'; $labels['groups'] = 'Kom'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Navnîşanên Takekesî'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Mîheng ji bo'; $labels['about'] = 'About'; $labels['preferences'] = 'Vebijêrk'; $labels['userpreferences'] = 'Vebijêrkên bikarhêner'; $labels['editpreferences'] = 'Vebijêrkên bikarhêner serast bike'; - $labels['identities'] = 'Nasname'; $labels['manageidentities'] = 'Nasnameyên vê hesabê serast bike'; $labels['newidentity'] = 'Nasnameya nû'; - $labels['newitem'] = 'Parçeya nû'; $labels['edititem'] = 'Parçeyê serast bike'; - $labels['preferhtml'] = 'Wekî HTML nîşan bide'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Peyama HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Peldank'; $labels['folders'] = 'Peldank'; $labels['foldername'] = 'Navê peldankê'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Şêweyê rêzkirinê'; $labels['sortasc'] = 'Wekî zêde dibe'; $labels['sortdesc'] = 'Wekî kêm dibe'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ku/messages.inc b/program/localization/ku/messages.inc index b3c716466..792492f1d 100644 --- a/program/localization/ku/messages.inc +++ b/program/localization/ku/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/lb_LU/labels.inc b/program/localization/lb_LU/labels.inc index 1dff3a9e7..3901a35e9 100644 --- a/program/localization/lb_LU/labels.inc +++ b/program/localization/lb_LU/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Wëllkomm bei $product'; $labels['username'] = 'Benotzernumm'; $labels['password'] = 'Passwuert'; $labels['server'] = 'Server'; $labels['login'] = 'Aloggen'; - -// taskbar $labels['logout'] = 'Ausloggen'; $labels['mail'] = 'Mailen'; $labels['settings'] = 'Astellungen'; $labels['addressbook'] = 'Adressbuch'; - -// mailbox names $labels['inbox'] = 'Mailbox'; $labels['drafts'] = 'Brouillonen'; $labels['sent'] = 'Verschéckt'; $labels['trash'] = 'Poubelle'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Richteg Nimm vu de speziellen Dossieren uweisen'; - -// message listing $labels['subject'] = 'Sujet'; $labels['from'] = 'Vun'; $labels['sender'] = 'Geschéckt vun'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritéit'; $labels['organization'] = 'Organisatioun'; $labels['readstatus'] = 'Lies-Status'; $labels['listoptions'] = 'Optiounen oplëschten'; - $labels['mailboxlist'] = 'Dossieren'; $labels['messagesfromto'] = 'Messagen $from bis $to vun $count'; $labels['threadsfromto'] = 'Diskussiounen $from bis $to vun $count'; $labels['messagenrof'] = 'Message $nr vun $count'; $labels['fromtoshort'] = '$from bis $to vun $count'; - $labels['copy'] = 'Kopéieren'; $labels['move'] = 'Réckelen'; $labels['moveto'] = 'Réckelen an...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Eroflueden'; $labels['open'] = 'Opmaachen'; $labels['showattachment'] = 'Weisen'; $labels['showanyway'] = 'Trotzdeem weisen'; - $labels['filename'] = 'Numm vum Fichier'; $labels['filesize'] = 'Gréisst vum Fichier'; - $labels['addtoaddressbook'] = 'An d\'Adressbuch setzen'; - -// weekdays short $labels['sun'] = 'Son'; $labels['mon'] = 'Méi'; $labels['tue'] = 'Dën'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Don'; $labels['thu'] = 'Fre'; $labels['fri'] = 'Sam'; $labels['sat'] = 'Son'; - -// weekdays long $labels['sunday'] = 'Sonndeg'; $labels['monday'] = 'Méindeg'; $labels['tuesday'] = 'Dënschdeg'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Mëttwoch'; $labels['thursday'] = 'Donneschdeg'; $labels['friday'] = 'Freideg'; $labels['saturday'] = 'Samschdeg'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mäe'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dez'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'Mäerz'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Dezember'; - $labels['today'] = 'Haut'; - -// toolbar buttons $labels['refresh'] = 'Nei lueden'; $labels['checkmail'] = 'Nei Messagen ofruffen'; $labels['compose'] = 'Schreiwen'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mei Aktiounen...'; $labels['more'] = 'Méi'; $labels['back'] = 'Zréck'; $labels['options'] = 'Optiounen'; - $labels['select'] = 'Auswielen'; $labels['all'] = 'All'; $labels['none'] = 'Keng'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'All opfächeren'; $labels['expand-unread'] = 'Ongelies opfächeren'; $labels['collapse-all'] = 'All zesummefächeren'; $labels['threaded'] = 'Diskussiounen zesummefaassen'; - $labels['autoexpand_threads'] = 'Diskussiounen auserneefächeren'; $labels['do_expand'] = 'All d\'Diskussiounen'; $labels['expand_only_unread'] = 'just ongeliese Messagen'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Kolonnen oplëschten'; $labels['listsorting'] = 'Kolonne sortéieren'; $labels['listorder'] = 'Sortéier-Reiefolleg'; $labels['listmode'] = 'Oplëschtungs-Modus'; - $labels['folderactions'] = 'Dossiers-Aktiounen...'; $labels['compact'] = 'Kompaktéieren'; $labels['empty'] = 'Eidel'; $labels['importmessages'] = 'Messagen importéieren'; - $labels['quota'] = 'Plazverbrauch'; $labels['unknown'] = 'onbekannt'; $labels['unlimited'] = 'onlimitéiert'; - $labels['quicksearch'] = 'Séier Sich'; $labels['resetsearch'] = 'Sich zerécksetzen'; $labels['searchmod'] = 'Sich-Parameter'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Ganze Message'; $labels['body'] = 'Kierper'; $labels['type'] = 'Typ'; $labels['namex'] = 'Numm'; - $labels['openinextwin'] = 'An enger neier Fënster opmaachen'; $labels['emlsave'] = 'Eroflueden (.eml)'; $labels['changeformattext'] = 'Als Text ouni Formatéierungen uweisen'; $labels['changeformathtml'] = 'Als formatéierten Text uweisen'; - -// message compose $labels['editasnew'] = 'Als nei editéieren'; $labels['send'] = 'Schécken'; $labels['sendmessage'] = 'Message schécken'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Empfanksbestätegung'; $labels['dsn'] = 'Empfanks-Status-Meldung'; $labels['mailreplyintro'] = 'Den $date, $sender schreift:'; $labels['originalmessage'] = 'Original-Message'; - $labels['editidents'] = 'Identitéiten editéieren'; $labels['spellcheck'] = 'Orthographie'; $labels['checkspelling'] = 'Orthographie kontrolléieren'; $labels['resumeediting'] = 'Weider editéieren'; $labels['revertto'] = 'Zréck bei'; - $labels['attach'] = 'Drunhänken'; $labels['attachments'] = 'Unhäng'; $labels['upload'] = 'Eroplueden'; $labels['uploadprogress'] = '$percent ($current vun $total)'; $labels['close'] = 'Zoumaachen'; $labels['messageoptions'] = 'Message-Optiounen...'; - $labels['low'] = 'Niddreg'; $labels['lowest'] = 'Am niddregsten'; $labels['normal'] = 'Normal'; $labels['high'] = 'Héich'; $labels['highest'] = 'Am héchsten'; - $labels['nosubject'] = '(kee Sujet)'; $labels['showimages'] = 'Biller uweisen'; $labels['alwaysshow'] = 'Biller vun $sender ëmmer uweisen'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Dëst ass e Brouillon.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Méi Message-Headeren uweisen'; $labels['togglefullheaders'] = 'Réi Message-Headeren an-/ausblenden'; - $labels['htmltoggle'] = 'Text mat Formatéierungen'; $labels['plaintoggle'] = 'Text ouni Formatéierungen'; $labels['savesentmessagein'] = 'Dee verschéckte Message späicheren an'; $labels['dontsave'] = 'net späicheren'; $labels['maxuploadsize'] = 'Déi maximal erlaabte Fichiers-Gréisst ass $size'; - $labels['addcc'] = 'CC dobäisetzen'; $labels['addbcc'] = 'BCC dobäisetzen'; $labels['addreplyto'] = '"Äntwert un" dobäisetzen'; $labels['addfollowupto'] = '"Noverfollgung un" dobäisetzen'; - -// mdn $labels['mdnrequest'] = 'De Sender vun dësem Message huet gefrot fir informéiert ze gi wann de Message gelies gëtt. Wëlls du de Sender informéieren?'; $labels['receiptread'] = 'Empfanksbestätegung (gelies)'; $labels['yourmessage'] = 'Dëst ass eng Empfanksbestätegung fir Äre Message.'; $labels['receiptnote'] = 'Bemierkung: Dës Bestätegung bezeit just datt de Message beim Empfänger ugewise ginn ass. Et gëtt keng Garantie dass den Empfänger den Inhalt vum Message gelies oder verstanen huet.'; - -// address boook $labels['name'] = 'Ganzen Numm'; $labels['firstname'] = 'Virnumm'; $labels['surname'] = 'Nonumm'; @@ -305,7 +265,6 @@ $labels['search'] = 'Sichen'; $labels['advsearch'] = 'Avancéiert Sich'; $labels['advanced'] = 'Avancéiert'; $labels['other'] = 'Aneres'; - $labels['typehome'] = 'Doheem'; $labels['typework'] = 'Aarbecht'; $labels['typeother'] = 'Aneres'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Websäit'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Feld dobäisetzen...'; $labels['addcontact'] = 'Neie Kontakt dobäisetzen'; $labels['editcontact'] = 'Kontakt editéieren'; $labels['contacts'] = 'Kontakter'; $labels['contactproperties'] = 'Kontakt-Eegeschaften'; $labels['personalinfo'] = 'Perséinlech Informatioun'; - $labels['edit'] = 'Änneren'; $labels['cancel'] = 'Ofbriechen'; $labels['save'] = 'Späicheren'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Ëmbenennen'; $labels['addphoto'] = 'Dobäisetzen'; $labels['replacephoto'] = 'Ersetzen'; $labels['uploadphoto'] = 'Foto eroplueden'; - $labels['newcontact'] = 'Nei Kontakt-Kaart erstellen'; $labels['deletecontact'] = 'Déi ausgewielte Kontakter läschen'; $labels['composeto'] = 'Mail schreiwen un'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Nei Kontakt-Grupp erstellen'; $labels['grouprename'] = 'Grupp ëmbenennen'; $labels['groupdelete'] = 'Grupp läschen'; $labels['groupremoveselected'] = 'Ausgewielte Kontakter aus Grupp eraushuele'; - $labels['previouspage'] = 'Säit virdru weisen'; $labels['firstpage'] = 'Éischt Säit weisen'; $labels['nextpage'] = 'Nächst Säit weisen'; $labels['lastpage'] = 'Lescht Säit weisen'; - $labels['group'] = 'Grup'; $labels['groups'] = 'Gruppen'; $labels['listgroup'] = 'Gruppe-Memberen oplëschten'; $labels['personaladrbook'] = 'Perséinlech Adressen'; - $labels['searchsave'] = 'Sich späicheren'; $labels['searchdelete'] = 'Sich läschen'; - $labels['import'] = 'Importéieren'; $labels['importcontacts'] = 'Kontakter importéieren'; $labels['importfromfile'] = 'Aus Fichier importéieren:'; @@ -371,21 +323,16 @@ $labels['importtarget'] = 'Nei Kontakter an d\'Adressbuch setzen:'; $labels['importreplace'] = 'Dat ganzt Adressbuch ersetzen'; $labels['importdesc'] = 'Du kanns Kontakter aus engem existéierenden Adressbuch eroplueden.
Mir ënnerstëtze momentan en Adress-Import vum vCard- oder CSV (mat Komma getrennt)-Date-Format.'; $labels['done'] = 'Erleedegt'; - -// settings $labels['settingsfor'] = 'Astellunge fir'; $labels['about'] = 'Iwwert'; $labels['preferences'] = 'Astellungen'; $labels['userpreferences'] = 'Benotzer-Astellungen'; $labels['editpreferences'] = 'Benotzer-Astellungen änneren'; - $labels['identities'] = 'Identitéiten'; $labels['manageidentities'] = 'Identitéite fir dësen Account geréieren'; $labels['newidentity'] = 'Nei Identitéit'; - $labels['newitem'] = 'Neit Element'; $labels['edititem'] = 'Element änneren'; - $labels['preferhtml'] = 'HTML uweisen'; $labels['defaultcharset'] = 'Standard Zeechesaz'; $labels['htmlmessage'] = 'HTML-Message'; @@ -481,7 +428,6 @@ $labels['standardwindows'] = 'Popup-Fënstere wéi normal Fënstere behandelen'; $labels['forwardmode'] = 'Messagë-Weiderleedung'; $labels['inline'] = 'am Message'; $labels['asattachment'] = 'als Unhank'; - $labels['folder'] = 'Dossier'; $labels['folders'] = 'Dossieren'; $labels['foldername'] = 'Dossiersnumm'; @@ -502,26 +448,20 @@ $labels['foldertype'] = 'Dossiers-Typ'; $labels['personalfolder'] = 'Privaten Dossier'; $labels['otherfolder'] = 'Dossier vun anerem Benotzer'; $labels['sharedfolder'] = 'Ëffentlechen Dossier'; - $labels['sortby'] = 'Sortéieren no'; $labels['sortasc'] = 'Opsteigend sortéieren'; $labels['sortdesc'] = 'Ofsteigend sortéieren'; $labels['undo'] = 'Réckgängeg maachen'; - $labels['installedplugins'] = 'Installéiert Plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versioun'; $labels['source'] = 'Source'; $labels['license'] = 'Lizenz'; $labels['support'] = 'Support ufroen'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'kB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Englesch'; $labels['westerneuropean'] = 'West-Europäesch'; @@ -540,5 +480,4 @@ $labels['vietnamese'] = 'Vietnamesesch'; $labels['japanese'] = 'Japanesch'; $labels['korean'] = 'Koreanesch'; $labels['chinese'] = 'Chinesesch'; - ?> diff --git a/program/localization/lb_LU/messages.inc b/program/localization/lb_LU/messages.inc index 5599f227b..ec66e0fe2 100644 --- a/program/localization/lb_LU/messages.inc +++ b/program/localization/lb_LU/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Den Dossier konnt net am ausgewielten Dossier $messages['messagetoobig'] = 'Den Messagen-Deel ass ze grouss fir verschafft ze ginn.'; $messages['attachmentvalidationerror'] = 'WARNUNG! Dësen Unhank ass verdächteg well den tatsächlechen Typ vum Fichier net mam Typ deen am Message deklaréiert ass iwwertenee stëmmt. Falls du dem Ofsender net traus sollts du den Unhank net am Browser opmaache well e béisaartegen Inhalt enthaale kéint.

Erwaart: $expected; fonnt: $detected'; $messages['noscriptwarning'] = 'Warnung: Dëse Webmail brauch JavaScript! Fir de Service benotzen ze kënnen, aktivéier w.e.gl JavaScript an denge Browser-Astellungen.'; - ?> diff --git a/program/localization/lt_LT/labels.inc b/program/localization/lt_LT/labels.inc index 31cb44d27..3eddab538 100644 --- a/program/localization/lt_LT/labels.inc +++ b/program/localization/lt_LT/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Sveiki! Čia $product'; $labels['username'] = 'Naudotojo vardas'; $labels['password'] = 'Slaptažodis'; $labels['server'] = 'Serveris'; $labels['login'] = 'Prisijungti'; - -// taskbar $labels['logout'] = 'Atsijungti'; $labels['mail'] = 'El. paštas'; $labels['settings'] = 'Nuostatos'; $labels['addressbook'] = 'Adresų knyga'; - -// mailbox names $labels['inbox'] = 'Gauti laiškai'; $labels['drafts'] = 'Juodraščiai'; $labels['sent'] = 'Išsiųsti laiškai'; $labels['trash'] = 'Šiukšlinė'; $labels['junk'] = 'Brukalas'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Tema'; $labels['from'] = 'Siuntėjas'; $labels['sender'] = 'Siuntėjas'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritetas'; $labels['organization'] = 'Organizacija'; $labels['readstatus'] = 'Neskaitytas'; $labels['listoptions'] = 'Sąrašo nuostatos…'; - $labels['mailboxlist'] = 'Aplankai'; $labels['messagesfromto'] = 'Laiškai nuo $from iki $to iš $count'; $labels['threadsfromto'] = 'Gijos nuo $from iki $to iš $count'; $labels['messagenrof'] = 'Laiškas $nr iš $count'; $labels['fromtoshort'] = '$from – $to iš $count'; - $labels['copy'] = 'Kopijuoti'; $labels['move'] = 'Perkelti'; $labels['moveto'] = 'Perkelti į…'; @@ -68,13 +59,9 @@ $labels['download'] = 'Parsisiųsti'; $labels['open'] = 'Atverti'; $labels['showattachment'] = 'Rodyti'; $labels['showanyway'] = 'Vistiek rodyti'; - $labels['filename'] = 'Failo vardas'; $labels['filesize'] = 'Failo dydis'; - $labels['addtoaddressbook'] = 'Įtraukti į adresų knygą'; - -// weekdays short $labels['sun'] = 'Sek'; $labels['mon'] = 'Pir'; $labels['tue'] = 'Ant'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Tre'; $labels['thu'] = 'Ket'; $labels['fri'] = 'Pen'; $labels['sat'] = 'Šeš'; - -// weekdays long $labels['sunday'] = 'Sekmadienis'; $labels['monday'] = 'Pirmadienis'; $labels['tuesday'] = 'Antradienis'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Trečiadienis'; $labels['thursday'] = 'Ketvirtadienis'; $labels['friday'] = 'Penktadienis'; $labels['saturday'] = 'Šeštadienis'; - -// months short $labels['jan'] = 'Sau'; $labels['feb'] = 'Vas'; $labels['mar'] = 'Kov'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Rgs'; $labels['oct'] = 'Spl'; $labels['nov'] = 'Lap'; $labels['dec'] = 'Grd'; - -// months long $labels['longjan'] = 'Sausis'; $labels['longfeb'] = 'Vasaris'; $labels['longmar'] = 'Kovas'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Rugsėjis'; $labels['longoct'] = 'Spalis'; $labels['longnov'] = 'Lapkritis'; $labels['longdec'] = 'Gruodis'; - $labels['today'] = 'Šiandien'; - -// toolbar buttons $labels['refresh'] = 'Atnaujinti'; $labels['checkmail'] = 'Tikrinti, ar yra naujų laiškų'; $labels['compose'] = 'Rašyti naują laišką'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Kiti veiksmai…'; $labels['more'] = 'Daugiau'; $labels['back'] = 'Grįžti'; $labels['options'] = 'Nuostatos'; - $labels['select'] = 'Pažymėti'; $labels['all'] = 'visus'; $labels['none'] = 'Nerūšiuoti'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'išskleisti visas'; $labels['expand-unread'] = 'išskleisti turinčias neskaitytų laiškų'; $labels['collapse-all'] = 'suskleisti visas'; $labels['threaded'] = 'Rodyti gijas'; - $labels['autoexpand_threads'] = 'Išskleisti gijas'; $labels['do_expand'] = 'visas'; $labels['expand_only_unread'] = 'tik turinčias neskaitytų laiškų'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Stulpelių sąrašas'; $labels['listsorting'] = 'Stulpelis rikiavimui'; $labels['listorder'] = 'Rikiavimo tvarka'; $labels['listmode'] = 'Sąrašo rodymo veiksena'; - $labels['folderactions'] = 'Veiksmai su aplankais…'; $labels['compact'] = 'Suglaudinti'; $labels['empty'] = 'Ištuštinti'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disko naudojimas'; $labels['unknown'] = 'nežinomas'; $labels['unlimited'] = 'neribotas'; - $labels['quicksearch'] = 'Sparčioji paieška'; $labels['resetsearch'] = 'Atšaukti paiešką'; $labels['searchmod'] = 'Paieškos modifikatoriai'; $labels['msgtext'] = 'Visas laiškas'; $labels['body'] = 'Laiško tekstas'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Atverti naujame lange'; $labels['emlsave'] = 'Parsisiųsti (.eml)'; $labels['changeformattext'] = 'Rodyti grynojo teksto formatu'; $labels['changeformathtml'] = 'Rodyti HTML formatu'; - -// message compose $labels['editasnew'] = 'Redaguoti kaip naują'; $labels['send'] = 'Siųsti'; $labels['sendmessage'] = 'Išsiųsti laiską'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Prašyti pristatymo pažymos'; $labels['dsn'] = 'Laiško pristatymo pažyma'; $labels['mailreplyintro'] = '$date, $sender rašė:'; $labels['originalmessage'] = 'Originalus laiškas'; - $labels['editidents'] = 'Tvarkyti tapatybes'; $labels['spellcheck'] = 'Tikrinti rašybą'; $labels['checkspelling'] = 'Tikrinti rašybą'; $labels['resumeediting'] = 'Tęsti redagavimą'; $labels['revertto'] = 'Atstatyti į'; - $labels['attach'] = 'Pridėti failą'; $labels['attachments'] = 'Pridėti failai'; $labels['upload'] = 'Įkelti'; $labels['uploadprogress'] = '$percent ($current iš $total)'; $labels['close'] = 'Užverti'; $labels['messageoptions'] = 'Laiško savybės…'; - $labels['low'] = 'Žemas'; $labels['lowest'] = 'Žemiausias'; $labels['normal'] = 'Normalus'; $labels['high'] = 'Aukštas'; $labels['highest'] = 'Aukščiausias'; - $labels['nosubject'] = '(tema nenurodyta)'; $labels['showimages'] = 'Rodyti paveikslėlius'; $labels['alwaysshow'] = 'Visada rodyti paveikslėlius $sender laiškuose'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Tai – laiško juodraštis.'; $labels['andnmore'] = '$nr daugiau...'; $labels['togglemoreheaders'] = 'Rodyti daugiau antraščių'; $labels['togglefullheaders'] = 'Įjungti/išjungti neapdorotas laiškų antraštes'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Grynasis tekstas'; $labels['savesentmessagein'] = 'Išsiųstus laiškus įrašyti į'; $labels['dontsave'] = 'neįrašyti'; $labels['maxuploadsize'] = 'Maksimalus leistinas failo dydis yra $size'; - $labels['addcc'] = 'Pridėti Cc'; $labels['addbcc'] = 'Pridėti Bcc'; $labels['addreplyto'] = 'Pridėti Reply-To'; $labels['addfollowupto'] = 'Pridėti Followup-To'; - -// mdn $labels['mdnrequest'] = 'Šio laiško siuntėjas paprašė patvirtinti, kad jūs jį perskaitėte. Ar išsiųsti tai patvirtinančią pažymą?'; $labels['receiptread'] = 'Patvirtinimas (laiškas perskaitytas)'; $labels['yourmessage'] = 'Tai – pažyma, patvirtinanti, jog buvo perskaitytas Jūsų laiškas'; $labels['receiptnote'] = 'Pastaba: šia pažyma patvirtinamas tik faktas, jog laiškas buvo parodytas gavėjui. Ja negarantuojama, jog gavėjas perskaitė ir suprato laiško turinį.'; - -// address boook $labels['name'] = 'Rodomas vardas'; $labels['firstname'] = 'Vardas'; $labels['surname'] = 'Pavardė'; @@ -304,7 +264,6 @@ $labels['search'] = 'Paieška'; $labels['advsearch'] = 'Išplėstinė paieška'; $labels['advanced'] = 'Išsamiau'; $labels['other'] = 'Kitas'; - $labels['typehome'] = 'Namų'; $labels['typework'] = 'Darbo'; $labels['typeother'] = 'Kitas'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Padėjėjo(-os)'; $labels['typehomepage'] = 'Tinklalapis'; $labels['typeblog'] = 'Tinklaraštis'; $labels['typeprofile'] = 'Profilis'; - $labels['addfield'] = 'Pridėti lauką…'; $labels['addcontact'] = 'Pridėti adresatą'; $labels['editcontact'] = 'Taisyti adresatą'; $labels['contacts'] = 'Adresatai'; $labels['contactproperties'] = 'Adresato savybės'; $labels['personalinfo'] = 'Asmeniniai duomenys'; - $labels['edit'] = 'Redaguoti'; $labels['cancel'] = 'Atsisakyti'; $labels['save'] = 'Įrašyti'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Pervardinti'; $labels['addphoto'] = 'Pridėti'; $labels['replacephoto'] = 'Pakeisti'; $labels['uploadphoto'] = 'Įkelti nuotrauką'; - $labels['newcontact'] = 'Sukurti naują adresatą'; $labels['deletecontact'] = 'Ištrinti pažymėtus adresatus'; $labels['composeto'] = 'Rašyti laišką'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Kurti adresatų grupę'; $labels['grouprename'] = 'Pervardinti grupę'; $labels['groupdelete'] = 'Pašalinti grupę'; $labels['groupremoveselected'] = 'Pašalinti pažymėtus adresatus iš grupės'; - $labels['previouspage'] = 'Rodyti ankstesnį puslapį'; $labels['firstpage'] = 'Rodyti pirmąjį puslapį'; $labels['nextpage'] = 'Rodyti tolesnį puslapį'; $labels['lastpage'] = 'Rodyti paskutinį puslapį'; - $labels['group'] = 'Grupė'; $labels['groups'] = 'Grupės'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Asmeniniai adresai'; - $labels['searchsave'] = 'Įrašyti kaip radinių aplanką'; $labels['searchdelete'] = 'Pašalinti radinių aplanką'; - $labels['import'] = 'Importuoti'; $labels['importcontacts'] = 'Importuoti adresatus'; $labels['importfromfile'] = 'Importuoti iš failo:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Pridėti naujus adresatus į adresų knygą:'; $labels['importreplace'] = 'Perrašyti visą adresų knygą'; $labels['importdesc'] = 'Galite įkelti kontaktus iš jau turimos adresų knygos.
Šiuo metu galima importuoti kontaktus iš vCard arba CSV (comma-separated) duomenų formatų.'; $labels['done'] = 'Baigta'; - -// settings $labels['settingsfor'] = 'Nuostatos'; $labels['about'] = 'Apie'; $labels['preferences'] = 'Nuostatos'; $labels['userpreferences'] = 'Naudotojo nuostatos'; $labels['editpreferences'] = 'Keisti naudotojo nuostatas'; - $labels['identities'] = 'Tapatybės'; $labels['manageidentities'] = 'Tvarkyti šios paskyros tapatybes'; $labels['newidentity'] = 'Nauja tapatybė'; - $labels['newitem'] = 'Naujas elementas'; $labels['edititem'] = 'Redaguoti elementą'; - $labels['preferhtml'] = 'Rodyti HTML'; $labels['defaultcharset'] = 'Numatytoji koduotė'; $labels['htmlmessage'] = 'HTML laiškas'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Laiškų persiuntimo būdas'; $labels['inline'] = 'kaip citatą'; $labels['asattachment'] = 'kaip priedas'; - $labels['folder'] = 'Aplankas'; $labels['folders'] = 'Aplankai'; $labels['foldername'] = 'Aplanko vardas'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Aplanko tipas'; $labels['personalfolder'] = 'Asmeninis aplankas'; $labels['otherfolder'] = 'Kito naudotojo aplankas'; $labels['sharedfolder'] = 'Viešas aplankas'; - $labels['sortby'] = 'Rikiuoti pagal'; $labels['sortasc'] = 'Rikiuoti didėjančiai'; $labels['sortdesc'] = 'Rikiuoti mažėjančiai'; $labels['undo'] = 'Atšaukti'; - $labels['installedplugins'] = 'Įdiegti įskiepiai'; $labels['plugin'] = 'Papildinys'; $labels['version'] = 'Versija'; $labels['source'] = 'Šaltinis'; $labels['license'] = 'Licencija'; $labels['support'] = 'Gauti pagalbos'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unikodas'; $labels['english'] = 'Anglų'; $labels['westerneuropean'] = 'Vakarų Europos'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamiečių'; $labels['japanese'] = 'Japonų'; $labels['korean'] = 'Korėjiečių'; $labels['chinese'] = 'Kinų'; - ?> diff --git a/program/localization/lt_LT/messages.inc b/program/localization/lt_LT/messages.inc index 7eb31ec3f..3673b2f0e 100644 --- a/program/localization/lt_LT/messages.inc +++ b/program/localization/lt_LT/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nepavyko sukurti arba perkelti aplanko į pari $messages['messagetoobig'] = 'Laiško dalis yra per didelė, kad galėtų būti apdorota.'; $messages['attachmentvalidationerror'] = 'Dėmesio! Šis priedas yra įtartinas, nes jo tipas nesutampa su deklaruotu laiške. Jeigu nepasitikite šiuo siuntėju, šio priedo atverti naršyklėje nepatartina, nes jis gali būti kenksmingas.

Tikėtasi: $expected; aptikta: $detected'; $messages['noscriptwarning'] = 'Dėmesio: šiai saityno el. pašto sistemai veikti būtini „JavaScript“ scenarijai! Norėdami ja naudotis, įjunkite „JavaScript“ savo naršyklės nuostatose.'; - ?> diff --git a/program/localization/lv_LV/labels.inc b/program/localization/lv_LV/labels.inc index 0fe5b0faf..11e7d3ba7 100644 --- a/program/localization/lv_LV/labels.inc +++ b/program/localization/lv_LV/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Esiet laipni lūgti $product'; $labels['username'] = 'Lietotājvārds'; $labels['password'] = 'Parole'; $labels['server'] = 'Serveris'; $labels['login'] = 'Autorizēties'; - -// taskbar $labels['logout'] = 'Iziet'; $labels['mail'] = 'E-pasts'; $labels['settings'] = 'Iestatījumi'; $labels['addressbook'] = 'Adrešu grāmata'; - -// mailbox names $labels['inbox'] = 'Ienākošās'; $labels['drafts'] = 'Uzmetumi'; $labels['sent'] = 'Nosūtītās'; $labels['trash'] = 'Papīrgrozs'; $labels['junk'] = 'Mēstules'; $labels['show_real_foldernames'] = 'Sistēmas mapēm rādīt īstos nosaukumus'; - -// message listing $labels['subject'] = 'Temats'; $labels['from'] = 'No'; $labels['sender'] = 'Sūtītājs'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritāte'; $labels['organization'] = 'Uzņēmums'; $labels['readstatus'] = 'Izlasīšanas statuss'; $labels['listoptions'] = 'Vēstuļu saraksta attēlošanas iestatījumi...'; - $labels['mailboxlist'] = 'Mapes'; $labels['messagesfromto'] = 'Vēstules $from līdz $to no $count'; $labels['threadsfromto'] = 'Vijumi $from līdz $to no $count'; $labels['messagenrof'] = '$nr. vēstule no $count'; $labels['fromtoshort'] = '$from – $to no $count'; - $labels['copy'] = 'Kopēt'; $labels['move'] = 'Pārvietot'; $labels['moveto'] = 'Pārvietot uz...'; @@ -68,13 +59,9 @@ $labels['download'] = 'lejupielādēt'; $labels['open'] = 'Atvērt'; $labels['showattachment'] = 'Rādīt'; $labels['showanyway'] = 'Vienalga rādīt'; - $labels['filename'] = 'Faila nosaukums'; $labels['filesize'] = 'Faila izmērs'; - $labels['addtoaddressbook'] = 'Pievienot adrešu grāmatai'; - -// weekdays short $labels['sun'] = 'Sv'; $labels['mon'] = 'P'; $labels['tue'] = 'O'; @@ -82,8 +69,6 @@ $labels['wed'] = 'T'; $labels['thu'] = 'C'; $labels['fri'] = 'P'; $labels['sat'] = 'Se'; - -// weekdays long $labels['sunday'] = 'Svētdiena'; $labels['monday'] = 'Pirmdiena'; $labels['tuesday'] = 'Otrdiena'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Trešdiena'; $labels['thursday'] = 'Ceturtdiena'; $labels['friday'] = 'Piektdiena'; $labels['saturday'] = 'Sestdiena'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Janvāris'; $labels['longfeb'] = 'Februāris'; $labels['longmar'] = 'Marts'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembris'; $labels['longoct'] = 'Oktobris'; $labels['longnov'] = 'Novembris'; $labels['longdec'] = 'Decembris'; - $labels['today'] = 'Šodien'; - -// toolbar buttons $labels['refresh'] = 'Atjaunot'; $labels['checkmail'] = 'Pārbaudīt e-pastu'; $labels['compose'] = 'Rakstīt vēstuli'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Papildus darbības...'; $labels['more'] = 'Vairāk'; $labels['back'] = 'Atpakaļ'; $labels['options'] = 'Opcijas'; - $labels['select'] = 'Atzīmēt'; $labels['all'] = 'Visas'; $labels['none'] = 'Nevienu'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Izvērst visus'; $labels['expand-unread'] = 'Izvērst neizlasītās'; $labels['collapse-all'] = 'Sakļaut visas'; $labels['threaded'] = 'Rādīt vijumus'; - $labels['autoexpand_threads'] = 'Izvērst vēstuļu vijumus'; $labels['do_expand'] = 'visus vijumus'; $labels['expand_only_unread'] = 'tikai ar neizlasītām vēstulēm'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Saraksta kolonnas'; $labels['listsorting'] = 'Kārtošanas kolonnas'; $labels['listorder'] = 'Kārtošanas secība'; $labels['listmode'] = 'Attēlošanas veids'; - $labels['folderactions'] = 'Darbības ar mapēm...'; $labels['compact'] = 'Saspiest'; $labels['empty'] = 'Iztukšot'; $labels['importmessages'] = 'Importēt vēstules'; - $labels['quota'] = 'Kvota'; $labels['unknown'] = 'nezināms'; $labels['unlimited'] = 'neierobežots'; - $labels['quicksearch'] = 'Ārtā meklēšana'; $labels['resetsearch'] = 'Atstatīt meklēšanu'; $labels['searchmod'] = 'Meklēšanas modifikatori:'; $labels['msgtext'] = 'Visā vēstulē'; $labels['body'] = 'Pamatteksts'; $labels['type'] = 'Tips'; - $labels['openinextwin'] = 'Atvērt jaunā logā'; $labels['emlsave'] = 'lejupielādēt (.eml)'; $labels['changeformattext'] = 'Rādīt kā neformatētu tekstu'; $labels['changeformathtml'] = 'Rādīt kā HTML formatētu'; - -// message compose $labels['editasnew'] = 'Rediģēt kā jaunu'; $labels['send'] = 'Sūtīt'; $labels['sendmessage'] = 'Sūtīt vēstuli'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Saņemšanas apstiprinājums'; $labels['dsn'] = 'Piegādes atskaite'; $labels['mailreplyintro'] = '$sender @ $date rakstīja:'; $labels['originalmessage'] = 'Sākotnējā vēstule'; - $labels['editidents'] = 'Rediģēt identitātes'; $labels['spellcheck'] = 'Izrunāt'; $labels['checkspelling'] = 'Pārbaudīt pareizrakstību'; $labels['resumeediting'] = 'Turpināt rediģēšanu'; $labels['revertto'] = 'Atgriezt uz'; - $labels['attach'] = 'Pievienot'; $labels['attachments'] = 'Pielikumi'; $labels['upload'] = 'Augšupielādēt'; $labels['uploadprogress'] = '$percent ($current no $total)'; $labels['close'] = 'Aizvērt'; $labels['messageoptions'] = 'Vēstuļu iestatījumi...'; - $labels['low'] = 'Zema'; $labels['lowest'] = 'Zemākā'; $labels['normal'] = 'Normāla'; $labels['high'] = 'Augsta'; $labels['highest'] = 'Augstākā'; - $labels['nosubject'] = '(bez tēmas)'; $labels['showimages'] = 'Rādīt attēlus'; $labels['alwaysshow'] = 'Vienmēr rādīt attēlus vēstulēs, kuras sūtījis $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Šis ir melnraksts.'; $labels['andnmore'] = '$nr vairāk...'; $labels['togglemoreheaders'] = 'Rādīt galvenes papildus informāciju'; $labels['togglefullheaders'] = 'Slēpt galvenes papildus informāciju'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Vienkāršs teksts'; $labels['savesentmessagein'] = 'Saglabāt nosūtīto vēstuli mapē'; $labels['dontsave'] = 'nesaglabāt'; $labels['maxuploadsize'] = 'Maksimālais atļautais faila izmērs ir $size'; - $labels['addcc'] = 'Pievienot Cc'; $labels['addbcc'] = 'Pievienot Bcc'; $labels['addreplyto'] = 'Pievienot Atbildēt-Uz'; $labels['addfollowupto'] = 'Pievienot Followup-To'; - -// mdn $labels['mdnrequest'] = 'Šīs vēstules sūtītājs vēlas redzēt vēstules saņemšanas apstiprinājumu. Vai Jūs vēlaties nosūtīt šo apstiprinājumu?'; $labels['receiptread'] = 'Saņemšanas apstiprinājums'; $labels['yourmessage'] = 'Šis ir Jūsu nosūtītās vēstules saņemšanas apstiprinājums'; $labels['receiptnote'] = 'Piezīme: Šis apsiprinājums nozīmē tikai to, ka vēstule tika parādīta uz saņēmāja datora. Tas nenozīmē, ka saņēmējs ir izlasījis vai sapratis vēstules saturu.'; - -// address boook $labels['name'] = 'Uzrādītais vārds'; $labels['firstname'] = 'Vārds'; $labels['surname'] = 'Uzvārds'; @@ -304,7 +264,6 @@ $labels['search'] = 'Meklēt'; $labels['advsearch'] = 'Paplašinātā meklēšana'; $labels['advanced'] = 'Paplašinātie iestatījumi'; $labels['other'] = 'Cits'; - $labels['typehome'] = 'Mājas'; $labels['typework'] = 'Darbs'; $labels['typeother'] = 'Cits'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistents'; $labels['typehomepage'] = 'Mājaslapa'; $labels['typeblog'] = 'Blogs'; $labels['typeprofile'] = 'Profils'; - $labels['addfield'] = 'Pievienot lauku...'; $labels['addcontact'] = 'Pievienot jaunu kontaktu'; $labels['editcontact'] = 'Rediģēt kontaktu'; $labels['contacts'] = 'Kontakti'; $labels['contactproperties'] = 'Kontakta īpašības'; $labels['personalinfo'] = 'Personīgā informācija'; - $labels['edit'] = 'Rediģēt'; $labels['cancel'] = 'Atcelt'; $labels['save'] = 'Saglabāt'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Pārdēvēt'; $labels['addphoto'] = 'Pievienot'; $labels['replacephoto'] = 'Aizvietot'; $labels['uploadphoto'] = 'Augšupielādēt fotogrāfiju'; - $labels['newcontact'] = 'Izveidot jaunu kontaktu'; $labels['deletecontact'] = 'Dzēst atzīmētos kontaktus'; $labels['composeto'] = 'Rakstīt vēstuli'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Izveidot jaunu kontaktu grupu'; $labels['grouprename'] = 'Pārdēvēt grupu'; $labels['groupdelete'] = 'Izdzēst grupu'; $labels['groupremoveselected'] = 'Dzēst atzīmētos kontaktus no grupas'; - $labels['previouspage'] = 'Parādīt iepriekšējo lapu'; $labels['firstpage'] = 'Parādīt pirmo lapu'; $labels['nextpage'] = 'Parādīt nākamo lapu'; $labels['lastpage'] = 'Parādīt pēdējo lapu'; - $labels['group'] = 'Grupa'; $labels['groups'] = 'Grupas'; $labels['listgroup'] = 'Rādīt grupas kontaktus'; $labels['personaladrbook'] = 'Personīgās adreses'; - $labels['searchsave'] = 'Saglabāt meklēšanas pieprasījumu'; $labels['searchdelete'] = 'Dzēst saglabāto meklēšanas pieprasījumu'; - $labels['import'] = 'Importēt'; $labels['importcontacts'] = 'Importēt kontaktus'; $labels['importfromfile'] = 'Importēt no faila:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Pievienot jaunus kontaktus adrešu grāmatai:'; $labels['importreplace'] = 'Aizvietot visu adrešu grāmatu'; $labels['importdesc'] = 'Jūs varat ieimportēt kontaktus no jau esošas adrešu grāmatas.
Uz doto brīdi tiek atbalstīti vCard vai CSV (ar komatu atdalītie) datu formāti.'; $labels['done'] = 'Pabeigts'; - -// settings $labels['settingsfor'] = 'Iestatījumi'; $labels['about'] = 'Par'; $labels['preferences'] = 'Iestatījumi'; $labels['userpreferences'] = 'Lietotāja iestatījumi'; $labels['editpreferences'] = 'Rediģēt iestatījumus'; - $labels['identities'] = 'Identitātes'; $labels['manageidentities'] = 'Rediģēt identitātes'; $labels['newidentity'] = 'Jauna identitāte'; - $labels['newitem'] = 'Jauns'; $labels['edititem'] = 'Rediģēt'; - $labels['preferhtml'] = 'Rādīt HTML formatētās vēstules'; $labels['defaultcharset'] = 'Noklusētā rakstzīmju kopa'; $labels['htmlmessage'] = 'HTML formatēta vēstule'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Izlēcošie logi kā parasti logi'; $labels['forwardmode'] = 'Vēstuļu pārsūtīšana'; $labels['inline'] = 'iekļaujot'; $labels['asattachment'] = 'kā pielikumu'; - $labels['folder'] = 'Mapi'; $labels['folders'] = 'Mapes'; $labels['foldername'] = 'Mapes nosaukums'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Mapes tips'; $labels['personalfolder'] = 'Privāta mape'; $labels['otherfolder'] = 'Cita lietotāja mape'; $labels['sharedfolder'] = 'Publiska mape'; - $labels['sortby'] = 'Kārtot pēc'; $labels['sortasc'] = 'Kārtot augošā secībā'; $labels['sortdesc'] = 'Kārtot dilstošā secībā'; $labels['undo'] = 'Atsaukt'; - $labels['installedplugins'] = 'Uzstādītie spraudņi'; $labels['plugin'] = 'Spraudnis'; $labels['version'] = 'Versija'; $labels['source'] = 'Oriģināls'; $labels['license'] = 'Licence'; $labels['support'] = 'Atbalsts'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'kB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unikods'; $labels['english'] = 'Angļu'; $labels['westerneuropean'] = 'Rietumeiropas'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vjetnamiešu'; $labels['japanese'] = 'Japāņu'; $labels['korean'] = 'Korejiešu'; $labels['chinese'] = 'Ķīniešu'; - ?> diff --git a/program/localization/lv_LV/messages.inc b/program/localization/lv_LV/messages.inc index 37ceb0463..674c68137 100644 --- a/program/localization/lv_LV/messages.inc +++ b/program/localization/lv_LV/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Neizdevās izveidot/pārvietot mapi atzīmēta $messages['messagetoobig'] = 'Vēstule daļa ir pārāk liela, lai to varētu apstrādāt.'; $messages['attachmentvalidationerror'] = 'BRĪDINĀJUMS! Šis pielikums ir aizdomīgs, jo tā tips neatbilst tipam, kurš ir uzrādīts e-pasta ziņojumā. Ja jūs neuzticaties sūtītājam, šo failu Jums vaļā vērt nevajadzētu, jo tas var saturēt ļaunprātīgu saturu.

Būtu jābūt: $expected; Bet ir: $detected'; $messages['noscriptwarning'] = 'Uzmanību: lai lasītu e-pastus, Jūsu pārlūkprogrammā jābūt ieslēgtiem JavaScript.'; - ?> diff --git a/program/localization/mk_MK/labels.inc b/program/localization/mk_MK/labels.inc old mode 100755 new mode 100644 index 519df5823..63c503ac1 --- a/program/localization/mk_MK/labels.inc +++ b/program/localization/mk_MK/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Добредојдовте во $product'; $labels['username'] = 'Корисничко име'; $labels['password'] = 'Лозинка'; $labels['server'] = 'Сервер'; $labels['login'] = 'Најава'; - -// taskbar $labels['logout'] = 'Одјава'; $labels['mail'] = 'Е-пошта'; $labels['settings'] = 'Нагодувања'; $labels['addressbook'] = 'Именик'; - -// mailbox names $labels['inbox'] = 'Примени'; $labels['drafts'] = 'Непратени'; $labels['sent'] = 'Пратени'; $labels['trash'] = 'Корпа'; $labels['junk'] = 'Ѓубре'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Наслов'; $labels['from'] = 'Праќач'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Приоритет'; $labels['organization'] = 'Организација'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Папки'; $labels['messagesfromto'] = 'Писма од $from до $to од $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Писмо $nr од $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Копирај'; $labels['move'] = 'Move'; $labels['moveto'] = 'Премести во...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Преземи'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Име на податотеката'; $labels['filesize'] = 'Големина на податотеката'; - $labels['addtoaddressbook'] = 'Додај во именик'; - -// weekdays short $labels['sun'] = 'Нед'; $labels['mon'] = 'Пон'; $labels['tue'] = 'Вто'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Сре'; $labels['thu'] = 'Чет'; $labels['fri'] = 'Пет'; $labels['sat'] = 'Саб'; - -// weekdays long $labels['sunday'] = 'Недела'; $labels['monday'] = 'Понеделник'; $labels['tuesday'] = 'Вторник'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Среда'; $labels['thursday'] = 'Четврток'; $labels['friday'] = 'Петок'; $labels['saturday'] = 'Сабота'; - -// months short $labels['jan'] = 'Јан'; $labels['feb'] = 'Фев'; $labels['mar'] = 'Мар'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Сеп'; $labels['oct'] = 'Окт'; $labels['nov'] = 'Ное'; $labels['dec'] = 'Дек'; - -// months long $labels['longjan'] = 'Јануари'; $labels['longfeb'] = 'Февруари'; $labels['longmar'] = 'Март'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Септември'; $labels['longoct'] = 'Октомври'; $labels['longnov'] = 'Ноември'; $labels['longdec'] = 'Декември'; - $labels['today'] = 'Денес'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Провери пошта'; $labels['compose'] = 'Пиши ново писмо'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Одбери'; $labels['all'] = 'Сите'; $labels['none'] = 'Ниедно'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Компактно'; $labels['empty'] = 'Испразни'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Искористен простор'; $labels['unknown'] = 'непознато'; $labels['unlimited'] = 'неограничено'; - $labels['quicksearch'] = 'Брзо пребарување'; $labels['resetsearch'] = 'Ново пребарување'; $labels['searchmod'] = 'Модификатори на пребарувањето'; $labels['msgtext'] = 'Цело писмо'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Отвори во нов прозорец'; $labels['emlsave'] = 'Преземи (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Уреди како ново'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Испрати сега'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Врати'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Провери правопис'; $labels['resumeediting'] = 'Продолжи со уредување'; $labels['revertto'] = 'Врати на'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Приложено'; $labels['upload'] = 'Подигни'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Затвори'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'Низок'; $labels['lowest'] = 'Најнизок'; $labels['normal'] = 'Нормален'; $labels['high'] = 'Висок'; $labels['highest'] = 'Највисок'; - $labels['nosubject'] = '(без наслов)'; $labels['showimages'] = 'Прикажи слики'; $labels['alwaysshow'] = 'Секогаш прикажувај ги сликите од $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Обичен текст'; $labels['savesentmessagein'] = 'Сними го пратеното писмо во'; $labels['dontsave'] = 'не зачувувај'; $labels['maxuploadsize'] = 'Максималната дозволена големина за податотеката е $size'; - $labels['addcc'] = 'Додај Cc'; $labels['addbcc'] = 'Додај Bcc'; $labels['addreplyto'] = 'Додај Одговори-на'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'Праќачот на оваа порака сака да биде известен кога ќе го прочитате писмото. Дали сакате да го известите?'; $labels['receiptread'] = 'Извести (прочитано)'; $labels['yourmessage'] = 'Ова е известување за вашата порака'; $labels['receiptnote'] = 'Напомена: Ова известување само потврдува дека писмото кое сте го пратиле е отворено. Не е гаранција дека примачот го прочитал или разбрал истото.'; - -// address boook $labels['name'] = 'Име за приказ'; $labels['firstname'] = 'Име'; $labels['surname'] = 'Презиме'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Додај нов контакт'; $labels['editcontact'] = 'Уреди контакт'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Уреди'; $labels['cancel'] = 'Откажи'; $labels['save'] = 'Зачувај'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Додај ново име'; $labels['deletecontact'] = 'Избриши ги следните имиња'; $labels['composeto'] = 'Напиши порака за'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Прикажи претходна страна'; $labels['firstpage'] = 'Прикажи ја првата страна'; $labels['nextpage'] = 'Прикажи ја следната страна'; $labels['lastpage'] = 'Прикажи ја последната страна'; - $labels['group'] = 'Group'; $labels['groups'] = 'Групи'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Лични адреси'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Увези'; $labels['importcontacts'] = 'Увези контакти'; $labels['importfromfile'] = 'Увези од податотека:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Замени го целиот именик'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Завршено'; - -// settings $labels['settingsfor'] = 'Нагодувања за'; $labels['about'] = 'About'; $labels['preferences'] = 'Нагодувања'; $labels['userpreferences'] = 'Кориснички нагодувања'; $labels['editpreferences'] = 'Промени кориснички нагодувања'; - $labels['identities'] = 'Идентитети'; $labels['manageidentities'] = 'Организирај ги идентитетите за овој корисник'; $labels['newidentity'] = 'Нов идентитет'; - $labels['newitem'] = 'Нов објект'; $labels['edititem'] = 'Промени објект'; - $labels['preferhtml'] = 'Прикажи во HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML писмо'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Папка'; $labels['folders'] = 'Папки'; $labels['foldername'] = 'Име на папката'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Сортирај по'; $labels['sortasc'] = 'Сортирај нагорно'; $labels['sortdesc'] = 'Сортирај надолно'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'Б'; $labels['KB'] = 'КБ'; $labels['MB'] = 'МБ'; $labels['GB'] = 'ГБ'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/mk_MK/messages.inc b/program/localization/mk_MK/messages.inc old mode 100755 new mode 100644 index 7a7548ce0..3abf1ba75 --- a/program/localization/mk_MK/messages.inc +++ b/program/localization/mk_MK/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ml_IN/labels.inc b/program/localization/ml_IN/labels.inc index 7d3fdc501..29edfa623 100644 --- a/program/localization/ml_IN/labels.inc +++ b/program/localization/ml_IN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product ലേയ്ക്ക് സ്വാഗതം'; $labels['username'] = 'ഉപയോക്തൃനാമം'; $labels['password'] = 'രഹസ്യവാക്ക്'; $labels['server'] = 'സേവകന്‍'; $labels['login'] = 'പ്രവേശിക്കുക'; - -// taskbar $labels['logout'] = 'പുറത്ത് കടക്കുക'; $labels['mail'] = 'തപാല്‍'; $labels['settings'] = 'ക്രമീകരണങ്ങള്‍'; $labels['addressbook'] = 'വിലാസ പുസ്തകം'; - -// mailbox names $labels['inbox'] = 'ഇന്‍ബോക്സ്'; $labels['drafts'] = 'പൂര്‍ത്തിയാകാത്തവ'; $labels['sent'] = 'അയച്ചവ'; $labels['trash'] = 'ചവറ്റുകുട്ട'; $labels['junk'] = 'ആവശ്യമില്ലാത്തവ'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'വിഷയം'; $labels['from'] = 'പ്രേഷിതന്‍'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'മുന്‍ഗണന'; $labels['organization'] = 'Organization'; $labels['readstatus'] = 'അവസ്ഥ വായിക്കുക'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'ഫോള്‍ഡറുകള്‍'; $labels['messagesfromto'] = 'Messages $from to $to of $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'പകര്‍ത്തുക'; $labels['move'] = 'നീക്കുക'; $labels['moveto'] = 'Move to...'; @@ -68,13 +59,9 @@ $labels['download'] = 'ഡൗണ്‍ലോഡ്'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ഫയല്‍ നാമം'; $labels['filesize'] = 'ഫയലിന്റെ വലിപ്പം'; - $labels['addtoaddressbook'] = 'മേല്‍വിലാസങ്ങളില്‍ ചേര്‍ക്കുക.'; - -// weekdays short $labels['sun'] = 'ഞാ'; $labels['mon'] = 'തി'; $labels['tue'] = 'ചൊ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'ബു'; $labels['thu'] = 'വ്യാ'; $labels['fri'] = 'വെ'; $labels['sat'] = 'ശ'; - -// weekdays long $labels['sunday'] = 'ഞായര്‍'; $labels['monday'] = 'തിങ്കള്‍'; $labels['tuesday'] = 'ചൊവ്വ'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'ബുധന്‍'; $labels['thursday'] = 'വ്യാഴം'; $labels['friday'] = 'വെള്ളി'; $labels['saturday'] = 'ശനി'; - -// months short $labels['jan'] = 'ജനു'; $labels['feb'] = 'ഫെബ്'; $labels['mar'] = 'മാര്‍'; @@ -105,8 +88,6 @@ $labels['sep'] = 'സെപ്റ്റംബര്‍'; $labels['oct'] = 'ഒക്ടോബര്‍'; $labels['nov'] = 'നവംബര്‍'; $labels['dec'] = 'ഡിസംബര്‍'; - -// months long $labels['longjan'] = 'ജനുവരി'; $labels['longfeb'] = 'ഫെബ്രുവരി'; $labels['longmar'] = 'മാര്‍ച്ച്'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'സെപ്തംബ‌ര്‍'; $labels['longoct'] = 'ഒക്ടോബര്‍'; $labels['longnov'] = 'നവംബ‌ര്‍'; $labels['longdec'] = 'ഡിസംബ‌ര്‍'; - $labels['today'] = 'ഇന്ന്'; - -// toolbar buttons $labels['refresh'] = 'പുതുക്കുക'; $labels['checkmail'] = 'പുതിയ സന്ദേശത്തിനായി തിരയുക'; $labels['compose'] = 'രചന'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'കൂടുതല്‍ ചെയ്തികള $labels['more'] = 'കൂടുതല്‍'; $labels['back'] = 'പിന്നോട്ട്'; $labels['options'] = 'ഐച്ഛികങ്ങള്‍‌'; - $labels['select'] = 'തെരഞ്ഞെടുക്കുക'; $labels['all'] = 'എല്ലാം'; $labels['none'] = 'ഒന്നുമില്ല'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'എല്ലാം വികസിപ്പിക്ക $labels['expand-unread'] = 'വായിക്കാത്തവ വികസിപ്പിക്കുക'; $labels['collapse-all'] = 'എല്ലാം അടയ്ക്കുക'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'തരംതിരിക്കണ്ട രീതി'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'ചുരുക്കു'; $labels['empty'] = 'ശൂന്യം'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'ഡിസ്ക്ക് ഉപയോഗം'; $labels['unknown'] = 'അറിയാത്ത'; $labels['unlimited'] = 'പരിമിതികളില്ലാത്ത'; - $labels['quicksearch'] = 'പെട്ടെന്ന് തെരയു'; $labels['resetsearch'] = 'Reset search'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'മുഴുവന്‍ സന്ദേശവും'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'പുതിയ വിന്‍ഡോയില്‍ തുറക്കുക'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'പുതിയതായി തിരുത്തുക'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'സന്ദേശം അയയ്ക്കുക'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Return receipt'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'യഥാര്‍ഥ സന്ദേശം'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'അക്ഷരത്തെറ്റു് പരിശോധിക്കുക'; $labels['resumeediting'] = 'തിരുത്തല്‍ തുടരുക'; $labels['revertto'] = 'Revert to'; - $labels['attach'] = 'സംയോജിപ്പിക്കു'; $labels['attachments'] = 'അറ്റാച്ച്മെന്റുകള്‍'; $labels['upload'] = 'അപ്‌ലോഡ് ചെയ്യുക'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'അടയ്ക്കുക'; $labels['messageoptions'] = 'സന്ദേശ ​ഐച്ഛികങ്ങള്‍...'; - $labels['low'] = 'കുറഞ്ഞ'; $labels['lowest'] = 'ഏറ്റവും കുറഞ്ഞ'; $labels['normal'] = 'സാധാരണ'; $labels['high'] = 'കൂടിയ'; $labels['highest'] = 'ഏറ്റവും കൂടിയത്'; - $labels['nosubject'] = '(വിഷയം ഇല്ല)'; $labels['showimages'] = 'ചിത്രങ്ങള്‍ കാണിക്കുക'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'ഇതൊരു കരടുരൂപമാണ്.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'സുക്ഷിക്കരുത്'; $labels['maxuploadsize'] = '$size ആണ് പരമാവധി ഫയല്‍ വലിപ്പം'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'Display Name'; $labels['firstname'] = 'ആദ്യ നാമം'; $labels['surname'] = 'അവസാന നാമം'; @@ -304,7 +264,6 @@ $labels['search'] = 'തെരയുക'; $labels['advsearch'] = 'വിപുലമായ തിരച്ചില്‍'; $labels['advanced'] = 'സങ്കീര്‍ണ്ണം'; $labels['other'] = 'മറ്റുള്ളത്'; - $labels['typehome'] = 'ആസ്ഥാനം'; $labels['typework'] = 'ജോലി'; $labels['typeother'] = 'മറ്റുള്ളത്'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'സഹായി'; $labels['typehomepage'] = 'ഹോം പേജ്'; $labels['typeblog'] = 'ബ്ലോഗ്'; $labels['typeprofile'] = 'പ്രൊഫൈല്‍'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Add new contact'; $labels['editcontact'] = 'Edit contact'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'സ്വകാര്യ വിവരങ്ങള്‍'; - $labels['edit'] = 'തിരുത്തുക'; $labels['cancel'] = 'റദ്ദാക്കുക'; $labels['save'] = 'സൂക്ഷിക്കുക'; @@ -335,7 +292,6 @@ $labels['rename'] = 'പേരുമാറ്റുക'; $labels['addphoto'] = 'ചേര്‍ക്കുക'; $labels['replacephoto'] = 'പകരം വയ്ക്കുക'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Create new contact card'; $labels['deletecontact'] = 'Delete selected contacts'; $labels['composeto'] = 'Compose mail to'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'കുട്ടത്തിന്റെ പേര് മാറ്റുക'; $labels['groupdelete'] = 'കൂട്ടം മായ്ക്കുക'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'മുമ്പുളള താള്‍ കാണിയ്ക്കുക'; $labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'Show next page'; $labels['lastpage'] = 'Show last page'; - $labels['group'] = 'കൂട്ടം'; $labels['groups'] = 'കൂട്ടങ്ങള്‍'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'സ്വകാര്യ വിലാസങ്ങള്‍'; - $labels['searchsave'] = 'തിരയല്‍ സൂക്ഷിക്കുക'; $labels['searchdelete'] = 'തിരയല്‍ നീക്കംചെയ്യുക'; - $labels['import'] = 'പ്രോഗ്രമ്മിലേക്ക് എടുക്കുക'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'പൂര്‍ത്തീകരിച്ചു'; - -// settings $labels['settingsfor'] = 'Settings for'; $labels['about'] = 'വിവരം'; $labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'ഉപയൊക്ത മുന്‍ഗണനകള്‍'; $labels['editpreferences'] = 'Edit user preferences'; - $labels['identities'] = 'Identities'; $labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'New identity'; - $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; - $labels['preferhtml'] = 'HTML കാണിക്കുക'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Message'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'ഫോള്‍ഡറുകള്‍'; $labels['foldername'] = 'Folder name'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'സ്വകാര്യ അറ'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'പൊതു - അറ'; - $labels['sortby'] = 'Sort by'; $labels['sortasc'] = 'Sort ascending'; $labels['sortdesc'] = 'Sort descending'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'സഹായം തേടുക'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'യൂണിക്കോഡ്'; $labels['english'] = 'ഇംഗ്ലീഷ്'; $labels['westerneuropean'] = 'പടിഞ്ഞാറന്‍ യൂറോപ്യന്‍'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'വിയറ്റ്നാമീസ്'; $labels['japanese'] = 'ജാപ്പനീസ്'; $labels['korean'] = 'കൊറിയന്‍'; $labels['chinese'] = 'ചൈനീസ്‌'; - ?> diff --git a/program/localization/ml_IN/messages.inc b/program/localization/ml_IN/messages.inc index cc189a17d..1e9cf87fb 100644 --- a/program/localization/ml_IN/messages.inc +++ b/program/localization/ml_IN/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/mr_IN/labels.inc b/program/localization/mr_IN/labels.inc old mode 100755 new mode 100644 index d26583d4d..ccbae5a89 --- a/program/localization/mr_IN/labels.inc +++ b/program/localization/mr_IN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product वरती स्वागत आहे'; $labels['username'] = 'वापरकर्त्याचे नाव(तुमचे इमेल)'; $labels['password'] = 'परवलीचा शब्द'; $labels['server'] = 'सर्व्हर'; $labels['login'] = 'प्रवेश'; - -// taskbar $labels['logout'] = 'बाहेर जा'; $labels['mail'] = 'इ-मेल'; $labels['settings'] = 'तुमची पसंती'; $labels['addressbook'] = 'पत्ता नोंदवही'; - -// mailbox names $labels['inbox'] = 'आलेले संदेश'; $labels['drafts'] = 'मसुदा'; $labels['sent'] = 'पाठवलेले'; $labels['trash'] = 'कचरा पेटी'; $labels['junk'] = 'नको असलेले कचरा संदेश'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'विषय'; $labels['from'] = 'प्रेषक'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'प्राधान्य'; $labels['organization'] = 'संस्था'; $labels['readstatus'] = 'वाचन स्थिती'; $labels['listoptions'] = 'विकल्प सूची'; - $labels['mailboxlist'] = 'फोल्डर्स'; $labels['messagesfromto'] = 'संदेश $from कडून $to साठी $count वा'; $labels['threadsfromto'] = 'धागे $from कडून $to साठी $count वा'; $labels['messagenrof'] = 'Message $nr of $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'नक्‍कल'; $labels['move'] = 'हलवा'; $labels['moveto'] = 'या फोल्डरमधे ठेवा'; @@ -68,13 +59,9 @@ $labels['download'] = 'उतरवून घ्या'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'फाईलचे नाव'; $labels['filesize'] = 'फाईलचा आकार'; - $labels['addtoaddressbook'] = 'पत्ता नोंदवहीत नोंदवा'; - -// weekdays short $labels['sun'] = 'रवी'; $labels['mon'] = 'सोम'; $labels['tue'] = 'मंगळ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'बुध'; $labels['thu'] = 'गुरु'; $labels['fri'] = 'शुक्र'; $labels['sat'] = 'शनी'; - -// weekdays long $labels['sunday'] = 'रविवार'; $labels['monday'] = 'सोमवार'; $labels['tuesday'] = 'मंगळवार'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'बुधवार'; $labels['thursday'] = 'गुरुवार'; $labels['friday'] = 'शुक्रवार'; $labels['saturday'] = 'शनीवार'; - -// months short $labels['jan'] = 'जाने'; $labels['feb'] = 'फेब्'; $labels['mar'] = 'मार्च'; @@ -105,8 +88,6 @@ $labels['sep'] = 'सप्टें'; $labels['oct'] = 'ऑक्टो'; $labels['nov'] = 'नोव्हें'; $labels['dec'] = 'डिसें'; - -// months long $labels['longjan'] = 'जानेवारी'; $labels['longfeb'] = 'फेब्रूवारी'; $labels['longmar'] = 'मार्च'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'सप्टेंबर'; $labels['longoct'] = 'ऑक्टोबर'; $labels['longnov'] = 'नोव्हेंबर'; $labels['longdec'] = 'डिसेंबर'; - $labels['today'] = 'आज'; - -// toolbar buttons $labels['refresh'] = 'अद्ययावत करा'; $labels['checkmail'] = 'नवीन संदेश आले आहेत का पहा'; $labels['compose'] = 'नवीन संदेश तयार करा'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'अधिक कृती..'; $labels['more'] = 'अधिक'; $labels['back'] = 'मागे'; $labels['options'] = 'पर्याय'; - $labels['select'] = 'निवडा'; $labels['all'] = 'सर्व'; $labels['none'] = 'कोणताही नाही'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'सर्व विस्‍तारीत करा'; $labels['expand-unread'] = 'न वाचलेला विस्‍तारा'; $labels['collapse-all'] = 'सर्व मिटवा'; $labels['threaded'] = 'धागा लावलेला'; - $labels['autoexpand_threads'] = 'संदेश धागे विस्‍तारा'; $labels['do_expand'] = 'सर्व धागे'; $labels['expand_only_unread'] = 'फक्‍त न वाचलेल्‍या संदेशांबददल'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'सुची स्‍तंभ'; $labels['listsorting'] = 'स्‍तंभ वर्गीकरण'; $labels['listorder'] = 'वर्गीकरण क्रम'; $labels['listmode'] = 'यादी दर्शक पध्‍दत'; - $labels['folderactions'] = 'फोल्डर कृती..'; $labels['compact'] = 'छोटा'; $labels['empty'] = 'रिकामा'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'डिस्कचा वापर'; $labels['unknown'] = 'माहित नसलेला'; $labels['unlimited'] = 'अमर्याद'; - $labels['quicksearch'] = 'चटकन शोध'; $labels['resetsearch'] = 'परत शोध'; $labels['searchmod'] = 'बदलकर्त्‍यांना शोधा'; $labels['msgtext'] = 'संपूर्ण संदेश'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'नवीन खिडकी उघडा'; $labels['emlsave'] = 'इएमएल स्‍वरूपात उतरवून घ्या'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'नवीन आहे असा संपादित करा'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'आत्ता पाठवा'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'पोच पावती'; $labels['dsn'] = 'पोच स्थिती निर्देशक'; $labels['mailreplyintro'] = '$date या दिवशी $sender ने लिहीले :'; $labels['originalmessage'] = 'खरा संदेश'; - $labels['editidents'] = 'ओळख संपादित करा'; $labels['spellcheck'] = 'लिखाण'; $labels['checkspelling'] = 'शुध्द लेखन'; $labels['resumeediting'] = 'परत संदेश संपादित करा'; $labels['revertto'] = 'परत जा'; - $labels['attach'] = 'जोडा'; $labels['attachments'] = 'जोडलेल्या'; $labels['upload'] = 'चढवा'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बंद'; $labels['messageoptions'] = 'संदेश पर्याय..'; - $labels['low'] = 'कमी'; $labels['lowest'] = 'कमित कमी'; $labels['normal'] = 'नेहमी प्रमाणे'; $labels['high'] = 'तातडीचे'; $labels['highest'] = 'अतिशय तातडीचे'; - $labels['nosubject'] = '(विषय नाही)'; $labels['showimages'] = 'चित्र दाखवा'; $labels['alwaysshow'] = '$sender कडून आलेल्या संदेशातील चित्रे नेहमी दाखवा'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'हा मसुदा संदेश आहे'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'एच टी एम एल'; $labels['plaintoggle'] = 'साधे लिखाण'; $labels['savesentmessagein'] = 'पाठवलेला संदेश या फोल्डरमधे ठेवा'; $labels['dontsave'] = 'संदेश साठवू नका'; $labels['maxuploadsize'] = 'जास्‍तीत जास्‍त फाइलचा आकार $size असू शकतो'; - $labels['addcc'] = 'प्रत करा'; $labels['addbcc'] = 'गुप्त प्रत करा'; $labels['addreplyto'] = 'आणखी लोकांना संदेश पाठवा'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'हा संदेश पाठवणार्‍याने हा संदेश तुम्ही वाचल्यावर कळवावयाला सांगितले आहे. तुम्हाला असे कळवणे चालेल ना?'; $labels['receiptread'] = 'पोच पावती (संदेश वाचला)'; $labels['yourmessage'] = 'ही तुमच्या संदेशाची पोच पावती आहे.'; $labels['receiptnote'] = 'सूचना: ही पोच पावती तुम्ही ज्यांना संदेश पाठवला त्यांच्या संगणकावर दिसला एवढेच सांगते. तुम्ही ज्यांना हा संदेश पाठवला, त्यांनी तो वाचला, आणि त्यांना तो नक्की समजला हे मात्र सांगत नाही.'; - -// address boook $labels['name'] = 'टोपणनाव'; $labels['firstname'] = 'नाव'; $labels['surname'] = 'आडनाव'; @@ -304,7 +264,6 @@ $labels['search'] = 'शोध'; $labels['advsearch'] = 'प्रगत शोध'; $labels['advanced'] = 'आधुनिक'; $labels['other'] = 'इतर'; - $labels['typehome'] = 'मुख्यपृष्ठ'; $labels['typework'] = 'काम'; $labels['typeother'] = 'इतर'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'सहाय्यक'; $labels['typehomepage'] = 'मुख्य पृष्ठ'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नवीन पत्ता नोंदवहीत ठेवा'; $labels['editcontact'] = 'नोंदवहीतील पत्ता सुधारा'; $labels['contacts'] = 'संपर्क'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'वैयक्तिक माहिती'; - $labels['edit'] = 'संदेश तयार करा'; $labels['cancel'] = 'रद्द करा'; $labels['save'] = 'ठेवून द्या'; @@ -335,7 +292,6 @@ $labels['rename'] = 'दूसरे नाव द्या'; $labels['addphoto'] = 'समावेश करा'; $labels['replacephoto'] = 'बदला'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'नोंदवहीत नवीन संपर्क लिहिण्यासाठी'; $labels['deletecontact'] = 'खूण केलेले सर्व संपर्काचे पत्ते काढून टाका'; $labels['composeto'] = 'साठी नवीन संदेश तयार करा'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'नवीन पत्‍त्‍यांचा $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'गट नष्ट करा'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'आधिचा संच दाखवा'; $labels['firstpage'] = 'पहिला संच दाखवा'; $labels['nextpage'] = 'नंतरचा संच दाखवा'; $labels['lastpage'] = 'शेवटचा संच दाखवा'; - $labels['group'] = 'गट'; $labels['groups'] = 'अनेक गट'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'वैयक्तिक पत्ते'; - $labels['searchsave'] = 'शोध जतन करा'; $labels['searchdelete'] = 'शोध नष्ट करा'; - $labels['import'] = 'आयात करा'; $labels['importcontacts'] = 'पत्ते आयात करा'; $labels['importfromfile'] = 'या फाईल मधून आयात करा'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'नवीन पत्ता नोंदवहीत $labels['importreplace'] = 'संपूर्ण पत्ता नोंदवही बदला'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'झाले'; - -// settings $labels['settingsfor'] = 'साठी सेटिंग्ज'; $labels['about'] = 'च्या विषयी'; $labels['preferences'] = 'तुमची पसंती'; $labels['userpreferences'] = 'वापरकर्त्याची पसंती'; $labels['editpreferences'] = 'वापरकर्त्याची पसंती सुधारा'; - $labels['identities'] = 'ओळख'; $labels['manageidentities'] = 'या खात्यासाठी ओळखींचे नियोजन करा'; $labels['newidentity'] = 'नवीन ओळख'; - $labels['newitem'] = 'नवीन प्रकार'; $labels['edititem'] = 'प्रकार सुधारा'; - $labels['preferhtml'] = 'एच टी एम एल दाखवा'; $labels['defaultcharset'] = 'नेहमीचा अक्षर संच'; $labels['htmlmessage'] = 'एच टी एम एल संदेश'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'फोल्डर'; $labels['folders'] = 'फोल्डर्स'; $labels['foldername'] = 'फोल्डरचे नाव'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'ने वर्गवारी करा'; $labels['sortasc'] = 'चढत्या क्रमाने'; $labels['sortdesc'] = 'उतरत्या क्रमाने'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'बाइट'; $labels['KB'] = 'केबी'; $labels['MB'] = 'एमबी'; $labels['GB'] = 'जीबी'; - -// character sets $labels['unicode'] = 'युनिकोड'; $labels['english'] = 'इंग्रजी'; $labels['westerneuropean'] = 'पश्चिम युरोपियन'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'व्हिएतनामी'; $labels['japanese'] = 'जपानी'; $labels['korean'] = 'कोरियन'; $labels['chinese'] = 'चिनी'; - ?> diff --git a/program/localization/mr_IN/messages.inc b/program/localization/mr_IN/messages.inc old mode 100755 new mode 100644 index 2b1bd3f33..04e873aa0 --- a/program/localization/mr_IN/messages.inc +++ b/program/localization/mr_IN/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/ms_MY/labels.inc b/program/localization/ms_MY/labels.inc index a6bdfbfa0..135b4ea5f 100644 --- a/program/localization/ms_MY/labels.inc +++ b/program/localization/ms_MY/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Selamat datang ke $product'; $labels['username'] = 'Nama Pengguna'; $labels['password'] = 'Katalaluan'; $labels['server'] = 'Pelayan'; $labels['login'] = 'Log Masuk'; - -// taskbar $labels['logout'] = 'Log Keluar'; $labels['mail'] = 'Mel'; $labels['settings'] = 'Tetapan'; $labels['addressbook'] = 'Buku Alamat'; - -// mailbox names $labels['inbox'] = 'Peti Masuk'; $labels['drafts'] = 'Draf'; $labels['sent'] = 'Hantar'; $labels['trash'] = 'Tong Sampah'; $labels['junk'] = 'Junk'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Subjek'; $labels['from'] = 'Daripada'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioriti'; $labels['organization'] = 'Organisasi'; $labels['readstatus'] = 'Status baca'; $labels['listoptions'] = 'Senarai pilihan'; - $labels['mailboxlist'] = 'Folder'; $labels['messagesfromto'] = 'Mesej $from ke $to dari $count'; $labels['threadsfromto'] = 'Urutan $from ke $to dari $count'; $labels['messagenrof'] = 'Mesej $nr dari $count'; $labels['fromtoshort'] = '$from - $to dari $count'; - $labels['copy'] = 'Salin'; $labels['move'] = 'Alih'; $labels['moveto'] = 'Alih ke...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Muat Turun'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Nama Fail'; $labels['filesize'] = 'Saiz Fail'; - $labels['addtoaddressbook'] = 'Tambah ke buku alamat'; - -// weekdays short $labels['sun'] = 'Aha'; $labels['mon'] = 'Isn'; $labels['tue'] = 'Sel'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Rab'; $labels['thu'] = 'Kha'; $labels['fri'] = 'Jum'; $labels['sat'] = 'Sab'; - -// weekdays long $labels['sunday'] = 'Ahad'; $labels['monday'] = 'Isnin'; $labels['tuesday'] = 'Selasa'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Rabu'; $labels['thursday'] = 'Khamis'; $labels['friday'] = 'Jumaat'; $labels['saturday'] = 'Sabtu'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mac'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dis'; - -// months long $labels['longjan'] = 'Januari'; $labels['longfeb'] = 'Februari'; $labels['longmar'] = 'March'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Disember'; - $labels['today'] = 'Hari Ini'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Semak mesej baru'; $labels['compose'] = 'Karang mesej'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Tindakan lanjut..'; $labels['more'] = 'Seterusnya'; $labels['back'] = 'Kembali'; $labels['options'] = 'Opsyen'; - $labels['select'] = 'Pilih'; $labels['all'] = 'Semua'; $labels['none'] = 'Tiada'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Buka Semua'; $labels['expand-unread'] = 'Buka yang belum dibaca'; $labels['collapse-all'] = 'Tutup Semua'; $labels['threaded'] = 'Telah urutan'; - $labels['autoexpand_threads'] = 'Buka mesej mengikut urutan'; $labels['do_expand'] = 'Kesemua urutan'; $labels['expand_only_unread'] = 'hanya dengan mesej yang belum dibaca'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Senarai ruang'; $labels['listsorting'] = 'pengisihan ruang'; $labels['listorder'] = 'Urutan pengisihan'; $labels['listmode'] = 'Mod senarai paparan'; - $labels['folderactions'] = 'Aksi folder'; $labels['compact'] = 'Kompak'; $labels['empty'] = 'Kosong'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Penggunaan cakera'; $labels['unknown'] = 'tidak diketahui'; $labels['unlimited'] = 'Tidak terhad'; - $labels['quicksearch'] = 'Carian pantas'; $labels['resetsearch'] = 'Set semula carian'; $labels['searchmod'] = 'Pengubah carian'; $labels['msgtext'] = 'Keseluruhan mesej'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Buka dalam tetingkap baru'; $labels['emlsave'] = 'Muat-turun (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Ubah seperti baharu'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Hantar mesej'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Penerimaan semula'; $labels['dsn'] = 'Status pemberitahuan penghantaran'; $labels['mailreplyintro'] = 'Pada $date, $sender menulis'; $labels['originalmessage'] = 'Mesej Asal'; - $labels['editidents'] = 'Ubah identiti'; $labels['spellcheck'] = 'Eja'; $labels['checkspelling'] = 'Semak ejaan'; $labels['resumeediting'] = 'Sambung pengeditan'; $labels['revertto'] = 'Kembali kepada'; - $labels['attach'] = 'Lampirkan'; $labels['attachments'] = 'Lampiran'; $labels['upload'] = 'Muat naik'; $labels['uploadprogress'] = '$percent ($current dari $total)'; $labels['close'] = 'Tutup'; $labels['messageoptions'] = 'Opsyen mesej'; - $labels['low'] = 'Rendah'; $labels['lowest'] = 'Paling Rendah'; $labels['normal'] = 'Normal'; $labels['high'] = 'Tinggi'; $labels['highest'] = 'Paling Tinggi'; - $labels['nosubject'] = '(tiada subjek)'; $labels['showimages'] = 'Papar imej'; $labels['alwaysshow'] = 'selalu paparkan imej dari $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Ini adalah draf mesej'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Teks kosong'; $labels['savesentmessagein'] = 'Simpan mesej yang telah dihantar dalam'; $labels['dontsave'] = 'Jangan simpan'; $labels['maxuploadsize'] = 'maksimum saiz fail yang dibenarkan ialah $size'; - $labels['addcc'] = 'Tambah Cc'; $labels['addbcc'] = 'Tambah Bcc'; $labels['addreplyto'] = 'Tambah Reply-To'; $labels['addfollowupto'] = 'Tambah Followup-To'; - -// mdn $labels['mdnrequest'] = 'Pengirim mesej ini mahu diberitahu apabila anda membaca mesej ini. Adakah anda ingin memberitahu pengirim?'; $labels['receiptread'] = 'Balas Resip (dibaca)'; $labels['yourmessage'] = 'Ini adalah Resip Balasan untuk mesej anda'; $labels['receiptnote'] = 'Perhatian: Resip ini hanya untuk memberitahu yang mesej ini telah dipaparkan di komputer penerima. Tidak ada jaminan yang penerima telah membaca atau memahami kandungan mesej.'; - -// address boook $labels['name'] = 'Nama paparan'; $labels['firstname'] = 'Nama pertama'; $labels['surname'] = 'Nama akhir'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Tambah kontek baru'; $labels['editcontact'] = 'Ubahsuai Kontek'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Sunting'; $labels['cancel'] = 'Batal'; $labels['save'] = 'Simpan'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Cipta kad kontek baru'; $labels['deletecontact'] = 'Hapus kontek yang dipilih'; $labels['composeto'] = 'Karang mel kepada'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Papar set sebelumnya'; $labels['firstpage'] = 'Papar set pertama'; $labels['nextpage'] = 'Papar set seterusnya'; $labels['lastpage'] = 'Papar set akhir'; - $labels['group'] = 'Group'; $labels['groups'] = 'Kumpulan'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Alamat-alamat Peribadi'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Tetapan bagi'; $labels['about'] = 'About'; $labels['preferences'] = 'Keutamaan'; $labels['userpreferences'] = 'Keutamaan pengguna'; $labels['editpreferences'] = 'Sunting keutamaan pengguna'; - $labels['identities'] = 'Identiti'; $labels['manageidentities'] = 'Urus identiti bagi akaun ini'; $labels['newidentity'] = 'Identiti baru'; - $labels['newitem'] = 'Butiran baru'; $labels['edititem'] = 'Ubahsuai butiran'; - $labels['preferhtml'] = 'Papar HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Mesej HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Kabinet Fail'; $labels['folders'] = 'Folder'; $labels['foldername'] = 'Nama Kabinet Fail'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Susun dengan'; $labels['sortasc'] = 'Susun menaik'; $labels['sortdesc'] = 'Susun menurun'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ms_MY/messages.inc b/program/localization/ms_MY/messages.inc index 50f10af13..0f0f102e6 100644 --- a/program/localization/ms_MY/messages.inc +++ b/program/localization/ms_MY/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/nb_NO/labels.inc b/program/localization/nb_NO/labels.inc index b5c8ce4c6..140d9f918 100644 --- a/program/localization/nb_NO/labels.inc +++ b/program/localization/nb_NO/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brukernavn'; $labels['password'] = 'Passord'; $labels['server'] = 'Tjener'; $labels['login'] = 'Logg inn'; - -// taskbar $labels['logout'] = 'Logg ut'; $labels['mail'] = 'E-post'; $labels['settings'] = 'Innstillinger'; $labels['addressbook'] = 'Adressebok'; - -// mailbox names $labels['inbox'] = 'Innboks'; $labels['drafts'] = 'Kladd'; $labels['sent'] = 'Sendt'; $labels['trash'] = 'Slettet'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Emne'; $labels['from'] = 'Avsender'; $labels['sender'] = 'Avsender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organisasjon'; $labels['readstatus'] = 'Lese status'; $labels['listoptions'] = 'List muligheter'; - $labels['mailboxlist'] = 'Mapper'; $labels['messagesfromto'] = 'Meldinger $from til $to av $count'; $labels['threadsfromto'] = 'Tråder $from til $to av $count'; $labels['messagenrof'] = 'Melding $nr av $count'; $labels['fromtoshort'] = '$from – $to av $count'; - $labels['copy'] = 'Kopier'; $labels['move'] = 'Flytt'; $labels['moveto'] = 'flytt til...'; @@ -68,13 +59,9 @@ $labels['download'] = 'last ned'; $labels['open'] = 'Åpen'; $labels['showattachment'] = 'Vis'; $labels['showanyway'] = 'Vis likevel'; - $labels['filename'] = 'Filnavn'; $labels['filesize'] = 'Filstørrelse'; - $labels['addtoaddressbook'] = 'Legg til i adressebok'; - -// weekdays short $labels['sun'] = 'Søn'; $labels['mon'] = 'Man'; $labels['tue'] = 'Tir'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ons'; $labels['thu'] = 'Tor'; $labels['fri'] = 'Fre'; $labels['sat'] = 'Lør'; - -// weekdays long $labels['sunday'] = 'Søndag'; $labels['monday'] = 'Mandag'; $labels['tuesday'] = 'Tirsdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Onsdag'; $labels['thursday'] = 'Torsdag'; $labels['friday'] = 'Fredag'; $labels['saturday'] = 'Lørdag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Des'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'Mars'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Desember'; - $labels['today'] = 'I dag'; - -// toolbar buttons $labels['refresh'] = 'Oppdater'; $labels['checkmail'] = 'Se etter nye meldinger'; $labels['compose'] = 'Skriv ny e-post'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Flere handlinger …'; $labels['more'] = 'Mer'; $labels['back'] = 'Tilbake'; $labels['options'] = 'Alternativer'; - $labels['select'] = 'Velg'; $labels['all'] = 'Alle'; $labels['none'] = 'Ingen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Utvid alle'; $labels['expand-unread'] = 'Utvid uleste'; $labels['collapse-all'] = 'Skjul alle'; $labels['threaded'] = 'Trådet'; - $labels['autoexpand_threads'] = 'Utvid tråder'; $labels['do_expand'] = 'alle tråder'; $labels['expand_only_unread'] = 'kun med uleste meldinger'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Listekolonner'; $labels['listsorting'] = 'Sorteringskolonne'; $labels['listorder'] = 'Sorteringsrekkefølge'; $labels['listmode'] = 'Listevisningsmodus'; - $labels['folderactions'] = 'Mappehandlinger...'; $labels['compact'] = 'Rydd opp'; $labels['empty'] = 'Tøm'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Plassforbruk'; $labels['unknown'] = 'ukjent'; $labels['unlimited'] = 'ubegrenset'; - $labels['quicksearch'] = 'Hurtigsøk'; $labels['resetsearch'] = 'Nullstill søk'; $labels['searchmod'] = 'Søke felt'; $labels['msgtext'] = 'Hele meldingen'; $labels['body'] = 'Meldingstekst'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Åpne i nytt vindu'; $labels['emlsave'] = 'Last ned (.eml)'; $labels['changeformattext'] = 'Vis i ren tekst'; $labels['changeformathtml'] = 'Vis i HTML'; - -// message compose $labels['editasnew'] = 'Rediger som ny'; $labels['send'] = 'Send.'; $labels['sendmessage'] = 'Send e-posten'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Be om kvittering'; $labels['dsn'] = 'Leveringsstatus notifikasjon'; $labels['mailreplyintro'] = 'Den $date, skrev $sender:'; $labels['originalmessage'] = 'Opprinnelig melding'; - $labels['editidents'] = 'Endre identiteter'; $labels['spellcheck'] = 'Stavekontroll'; $labels['checkspelling'] = 'Stavekontroll'; $labels['resumeediting'] = 'Fortsett redigering'; $labels['revertto'] = 'Tilbake til'; - $labels['attach'] = 'Legg ved'; $labels['attachments'] = 'Vedlegg'; $labels['upload'] = 'Last opp'; $labels['uploadprogress'] = '$percent ($current fra $total)'; $labels['close'] = 'Lukk'; $labels['messageoptions'] = 'Meldingsalternativer...'; - $labels['low'] = 'Lav'; $labels['lowest'] = 'Lavest'; $labels['normal'] = 'Normal'; $labels['high'] = 'Høy'; $labels['highest'] = 'Høyest'; - $labels['nosubject'] = '(intet emne)'; $labels['showimages'] = 'Vis bilder'; $labels['alwaysshow'] = 'Vis alltid bilder fra $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dette er en kladd.'; $labels['andnmore'] = '$nr flere ...'; $labels['togglemoreheaders'] = 'Vis flere meldings-headere'; $labels['togglefullheaders'] = 'Veksle visning av meldingens headere i råformat'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Ren tekst'; $labels['savesentmessagein'] = 'Lagre sendt melding i'; $labels['dontsave'] = 'ikke lagre'; $labels['maxuploadsize'] = 'Maksimalt tillatt filstørrelse er $size'; - $labels['addcc'] = 'Legg til kopiadressat (Cc)'; $labels['addbcc'] = 'Legg til blindkopiadressat (Bcc)'; $labels['addreplyto'] = 'Legg til svar til (Reply-To)'; $labels['addfollowupto'] = 'Legg til oppfølging'; - -// mdn $labels['mdnrequest'] = 'Senderen av denne meldingen har bedt om å bli gjort oppmerksom på at denne meldingen er lest. Ønsker du å sende denne bekreftelsen?'; $labels['receiptread'] = 'Kvittering (lest)'; $labels['yourmessage'] = 'Dette er en kvittering for at din e-post er mottatt'; $labels['receiptnote'] = 'Merknad: Denne kvitteringen bekrefter bare at e-posten ble vist hos mottakeren. Det er ingen garanti for at mottakeren har lest eller forstått innholdet i e-posten.'; - -// address boook $labels['name'] = 'Visningsnavn'; $labels['firstname'] = 'Fornavn'; $labels['surname'] = 'Etternavn'; @@ -304,7 +264,6 @@ $labels['search'] = 'Søk'; $labels['advsearch'] = 'Avansert søk'; $labels['advanced'] = 'Avansert'; $labels['other'] = 'Annet'; - $labels['typehome'] = 'Hjem'; $labels['typework'] = 'Jobb'; $labels['typeother'] = 'Annet'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Hjemmeside'; $labels['typeblog'] = 'Blogg'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Legg til felt ...'; $labels['addcontact'] = 'Legg til ny kontakt'; $labels['editcontact'] = 'Rediger kontakt'; $labels['contacts'] = 'Kontakter'; $labels['contactproperties'] = 'Egenskaper'; $labels['personalinfo'] = 'Personlig informasjon'; - $labels['edit'] = 'Rediger'; $labels['cancel'] = 'Avbryt'; $labels['save'] = 'Lagre'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Gi nytt navn'; $labels['addphoto'] = 'Legg til'; $labels['replacephoto'] = 'Erstatt'; $labels['uploadphoto'] = 'Last opp bilde'; - $labels['newcontact'] = 'Opprett ny kontakt'; $labels['deletecontact'] = 'Slett valgte kontakter'; $labels['composeto'] = 'Skriv e-post til'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Opprett ny kontaktgruppe'; $labels['grouprename'] = 'Endre navn på gruppe'; $labels['groupdelete'] = 'Slett gruppe'; $labels['groupremoveselected'] = 'Fjern valgte kontakter fra gruppe'; - $labels['previouspage'] = 'Vis forrige sett'; $labels['firstpage'] = 'Vis første sett'; $labels['nextpage'] = 'Vis neste sett'; $labels['lastpage'] = 'Vis siste sett'; - $labels['group'] = 'Gruppe'; $labels['groups'] = 'Grupper'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Egne adresser'; - $labels['searchsave'] = 'Lagre søk'; $labels['searchdelete'] = 'Slett søk'; - $labels['import'] = 'Importer'; $labels['importcontacts'] = 'Importer kontakter'; $labels['importfromfile'] = 'Importer fra fil:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Legg til kontakter i adresseboka:'; $labels['importreplace'] = 'Erstatt hele adresseboken'; $labels['importdesc'] = 'Du kan laste opp kontakter fra en eksisterende adressebok.
Vi støtter adressebøker i vCard eller CSV (kommaseparert) .'; $labels['done'] = 'Fullført'; - -// settings $labels['settingsfor'] = 'Innstillinger for'; $labels['about'] = 'Om'; $labels['preferences'] = 'Oppsett'; $labels['userpreferences'] = 'Brukeroppsett'; $labels['editpreferences'] = 'Rediger brukeroppsett'; - $labels['identities'] = 'Identiteter'; $labels['manageidentities'] = 'Administrer identitetene for denne kontoen'; $labels['newidentity'] = 'Ny identitet'; - $labels['newitem'] = 'Nytt punkt'; $labels['edititem'] = 'Rediger punkt'; - $labels['preferhtml'] = 'Foretrekk HTML'; $labels['defaultcharset'] = 'Standard tegnsett'; $labels['htmlmessage'] = 'HTML-melding'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Meldinger videresendes'; $labels['inline'] = 'i teksten'; $labels['asattachment'] = 'som vedlegg'; - $labels['folder'] = 'Mappe'; $labels['folders'] = 'Mapper'; $labels['foldername'] = 'Mappenavn'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Mappetype'; $labels['personalfolder'] = 'Privat mappe'; $labels['otherfolder'] = 'Annen brukers mappe'; $labels['sharedfolder'] = 'Offentlig mappe'; - $labels['sortby'] = 'Sorter etter'; $labels['sortasc'] = 'Eldste først'; $labels['sortdesc'] = 'Nyeste først'; $labels['undo'] = 'Angre'; - $labels['installedplugins'] = 'Installerte tillegg'; $labels['plugin'] = 'Tilleggsmodul'; $labels['version'] = 'Versjon'; $labels['source'] = 'Kildekode'; $labels['license'] = 'Lisensvilkår'; $labels['support'] = 'Få hjelp'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engelsk'; $labels['westerneuropean'] = 'Vesteuropeisk'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamesisk'; $labels['japanese'] = 'Japansk'; $labels['korean'] = 'Koreansk'; $labels['chinese'] = 'Kinesisk'; - ?> diff --git a/program/localization/nb_NO/messages.inc b/program/localization/nb_NO/messages.inc index 6138b9379..a757fb353 100644 --- a/program/localization/nb_NO/messages.inc +++ b/program/localization/nb_NO/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Kunne ikke opprette/flytte mappen i valgt over $messages['messagetoobig'] = 'Meldingsdelen er for stor til at den kan prosesseres.'; $messages['attachmentvalidationerror'] = 'ADVARSEL! Dette vedlegget er mistenkelig fordi det er av en type som ikke passer med det som er deklarert i meldingen. Hvis du ikke stoler på avsenderen burde du ikke åpne det i nettleseren, fordi det kan ha skadelig innhold.

Forventet: $expected; fant: $detectedrnrnWARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'NB: Denne webmail-klienten krever Javascript! Skru på Javascript i nettleseren din for å kunne bruke den.'; - ?> diff --git a/program/localization/ne_NP/labels.inc b/program/localization/ne_NP/labels.inc index 5f69e1916..a4fd22dc3 100644 --- a/program/localization/ne_NP/labels.inc +++ b/program/localization/ne_NP/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product मा स्वागत छ'; $labels['username'] = 'प्रयोगकर्ताको नाम'; $labels['password'] = 'प्रवेश शब्द'; $labels['server'] = 'सर्भर'; $labels['login'] = 'लगइन गर्नुहोस्'; - -// taskbar $labels['logout'] = 'लगआउट गर्नुहोस्'; $labels['mail'] = 'ई-मेल'; $labels['settings'] = 'व्यक्तिगत रोजाईहरु'; $labels['addressbook'] = 'ठेगाना पुस्तिका'; - -// mailbox names $labels['inbox'] = 'प्राप्ति मञ्जूषा'; $labels['drafts'] = 'ड्राफ्टहरू'; $labels['sent'] = 'पठईएका मेलहरु'; $labels['trash'] = 'रद्दी टोकरी'; $labels['junk'] = 'स्पाम'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'विषय'; $labels['from'] = 'प्रेषक'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'प्राथमिकता'; $labels['organization'] = 'संस्था'; $labels['readstatus'] = 'पढेको अवस्था'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'फोल्डरहरु'; $labels['messagesfromto'] = 'मेलहरु $from बाट $to सम्म, $count मध्यबाट'; $labels['threadsfromto'] = 'थ्रेडहरु $from बाट $to सम्म, $count मध्यबाट'; $labels['messagenrof'] = '$nr नम्बर मेल, $count मध्यबाट'; $labels['fromtoshort'] = '$from - $to, $count मध्यबाट'; - $labels['copy'] = 'प्रतिलिपि गर्नुहोस्'; $labels['move'] = 'सार्नुहोस'; $labels['moveto'] = 'यहाँ सार्नुहोस'; @@ -68,13 +59,9 @@ $labels['download'] = 'डाऊनलोड'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'फाईलको नाम'; $labels['filesize'] = 'फाईलको नाप'; - $labels['addtoaddressbook'] = 'ठेगाना पुस्तिकामा भर्नुहोस'; - -// weekdays short $labels['sun'] = 'आइत'; $labels['mon'] = 'सोम'; $labels['tue'] = 'मंगल'; @@ -82,8 +69,6 @@ $labels['wed'] = 'बुध'; $labels['thu'] = 'विहि'; $labels['fri'] = 'शुक'; $labels['sat'] = 'शनि'; - -// weekdays long $labels['sunday'] = 'आइतवार'; $labels['monday'] = 'सोमवार'; $labels['tuesday'] = 'मंगलवार'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'बुधवार'; $labels['thursday'] = 'विहिवार'; $labels['friday'] = 'शुक्रवार'; $labels['saturday'] = 'शनिवार'; - -// months short $labels['jan'] = 'जनवरी'; $labels['feb'] = 'फेब्रुवरी'; $labels['mar'] = 'मार्च'; @@ -105,8 +88,6 @@ $labels['sep'] = 'सेप्टेम्बर'; $labels['oct'] = 'अक्टोबर'; $labels['nov'] = 'नोभेम्बर'; $labels['dec'] = 'डिसेम्बर'; - -// months long $labels['longjan'] = 'जनवरी'; $labels['longfeb'] = 'फेब्रुवरी'; $labels['longmar'] = 'मार्च'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'सेप्टेम्बर'; $labels['longoct'] = 'अक्टोबर'; $labels['longnov'] = 'नोभेम्बर'; $labels['longdec'] = 'डिसेम्बर'; - $labels['today'] = 'आज'; - -// toolbar buttons $labels['refresh'] = 'ताजा पार्नुहोस्'; $labels['checkmail'] = 'नया मेल खोज्नुहोस'; $labels['compose'] = 'रचना गर्नुहोस्'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'अझ धेरै'; $labels['back'] = 'पछाडि'; $labels['options'] = 'विकल्पहरू'; - $labels['select'] = 'चयन गर्नुहोस्'; $labels['all'] = 'सबै'; $labels['none'] = 'हैन'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'छोटो गर्नुहोस'; $labels['empty'] = 'खाली गर्ने'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'डिस्कको उपभोग'; $labels['unknown'] = 'अज्ञात'; $labels['unlimited'] = 'अनगिन्ति'; - $labels['quicksearch'] = 'स्फुर्ति खोज'; $labels['resetsearch'] = 'पन: खोज'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'तुरुन्तै मेल पठाउनुहोस'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'फिर्ति रसीद'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'हिज्जे जाँच'; $labels['resumeediting'] = 'पुन: सम्पादन गर्नुहोस'; $labels['revertto'] = 'पहिलेको स्थितीमा जानुहोस'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'टाँसिएका फाईलहरु'; $labels['upload'] = 'अपलोड'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बन्द'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'कम'; $labels['lowest'] = 'सबै भन्दा कम'; $labels['normal'] = 'साधारण'; $labels['high'] = 'उच्च'; $labels['highest'] = 'उच्चतम'; - $labels['nosubject'] = '(बिना विषयको)'; $labels['showimages'] = 'चित्र देखाउनुहोस'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'ऐच-टी-ऐम-एल (HTML)'; $labels['plaintoggle'] = 'सादा अक्षर'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'देखाउने नाम'; $labels['firstname'] = 'पहिलो नाम'; $labels['surname'] = 'थर'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नया सम्पर्क जोड्नुहोस'; $labels['editcontact'] = 'सम्पर्क सच्याउनुहोस'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'सच्याउनुहोस'; $labels['cancel'] = 'खारेज गर्नुहोस'; $labels['save'] = 'जोगाउनुहोस'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'नया सम्पर्क कार्ड बनाउनुहोस'; $labels['deletecontact'] = 'छानिएका सम्पर्कहरु मेटाउनुहोस'; $labels['composeto'] = 'मेल लेखी पठाउनुहोस'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'पहिलेको सेट देखाउनुहोस'; $labels['firstpage'] = 'पहिलो सेट देखाउनुहोस'; $labels['nextpage'] = 'अर्को सेट देखाउनुहोस'; $labels['lastpage'] = 'अन्तिम सेट देखाउनुहोस'; - $labels['group'] = 'Group'; $labels['groups'] = 'समूहहरु'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'व्यक्तिगत ठेगानाहरु'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'तय'; $labels['about'] = 'About'; $labels['preferences'] = 'रोजाइहरु'; $labels['userpreferences'] = 'यूसरका रोजाइहरु'; $labels['editpreferences'] = 'यूसरका रोजाइहर सम्पादन गर्नुहोस'; - $labels['identities'] = 'पहिचानहरु'; $labels['manageidentities'] = 'यो खाताको पहिचानहरको व्यवस्था गर्नुहोस'; $labels['newidentity'] = 'नया पहिचान'; - $labels['newitem'] = 'नया प्रकार'; $labels['edititem'] = 'प्रकार सम्पादन गर्नुहोस'; - $labels['preferhtml'] = 'ऐच-टी-ऐम-ऐल(HTML) देखाउनुहोस'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ऐच-टी-ऐम-ऐल (HTML) रूपका मेल'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'फोल्डर'; $labels['folders'] = 'फोल्डरहरु'; $labels['foldername'] = 'फोल्डरको नाम'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'यसरी तय गर्नुहोस'; $labels['sortasc'] = 'पहिलो देखि अन्तिम सम्म तय गर्नुहोस'; $labels['sortdesc'] = 'अन्तिम देखि पहिलो सम्म तय गर्नुहोस'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ne_NP/messages.inc b/program/localization/ne_NP/messages.inc index bedf41d8d..a8ad1a2f7 100644 --- a/program/localization/ne_NP/messages.inc +++ b/program/localization/ne_NP/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/nl_BE/labels.inc b/program/localization/nl_BE/labels.inc index 1e6bb2d2f..c37febef3 100644 --- a/program/localization/nl_BE/labels.inc +++ b/program/localization/nl_BE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; $labels['password'] = 'Wachtwoord'; $labels['server'] = 'Server'; $labels['login'] = 'Aanmelden'; - -// taskbar $labels['logout'] = 'Afmelden'; $labels['mail'] = 'Berichten'; $labels['settings'] = 'Instellingen'; $labels['addressbook'] = 'Contactpersonen'; - -// mailbox names $labels['inbox'] = 'Postvak IN'; $labels['drafts'] = 'Concepten'; $labels['sent'] = 'Verzonden berichten'; $labels['trash'] = 'Prullenbak'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Onderwerp'; $labels['from'] = 'Van'; $labels['sender'] = 'Afzender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioriteit'; $labels['organization'] = 'Organisatie'; $labels['readstatus'] = 'Gelezen?'; $labels['listoptions'] = 'Lijstopties...'; - $labels['mailboxlist'] = 'Mappen'; $labels['messagesfromto'] = 'Berichten $from - $to van $count'; $labels['threadsfromto'] = 'Conversaties $from - $to van $count'; $labels['messagenrof'] = 'Bericht $nr van $count'; $labels['fromtoshort'] = '$from - $to van $count'; - $labels['copy'] = 'Kopieer'; $labels['move'] = 'Verplaats'; $labels['moveto'] = 'Verplaats naar...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Downloaden'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Weergeven'; $labels['showanyway'] = 'Toch weergeven'; - $labels['filename'] = 'Bestandsnaam'; $labels['filesize'] = 'Bestandsgrootte'; - $labels['addtoaddressbook'] = 'Voeg toe aan lijst met contactpersonen'; - -// weekdays short $labels['sun'] = 'Zo'; $labels['mon'] = 'Ma'; $labels['tue'] = 'Di'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Wo'; $labels['thu'] = 'Do'; $labels['fri'] = 'Vr'; $labels['sat'] = 'Za'; - -// weekdays long $labels['sunday'] = 'Zondag'; $labels['monday'] = 'Maandag'; $labels['tuesday'] = 'Dinsdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Woensdag'; $labels['thursday'] = 'Donderdag'; $labels['friday'] = 'Vrijdag'; $labels['saturday'] = 'Zaterdag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mrt'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Januari'; $labels['longfeb'] = 'Februari'; $labels['longmar'] = 'Maart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Vandaag'; - -// toolbar buttons $labels['refresh'] = 'Vernieuwen'; $labels['checkmail'] = 'Controleer op nieuwe berichten'; $labels['compose'] = 'Nieuw bericht opstellen'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Meer acties...'; $labels['more'] = 'Meer'; $labels['back'] = 'Terug'; $labels['options'] = 'Opties'; - $labels['select'] = 'Selecteren'; $labels['all'] = 'Alle'; $labels['none'] = 'Geen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Alles uitklappen'; $labels['expand-unread'] = 'Ongelezen uitklappen'; $labels['collapse-all'] = 'Alles inklappen'; $labels['threaded'] = 'Conversaties'; - $labels['autoexpand_threads'] = 'Klap alle conversaties uit'; $labels['do_expand'] = 'alle conversaties'; $labels['expand_only_unread'] = 'alleen met ongelezen berichten'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Kolommen'; $labels['listsorting'] = 'Sorteerkolom'; $labels['listorder'] = 'Sorteervolgorde'; $labels['listmode'] = 'Lijstweergave mode'; - $labels['folderactions'] = 'Acties voor map...'; $labels['compact'] = 'Comprimeren'; $labels['empty'] = 'Legen'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Gebruikte schijfruimte'; $labels['unknown'] = 'onbekend'; $labels['unlimited'] = 'onbeperkt'; - $labels['quicksearch'] = 'Snelzoeken'; $labels['resetsearch'] = 'Zoek opnieuw'; $labels['searchmod'] = 'Zoekopties'; $labels['msgtext'] = 'Volledig bericht'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Openen in een nieuw venster'; $labels['emlsave'] = 'Opslaan (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Als nieuw bewerken'; $labels['send'] = 'Verzenden'; $labels['sendmessage'] = 'Bericht verzenden'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Ontvangstbevestiging'; $labels['dsn'] = 'Delivery Status Notification'; $labels['mailreplyintro'] = 'Op $date, schreef $sender:'; $labels['originalmessage'] = 'Orgineel bericht'; - $labels['editidents'] = 'Bewerk identiteiten'; $labels['spellcheck'] = 'Spellen'; $labels['checkspelling'] = 'Controleer spelling'; $labels['resumeediting'] = 'Hervat bewerken'; $labels['revertto'] = 'Ongedaan maken'; - $labels['attach'] = 'Bijvoegen'; $labels['attachments'] = 'Bijlagen'; $labels['upload'] = 'Uploaden'; $labels['uploadprogress'] = '$percent ($current van $total)'; $labels['close'] = 'Sluiten'; $labels['messageoptions'] = 'Opties voor bericht...'; - $labels['low'] = 'Laag'; $labels['lowest'] = 'Laagste'; $labels['normal'] = 'Normaal'; $labels['high'] = 'Hoog'; $labels['highest'] = 'Hoogste'; - $labels['nosubject'] = '(geen onderwerp)'; $labels['showimages'] = 'Toon afbeeldingen'; $labels['alwaysshow'] = 'Afbeeldingen van $sender altijd tonen'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dit is een concept bericht.'; $labels['andnmore'] = '$nr meer...'; $labels['togglemoreheaders'] = 'Toon meer berichthoofden'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Platte tekst'; $labels['savesentmessagein'] = 'Bewaar verzonden bericht in'; $labels['dontsave'] = 'niet bewaren'; $labels['maxuploadsize'] = 'Maximum toegestane bestandsgrootte is $size'; - $labels['addcc'] = 'Cc toevoegen'; $labels['addbcc'] = 'Bcc toevoegen'; $labels['addreplyto'] = 'Antwoorden aan toevoegen'; $labels['addfollowupto'] = 'Followup aan toevoegen'; - -// mdn $labels['mdnrequest'] = 'De afzender heeft een ontvangstbevestiging gevraagd. Wilt u deze versturen?'; $labels['receiptread'] = 'Ontvangstbevestiging (gelezen)'; $labels['yourmessage'] = 'Dir is een onvangstbevestiging voor uw bericht'; $labels['receiptnote'] = 'Opmerking: deze ontvangstbevestiging houdt enkel in dat het bericht was weergegeven bij de ontvanger. Er is geen garantie dat de ontvanger het bericht daadwerkelijk heeft gelezen en/of begrepen.'; - -// address boook $labels['name'] = 'Naam'; $labels['firstname'] = 'Voornaam'; $labels['surname'] = 'Achternaam'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Geselecteerde contactpersoon toevoegen'; $labels['editcontact'] = 'Contactpersoon bewerken'; $labels['contacts'] = 'Contactpersonen'; $labels['contactproperties'] = 'Eigenschappen van contactpersoon'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Bewerken'; $labels['cancel'] = 'Annuleren'; $labels['save'] = 'Opslaan'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Hernoemen'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Contactpersoon toevoegen'; $labels['deletecontact'] = 'Verwijder geselecteerde contactpersonen'; $labels['composeto'] = 'Mail sturen aan'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Maak een nieuwe contactgroep'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Toon vorige'; $labels['firstpage'] = 'Toon eerste'; $labels['nextpage'] = 'Toon volgende'; $labels['lastpage'] = 'Toon laatste'; - $labels['group'] = 'Groep'; $labels['groups'] = 'Groepen'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personlijke adressen'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Importeer'; $labels['importcontacts'] = 'Contactpersonen importeren'; $labels['importfromfile'] = 'Importeer van bestand:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Vervang het complete adresboek'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Klaar'; - -// settings $labels['settingsfor'] = 'Instellingen voor'; $labels['about'] = 'About'; $labels['preferences'] = 'Voorkeuren'; $labels['userpreferences'] = 'Gebruikersvoorkeuren'; $labels['editpreferences'] = 'Gebruikersvoorkeuren bewerken'; - $labels['identities'] = 'Identiteiten'; $labels['manageidentities'] = 'Beheer de identiteiten voor deze gebruiker'; $labels['newidentity'] = 'Nieuwe identiteit'; - $labels['newitem'] = 'Nieuw'; $labels['edititem'] = 'Bewerken'; - $labels['preferhtml'] = 'Gebruik HTML-opmaak'; $labels['defaultcharset'] = 'Standaard karakterset'; $labels['htmlmessage'] = 'HTML-bericht'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Map'; $labels['folders'] = 'Mappen'; $labels['foldername'] = 'Naam'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Sorteren op'; $labels['sortasc'] = 'Oplopend sorteren'; $labels['sortdesc'] = 'Aflopend sorteren'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engels'; $labels['westerneuropean'] = 'West-Europees'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamees'; $labels['japanese'] = 'Japans'; $labels['korean'] = 'Koreaans'; $labels['chinese'] = 'Chinees'; - ?> diff --git a/program/localization/nl_BE/messages.inc b/program/localization/nl_BE/messages.inc index f7ed8e8d4..b730801a7 100644 --- a/program/localization/nl_BE/messages.inc +++ b/program/localization/nl_BE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'U heeft niet voldoende rechten een map te make $messages['messagetoobig'] = 'Dit deel van uw bericht is te groot om het te verwerken.'; $messages['attachmentvalidationerror'] = 'OPGELET! Deze bijlage is verdacht omdat het aangetroffen bestandstype niet overeenkomt met het verwachte type. Indien u de afzender niet vertrouwd open deze bijlage in geen geval in uw browser aangezien deze schadelijk data kan bevatten.

Verwacht: $expected; Aangetroffen: $detected'; $messages['noscriptwarning'] = 'Opgelet: deze webmail service vereist JavaScript! Om deze service te kunnen gebruiken dient u JavaScript toe te staan in de instellingen van uw browser.'; - ?> diff --git a/program/localization/nl_NL/labels.inc b/program/localization/nl_NL/labels.inc index 8a6f994fa..2644eb3df 100644 --- a/program/localization/nl_NL/labels.inc +++ b/program/localization/nl_NL/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; $labels['password'] = 'Wachtwoord'; $labels['server'] = 'Server'; $labels['login'] = 'Inloggen'; - -// taskbar $labels['logout'] = 'Uitloggen'; $labels['mail'] = 'E-mail'; $labels['settings'] = 'Instellingen'; $labels['addressbook'] = 'Adresboek'; - -// mailbox names $labels['inbox'] = 'Postvak In'; $labels['drafts'] = 'Concepten'; $labels['sent'] = 'Verzonden'; $labels['trash'] = 'Prullenbak'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Toon echte namen voor speciale mappen'; - -// message listing $labels['subject'] = 'Onderwerp'; $labels['from'] = 'Afzender'; $labels['sender'] = 'Afzender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioriteit'; $labels['organization'] = 'Organisatie'; $labels['readstatus'] = 'Gelezen?'; $labels['listoptions'] = 'Lijstopties...'; - $labels['mailboxlist'] = 'Mappen'; $labels['messagesfromto'] = 'Bericht $from t/m $to van $count'; $labels['threadsfromto'] = 'Conversatie $from t/m $to van $count'; $labels['messagenrof'] = 'Bericht $nr van $count'; $labels['fromtoshort'] = '$from – $to van $count'; - $labels['copy'] = 'Kopiëren'; $labels['move'] = 'Verplaats'; $labels['moveto'] = 'Verplaats naar...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Download'; $labels['open'] = 'Openen'; $labels['showattachment'] = 'Toon'; $labels['showanyway'] = 'Laat toch zien'; - $labels['filename'] = 'Bestandsnaam'; $labels['filesize'] = 'Bestandsgrootte'; - $labels['addtoaddressbook'] = 'Toevoegen aan adresboek'; - -// weekdays short $labels['sun'] = 'Zo'; $labels['mon'] = 'Ma'; $labels['tue'] = 'Di'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Wo'; $labels['thu'] = 'Do'; $labels['fri'] = 'Vr'; $labels['sat'] = 'Za'; - -// weekdays long $labels['sunday'] = 'zondag'; $labels['monday'] = 'maandag'; $labels['tuesday'] = 'dinsdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'woensdag'; $labels['thursday'] = 'donderdag'; $labels['friday'] = 'vrijdag'; $labels['saturday'] = 'zaterdag'; - -// months short $labels['jan'] = 'jan'; $labels['feb'] = 'feb'; $labels['mar'] = 'mrt'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sep'; $labels['oct'] = 'okt'; $labels['nov'] = 'nov'; $labels['dec'] = 'dec'; - -// months long $labels['longjan'] = 'januari'; $labels['longfeb'] = 'februari'; $labels['longmar'] = 'maart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'september'; $labels['longoct'] = 'oktober'; $labels['longnov'] = 'november'; $labels['longdec'] = 'december'; - $labels['today'] = 'Vandaag'; - -// toolbar buttons $labels['refresh'] = 'Vernieuwen'; $labels['checkmail'] = 'Controleer op nieuwe berichten'; $labels['compose'] = 'Opstellen'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Meer acties...'; $labels['more'] = 'Meer'; $labels['back'] = 'Terug'; $labels['options'] = 'Opties'; - $labels['select'] = 'Selecteer'; $labels['all'] = 'Allemaal'; $labels['none'] = 'Geen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Alles uitklappen'; $labels['expand-unread'] = 'Ongelezen uitklappen'; $labels['collapse-all'] = 'Alles inklappen'; $labels['threaded'] = 'Conversaties'; - $labels['autoexpand_threads'] = 'Klap alle conversaties uit'; $labels['do_expand'] = 'alle conversaties'; $labels['expand_only_unread'] = 'alleen met ongelezen berichten'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Kolommen'; $labels['listsorting'] = 'Sorteer op kolom'; $labels['listorder'] = 'Sorteervolgorde'; $labels['listmode'] = 'Lijstweergave'; - $labels['folderactions'] = 'Mapacties...'; $labels['compact'] = 'Opschonen'; $labels['empty'] = 'Legen'; $labels['importmessages'] = 'Berichten importeren'; - $labels['quota'] = 'Opslagverbruik'; $labels['unknown'] = 'onbekend'; $labels['unlimited'] = 'onbeperkt'; - $labels['quicksearch'] = 'Snel zoeken'; $labels['resetsearch'] = 'Wis zoekopdracht'; $labels['searchmod'] = 'Zoekopties'; $labels['msgtext'] = 'Gehele bericht'; $labels['body'] = 'Inhoud'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Openen in een nieuw venster'; $labels['emlsave'] = 'Opslaan (.eml)'; $labels['changeformattext'] = 'Weergeven als platte tekst'; $labels['changeformathtml'] = 'Weergeven als opgemaakte tekst (HTML)'; - -// message compose $labels['editasnew'] = 'Als nieuw bewerken'; $labels['send'] = 'Verzenden'; $labels['sendmessage'] = 'Verstuur bericht'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Ontvangstbevestiging'; $labels['dsn'] = 'Afleveringsbericht (DSN)'; $labels['mailreplyintro'] = '$sender schreef op $date:'; $labels['originalmessage'] = 'Oorspronkelijke bericht'; - $labels['editidents'] = 'Identiteiten bewerken'; $labels['spellcheck'] = 'Spelling'; $labels['checkspelling'] = 'Controleer spelling'; $labels['resumeediting'] = 'Doorgaan met opstellen'; $labels['revertto'] = 'Terugwijzigen in'; - $labels['attach'] = 'Bijvoegen'; $labels['attachments'] = 'Bijlagen'; $labels['upload'] = 'Toevoegen'; $labels['uploadprogress'] = '$percent ($current van $total)'; $labels['close'] = 'Sluit'; $labels['messageoptions'] = 'Berichtopties...'; - $labels['low'] = 'Laag'; $labels['lowest'] = 'Laagste'; $labels['normal'] = 'Normaal'; $labels['high'] = 'Hoog'; $labels['highest'] = 'Hoogste'; - $labels['nosubject'] = '(geen onderwerp)'; $labels['showimages'] = 'Toon afbeeldingen'; $labels['alwaysshow'] = 'Afbeeldingen van $sender altijd tonen'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dit is een conceptbericht.'; $labels['andnmore'] = '$nr meer...'; $labels['togglemoreheaders'] = 'Toon meer berichtheaders'; $labels['togglefullheaders'] = 'Originele berichtheaders aan/uit'; - $labels['htmltoggle'] = 'Opgemaakt (HTML)'; $labels['plaintoggle'] = 'Platte tekst'; $labels['savesentmessagein'] = 'Bewaar verzonden bericht in'; $labels['dontsave'] = 'niet bewaren'; $labels['maxuploadsize'] = 'Maximum toegestane bestandsgrootte is $size'; - $labels['addcc'] = 'Cc toevoegen'; $labels['addbcc'] = 'Bcc toevoegen'; $labels['addreplyto'] = 'Antwoord-aan toevoegen'; $labels['addfollowupto'] = 'Followup-To toevoegen'; - -// mdn $labels['mdnrequest'] = 'De afzender van dit bericht heeft gevraagd een melding te ontvangen wanneer u dit bericht heeft gelezen. Wilt u deze melding verzenden?'; $labels['receiptread'] = 'Ontvangstbevestiging (gelezen)'; $labels['yourmessage'] = 'Dit is een ontvangstbevestiging voor uw bericht'; $labels['receiptnote'] = 'Let op: Dit bevestigt alleen dat uw bericht bij de geadresseerde is weergegeven. Er is geen garantie dat de geadresseerde het bericht daadwerkelijk heeft gelezen of de inhoud ervan heeft begrepen.'; - -// address boook $labels['name'] = 'Weergavenaam'; $labels['firstname'] = 'Voornaam'; $labels['surname'] = 'Achternaam'; @@ -304,7 +264,6 @@ $labels['search'] = 'Zoeken'; $labels['advsearch'] = 'Geavanceerd zoeken'; $labels['advanced'] = 'Geavanceerd'; $labels['other'] = 'Anders'; - $labels['typehome'] = 'Thuis'; $labels['typework'] = 'Werk'; $labels['typeother'] = 'Anders'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Website'; $labels['typeblog'] = 'Weblog'; $labels['typeprofile'] = 'Profiel'; - $labels['addfield'] = 'Veld toevoegen...'; $labels['addcontact'] = 'Nieuwe contactpersoon toevoegen'; $labels['editcontact'] = 'Contactpersoon wijzigen'; $labels['contacts'] = 'Contactpersonen'; $labels['contactproperties'] = 'Gegevens van contactpersoon'; $labels['personalinfo'] = 'Persoonlijke informatie'; - $labels['edit'] = 'Wijzig'; $labels['cancel'] = 'Annuleren'; $labels['save'] = 'Opslaan'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Hernoemen'; $labels['addphoto'] = 'Toevoegen'; $labels['replacephoto'] = 'Vervangen'; $labels['uploadphoto'] = 'Foto uploaden'; - $labels['newcontact'] = 'Voeg een nieuwe contactpersoon toe'; $labels['deletecontact'] = 'Verwijder geselecteerde contactpersonen'; $labels['composeto'] = 'Stuur een bericht naar'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Maak een nieuwe contactgroep'; $labels['grouprename'] = 'Groep hernoemen'; $labels['groupdelete'] = 'Groep verwijderen'; $labels['groupremoveselected'] = 'Verwijder geselecteerde contactpersonen van groep'; - $labels['previouspage'] = 'Vorige pagina'; $labels['firstpage'] = 'Eerste pagina'; $labels['nextpage'] = 'Volgende pagina'; $labels['lastpage'] = 'Laatste pagina'; - $labels['group'] = 'Groep'; $labels['groups'] = 'Groepen'; $labels['listgroup'] = 'Toon groepsleden'; $labels['personaladrbook'] = 'Persoonlijk adresboek'; - $labels['searchsave'] = 'Zoekopdracht opslaan'; $labels['searchdelete'] = 'Zoekopdracht verwijderen'; - $labels['import'] = 'Importeren'; $labels['importcontacts'] = 'Contactpersonen importeren'; $labels['importfromfile'] = 'Importeer van bestand:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Voeg nieuwe contactpersonen toe aan adresboek:'; $labels['importreplace'] = 'Vervang het complete adresboek'; $labels['importdesc'] = 'U kunt contactpersonen uploaden van een bestaand adresboek
Momenteel wordt het importeren van adresboeken in vCard-formaat of CSV-formaat (kommagescheiden tekstbestand) ondersteund.'; $labels['done'] = 'Klaar'; - -// settings $labels['settingsfor'] = 'Instellingen voor'; $labels['about'] = 'Over'; $labels['preferences'] = 'Instellingen'; $labels['userpreferences'] = 'Gebruikersinstellingen'; $labels['editpreferences'] = 'Wijzig gebruikersinstellingen'; - $labels['identities'] = 'Identiteiten'; $labels['manageidentities'] = 'Beheer identiteiten voor dit account'; $labels['newidentity'] = 'Identiteit toevoegen'; - $labels['newitem'] = 'Nieuw item'; $labels['edititem'] = 'Wijzig item'; - $labels['preferhtml'] = 'Toon berichten in HTML-opmaak'; $labels['defaultcharset'] = 'Standaard tekenset'; $labels['htmlmessage'] = 'HTML-bericht'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Behandel pop-ups als normale vensters'; $labels['forwardmode'] = 'Berichten doorsturen'; $labels['inline'] = 'invoegen'; $labels['asattachment'] = 'als bijlage'; - $labels['folder'] = 'Map'; $labels['folders'] = 'Mappen'; $labels['foldername'] = 'Mapnaam'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Maptype'; $labels['personalfolder'] = 'Privémap'; $labels['otherfolder'] = 'Map van andere gebruiker'; $labels['sharedfolder'] = 'Publieke map'; - $labels['sortby'] = 'Sorteer op'; $labels['sortasc'] = 'Sorteer oplopend'; $labels['sortdesc'] = 'Sorteer aflopend'; $labels['undo'] = 'Ongedaan maken'; - $labels['installedplugins'] = 'Geïnstalleerde plug-ins'; $labels['plugin'] = 'Invoegtoepassing'; $labels['version'] = 'Versie'; $labels['source'] = 'Broncode'; $labels['license'] = 'Licentie'; $labels['support'] = 'Hulp nodig?'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engels'; $labels['westerneuropean'] = 'West-Europees'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamees'; $labels['japanese'] = 'Japans'; $labels['korean'] = 'Koreaans'; $labels['chinese'] = 'Chinees'; - ?> diff --git a/program/localization/nl_NL/messages.inc b/program/localization/nl_NL/messages.inc index 01c43b243..5c9794602 100644 --- a/program/localization/nl_NL/messages.inc +++ b/program/localization/nl_NL/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Niet in staat om map aan te maken of verplaats $messages['messagetoobig'] = 'Het bericht is te groot om te verwerken.'; $messages['attachmentvalidationerror'] = 'WAARSCHUWING! Deze bijlage is verdacht omdat het bestandstype niet overeen komt met het bestandstype dat gespecificeerd is in het bericht. Open deze bijlage niet in uw browser als u de afzender niet vertrouwt, aangezien deze bijlage kwaadaardige inhoud kan bevatten.

Verwacht: $expected; gevonden: $detected'; $messages['noscriptwarning'] = 'Waarschuwing: deze webmailapplicatie vereist Javascript! U dient Javascript in te schakelen in uw browserinstellingen wanneer u gebruik wilt maken van deze applicatie.'; - ?> diff --git a/program/localization/nn_NO/labels.inc b/program/localization/nn_NO/labels.inc index 5934a01d9..62329115f 100644 --- a/program/localization/nn_NO/labels.inc +++ b/program/localization/nn_NO/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Velkomen til $product'; $labels['username'] = 'Brukarnamn'; $labels['password'] = 'Passord'; $labels['server'] = 'Tenar'; $labels['login'] = 'Logg inn'; - -// taskbar $labels['logout'] = 'Logg ut'; $labels['mail'] = 'E-post'; $labels['settings'] = 'Personlege innstillingar'; $labels['addressbook'] = 'Adressebok'; - -// mailbox names $labels['inbox'] = 'Innboks'; $labels['drafts'] = 'Kladd'; $labels['sent'] = 'Sendt'; $labels['trash'] = 'Sletta'; $labels['junk'] = 'Søppel'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Emne'; $labels['from'] = 'Frå'; $labels['sender'] = 'Avsendar'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organisasjon'; $labels['readstatus'] = 'Lesestatus'; $labels['listoptions'] = 'Listeinnstillingar …'; - $labels['mailboxlist'] = 'Mapper'; $labels['messagesfromto'] = 'Melding $from til $to av $count'; $labels['threadsfromto'] = 'Tråd $from til $to ($count stk)'; $labels['messagenrof'] = 'Melding $nr av $count'; $labels['fromtoshort'] = '$from-$to av $count'; - $labels['copy'] = 'Kopier'; $labels['move'] = 'Flytt'; $labels['moveto'] = 'flytt til …'; @@ -68,13 +59,9 @@ $labels['download'] = 'Last ned'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Vis'; $labels['showanyway'] = 'Vis likevel'; - $labels['filename'] = 'Filnamn'; $labels['filesize'] = 'Filstorleik'; - $labels['addtoaddressbook'] = 'Legg til i adressebok'; - -// weekdays short $labels['sun'] = 'Sun'; $labels['mon'] = 'Mån'; $labels['tue'] = 'Tys'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ons'; $labels['thu'] = 'Tor'; $labels['fri'] = 'Fre'; $labels['sat'] = 'Lau'; - -// weekdays long $labels['sunday'] = 'Sundag'; $labels['monday'] = 'Måndag'; $labels['tuesday'] = 'Tysdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Onsdag'; $labels['thursday'] = 'Torsdag'; $labels['friday'] = 'Fredag'; $labels['saturday'] = 'Laurdag'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Des'; - -// months long $labels['longjan'] = 'Januar'; $labels['longfeb'] = 'Februar'; $labels['longmar'] = 'Mars'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Oktober'; $labels['longnov'] = 'November'; $labels['longdec'] = 'Desember'; - $labels['today'] = 'I dag'; - -// toolbar buttons $labels['refresh'] = 'Frisk opp att'; $labels['checkmail'] = 'Sjå etter nye meldingar'; $labels['compose'] = 'Skriv ei melding'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Fleire handlingar'; $labels['more'] = 'Meir'; $labels['back'] = 'Tilbake'; $labels['options'] = 'Innstillingar'; - $labels['select'] = 'Vel'; $labels['all'] = 'Alle'; $labels['none'] = 'Ingen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Utvid alle'; $labels['expand-unread'] = 'Utvid ulesne'; $labels['collapse-all'] = 'Slå saman alle'; $labels['threaded'] = 'Tråda'; - $labels['autoexpand_threads'] = 'Utvid eposttråder'; $labels['do_expand'] = 'alle tråder'; $labels['expand_only_unread'] = 'berre med ulesne epostar'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Vis kolonner'; $labels['listsorting'] = 'Sorteringskolonne'; $labels['listorder'] = 'Sorteringsveg'; $labels['listmode'] = 'Listevisningmodus'; - $labels['folderactions'] = 'Mappehandlingar'; $labels['compact'] = 'Kompakt'; $labels['empty'] = 'Tom'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Plassbruk'; $labels['unknown'] = 'ukjend'; $labels['unlimited'] = 'ubegrensa'; - $labels['quicksearch'] = 'Snøggsøk'; $labels['resetsearch'] = 'Tilbakestill søk'; $labels['searchmod'] = 'Søkeutsagn'; $labels['msgtext'] = 'Heile eposten'; $labels['body'] = 'Meldingstekst'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Opna i nytt vindauga'; $labels['emlsave'] = 'Last ned (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Rediger som ny'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send meldinga no'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Epost-er-lest-kvittering'; $labels['dsn'] = 'Leveringsstatus'; $labels['mailreplyintro'] = 'Den $date skreiv $sender:'; $labels['originalmessage'] = 'Opphavleg melding'; - $labels['editidents'] = 'Redigere identitetar'; $labels['spellcheck'] = 'Stavekontroll'; $labels['checkspelling'] = 'Stavekontroll'; $labels['resumeediting'] = 'Hald fram redigering'; $labels['revertto'] = 'Tilbakestill til'; - $labels['attach'] = 'Legg ved'; $labels['attachments'] = 'Vedlegg'; $labels['upload'] = 'Last opp'; $labels['uploadprogress'] = '$percent ($current frå $total)'; $labels['close'] = 'Steng'; $labels['messageoptions'] = 'Meldingsalternativ'; - $labels['low'] = 'Låg'; $labels['lowest'] = 'Lågast'; $labels['normal'] = 'Normal'; $labels['high'] = 'Høg'; $labels['highest'] = 'Høgast'; - $labels['nosubject'] = '(ingen emne)'; $labels['showimages'] = 'Vis bilete'; $labels['alwaysshow'] = 'Alltid vis bilete frå $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Dette er ein kladd.'; $labels['andnmore'] = '$nr fleire …'; $labels['togglemoreheaders'] = 'Vis fleire meldingshovud'; $labels['togglefullheaders'] = 'Veksle vising av meldinga sine headere i råformat'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Vanleg tekst'; $labels['savesentmessagein'] = 'Lagra sendt epost i'; $labels['dontsave'] = 'Ikkje lagra'; $labels['maxuploadsize'] = 'Maksimalt tillatte storleik på filar er $size'; - $labels['addcc'] = 'Legg til kopi'; $labels['addbcc'] = 'Legg til blindkopi'; $labels['addreplyto'] = 'Legg til svaradressa'; $labels['addfollowupto'] = 'Legg til oppfylgjing'; - -// mdn $labels['mdnrequest'] = 'Sendaren av denne meldinga ynskjer å få kvittering når du har lest meldinga. Ynskjer du å senda denne kvitteringa?'; $labels['receiptread'] = 'Svarkvittering (eposten-er-lest-kvittering)'; $labels['yourmessage'] = 'Dette er ein retur-kvittering for meldinga di.'; $labels['receiptnote'] = 'Hugs: Denne kvitteringa seier berre at meldinga di vart vist på mottakar sin datamaskin. Det er ingen garanti for at mottakaren faktisk har lese eller forstått innhaldet i meldinga.'; - -// address boook $labels['name'] = 'Visingsnamn'; $labels['firstname'] = 'Førenamn'; $labels['surname'] = 'Etternamn'; @@ -304,7 +264,6 @@ $labels['search'] = 'Søk'; $labels['advsearch'] = 'Avansert søk'; $labels['advanced'] = 'Avansert'; $labels['other'] = 'Andre'; - $labels['typehome'] = 'Heim'; $labels['typework'] = 'Jobb'; $labels['typeother'] = 'Andre'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Heimeside'; $labels['typeblog'] = 'Blogg'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Legg til felt...'; $labels['addcontact'] = 'Legg til ny kontakt'; $labels['editcontact'] = 'Redigere kontakt'; $labels['contacts'] = 'Kontakter'; $labels['contactproperties'] = 'Eigenskapar'; $labels['personalinfo'] = 'Personleg informasjon'; - $labels['edit'] = 'Redigere'; $labels['cancel'] = 'Avbryt'; $labels['save'] = 'Lagre'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Gi nytt namn'; $labels['addphoto'] = 'Legg til'; $labels['replacephoto'] = 'Erstatt'; $labels['uploadphoto'] = 'Last opp bilete'; - $labels['newcontact'] = 'Opprett nytt kontaktkort'; $labels['deletecontact'] = 'Slett valde kontaktar'; $labels['composeto'] = 'Ny melding til'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Lag ny kontaktgruppe'; $labels['grouprename'] = 'Endre namn på gruppe'; $labels['groupdelete'] = 'Slett gruppe'; $labels['groupremoveselected'] = 'Fjern valde kontaktar frå gruppe'; - $labels['previouspage'] = 'Førre side'; $labels['firstpage'] = 'Første side'; $labels['nextpage'] = 'Neste side'; $labels['lastpage'] = 'Siste side'; - $labels['group'] = 'Gruppe'; $labels['groups'] = 'Gruppar'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personlege adresser'; - $labels['searchsave'] = 'Lagre søk'; $labels['searchdelete'] = 'Slett søk'; - $labels['import'] = 'Importer'; $labels['importcontacts'] = 'Importer kontaktar'; $labels['importfromfile'] = 'Importer frå fil:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Legg til kontakter i adresseboka'; $labels['importreplace'] = 'Byt ut heile adresseboka'; $labels['importdesc'] = 'Du kan laste opp kontaktar frå ei eksisterande adressebok.
Vi støttar adressebøker i formata vCard og CSV (kommaseparert).'; $labels['done'] = 'Ferdig'; - -// settings $labels['settingsfor'] = 'Innstillingar for'; $labels['about'] = 'Om'; $labels['preferences'] = 'Innstillingar'; $labels['userpreferences'] = 'Brukarinnstillingar'; $labels['editpreferences'] = 'Redigere brukarinnstillingar'; - $labels['identities'] = 'Identitetar'; $labels['manageidentities'] = 'Administrere identitetar for denne kontoen'; $labels['newidentity'] = 'Ny identitet'; - $labels['newitem'] = 'Nytt element'; $labels['edititem'] = 'Redigere element'; - $labels['preferhtml'] = 'Føretrekk HTML'; $labels['defaultcharset'] = 'Standard karaktersett (charset)'; $labels['htmlmessage'] = 'HTML-melding'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Meldingar vidaresendast'; $labels['inline'] = 'i teksten'; $labels['asattachment'] = 'som vedlegg'; - $labels['folder'] = 'Mappe'; $labels['folders'] = 'Mapper'; $labels['foldername'] = 'Mappenamn'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Mappetype'; $labels['personalfolder'] = 'Privat mappe'; $labels['otherfolder'] = 'Annan brukar si mappe'; $labels['sharedfolder'] = 'Offentleg mappe'; - $labels['sortby'] = 'Sorter etter'; $labels['sortasc'] = 'Sorter stigande'; $labels['sortdesc'] = 'Sorter søkkjande'; $labels['undo'] = 'Gjer om'; - $labels['installedplugins'] = 'Installerte tillegg'; $labels['plugin'] = 'Tilleggsmodul'; $labels['version'] = 'Versjon'; $labels['source'] = 'Kjelde'; $labels['license'] = 'Lisens'; $labels['support'] = 'Få hjelp'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'UNicode'; $labels['english'] = 'Engelsk'; $labels['westerneuropean'] = 'Vest-europesik'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamesisk'; $labels['japanese'] = 'Japansk'; $labels['korean'] = 'Koreansk'; $labels['chinese'] = 'Kinesisk'; - ?> diff --git a/program/localization/nn_NO/messages.inc b/program/localization/nn_NO/messages.inc index 741b4cb20..586a4021a 100644 --- a/program/localization/nn_NO/messages.inc +++ b/program/localization/nn_NO/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Klarte ikkje laga/flytte mappa i vald overordn $messages['messagetoobig'] = 'Meldingsdelen er for stor til å prosesserast.'; $messages['attachmentvalidationerror'] = 'ÅTVARING: Dette vedlegget er mistenkjeleg fordi det er av ein type som ikkje stemmer med det som er deklarert i meldinga. Viss du ikkje stolar på avsendaren bør du ikkje opna det i nettlesaren. Det kan ha skadeleg innhald.

Venta: $expected; fann: $detected'; $messages['noscriptwarning'] = 'NB: Denne webmail-klienten krev JavaScript. Skru på JavaScript i nettlesaren din for å kunna bruka klienten.'; - ?> diff --git a/program/localization/pl_PL/csv2vcard.inc b/program/localization/pl_PL/csv2vcard.inc index ceb995517..52a77bfdb 100644 --- a/program/localization/pl_PL/csv2vcard.inc +++ b/program/localization/pl_PL/csv2vcard.inc @@ -16,13 +16,7 @@ +-----------------------------------------------------------------------+ */ -// This is a list of CSV column names specified in CSV file header -// These must be original texts used in Outlook/Thunderbird exported csv files -// Encoding UTF-8 - $map = array(); - -// MS Outlook 2010 $map['anniversary'] = "Rocznica"; $map['assistants_name'] = "Asystent"; $map['assistants_phone'] = "Telefon asystenta"; diff --git a/program/localization/pl_PL/labels.inc b/program/localization/pl_PL/labels.inc index d7b9cd2d4..052db602e 100644 --- a/program/localization/pl_PL/labels.inc +++ b/program/localization/pl_PL/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Witamy w $product'; $labels['username'] = 'Nazwa'; $labels['password'] = 'Hasło'; $labels['server'] = 'Serwer'; $labels['login'] = 'Zaloguj'; - -// taskbar $labels['logout'] = 'Wyloguj'; $labels['mail'] = 'Poczta'; $labels['settings'] = 'Ustawienia'; $labels['addressbook'] = 'Książka adresowa'; - -// mailbox names $labels['inbox'] = 'Odebrane'; $labels['drafts'] = 'Kopie robocze'; $labels['sent'] = 'Wysłane'; $labels['trash'] = 'Kosz'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Pokaż prawdziwe nazwy dla folderów specjalnych'; - -// message listing $labels['subject'] = 'Temat'; $labels['from'] = 'Od'; $labels['sender'] = 'Nadawca'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorytet'; $labels['organization'] = 'Organizacja'; $labels['readstatus'] = 'Przeczytano'; $labels['listoptions'] = 'Opcje listy...'; - $labels['mailboxlist'] = 'Foldery'; $labels['messagesfromto'] = 'Wiadomości od $from do $to z $count'; $labels['threadsfromto'] = 'Wątki od $from do $to z $count'; $labels['messagenrof'] = 'Wiadomość $nr z $count'; $labels['fromtoshort'] = '$from - $to z $count'; - $labels['copy'] = 'Kopiuj'; $labels['move'] = 'Przenieś'; $labels['moveto'] = 'Przenieś do...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Pobierz'; $labels['open'] = 'Otwórz'; $labels['showattachment'] = 'Pokaż'; $labels['showanyway'] = 'Pokaż'; - $labels['filename'] = 'Nazwa pliku'; $labels['filesize'] = 'Rozmiar pliku'; - $labels['addtoaddressbook'] = 'Dodaj do książki adresowej'; - -// weekdays short $labels['sun'] = 'Nd'; $labels['mon'] = 'Pn'; $labels['tue'] = 'Wt'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Śr'; $labels['thu'] = 'Czw'; $labels['fri'] = 'Pt'; $labels['sat'] = 'Sb'; - -// weekdays long $labels['sunday'] = 'Niedziela'; $labels['monday'] = 'Poniedziałek'; $labels['tuesday'] = 'Wtorek'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Środa'; $labels['thursday'] = 'Czwartek'; $labels['friday'] = 'Piątek'; $labels['saturday'] = 'Sobota'; - -// months short $labels['jan'] = 'sty'; $labels['feb'] = 'lut'; $labels['mar'] = 'mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Wrz'; $labels['oct'] = 'Paź'; $labels['nov'] = 'Lis'; $labels['dec'] = 'Gru'; - -// months long $labels['longjan'] = 'styczeń'; $labels['longfeb'] = 'luty'; $labels['longmar'] = 'marzec'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'wrzesień'; $labels['longoct'] = 'październik'; $labels['longnov'] = 'listopad'; $labels['longdec'] = 'grudzień'; - $labels['today'] = 'Dzisiaj'; - -// toolbar buttons $labels['refresh'] = 'Odśwież'; $labels['checkmail'] = 'Sprawdź skrzynkę'; $labels['compose'] = 'Utwórz'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Więcej akcji...'; $labels['more'] = 'Więcej'; $labels['back'] = 'Wstecz'; $labels['options'] = 'Ustawienia'; - $labels['select'] = 'Zaznacz'; $labels['all'] = 'Wszystkie'; $labels['none'] = 'Brak'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Rozwiń wszystkie'; $labels['expand-unread'] = 'Rozwiń nieprzeczytane'; $labels['collapse-all'] = 'Zwiń wszystkie'; $labels['threaded'] = 'Powątkowane'; - $labels['autoexpand_threads'] = 'Rozwijaj wątki'; $labels['do_expand'] = 'wszystkie'; $labels['expand_only_unread'] = 'tylko nieprzeczytane'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Kolumny'; $labels['listsorting'] = 'Porządek sortowania'; $labels['listorder'] = 'Kierunek sortowania'; $labels['listmode'] = 'Typ listy'; - $labels['folderactions'] = 'Działania na folderach...'; $labels['compact'] = 'Porządkuj'; $labels['empty'] = 'Opróżnij'; $labels['importmessages'] = 'Import wiadomości'; - $labels['quota'] = 'Użyte miejsce'; $labels['unknown'] = 'nieznane'; $labels['unlimited'] = 'bez limitu'; - $labels['quicksearch'] = 'Szybkie wyszukiwanie'; $labels['resetsearch'] = 'Wyczyść filtr'; $labels['searchmod'] = 'Parametry wyszukiwania'; $labels['msgtext'] = 'Cała wiadomość'; $labels['body'] = 'Treść'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Otwórz w nowym oknie'; $labels['emlsave'] = 'Pobierz (.eml)'; $labels['changeformattext'] = 'Wyświetl w formacie tekstowym'; $labels['changeformathtml'] = 'Wyświetl w formacie HTML'; - -// message compose $labels['editasnew'] = 'Edytuj jako nową'; $labels['send'] = 'Wyślij'; $labels['sendmessage'] = 'Wyślij teraz'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Potwierdzenie odbioru'; $labels['dsn'] = 'Status dostarczenia (DSN)'; $labels['mailreplyintro'] = 'W dniu $date, $sender napisał(a):'; $labels['originalmessage'] = 'Wiadomość oryginalna'; - $labels['editidents'] = 'Edytuj tożsamości'; $labels['spellcheck'] = 'Pisownia'; $labels['checkspelling'] = 'Sprawdź pisownię'; $labels['resumeediting'] = 'Zakończ sprawdzanie pisowni'; $labels['revertto'] = 'Powróć do'; - $labels['attach'] = 'Załącz'; $labels['attachments'] = 'Załączniki'; $labels['upload'] = 'Prześlij'; $labels['uploadprogress'] = '$percent ($current z $total)'; $labels['close'] = 'Zamknij'; $labels['messageoptions'] = 'Opcje wiadomości...'; - $labels['low'] = 'Bardzo niski'; $labels['lowest'] = 'Niski'; $labels['normal'] = 'Normalny'; $labels['high'] = 'Wysoki'; $labels['highest'] = 'Bardzo wysoki'; - $labels['nosubject'] = '(brak tematu)'; $labels['showimages'] = 'Wyświetl obrazki'; $labels['alwaysshow'] = 'Zawsze wyświetlaj obrazki od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'To jest kopia robocza wiadomości.'; $labels['andnmore'] = '$nr więcej...'; $labels['togglemoreheaders'] = 'Pokaż więcej nagłówków wiadomości'; $labels['togglefullheaders'] = 'Przełącz podgląd nagłówków wiadomości'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Zwykły tekst'; $labels['savesentmessagein'] = 'Zapisz wiadomość w'; $labels['dontsave'] = 'nie zapisuj'; $labels['maxuploadsize'] = 'Maksymalny rozmiar pliku to $size'; - $labels['addcc'] = 'Dodaj Cc'; $labels['addbcc'] = 'Dodaj Bcc'; $labels['addreplyto'] = 'Dodaj Reply-To'; $labels['addfollowupto'] = 'Dodaj Followup-To'; - -// mdn $labels['mdnrequest'] = 'Nadawca zażądał potwierdzenia przeczytania tej wiadomości. Czy chcesz go powiadomić?'; $labels['receiptread'] = 'Potwierdzenie otrzymania'; $labels['yourmessage'] = 'To jest potwierdzenie dostarczenia Twojej wiadomości'; $labels['receiptnote'] = 'Uwaga: To potwierdzenie dostarczenia wiadomości oznacza tylko, że wiadomość została wyświetlona na komputerze adresata. Nie ma żadnej gwarancji, że odbiorca przeczytał czy też zrozumiał treść wiadomości.'; - -// address boook $labels['name'] = 'Nazwa'; $labels['firstname'] = 'Imię'; $labels['surname'] = 'Nazwisko'; @@ -304,7 +264,6 @@ $labels['search'] = 'Szukaj'; $labels['advsearch'] = 'Wyszukiwanie zaawansowane'; $labels['advanced'] = 'Zaawansowane'; $labels['other'] = 'Inne'; - $labels['typehome'] = 'Dom'; $labels['typework'] = 'Praca'; $labels['typeother'] = 'Inne'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asystent'; $labels['typehomepage'] = 'Strona domowa'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Dodaj pole...'; $labels['addcontact'] = 'Dodaj nowy kontakt do książki adresowej'; $labels['editcontact'] = 'Edytuj kontakt'; $labels['contacts'] = 'Kontakty'; $labels['contactproperties'] = 'Właściwości'; $labels['personalinfo'] = 'Informacje osobiste'; - $labels['edit'] = 'Edytuj'; $labels['cancel'] = 'Anuluj'; $labels['save'] = 'Zapisz'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Zmień nazwę'; $labels['addphoto'] = 'Dodaj'; $labels['replacephoto'] = 'Zamień'; $labels['uploadphoto'] = 'Wyślij zdjęcie'; - $labels['newcontact'] = 'Dodaj nowy kontakt'; $labels['deletecontact'] = 'Usuń zaznaczone kontakty'; $labels['composeto'] = 'Utwórz wiadomość do wybranych kontaktów'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Utwórz nową grupę'; $labels['grouprename'] = 'Zmień nazwę grupy'; $labels['groupdelete'] = 'Usuń grupę'; $labels['groupremoveselected'] = 'Usuń wybrane kontakty z grupy'; - $labels['previouspage'] = 'Poprzednia strona'; $labels['firstpage'] = 'Pierwsza strona'; $labels['nextpage'] = 'Następna strona'; $labels['lastpage'] = 'Ostatnia strona'; - $labels['group'] = 'Grupa'; $labels['groups'] = 'Grupy'; $labels['listgroup'] = 'Członkowie grupy'; $labels['personaladrbook'] = 'Kontakty osobiste'; - $labels['searchsave'] = 'Zapisz wyszukiwanie'; $labels['searchdelete'] = 'Usuń wyszukiwanie'; - $labels['import'] = 'Importuj'; $labels['importcontacts'] = 'Import kontaktów'; $labels['importfromfile'] = 'Import z pliku:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Dodaj nowe kontakty do książki adresowej:'; $labels['importreplace'] = 'Zastąp całą książkę adresową'; $labels['importdesc'] = 'Import kontaktów z isniejącej książki adresowej.
Obecnie obsługiwany jest import w formacie vCard lub CSV (pola oddzielone przecinkiem).'; $labels['done'] = 'Wykonane'; - -// settings $labels['settingsfor'] = 'Ustawienia dla'; $labels['about'] = 'O programie'; $labels['preferences'] = 'Preferencje'; $labels['userpreferences'] = 'Preferencje użytkownika'; $labels['editpreferences'] = 'Edytuj preferencje'; - $labels['identities'] = 'Tożsamości'; $labels['manageidentities'] = 'Zarządzaj tożsamościami'; $labels['newidentity'] = 'Nowa tożsamość'; - $labels['newitem'] = 'Nowy'; $labels['edititem'] = 'Edytuj'; - $labels['preferhtml'] = 'Domyślny HTML'; $labels['defaultcharset'] = 'Domyślny zestaw znaków'; $labels['htmlmessage'] = 'Wiadomość HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Traktuj okna wyskakujące jako standardowe okna'; $labels['forwardmode'] = 'Przekazywanie wiadomości'; $labels['inline'] = 'w treści'; $labels['asattachment'] = 'jako załącznik'; - $labels['folder'] = 'Folder'; $labels['folders'] = 'Foldery'; $labels['foldername'] = 'Nazwa folderu'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Typ folderu'; $labels['personalfolder'] = 'Folder prywatny'; $labels['otherfolder'] = 'Folder innego użytkownika'; $labels['sharedfolder'] = 'Folder współdzielony'; - $labels['sortby'] = 'Sortuj wg'; $labels['sortasc'] = 'Rosnąco'; $labels['sortdesc'] = 'Malejąco'; $labels['undo'] = 'Cofnij'; - $labels['installedplugins'] = 'Zainstalowane wtyczki'; $labels['plugin'] = 'Wtyczka'; $labels['version'] = 'Wersja'; $labels['source'] = 'Źródła'; $labels['license'] = 'Licencja'; $labels['support'] = 'Wsparcie techniczne'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'uniwersalny'; $labels['english'] = 'angielski'; $labels['westerneuropean'] = 'zachodnioeuropejski'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'wietnamski'; $labels['japanese'] = 'japoński'; $labels['korean'] = 'koreański'; $labels['chinese'] = 'chiński'; - ?> diff --git a/program/localization/pl_PL/messages.inc b/program/localization/pl_PL/messages.inc index 3cac0c426..ebc3d134b 100644 --- a/program/localization/pl_PL/messages.inc +++ b/program/localization/pl_PL/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Nie można utworzyć/przenieść folderu w wyb $messages['messagetoobig'] = 'Ta część wiadomości jest zbyt duża aby ją przetworzyć.'; $messages['attachmentvalidationerror'] = 'UWAGA! Ten załącznik jest podejrzany ponieważ jego typ nie jest zgodny z typem zadeklarownym w wiadomości. Jeśli nie ufasz temu nadawcy nie powinieneś otwierać go w przeglądarce, bo może zawierać złośliwe oprogramowanie.

Spodziwany: $expected; znaleziono: $detected'; $messages['noscriptwarning'] = 'Uwaga: Usługa wymaga Javascriptu! Aby z niej skorzystać proszę włączyć obsługę języka Javascript w ustawieniach przeglądarki.'; - ?> diff --git a/program/localization/ps/labels.inc b/program/localization/ps/labels.inc old mode 100755 new mode 100644 index d5e513419..a49c5b3df --- a/program/localization/ps/labels.inc +++ b/program/localization/ps/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product ته ښه راغلاست'; $labels['username'] = 'کارن نوم'; $labels['password'] = 'پټنوم'; $labels['server'] = 'برابرونکی'; $labels['login'] = 'ننوتون'; - -// taskbar $labels['logout'] = 'وتون'; $labels['mail'] = 'برېښناليک'; $labels['settings'] = 'ځاني برابرونې'; $labels['addressbook'] = 'پتې کتاب'; - -// mailbox names $labels['inbox'] = 'راغلي ليکونه'; $labels['drafts'] = 'بارليک'; $labels['sent'] = 'لېږل شوي ليکونه'; $labels['trash'] = 'کثافت دانۍ'; $labels['junk'] = 'جنک'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'مضمون'; $labels['from'] = 'استوونکی'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'لومړيتوب'; $labels['organization'] = 'ټولنه'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'پوښۍ'; $labels['messagesfromto'] = 'له ټاکلي استوزو څخه ټاکلي شمېرل شوو استوزو ته'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'له $nr ځخه استوزو $count استوزو ته'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'لمېسل'; $labels['move'] = 'Move'; $labels['moveto'] = 'ته خوځوي'; @@ -68,13 +59,9 @@ $labels['download'] = 'ښکته کول'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'فايل نوم'; $labels['filesize'] = 'فايل کچه'; - $labels['addtoaddressbook'] = 'د پتو کتاب ته يې ورزيات کړئ'; - -// weekdays short $labels['sun'] = 'يوه نۍ'; $labels['mon'] = 'دوه نۍ'; $labels['tue'] = 'درې نۍ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'څلورنۍ'; $labels['thu'] = 'پنځنۍ'; $labels['fri'] = 'جمعه'; $labels['sat'] = 'نۍ'; - -// weekdays long $labels['sunday'] = 'يوه نۍ'; $labels['monday'] = 'دوه نۍ'; $labels['tuesday'] = 'درې نۍ'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'منځنۍ'; $labels['thursday'] = 'پنځنۍ'; $labels['friday'] = 'جمعه'; $labels['saturday'] = 'نۍ'; - -// months short $labels['jan'] = 'حنوري'; $labels['feb'] = 'فبروري'; $labels['mar'] = 'مارچ'; @@ -105,8 +88,6 @@ $labels['sep'] = 'سپتمپر'; $labels['oct'] = 'اکتوبر'; $labels['nov'] = 'نومبر'; $labels['dec'] = 'ډسمبر'; - -// months long $labels['longjan'] = 'جنوري'; $labels['longfeb'] = 'فبروري'; $labels['longmar'] = 'مارچ'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'سپتمبر'; $labels['longoct'] = 'اکتوبر'; $labels['longnov'] = 'نومبر'; $labels['longdec'] = 'ډسمبر'; - $labels['today'] = 'نن'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'نوي استوزي وګوره'; $labels['compose'] = 'استوزه وليکه'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'ټاکل'; $labels['all'] = 'ټول'; $labels['none'] = 'هېڅ'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'کېښکلی'; $labels['empty'] = 'تش'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'ټيکلي لارښود'; $labels['unknown'] = 'نامعلوم'; $labels['unlimited'] = 'بي کچه'; - $labels['quicksearch'] = 'ژر پلټنه'; $labels['resetsearch'] = 'د پلټنې بياسمون'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'په نوي کړکۍ کې پرانيزه'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'اوس يې واستوه'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'د رسليک راګرځېدل'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ليکدود کتنه'; $labels['resumeediting'] = 'کارمخينې سمونه'; $labels['revertto'] = 'ته بېرته اړول'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'نښلني'; $labels['upload'] = 'پورته کول'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'بندول'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'ټيټ'; $labels['lowest'] = 'خورا ټيټ'; $labels['normal'] = 'نورمال'; $labels['high'] = 'لوړ'; $labels['highest'] = 'خورا لوړ'; - $labels['nosubject'] = 'هېڅ موضوع'; $labels['showimages'] = 'انځورونه وښيه'; $labels['alwaysshow'] = 'تل له $استوونکي څخه انځورونه وښيه'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'ايچ ټی ايمل ال'; $labels['plaintoggle'] = 'ساده متن'; $labels['savesentmessagein'] = 'استول شوي استوزه په خوندي کړه'; $labels['dontsave'] = 'مه ساته'; $labels['maxuploadsize'] = 'لږترلږه د اجازه شوي فايل کچه $وي'; - $labels['addcc'] = 'څرګندليک'; $labels['addbcc'] = 'پټليک'; $labels['addreplyto'] = 'ته ورزيات کړه'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'ددې استوزي استوونکی پوښتي چېد استوزي لوستلو سره سم تاسې خبر کړي،. غواړئ چې استوونکی خبرشي؟'; $labels['receiptread'] = 'رسليک راګرځېدل (لوستل'; $labels['yourmessage'] = 'دا رسليک راګرځېدل ستاسې استوزي لپاره دی'; $labels['receiptnote'] = 'يادونه: دا رسليک تاسې ته يوازې ددې خبرتيا درکوي چې کله استوزی د ترلاسه کوونکي په کمپيوټر کې څرګند شي، ددې هيڅ ډاډګيرنه نشته چې ترلاسه کوونکي د استوزي متن لوستی او يا پرې پوه شوی دی'; - -// address boook $labels['name'] = 'نوم ښوونه'; $labels['firstname'] = 'نوم'; $labels['surname'] = 'کورنی نوم'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'نوی اړيکلوری ورزيات کړه'; $labels['editcontact'] = 'اړيکلوري سمون'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'سمون'; $labels['cancel'] = 'لري کول'; $labels['save'] = 'ساتل'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'نوي اړيکلوري کارټ جوړ کړه'; $labels['deletecontact'] = 'ټاکل شوي اړيکلوري ړنګ کړه'; $labels['composeto'] = 'ته ليک وليکه'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'پخوانی غونډ وښيه'; $labels['firstpage'] = 'لومړی غونډ وښيه'; $labels['nextpage'] = 'ورپسې غونډ وښيه'; $labels['lastpage'] = 'پای غونډ وښيه'; - $labels['group'] = 'Group'; $labels['groups'] = 'ډلې'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'ځاني پتې'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'رانقلول'; $labels['importcontacts'] = 'اړيکلوري نقل کړئ'; $labels['importfromfile'] = 'له فايل څخه رانقل کړئ'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ټول ادرس کتاب بدل کړئ'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'ترسره شو'; - -// settings $labels['settingsfor'] = 'لپاره برابرونې'; $labels['about'] = 'About'; $labels['preferences'] = 'غورونې'; $labels['userpreferences'] = 'کارن غورونې'; $labels['editpreferences'] = 'د کارن غورونو سمون'; - $labels['identities'] = 'پېژندنې'; $labels['manageidentities'] = 'ددې حساب پېژندنو برابرول'; $labels['newidentity'] = 'نوي پېژندنه'; - $labels['newitem'] = 'نوی توک'; $labels['edititem'] = 'توک سمون'; - $labels['preferhtml'] = 'ايچ ټي ام ايل ښوون'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ايچ ټي ام ايل استوزه'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'پوښۍ'; $labels['folders'] = 'پوښۍ'; $labels['foldername'] = 'پوښۍ نوم'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'اڼل'; $labels['sortasc'] = 'له پورته نه ښکته خوا ته برابرول'; $labels['sortdesc'] = 'له ښکته نه پورته خوا ته برابرول'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'بي'; $labels['KB'] = 'کي بي'; $labels['MB'] = 'ام بي'; $labels['GB'] = 'جي بي'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ps/messages.inc b/program/localization/ps/messages.inc old mode 100755 new mode 100644 index 50c1849bd..d8774d3db --- a/program/localization/ps/messages.inc +++ b/program/localization/ps/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/pt_BR/labels.inc b/program/localization/pt_BR/labels.inc index 3c486d5ad..1ff7e2b77 100644 --- a/program/localization/pt_BR/labels.inc +++ b/program/localization/pt_BR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Usuário'; $labels['password'] = 'Senha'; $labels['server'] = 'Servidor'; $labels['login'] = 'Entrar'; - -// taskbar $labels['logout'] = 'Sair'; $labels['mail'] = 'E-mail'; $labels['settings'] = 'Configurações'; $labels['addressbook'] = 'Catálogo de endereços'; - -// mailbox names $labels['inbox'] = 'Caixa de entrada'; $labels['drafts'] = 'Rascunhos'; $labels['sent'] = 'Enviados'; $labels['trash'] = 'Lixeira'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Exibir o nome real das pastas de sistema'; - -// message listing $labels['subject'] = 'Assunto'; $labels['from'] = 'De'; $labels['sender'] = 'Remetente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridade'; $labels['organization'] = 'Organização'; $labels['readstatus'] = 'Status de leitura'; $labels['listoptions'] = 'Lista de opções...'; - $labels['mailboxlist'] = 'Pastas'; $labels['messagesfromto'] = 'Mensagens $from - $to de $count'; $labels['threadsfromto'] = 'Tópicos $from - $to de $count'; $labels['messagenrof'] = 'Mensagem $nr de $count'; $labels['fromtoshort'] = '$from - $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover para...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Baixar'; $labels['open'] = 'Abrir'; $labels['showattachment'] = 'Exibir'; $labels['showanyway'] = 'Exibir mesmo assim'; - $labels['filename'] = 'Nome do arquivo'; $labels['filesize'] = 'Tamanho'; - $labels['addtoaddressbook'] = 'Incluir no catálogo de endereços'; - -// weekdays short $labels['sun'] = 'Dom.'; $labels['mon'] = 'Seg.'; $labels['tue'] = 'Ter.'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Qua.'; $labels['thu'] = 'Qui.'; $labels['fri'] = 'Sex.'; $labels['sat'] = 'Sáb.'; - -// weekdays long $labels['sunday'] = 'Domingo'; $labels['monday'] = 'Segunda-feira'; $labels['tuesday'] = 'Terça-feira'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Quarta-feira'; $labels['thursday'] = 'Quinta-feira'; $labels['friday'] = 'Sexta-feira'; $labels['saturday'] = 'Sábado'; - -// months short $labels['jan'] = 'Jan.'; $labels['feb'] = 'Fev.'; $labels['mar'] = 'Mar.'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Set.'; $labels['oct'] = 'Out.'; $labels['nov'] = 'Nov.'; $labels['dec'] = 'Dez.'; - -// months long $labels['longjan'] = 'Janeiro'; $labels['longfeb'] = 'Fevereiro'; $labels['longmar'] = 'Março'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Setembro'; $labels['longoct'] = 'Outubro'; $labels['longnov'] = 'Novembro'; $labels['longdec'] = 'Dezembro'; - $labels['today'] = 'Hoje'; - -// toolbar buttons $labels['refresh'] = 'Atualizar'; $labels['checkmail'] = 'Verificar se há novas mensagens'; $labels['compose'] = 'Criar email'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mais ações...'; $labels['more'] = 'Mais'; $labels['back'] = 'Voltar'; $labels['options'] = 'Opções'; - $labels['select'] = 'Selecionar'; $labels['all'] = 'Todas'; $labels['none'] = 'Nenhuma'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandir Tudo'; $labels['expand-unread'] = 'Expandir Não Lidas'; $labels['collapse-all'] = 'Recolher Tudo'; $labels['threaded'] = 'Agrupado'; - $labels['autoexpand_threads'] = 'Expandir mensagens agrupadas'; $labels['do_expand'] = 'todos os grupos'; $labels['expand_only_unread'] = 'somente com mensagem(s) não lidas'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Lista de colunas'; $labels['listsorting'] = 'Coluna para ordenação'; $labels['listorder'] = 'Ordem da classificação'; $labels['listmode'] = 'Visualização em lista'; - $labels['folderactions'] = 'Ações para as pastas...'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Esvaziar'; $labels['importmessages'] = 'Importar mensagens'; - $labels['quota'] = 'Uso de disco'; $labels['unknown'] = 'desconhecido'; $labels['unlimited'] = 'ilimitado'; - $labels['quicksearch'] = 'Pesquisa rápida'; $labels['resetsearch'] = 'Limpar pesquisa'; $labels['searchmod'] = 'Opções da pesquisa'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Mensagem inteira'; $labels['body'] = 'Conteúdo'; $labels['type'] = 'Tipo'; $labels['namex'] = 'Nome'; - $labels['openinextwin'] = 'Abrir em nova janela'; $labels['emlsave'] = 'Baixar (formato .eml)'; $labels['changeformattext'] = 'Exibir em formato de texto simples'; $labels['changeformathtml'] = 'Exibir com formatação HTML'; - -// message compose $labels['editasnew'] = 'Editar como novo'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar agora'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Confirmação de recebimento'; $labels['dsn'] = 'Recibo de entrega'; $labels['mailreplyintro'] = 'Em $date, $sender escreveu:'; $labels['originalmessage'] = 'Mensagem original'; - $labels['editidents'] = 'Editar identidades'; $labels['spellcheck'] = 'Revisar'; $labels['checkspelling'] = 'Verificar ortografia'; $labels['resumeediting'] = 'Continuar a edição'; $labels['revertto'] = 'Reverter para'; - $labels['attach'] = 'Anexar'; $labels['attachments'] = 'Anexos'; $labels['upload'] = 'Enviar arquivo'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Fechar'; $labels['messageoptions'] = 'Opções da mensagem...'; - $labels['low'] = 'Baixa'; $labels['lowest'] = 'Mais baixa'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alta'; $labels['highest'] = 'Mais alta'; - $labels['nosubject'] = '(sem assunto)'; $labels['showimages'] = 'Exibir imagens'; $labels['alwaysshow'] = 'Sempre exibir imagens de $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Esta é uma mensagem salva como rascunho.'; $labels['andnmore'] = '$nr mais...'; $labels['togglemoreheaders'] = 'Exibir informações adicionais da mensagem (cabeçalhos)'; $labels['togglefullheaders'] = 'Exibir cabeçalho original da mensagem'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto simples'; $labels['savesentmessagein'] = 'Salvar mensagens enviadas em'; $labels['dontsave'] = 'não salvar'; $labels['maxuploadsize'] = 'Tamanho máximo permitido do arquivo é $size'; - $labels['addcc'] = 'Adicionar Cópia'; $labels['addbcc'] = 'Adicionar Cópia Oculta'; $labels['addreplyto'] = 'Adicionar Endereço de Resposta'; $labels['addfollowupto'] = 'Adicionar Endereço de Encaminhamento'; - -// mdn $labels['mdnrequest'] = 'O remetente desta mensagem deseja ser notificado quando você ler esta mensagem. Você permite o envio desta notificação?'; $labels['receiptread'] = 'Confirmação de Leitura (exibida)'; $labels['yourmessage'] = 'Esta é uma confirmação de leitura da sua mensagem'; $labels['receiptnote'] = 'Nota: Esta confirmação de leitura somente informa que a mensagem foi aberta no computador do destinatário. Não há garantia que o destinatário tenha lido ou compreendido o conteúdo da mensagem.'; - -// address boook $labels['name'] = 'Nome'; $labels['firstname'] = 'Primeiro Nome'; $labels['surname'] = 'Sobrenome'; @@ -305,7 +265,6 @@ $labels['search'] = 'Pesquisar'; $labels['advsearch'] = 'Pesquisa Avançada'; $labels['advanced'] = 'Avançado'; $labels['other'] = 'Outro'; - $labels['typehome'] = 'Residencial'; $labels['typework'] = 'Trabalho'; $labels['typeother'] = 'Outro'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Assistente'; $labels['typehomepage'] = 'Página pessoal'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Adicionar campo...'; $labels['addcontact'] = 'Adicionar novo contato'; $labels['editcontact'] = 'Editar contato'; $labels['contacts'] = 'Contatos'; $labels['contactproperties'] = 'Propriedades do contato'; $labels['personalinfo'] = 'Informações pessoais'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Cancelar'; $labels['save'] = 'Salvar'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Renomear'; $labels['addphoto'] = 'Adicionar'; $labels['replacephoto'] = 'Substituir'; $labels['uploadphoto'] = 'Enviar foto'; - $labels['newcontact'] = 'Criar novo contato'; $labels['deletecontact'] = 'Exclui os contatos selecionados'; $labels['composeto'] = 'Compor mensagem para'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Criar novo grupo de contatos'; $labels['grouprename'] = 'Renomear grupo'; $labels['groupdelete'] = 'Excluir grupo'; $labels['groupremoveselected'] = 'Remover os contatos selecionados do grupo'; - $labels['previouspage'] = 'Página Anterior'; $labels['firstpage'] = 'Primeira Página'; $labels['nextpage'] = 'Próxima Página'; $labels['lastpage'] = 'Última Página'; - $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'Listar membros do grupo'; $labels['personaladrbook'] = 'Endereços pessoais'; - $labels['searchsave'] = 'Salvar pesquisa'; $labels['searchdelete'] = 'Excluir pesquisa'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contatos'; $labels['importfromfile'] = 'Importar do arquivo:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Todos (criar grupo se necessário)'; $labels['importgroupsexisting'] = 'Somente para grupos existentes'; $labels['importdesc'] = 'Você pode enviar contatos de um catálogo de endereços existente.
Os contatos devem ser enviados no formato vCard ou CSV (valores separados por vírgula).'; $labels['done'] = 'Concluído'; - -// settings $labels['settingsfor'] = 'Configurações para'; $labels['about'] = 'Sobre'; $labels['preferences'] = 'Preferências'; $labels['userpreferences'] = 'Preferências do usuário'; $labels['editpreferences'] = 'Editar preferências do usuário'; - $labels['identities'] = 'Identidades'; $labels['manageidentities'] = 'Gerenciar identidades desta conta'; $labels['newidentity'] = 'Nova identidade'; - $labels['newitem'] = 'Novo item'; $labels['edititem'] = 'Editar item'; - $labels['preferhtml'] = 'Exibir em HTML'; $labels['defaultcharset'] = 'Conjunto padrão de caracteres'; $labels['htmlmessage'] = 'Mensagem HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Usar popups como janelas do navegador'; $labels['forwardmode'] = 'Encaminhamento de mensagens'; $labels['inline'] = 'Em linha (no corpo da mensagem)'; $labels['asattachment'] = 'como anexo'; - $labels['folder'] = 'Pasta'; $labels['folders'] = 'Pastas'; $labels['foldername'] = 'Nome da pasta'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Tipo de Pasta'; $labels['personalfolder'] = 'Pasta Particular'; $labels['otherfolder'] = 'Pasta de outro Usuário'; $labels['sharedfolder'] = 'Pasta Pública'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Ascendente'; $labels['sortdesc'] = 'Descendente'; $labels['undo'] = 'Desfazer'; - $labels['installedplugins'] = 'Plugins instalados'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versão'; $labels['source'] = 'Fonte'; $labels['license'] = 'Licença'; $labels['support'] = 'Obter suporte'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglês'; $labels['westerneuropean'] = 'Oeste Europeu'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Japonês'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chinês'; - ?> diff --git a/program/localization/pt_BR/messages.inc b/program/localization/pt_BR/messages.inc index 45b835d44..dd64dee63 100644 --- a/program/localization/pt_BR/messages.inc +++ b/program/localization/pt_BR/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Sem permissão para criar/mover a pasta dentro $messages['messagetoobig'] = 'A mensagem é muito grande para ser processada.'; $messages['attachmentvalidationerror'] = 'ATENÇÃO! Este anexo é suspeito porque seu tipo não combina com o tipo declarado na mensagem. Se você não confia no remetente, não deveria abri-lo no navegador porque pode conter conteúdo malicioso.

Esperado: $expected; encontrado: $detected'; $messages['noscriptwarning'] = 'Aviso: Este webmail utiliza Javascript, habilite-o nas configurações de seu navegador.'; - ?> diff --git a/program/localization/pt_PT/labels.inc b/program/localization/pt_PT/labels.inc index cc4c534e0..90b5790bf 100644 --- a/program/localization/pt_PT/labels.inc +++ b/program/localization/pt_PT/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Utilizador'; $labels['password'] = 'Palavra-passe'; $labels['server'] = 'Servidor'; $labels['login'] = 'Entrar'; - -// taskbar $labels['logout'] = 'Sair'; $labels['mail'] = 'Mensagens'; $labels['settings'] = 'Definições'; $labels['addressbook'] = 'Contactos'; - -// mailbox names $labels['inbox'] = 'A Receber'; $labels['drafts'] = 'Rascunhos'; $labels['sent'] = 'Itens Enviados'; $labels['trash'] = 'Reciclagem'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Mostrar nomes reais para as pastas especiais'; - -// message listing $labels['subject'] = 'Assunto'; $labels['from'] = 'Remetente'; $labels['sender'] = 'Remetente'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioridade'; $labels['organization'] = 'Organização'; $labels['readstatus'] = 'Estado de leitura'; $labels['listoptions'] = 'Lista de opções...'; - $labels['mailboxlist'] = 'Pastas'; $labels['messagesfromto'] = 'Mensagens de $from a $to de $count'; $labels['threadsfromto'] = 'Tópicos de $from a $to de $count'; $labels['messagenrof'] = 'Mensagem $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; - $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'mover para...'; @@ -68,13 +59,9 @@ $labels['download'] = 'descarregar'; $labels['open'] = 'Abrir'; $labels['showattachment'] = 'Mostrar'; $labels['showanyway'] = 'Mostrar na mesma'; - $labels['filename'] = 'Ficheiro'; $labels['filesize'] = 'Tamanho'; - $labels['addtoaddressbook'] = 'Adicionar à lista de contactos'; - -// weekdays short $labels['sun'] = 'Dom'; $labels['mon'] = 'Seg'; $labels['tue'] = 'Ter'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Qua'; $labels['thu'] = 'Qui'; $labels['fri'] = 'Sex'; $labels['sat'] = 'Sáb'; - -// weekdays long $labels['sunday'] = 'Domingo'; $labels['monday'] = 'Segunda-feira'; $labels['tuesday'] = 'Terça-feira'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Quarta-feira'; $labels['thursday'] = 'Quinta-feira'; $labels['friday'] = 'Sexta-feira'; $labels['saturday'] = 'Sábado'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Fev'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Set'; $labels['oct'] = 'Out'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dez'; - -// months long $labels['longjan'] = 'Janeiro'; $labels['longfeb'] = 'Fevereiro'; $labels['longmar'] = 'Março'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Setembro'; $labels['longoct'] = 'Outubro'; $labels['longnov'] = 'Novembro'; $labels['longdec'] = 'Dezembro'; - $labels['today'] = 'Hoje'; - -// toolbar buttons $labels['refresh'] = 'Actualizar'; $labels['checkmail'] = 'Verificar existência de novas mensagens'; $labels['compose'] = 'Nova mensagem'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mais acções...'; $labels['more'] = 'Mais'; $labels['back'] = 'Voltar'; $labels['options'] = 'Opções'; - $labels['select'] = 'Seleccionar'; $labels['all'] = 'Todas'; $labels['none'] = 'Nenhum'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expandir tudo'; $labels['expand-unread'] = 'Expandir não lidas'; $labels['collapse-all'] = 'Recolher tudo'; $labels['threaded'] = 'Agrupar tópicos'; - $labels['autoexpand_threads'] = 'Expandir tópicos das mensagens'; $labels['do_expand'] = 'todos os tópicos'; $labels['expand_only_unread'] = 'só com mensagens não lidas'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Lista de colunas'; $labels['listsorting'] = 'Ordenar por'; $labels['listorder'] = 'Ordenação'; $labels['listmode'] = 'Modo de visualização'; - $labels['folderactions'] = 'Acções para pastas...'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Esvaziar'; $labels['importmessages'] = 'Importar mensagens'; - $labels['quota'] = 'Espaço utilizado'; $labels['unknown'] = 'desconhecido'; $labels['unlimited'] = 'ilimitado'; - $labels['quicksearch'] = 'Pesquisa rápida'; $labels['resetsearch'] = 'Limpar pesquisa'; $labels['searchmod'] = 'Pesquisar em'; $labels['msgtext'] = 'Mensagem completa'; $labels['body'] = 'Corpo'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Abrir numa nova janela'; $labels['emlsave'] = 'Guardar como (.eml)'; $labels['changeformattext'] = 'Mostrar em formato de texto simples'; $labels['changeformathtml'] = 'Mostrar em formato HTML'; - -// message compose $labels['editasnew'] = 'Editar como nova'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Recibo de leitura'; $labels['dsn'] = 'Recibo de entrega'; $labels['mailreplyintro'] = 'Em $date, $sender escreveu:'; $labels['originalmessage'] = 'Mensagem Original'; - $labels['editidents'] = 'Editar entidades'; $labels['spellcheck'] = 'Corrector Ortográfico'; $labels['checkspelling'] = 'Verificar ortografia'; $labels['resumeediting'] = 'Continuar a edição'; $labels['revertto'] = 'Reverter para'; - $labels['attach'] = 'Anexar'; $labels['attachments'] = 'Anexos'; $labels['upload'] = 'Carregar'; $labels['uploadprogress'] = '$percent ($current de $total)'; $labels['close'] = 'Fechar'; $labels['messageoptions'] = 'Opções de mensagens...'; - $labels['low'] = 'Baixa'; $labels['lowest'] = 'Muito baixa'; $labels['normal'] = 'Normal'; $labels['high'] = 'Alta'; $labels['highest'] = 'Muito alta'; - $labels['nosubject'] = '(sem assunto)'; $labels['showimages'] = 'Mostrar imagens'; $labels['alwaysshow'] = 'Mostrar sempre imagens a partir de $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Esta é uma mensagem de rascunho.'; $labels['andnmore'] = '$nr mais...'; $labels['togglemoreheaders'] = 'Mostrar cabeçalhos adicionais da mensagem'; $labels['togglefullheaders'] = 'Mostrar cabeçalho original da mensagem'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto simples'; $labels['savesentmessagein'] = 'Guardar mensagem enviada em'; $labels['dontsave'] = 'não guardar'; $labels['maxuploadsize'] = 'Tamanho máximo permitido do ficheiro é $size'; - $labels['addcc'] = 'Adicionar Cc'; $labels['addbcc'] = 'Adicionar Bcc'; $labels['addreplyto'] = 'Adicionar Responder para'; $labels['addfollowupto'] = 'Adicionar Reencaminhar para'; - -// mdn $labels['mdnrequest'] = 'O remetente desta mensagem pediu para ser notificado quando esta mensagem fosse lida. Deseja enviar uma notificação?'; $labels['receiptread'] = 'Recibo de leitura'; $labels['yourmessage'] = 'Isto é um recibo de leitura da sua mensagem'; $labels['receiptnote'] = 'Nota: este recibo apenas indica que a mensagem foi aberta pelo destinatário. Não garante que a mensagem foi lida ou compreendida.'; - -// address boook $labels['name'] = 'Nome completo'; $labels['firstname'] = 'Primeiro nome'; $labels['surname'] = 'Apelido'; @@ -304,7 +264,6 @@ $labels['search'] = 'Pesquisar'; $labels['advsearch'] = 'Pesquisa avançada'; $labels['advanced'] = 'Pesquisa avançada'; $labels['other'] = 'Outro'; - $labels['typehome'] = 'Residência'; $labels['typework'] = 'Empresa'; $labels['typeother'] = 'Outro'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistente'; $labels['typehomepage'] = 'Página Inicial'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Perfil'; - $labels['addfield'] = 'Adicionar campo...'; $labels['addcontact'] = 'Criar novo contacto'; $labels['editcontact'] = 'Editar contacto'; $labels['contacts'] = 'Contactos'; $labels['contactproperties'] = 'Dados do contacto'; $labels['personalinfo'] = 'Informação pessoal'; - $labels['edit'] = 'Editar'; $labels['cancel'] = 'Cancelar'; $labels['save'] = 'Guardar'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Renomear'; $labels['addphoto'] = 'Adicionar'; $labels['replacephoto'] = 'Substituir'; $labels['uploadphoto'] = 'Carregar foto'; - $labels['newcontact'] = 'Criar novo contacto'; $labels['deletecontact'] = 'Eliminar contacto(s) seleccionado(s)'; $labels['composeto'] = 'Nova mensagem para'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Criar novo grupo de contactos'; $labels['grouprename'] = 'Renomear grupo'; $labels['groupdelete'] = 'Eliminar grupo'; $labels['groupremoveselected'] = 'Remover o(s) contacto(s) seleccionado(s) do grupo'; - $labels['previouspage'] = 'Página anterior'; $labels['firstpage'] = 'Primeira página'; $labels['nextpage'] = 'Página seguinte'; $labels['lastpage'] = 'Última página'; - $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; $labels['listgroup'] = 'Lista de membros do grupo'; $labels['personaladrbook'] = 'Endereços pessoais'; - $labels['searchsave'] = 'Guardar pesquisa'; $labels['searchdelete'] = 'Eliminar pesquisa'; - $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importação de contactos'; $labels['importfromfile'] = 'Importar do ficheiro:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Adicionar novo contacto ao livro de endereços:'; $labels['importreplace'] = 'Substituir todo o livro de endereços.'; $labels['importdesc'] = 'Pode enviar/carregar contactos de um livro de endereços existente.
Neste momento suportamos a importação nos seguintes formatos: vCard ou CSV (valores separados por vírgula).'; $labels['done'] = 'Terminado'; - -// settings $labels['settingsfor'] = 'Configurações para'; $labels['about'] = 'Acerca'; $labels['preferences'] = 'Preferências'; $labels['userpreferences'] = 'Preferências do utilizador'; $labels['editpreferences'] = 'Editar preferências do utilizador'; - $labels['identities'] = 'Identidades'; $labels['manageidentities'] = 'Gerir identidades para esta conta'; $labels['newidentity'] = 'Nova identidade'; - $labels['newitem'] = 'Novo item'; $labels['edititem'] = 'Editar item'; - $labels['preferhtml'] = 'Mostrar mensagens em HTML'; $labels['defaultcharset'] = 'Conjunto de caracteres predefinido'; $labels['htmlmessage'] = 'Mensagem em HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Lidar com popups como janelas padrão'; $labels['forwardmode'] = 'Reencaminhamento de mensagens'; $labels['inline'] = 'em linha'; $labels['asattachment'] = 'como anexo'; - $labels['folder'] = 'Pasta'; $labels['folders'] = 'Pastas'; $labels['foldername'] = 'Nome da pasta'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tipo de pasta'; $labels['personalfolder'] = 'Pasta privada'; $labels['otherfolder'] = 'Outro tipo de pasta'; $labels['sharedfolder'] = 'Pasta pública'; - $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Ordenação Ascendente'; $labels['sortdesc'] = 'Ordenação Descendente'; $labels['undo'] = 'Anular'; - $labels['installedplugins'] = 'Plugins instalados'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versão'; $labels['source'] = 'Fonte'; $labels['license'] = 'Licença'; $labels['support'] = 'Obter suporte'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Inglês'; $labels['westerneuropean'] = 'Europa Ocidental'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamita'; $labels['japanese'] = 'Japonês'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chinês'; - ?> diff --git a/program/localization/pt_PT/messages.inc b/program/localization/pt_PT/messages.inc index f0855096e..5f54a0d4b 100644 --- a/program/localization/pt_PT/messages.inc +++ b/program/localization/pt_PT/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Não é possível criar/mover esta pasta para $messages['messagetoobig'] = 'A mensagem é demasiado grande para ser processada.'; $messages['attachmentvalidationerror'] = 'ATENÇÃO! Este anexo é suspeito porque o seu tipo não coincide com o tipo declarado na mensagem. Se não confiar no remetente, não o deve abrir no navegador, pois pode ter conteúdos maliciosos.

Esperado: $expected; Encontrado: $detected'; $messages['noscriptwarning'] = 'Aviso: Este serviço de webmail utiliza Javascript! Para o poder utilizar, active o Javascript nas definições do seu navegador.'; - ?> diff --git a/program/localization/ro_RO/labels.inc b/program/localization/ro_RO/labels.inc index c357aabeb..6d9d0a2dc 100644 --- a/program/localization/ro_RO/labels.inc +++ b/program/localization/ro_RO/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Bine aţi venit la $product'; $labels['username'] = 'Utilizator'; $labels['password'] = 'Parolă'; $labels['server'] = 'Server'; $labels['login'] = 'Autentificare'; - -// taskbar $labels['logout'] = 'Deconectare'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Setări personale'; $labels['addressbook'] = 'Agendă'; - -// mailbox names $labels['inbox'] = 'Primite'; $labels['drafts'] = 'Ciorne'; $labels['sent'] = 'Trimise'; $labels['trash'] = 'Gunoi'; $labels['junk'] = 'Spam'; $labels['show_real_foldernames'] = 'Arata numele reale pentru folderele speciale'; - -// message listing $labels['subject'] = 'Subiect'; $labels['from'] = 'Expeditor'; $labels['sender'] = 'Expeditor'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritate'; $labels['organization'] = 'Organizaţie'; $labels['readstatus'] = 'Citit/Necitit'; $labels['listoptions'] = 'Listează opţiunile...'; - $labels['mailboxlist'] = 'Dosare'; $labels['messagesfromto'] = 'Mesaje de la $from până la $to din $count'; $labels['threadsfromto'] = 'Grupuri de la $from până la $to din $count'; $labels['messagenrof'] = 'Mesajul $nr din $count'; $labels['fromtoshort'] = '$from - $to din $count'; - $labels['copy'] = 'Copiază'; $labels['move'] = 'Mută'; $labels['moveto'] = 'Mută in...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Descarcă'; $labels['open'] = 'Deschide'; $labels['showattachment'] = 'Arată'; $labels['showanyway'] = 'Arată oricum'; - $labels['filename'] = 'Nume fişier'; $labels['filesize'] = 'Mărime fişier'; - $labels['addtoaddressbook'] = 'Adaugă în agendă'; - -// weekdays short $labels['sun'] = 'Dum'; $labels['mon'] = 'Lun'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mie'; $labels['thu'] = 'Joi'; $labels['fri'] = 'Vin'; $labels['sat'] = 'Sâm'; - -// weekdays long $labels['sunday'] = 'Duminică'; $labels['monday'] = 'Luni'; $labels['tuesday'] = 'Marţi'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Miercuri'; $labels['thursday'] = 'Joi'; $labels['friday'] = 'Vineri'; $labels['saturday'] = 'Sâmbătă'; - -// months short $labels['jan'] = 'Ian'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Noi'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Ianuarie'; $labels['longfeb'] = 'Februarie'; $labels['longmar'] = 'Martie'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Septembrie'; $labels['longoct'] = 'Octombrie'; $labels['longnov'] = 'Noiembrie'; $labels['longdec'] = 'Decembrie'; - $labels['today'] = 'Astăzi'; - -// toolbar buttons $labels['refresh'] = 'Actualizează'; $labels['checkmail'] = 'Verifică mesaje noi'; $labels['compose'] = 'Scrie un mesaj'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Mai multe acțiuni...'; $labels['more'] = 'Mai multe'; $labels['back'] = 'Înapoi'; $labels['options'] = 'Opţiuni'; - $labels['select'] = 'Selectează'; $labels['all'] = 'Toate'; $labels['none'] = 'Niciunul'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Extinde toate'; $labels['expand-unread'] = 'Extinde necitite'; $labels['collapse-all'] = 'Compactează toate'; $labels['threaded'] = 'Grupate'; - $labels['autoexpand_threads'] = 'Extinde mesajele grupate'; $labels['do_expand'] = 'toate grupările'; $labels['expand_only_unread'] = 'doar pe cele cu mesaje necitite'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Arată coloane'; $labels['listsorting'] = 'Sortează după'; $labels['listorder'] = 'Ordinea de sortare'; $labels['listmode'] = 'Mod de vizualizare'; - $labels['folderactions'] = 'Acțiuni dosar...'; $labels['compact'] = 'Compactează'; $labels['empty'] = 'Goleşte'; $labels['importmessages'] = 'Import mesaje'; - $labels['quota'] = 'Spaţiu folosit'; $labels['unknown'] = 'necunoscut'; $labels['unlimited'] = 'nelimitat'; - $labels['quicksearch'] = 'Căutare rapidă'; $labels['resetsearch'] = 'Anulează căutarea'; $labels['searchmod'] = 'Parametrii de căutare'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Tot mesajul'; $labels['body'] = 'Corp'; $labels['type'] = 'Tip'; $labels['namex'] = 'Nume'; - $labels['openinextwin'] = 'Deschide în fereastră nouă'; $labels['emlsave'] = 'Salvează în format .eml'; $labels['changeformattext'] = 'Afișează în format text'; $labels['changeformathtml'] = 'Afișează în format HTML'; - -// message compose $labels['editasnew'] = 'Editează ca nou'; $labels['send'] = 'Trimite'; $labels['sendmessage'] = 'Trimite mesaj'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Returnează confirmare de primire'; $labels['dsn'] = 'Notificare despre starea trimiterii'; $labels['mailreplyintro'] = 'În $date, $sender a scris:'; $labels['originalmessage'] = 'Mesaj original'; - $labels['editidents'] = 'Editează identităţi'; $labels['spellcheck'] = 'Ortografie'; $labels['checkspelling'] = 'Verifică ortografie'; $labels['resumeediting'] = 'Reia editarea'; $labels['revertto'] = 'Revino la'; - $labels['attach'] = 'Ataşează'; $labels['attachments'] = 'Ataşamente'; $labels['upload'] = 'Încarcă'; $labels['uploadprogress'] = '$percent ($current din $total)'; $labels['close'] = 'Închide'; $labels['messageoptions'] = 'Opţiuni mesaj...'; - $labels['low'] = 'Mică'; $labels['lowest'] = 'Cea mai mică'; $labels['normal'] = 'Normală'; $labels['high'] = 'Mare'; $labels['highest'] = 'Cea mai mare'; - $labels['nosubject'] = '(fără subiect)'; $labels['showimages'] = 'Afişează imagini'; $labels['alwaysshow'] = 'Afişează întotdeauna imaginile de la $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Acest mesaj este o ciornă.'; $labels['andnmore'] = '$nr mai multe...'; $labels['togglemoreheaders'] = 'Arată mai mult din antet'; $labels['togglefullheaders'] = 'Arată mai puțin din antet'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Text simplu'; $labels['savesentmessagein'] = 'Salvează mesajele trimise în'; $labels['dontsave'] = 'Nu salva'; $labels['maxuploadsize'] = 'Mărimea maxim admisă a fişierului este $size'; - $labels['addcc'] = 'Adaugă CC'; $labels['addbcc'] = 'Adaugă BCC'; $labels['addreplyto'] = 'Adaugă Raspunde-La'; $labels['addfollowupto'] = 'Adaugă Followup-La'; - -// mdn $labels['mdnrequest'] = 'Expeditorul acestui mesaj a solicitat să fie notificat la cititrea mesajului. Doriţi să notificaţi expeditorul?'; $labels['receiptread'] = 'Returnează confirmare (citit)'; $labels['yourmessage'] = 'Aceasta este o confirmare de primire a mesajului dumneavoastră.'; $labels['receiptnote'] = 'Notă: Această confirmare doar vă informează că mesajul a fost afişat pe calculatorul destinatarului. Nu există nici o garanţie că destinatarul a citit sau a inţeles conţinutul mesajului.'; - -// address boook $labels['name'] = 'Numele Contact'; $labels['firstname'] = 'Nume'; $labels['surname'] = 'Prenume'; @@ -305,7 +265,6 @@ $labels['search'] = 'Căutare'; $labels['advsearch'] = 'Căutare avansată'; $labels['advanced'] = 'Avansat'; $labels['other'] = 'Altele'; - $labels['typehome'] = 'Acasă'; $labels['typework'] = 'Serviciu'; $labels['typeother'] = 'Altele'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Asistent'; $labels['typehomepage'] = 'Pagină de pornire'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Adaugă câmp...'; $labels['addcontact'] = 'Adaugă contact nou'; $labels['editcontact'] = 'Modifică contact'; $labels['contacts'] = 'Contacte'; $labels['contactproperties'] = 'Proprietăţile contactului...'; $labels['personalinfo'] = 'Informații personale'; - $labels['edit'] = 'Editează'; $labels['cancel'] = 'Renunţă'; $labels['save'] = 'Salvează'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Redenumeşte'; $labels['addphoto'] = 'Adaugă'; $labels['replacephoto'] = 'Înlocuiește'; $labels['uploadphoto'] = 'Încarcă imagine'; - $labels['newcontact'] = 'Creează contact nou'; $labels['deletecontact'] = 'Şterge contactul selectat'; $labels['composeto'] = 'Compune e-mail pentru'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Creează un nou grup de contacte'; $labels['grouprename'] = 'Redenumește grupul'; $labels['groupdelete'] = 'Șterge grupul'; $labels['groupremoveselected'] = 'Șterge contactele selectate din grup'; - $labels['previouspage'] = 'Pagina anterioară'; $labels['firstpage'] = 'Prima pagină'; $labels['nextpage'] = 'Pagina următoare'; $labels['lastpage'] = 'Ultima pagină'; - $labels['group'] = 'Grup'; $labels['groups'] = 'Grupuri'; $labels['listgroup'] = 'Lista membrii grupului'; $labels['personaladrbook'] = 'Adrese personale'; - $labels['searchsave'] = 'Salvează căutarea'; $labels['searchdelete'] = 'Şterge căutarea'; - $labels['import'] = 'Importă'; $labels['importcontacts'] = 'Importă contacte'; $labels['importfromfile'] = 'Importă din fişier:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'Toate (creează grupurile dacă este necesar)'; $labels['importgroupsexisting'] = 'Doar pentru grupurile existente'; $labels['importdesc'] = 'Puteți încărca contacte dintr-o agendă existentă.
Momentan este suportat importul în formatul vCard sau în formatul CSV (comma-separated).'; $labels['done'] = 'Finalizat'; - -// settings $labels['settingsfor'] = 'Setări pentru'; $labels['about'] = 'Despre'; $labels['preferences'] = 'Preferinţe'; $labels['userpreferences'] = 'Preferinţe utilizator'; $labels['editpreferences'] = 'Modifică preferinţe utilizator'; - $labels['identities'] = 'Identităţi'; $labels['manageidentities'] = 'Administrează identităţi pentru acest cont'; $labels['newidentity'] = 'Identitate nouă'; - $labels['newitem'] = 'Obiect nou'; $labels['edititem'] = 'Editează obiect'; - $labels['preferhtml'] = 'Format HTML'; $labels['defaultcharset'] = 'Set implicit de caractere'; $labels['htmlmessage'] = 'Mesaj HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Trateaza popupsurile ca ferestre standard'; $labels['forwardmode'] = 'Trimitere mai departe mesaj'; $labels['inline'] = 'într-e linii'; $labels['asattachment'] = 'ca atașament'; - $labels['folder'] = 'Dosar'; $labels['folders'] = 'Dosare'; $labels['foldername'] = 'Nume dosar'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Tip dosar'; $labels['personalfolder'] = 'Dosar privat'; $labels['otherfolder'] = 'Dosarul altui utilizator'; $labels['sharedfolder'] = 'Dosar public'; - $labels['sortby'] = 'Sortează după'; $labels['sortasc'] = 'Sortează ascendent'; $labels['sortdesc'] = 'Sortează descendent'; $labels['undo'] = 'Anulaţi/Revocați'; - $labels['installedplugins'] = 'Instalare module'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Versiune'; $labels['source'] = 'Sursă'; $labels['license'] = 'Licență'; $labels['support'] = 'Cere asistenţă'; - -// units $labels['B'] = 'O'; $labels['KB'] = 'KO'; $labels['MB'] = 'MO'; $labels['GB'] = 'GO'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Englezesc'; $labels['westerneuropean'] = 'Europa de Vest'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'Vietnamez'; $labels['japanese'] = 'Japonez'; $labels['korean'] = 'Coreean'; $labels['chinese'] = 'Chinezesc'; - ?> diff --git a/program/localization/ro_RO/messages.inc b/program/localization/ro_RO/messages.inc index 96b9de593..6be25147b 100644 --- a/program/localization/ro_RO/messages.inc +++ b/program/localization/ro_RO/messages.inc @@ -167,5 +167,4 @@ $messages['parentnotwritable'] = 'Nu pot crea/muta dosarul în dosarul părinte $messages['messagetoobig'] = 'Partea de mesaj este prea mare pentru a o procesa.'; $messages['attachmentvalidationerror'] = 'ATENȚIE! Acest atașament este suspect, fiindcă tipul lui nu coincide cu tipul declarat în mesaj. Dacă nu aveți încredere în expeditor, nu vă recomandăm să deschideți fișierul, fiindcă poate avea conținut malițios.

Așteptat: $expected; găsit: $detected'; $messages['noscriptwarning'] = 'Atenție: Serviciul de webmail necesită Javascript! Pentru al utiliza vă rugăm activați Javascript în navigator.'; - ?> diff --git a/program/localization/ru_RU/labels.inc b/program/localization/ru_RU/labels.inc index 6b2b4ebca..54a8481d3 100644 --- a/program/localization/ru_RU/labels.inc +++ b/program/localization/ru_RU/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Добро пожаловать в $product!'; $labels['username'] = 'Имя пользователя'; $labels['password'] = 'Пароль'; $labels['server'] = 'Сервер'; $labels['login'] = 'Войти'; - -// taskbar $labels['logout'] = 'Выход'; $labels['mail'] = 'Почта'; $labels['settings'] = 'Настройки'; $labels['addressbook'] = 'Контакты'; - -// mailbox names $labels['inbox'] = 'Входящие'; $labels['drafts'] = 'Черновики'; $labels['sent'] = 'Отправленные'; $labels['trash'] = 'Корзина'; $labels['junk'] = 'СПАМ'; $labels['show_real_foldernames'] = 'Показывать настоящие названия специальных папок'; - -// message listing $labels['subject'] = 'Тема'; $labels['from'] = 'От'; $labels['sender'] = 'Отправитель'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Приоритет'; $labels['organization'] = 'Организация'; $labels['readstatus'] = 'Статус прочтения'; $labels['listoptions'] = 'Настройки списка...'; - $labels['mailboxlist'] = 'Папки'; $labels['messagesfromto'] = 'Сообщения с $from по $to из $count'; $labels['threadsfromto'] = 'Обсуждения с $from по $to из $count'; $labels['messagenrof'] = 'Сообщение $nr из $count'; $labels['fromtoshort'] = '$from – $to из $count'; - $labels['copy'] = 'Копировать'; $labels['move'] = 'Переместить'; $labels['moveto'] = 'Переместить в...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Загрузить'; $labels['open'] = 'Открыть'; $labels['showattachment'] = 'Показать'; $labels['showanyway'] = 'Все равно показать'; - $labels['filename'] = 'Имя файла'; $labels['filesize'] = 'Размер файла'; - $labels['addtoaddressbook'] = 'Добавить в контакты'; - -// weekdays short $labels['sun'] = 'Вс'; $labels['mon'] = 'Пн'; $labels['tue'] = 'Вт'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ср'; $labels['thu'] = 'Чт'; $labels['fri'] = 'Пт'; $labels['sat'] = 'Сб'; - -// weekdays long $labels['sunday'] = 'Воскресенье'; $labels['monday'] = 'Понедельник'; $labels['tuesday'] = 'Вторник'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Среда'; $labels['thursday'] = 'Четверг'; $labels['friday'] = 'Пятница'; $labels['saturday'] = 'Суббота'; - -// months short $labels['jan'] = 'Янв'; $labels['feb'] = 'Фев'; $labels['mar'] = 'Мар'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Сен'; $labels['oct'] = 'Окт'; $labels['nov'] = 'Ноя'; $labels['dec'] = 'Дек'; - -// months long $labels['longjan'] = 'Январь'; $labels['longfeb'] = 'Февраль'; $labels['longmar'] = 'Март'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Сентябрь'; $labels['longoct'] = 'Октябрь'; $labels['longnov'] = 'Ноябрь'; $labels['longdec'] = 'Декабрь'; - $labels['today'] = 'Сегодня'; - -// toolbar buttons $labels['refresh'] = 'Обновить'; $labels['checkmail'] = 'Доставить почту'; $labels['compose'] = 'Написать сообщение'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Дополнительные действия...' $labels['more'] = 'Еще'; $labels['back'] = 'Назад'; $labels['options'] = 'Параметры'; - $labels['select'] = 'Выбрать'; $labels['all'] = 'Все'; $labels['none'] = 'Отсутствует'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Развернуть все'; $labels['expand-unread'] = 'Развернуть непрочитанные'; $labels['collapse-all'] = 'Свернуть все'; $labels['threaded'] = 'Обсуждения'; - $labels['autoexpand_threads'] = 'Развернуть обсуждения'; $labels['do_expand'] = 'все обсуждения'; $labels['expand_only_unread'] = 'только с непрочитанными сообщениями'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Колонки'; $labels['listsorting'] = 'Сортировать по'; $labels['listorder'] = 'Порядок сортировки'; $labels['listmode'] = 'Режим просмотра'; - $labels['folderactions'] = 'Операции над папкой...'; $labels['compact'] = 'Сжать'; $labels['empty'] = 'Опустошить'; $labels['importmessages'] = 'Импорт сообщений'; - $labels['quota'] = 'Квота'; $labels['unknown'] = 'неизвестно'; $labels['unlimited'] = 'без ограничений'; - $labels['quicksearch'] = 'Быстрый поиск'; $labels['resetsearch'] = 'Сброс'; $labels['searchmod'] = 'Варианты поиска'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'Всё сообщение'; $labels['body'] = 'Тело письма'; $labels['type'] = 'Тип'; $labels['namex'] = 'Имя'; - $labels['openinextwin'] = 'Открыть в новом окне'; $labels['emlsave'] = 'Сохранить (.eml)'; $labels['changeformattext'] = 'Показать в формате обычного текста'; $labels['changeformathtml'] = 'Показать в HTML формате'; - -// message compose $labels['editasnew'] = 'Редактировать как новое'; $labels['send'] = 'Отправить'; $labels['sendmessage'] = 'Отправить сейчас'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Запрос ответа'; $labels['dsn'] = 'Уведомление о состоянии доставки'; $labels['mailreplyintro'] = '$sender писал $date:'; $labels['originalmessage'] = 'Исходное сообщение'; - $labels['editidents'] = 'Изменить данные'; $labels['spellcheck'] = 'Орфография'; $labels['checkspelling'] = 'Проверить орфографию'; $labels['resumeediting'] = 'Продолжить редактирование'; $labels['revertto'] = 'Отменить правки'; - $labels['attach'] = 'Вложить'; $labels['attachments'] = 'Вложения'; $labels['upload'] = 'Загрузить'; $labels['uploadprogress'] = '$percent ($current из $total)'; $labels['close'] = 'Закрыть'; $labels['messageoptions'] = 'Настройки сообщений...'; - $labels['low'] = 'Низкий'; $labels['lowest'] = 'Низший'; $labels['normal'] = 'Норм.'; $labels['high'] = 'Высокий'; $labels['highest'] = 'Высоч.'; - $labels['nosubject'] = '(без темы)'; $labels['showimages'] = 'Показать изображения'; $labels['alwaysshow'] = 'Всегда показывать изображенияв письмах от $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Это черновик.'; $labels['andnmore'] = 'ещё $nr...'; $labels['togglemoreheaders'] = 'Загрузить ещё заголовки сообщений'; $labels['togglefullheaders'] = 'Показать оригинальные заголовки сообщения'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Текст'; $labels['savesentmessagein'] = 'Сохранить в'; $labels['dontsave'] = 'не сохранять'; $labels['maxuploadsize'] = 'Максимальный размер файла $size'; - $labels['addcc'] = 'Копия'; $labels['addbcc'] = 'Скрытая копия'; $labels['addreplyto'] = 'Кому ответить'; $labels['addfollowupto'] = 'Добавить Followup-To'; - -// mdn $labels['mdnrequest'] = 'Отправитель этого сообщения запросил уведомление о прочтении. Отправить уведомление?'; $labels['receiptread'] = 'Уведомление о прочтении'; $labels['yourmessage'] = 'Это уведомление о прочтении вашего сообщения'; $labels['receiptnote'] = 'Это уведомление означает только, что сообщение было открыто получателем, и не гарантирует того, что оно было прочитано и (или) понято.'; - -// address boook $labels['name'] = 'Отображаемое имя'; $labels['firstname'] = 'Имя'; $labels['surname'] = 'Фамилия'; @@ -305,7 +265,6 @@ $labels['search'] = 'Поиск'; $labels['advsearch'] = 'Расширенный поиск'; $labels['advanced'] = 'Дополнительно'; $labels['other'] = 'Другое'; - $labels['typehome'] = 'Дом'; $labels['typework'] = 'Работа'; $labels['typeother'] = 'Другое'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Помощник'; $labels['typehomepage'] = 'Домашняя страница'; $labels['typeblog'] = 'Блог'; $labels['typeprofile'] = 'Профиль'; - $labels['addfield'] = 'Добавить поле...'; $labels['addcontact'] = 'Добавить новый контакт'; $labels['editcontact'] = 'Редактировать контакт'; $labels['contacts'] = 'Контакты'; $labels['contactproperties'] = 'Свойства контакта'; $labels['personalinfo'] = 'Личная информация'; - $labels['edit'] = 'Правка'; $labels['cancel'] = 'Отмена'; $labels['save'] = 'Сохранить'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Переименовать'; $labels['addphoto'] = 'Добавить'; $labels['replacephoto'] = 'Заменить'; $labels['uploadphoto'] = 'Загрузить фотографию'; - $labels['newcontact'] = 'Создать новый контакт'; $labels['deletecontact'] = 'Удалить выбранные контакты'; $labels['composeto'] = 'Создать сообщение для выбранных контактов'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Создать группу контактов'; $labels['grouprename'] = 'Переименовать группу'; $labels['groupdelete'] = 'Удалить группу'; $labels['groupremoveselected'] = 'Удалить выбранные контакты из группы'; - $labels['previouspage'] = 'Показать предыдущую страницу'; $labels['firstpage'] = 'Показать первую страницу'; $labels['nextpage'] = 'Показать следующую страницу'; $labels['lastpage'] = 'Показать последнюю страницу'; - $labels['group'] = 'Группа'; $labels['groups'] = 'Группы'; $labels['listgroup'] = 'Список членов группы'; $labels['personaladrbook'] = 'Персональные адреса'; - $labels['searchsave'] = 'Сохранить запрос'; $labels['searchdelete'] = 'Удалить запрос'; - $labels['import'] = 'Импортировать'; $labels['importcontacts'] = 'Импортировать контакты'; $labels['importfromfile'] = 'Импортировать из файла:'; @@ -371,21 +323,16 @@ $labels['importtarget'] = 'Добавить новые контакты в ад $labels['importreplace'] = 'Заменить всю адресную книгу'; $labels['importdesc'] = 'Вы можете загрузить контакты из существующей адресной книги.
В настоящее время мы поддерживаем импорт адресов в формате визитной карточки vCard или CSV (данные разделённые запятой).'; $labels['done'] = 'Завершено'; - -// settings $labels['settingsfor'] = 'Настройки для'; $labels['about'] = 'О программе'; $labels['preferences'] = 'Настройки'; $labels['userpreferences'] = 'Настройки пользователя'; $labels['editpreferences'] = 'Редактировать настройки пользователя'; - $labels['identities'] = 'Профили'; $labels['manageidentities'] = 'Управление профилями'; $labels['newidentity'] = 'Новый профиль'; - $labels['newitem'] = 'Новый'; $labels['edititem'] = 'Правка'; - $labels['preferhtml'] = 'Предпочитать HTML'; $labels['defaultcharset'] = 'Набор символов по-умолчанию'; $labels['htmlmessage'] = 'Сообщение HTML'; @@ -481,7 +428,6 @@ $labels['standardwindows'] = 'Обрабатывать всплывающие о $labels['forwardmode'] = 'Пересылка сообщений'; $labels['inline'] = 'в тексте'; $labels['asattachment'] = 'как вложение'; - $labels['folder'] = 'Папка'; $labels['folders'] = 'Папки'; $labels['foldername'] = 'Имя папки'; @@ -502,26 +448,20 @@ $labels['foldertype'] = 'Тип каталога'; $labels['personalfolder'] = 'Приватный каталог'; $labels['otherfolder'] = 'Каталог другого пользователя'; $labels['sharedfolder'] = 'Совместный каталог'; - $labels['sortby'] = 'Сортировать по'; $labels['sortasc'] = 'Возрастанию'; $labels['sortdesc'] = 'Убыванию'; $labels['undo'] = 'Отмена'; - $labels['installedplugins'] = 'Установленные дополнения'; $labels['plugin'] = 'Дополнение'; $labels['version'] = 'Версия'; $labels['source'] = 'Источник'; $labels['license'] = 'Лицензия'; $labels['support'] = 'Поддержка'; - -// units $labels['B'] = 'Б'; $labels['KB'] = 'КБ'; $labels['MB'] = 'МБ'; $labels['GB'] = 'ГБ'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Английский'; $labels['westerneuropean'] = 'Западноевропейский'; @@ -540,5 +480,4 @@ $labels['vietnamese'] = 'Вьетнамский'; $labels['japanese'] = 'Японский'; $labels['korean'] = 'Корейский'; $labels['chinese'] = 'Китайский'; - ?> diff --git a/program/localization/ru_RU/messages.inc b/program/localization/ru_RU/messages.inc index e7dd36298..1f4a7b33d 100644 --- a/program/localization/ru_RU/messages.inc +++ b/program/localization/ru_RU/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Не удается создать/перем $messages['messagetoobig'] = 'Часть сообщения слишком велика для обработки.'; $messages['attachmentvalidationerror'] = 'ВНИМАНИЕ! Это вложение является подозрительным, потому что его тип не совпадает с типом, объявленным в сообщении. Если Вы не доверяете отправителю, не открывайте его в браузере, поскольку оно может заключать в себе вредоносное содержимое.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Внимание: Данному сервису веб-почты требуется Javascript! Для того, чтобы его использовать необходимо включить поддержку Javascript в настройках вашего браузера.'; - ?> diff --git a/program/localization/si_LK/labels.inc b/program/localization/si_LK/labels.inc index 92d33d3b7..350a87f77 100644 --- a/program/localization/si_LK/labels.inc +++ b/program/localization/si_LK/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product වෙත පිළිගනිමු'; $labels['username'] = 'පරිශීලක නාමය'; $labels['password'] = 'මුරපදය'; $labels['server'] = 'පද්ධතිය'; $labels['login'] = 'පිවිසුම'; - -// taskbar $labels['logout'] = 'පිටවීම'; $labels['mail'] = 'විද්‍යුත් තැපැල'; $labels['settings'] = 'සැකසුම්'; $labels['addressbook'] = 'ලිපින පොත'; - -// mailbox names $labels['inbox'] = 'Inbox'; $labels['drafts'] = 'කටු සටහන්'; $labels['sent'] = 'යැවූ'; $labels['trash'] = 'ඉවතලන බඳුන'; $labels['junk'] = 'සුන්බුන්'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'මාතෘකාව'; $labels['from'] = 'වෙතින්'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'ප්‍රමුඛත්වය'; $labels['organization'] = 'සංවිධානය'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'බහාලුම්'; $labels['messagesfromto'] = '$from වෙතින් $to වෙත පණිවිඩ $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'පණිවිඩ $count න් $nr'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'පිටපත් කරන්න'; $labels['move'] = 'ගෙනයන්න'; $labels['moveto'] = 'ගෙන යන්න...'; @@ -68,13 +59,9 @@ $labels['download'] = 'බාගත කරන්න'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ගොනුවේ නම'; $labels['filesize'] = 'ගොනුවේ ප්‍රමාණය'; - $labels['addtoaddressbook'] = 'ලිපින පොතට එක් කරන්න'; - -// weekdays short $labels['sun'] = 'ඉ'; $labels['mon'] = 'ස'; $labels['tue'] = 'අ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'බ'; $labels['thu'] = 'බ්‍ර'; $labels['fri'] = 'සි'; $labels['sat'] = 'සෙ'; - -// weekdays long $labels['sunday'] = 'ඉරිදා'; $labels['monday'] = 'සඳුදා'; $labels['tuesday'] = 'අඟහරුවාදා'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'බදාදා'; $labels['thursday'] = 'බ්‍රහස්පතින්දා'; $labels['friday'] = 'සිකුරාදා'; $labels['saturday'] = 'සෙනසුරාදා'; - -// months short $labels['jan'] = 'ජන'; $labels['feb'] = 'පෙබ'; $labels['mar'] = 'මාර්'; @@ -105,8 +88,6 @@ $labels['sep'] = 'සැප්'; $labels['oct'] = 'ඔක්'; $labels['nov'] = 'නොවැ'; $labels['dec'] = 'දෙසැ'; - -// months long $labels['longjan'] = 'ජනවාරි'; $labels['longfeb'] = 'පෙබරවාරි'; $labels['longmar'] = 'මාර්තු'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'සැප්තැම්බර්'; $labels['longoct'] = 'ඔක්තෝම්බර්'; $labels['longnov'] = 'නොවැම්බර්'; $labels['longdec'] = 'දෙසැම්බර්'; - $labels['today'] = 'අද'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'අඵත් පණිවිඩ සඳහා පිරික්සීම'; $labels['compose'] = 'පණිවිඩයක් සෑදීම'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'තවත් ක්‍රියා...'; $labels['more'] = 'තවත්'; $labels['back'] = 'ආපසු'; $labels['options'] = 'විකල්ප'; - $labels['select'] = 'තෝරන්න'; $labels['all'] = 'සියල්ල'; $labels['none'] = 'කිසිවක් නැත'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'සියල්ල දිගහරින්න'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'සියල්ල හකුළන්න'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'බහාලුම් ක්‍රියා...'; $labels['compact'] = 'සංයුක්ත'; $labels['empty'] = 'හිස්'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'නොදනී'; $labels['unlimited'] = 'අසීමිත'; - $labels['quicksearch'] = 'ඉක්මන් සෙවුම'; $labels['resetsearch'] = 'සෙවුම යලි පිහිටවීම'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'සම්පූර්ණ පණිවිඩය'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'නව කවුළුවක විවෘත කරන්න'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'පණිවිඩය යවන්න'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'නැවත ලබන්නා'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'අක්‍ෂර වින්‍යාසය පරික්‍ෂාකරන්න'; $labels['resumeediting'] = 'සම්පාදන නැවත ඇරඹීම'; $labels['revertto'] = 'ආපසු ඒම'; - $labels['attach'] = 'අමුණන්න'; $labels['attachments'] = 'ඇමුණුම්'; $labels['upload'] = 'ඇතුල් කරීම'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'වසන්න'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'අඩු'; $labels['lowest'] = 'අඩුම'; $labels['normal'] = 'සාමාන්‍ය'; $labels['high'] = 'ඉහළ'; $labels['highest'] = 'ඉහළම'; - $labels['nosubject'] = '(මාතෘකාව නොමැත)'; $labels['showimages'] = 'රූප පෙන්වන්න'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'පැහැදිලි අකුරු'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Cc එක් කරන්න'; $labels['addbcc'] = 'Bcc එක් කරන්න'; $labels['addreplyto'] = '\'පිළිතුරු සඳහා\' එක් කරන්න'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'මෙම පණිවුඩය එවන්නා ඔබ එය කියවු බව අසයි. එය දැන්වීමට ඔබ කැමතිද?'; $labels['receiptread'] = 'ලැබීම් ලදුපත (කියවීම)'; $labels['yourmessage'] = 'මෙය ඔබගේ පණිවුඩයේ ලැබීම් ලදුපතයි'; $labels['receiptnote'] = 'සටහන: ලැබීම් ලදුපත මගින් මෙම පණිවුඩය කියවූ බව හෝ තේරුම් ගත් බව ගම්‍ය නොවේ. පණිවුඩය ලබන්නාට පෙන්නුම් කල බවටට සාක්ෂියක් පමණි'; - -// address boook $labels['name'] = 'ප්‍රදර්ශනය වන නම'; $labels['firstname'] = 'මුල් නම'; $labels['surname'] = 'අවසන් නම'; @@ -304,7 +264,6 @@ $labels['search'] = 'සොයන්න'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'සංකීර්ණ‍'; $labels['other'] = 'වෙනත්'; - $labels['typehome'] = 'නිවස'; $labels['typework'] = 'රක්ෂාව'; $labels['typeother'] = 'වෙනත්'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'සහායක'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'බ්ලොග්'; $labels['typeprofile'] = 'පැතිකඩ'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'නව සබඳතාවය එක් කරන්න'; $labels['editcontact'] = 'ලිපිනය වෙනස් කිරීම'; $labels['contacts'] = 'සබඳතා'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'පුද්ගලික තොරතුරු'; - $labels['edit'] = 'සංස්කරණය'; $labels['cancel'] = 'අවලංගු කරන්න'; $labels['save'] = 'සුරකින්න'; @@ -335,7 +292,6 @@ $labels['rename'] = 'නම වෙනස් කරන්න'; $labels['addphoto'] = 'එක් කරන්න'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'අඵත් ලිපින පතක් සෑදීම'; $labels['deletecontact'] = 'තෝරාගත් ලිපින මකාදමන්න'; $labels['composeto'] = 'පනිවුඩයක් සෑදීම'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'පෙර පිටුව පෙන්වන්න'; $labels['firstpage'] = 'පළමුවන පිටුව පෙන්වන්න'; $labels['nextpage'] = 'මීළඟ පිටුව පෙන්වන්න'; $labels['lastpage'] = 'අවසාන පිටුව පෙන්වන්න'; - $labels['group'] = 'කණ්ඩායම'; $labels['groups'] = 'කණ්ඩායම්'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'පුද්ගලික ලිපිනය'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'ආනයනය කරන්න'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'අවසානයි'; - -// settings $labels['settingsfor'] = 'සඳහා සැකසුම්'; $labels['about'] = 'පිළිබඳ'; $labels['preferences'] = 'අභිමතය'; $labels['userpreferences'] = 'පරිශීලක අභිමතය'; $labels['editpreferences'] = 'පරිශීලක අභිමතය වෙනස් කිරීම්'; - $labels['identities'] = 'අනන්‍යතාවන්'; $labels['manageidentities'] = 'මෙම ගිණුමෙ අනන්නයතාව හැසිරවීම'; $labels['newidentity'] = 'අඵත් අනන්නයතාව'; - $labels['newitem'] = 'අඵත් අයිතම'; $labels['edititem'] = 'අයිතම වෙනස් කිරීම්'; - $labels['preferhtml'] = 'HTML විදහා පෙන්වීම'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML පණිවිඩය'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'බහාලුම'; $labels['folders'] = 'බහාලුම්'; $labels['foldername'] = 'බහාලුමේ නම'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'බහාලුම් වර්ගය'; $labels['personalfolder'] = 'පුද්ගලික බහාලුම'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'පොදු බහාලුම'; - $labels['sortby'] = 'වර්ග කරන්න'; $labels['sortasc'] = 'ආරෝහණ වර්ග කිරීම'; $labels['sortdesc'] = 'අවරෝහණ වර්ග කිරීම'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'ප්ලගිනය'; $labels['version'] = 'අනුවාදය'; $labels['source'] = 'මූලාශ්‍රය'; $labels['license'] = 'බලපත්‍රය'; $labels['support'] = 'සහය ලබාගන්න'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'යුනිකේත'; $labels['english'] = 'ඉංග්‍රීසි'; $labels['westerneuropean'] = 'බටහිර යුරෝපීය'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'වියට්නාම'; $labels['japanese'] = 'ජපන්'; $labels['korean'] = 'කොරියානු'; $labels['chinese'] = 'චීන'; - ?> diff --git a/program/localization/si_LK/messages.inc b/program/localization/si_LK/messages.inc index dd020b928..60cb2bbed 100644 --- a/program/localization/si_LK/messages.inc +++ b/program/localization/si_LK/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/sk_SK/labels.inc b/program/localization/sk_SK/labels.inc index 465252409..3747d6c09 100644 --- a/program/localization/sk_SK/labels.inc +++ b/program/localization/sk_SK/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Vitajte v $product'; $labels['username'] = 'Prihlasovacie meno'; $labels['password'] = 'Heslo'; $labels['server'] = 'Server'; $labels['login'] = 'Prihlásiť'; - -// taskbar $labels['logout'] = 'Odhlásiť'; $labels['mail'] = 'E-Mail'; $labels['settings'] = 'Nastavenia'; $labels['addressbook'] = 'Kontakty'; - -// mailbox names $labels['inbox'] = 'Doručená pošta'; $labels['drafts'] = 'Rozpísané'; $labels['sent'] = 'Odoslané'; $labels['trash'] = 'Kôš'; $labels['junk'] = 'Nevyžiadaná pošta'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Predmet'; $labels['from'] = 'Odosielateľ'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Priorita'; $labels['organization'] = 'Organizácia'; $labels['readstatus'] = 'Čítať stav'; $labels['listoptions'] = 'Nastavenia zoznamu...'; - $labels['mailboxlist'] = 'Priečinky'; $labels['messagesfromto'] = 'Správy od $from do $to z $count'; $labels['threadsfromto'] = 'Konverzácie od $from do $to z $count'; $labels['messagenrof'] = 'Správa $nr z $count'; $labels['fromtoshort'] = '$from – $to z $count'; - $labels['copy'] = 'Kopírovať'; $labels['move'] = 'Presunúť'; $labels['moveto'] = 'presunúť do...'; @@ -68,13 +59,9 @@ $labels['download'] = 'stiahnuť'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Meno súboru'; $labels['filesize'] = 'Veľkosť súboru'; - $labels['addtoaddressbook'] = 'Pridať do adresára'; - -// weekdays short $labels['sun'] = 'Ne'; $labels['mon'] = 'Po'; $labels['tue'] = 'Ut'; @@ -82,8 +69,6 @@ $labels['wed'] = 'St'; $labels['thu'] = 'Št'; $labels['fri'] = 'Pi'; $labels['sat'] = 'So'; - -// weekdays long $labels['sunday'] = 'Nedeľa'; $labels['monday'] = 'Pondelok'; $labels['tuesday'] = 'Utorok'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Streda'; $labels['thursday'] = 'Štvrtok'; $labels['friday'] = 'Piatok'; $labels['saturday'] = 'Sobota'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Okt'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'Január'; $labels['longfeb'] = 'Február'; $labels['longmar'] = 'Marec'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'Október'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'Dnes'; - -// toolbar buttons $labels['refresh'] = 'Obnoviť'; $labels['checkmail'] = 'Skontrolovať nové správy'; $labels['compose'] = 'Vytvoriť správu'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Ďalšie akcie...'; $labels['more'] = 'Ďalšie'; $labels['back'] = 'Dozadu'; $labels['options'] = 'Možnosti'; - $labels['select'] = 'Výber'; $labels['all'] = 'Všetky'; $labels['none'] = 'Nič'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Rozbaliť všetko'; $labels['expand-unread'] = 'Rozbaliť neprečítané'; $labels['collapse-all'] = 'Zbaliť všetko'; $labels['threaded'] = 'Spájať do konverzácií'; - $labels['autoexpand_threads'] = 'Rozbaliť konverzácie'; $labels['do_expand'] = 'všetky konverzácie'; $labels['expand_only_unread'] = 'len s neprečítanými správami'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Zoznam stĺpcov'; $labels['listsorting'] = 'Triedenie stĺpcov'; $labels['listorder'] = 'Usporiadanie'; $labels['listmode'] = 'Režim zobrazenia zoznamu'; - $labels['folderactions'] = 'Akcie so zložkou...'; $labels['compact'] = 'Zhustiť priečinok'; $labels['empty'] = 'Vyprázdniť'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Zaplnenie schránky'; $labels['unknown'] = 'neznáme'; $labels['unlimited'] = 'neobmedzené'; - $labels['quicksearch'] = 'Rýchle vyhľadávanie'; $labels['resetsearch'] = 'Vyčistiť vyhľadávanie'; $labels['searchmod'] = 'Parametre hľadanie'; $labels['msgtext'] = 'Celá správa'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Otvoriť v novom okne'; $labels['emlsave'] = 'Stiahnuť'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Upraviť ako novú'; $labels['send'] = 'Odoslať'; $labels['sendmessage'] = 'Odoslať správu'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Potvrdenie o doručení'; $labels['dsn'] = 'Doručenie oznámenia o stave'; $labels['mailreplyintro'] = '$date odosielateľ napísal:'; $labels['originalmessage'] = 'Pôvodná správa'; - $labels['editidents'] = 'Editovať identity'; $labels['spellcheck'] = 'Pravopis'; $labels['checkspelling'] = 'Skontrolovať pravopis'; $labels['resumeediting'] = 'Pokračovať v úpravách'; $labels['revertto'] = 'Vrátiť sa na'; - $labels['attach'] = 'Priložiť'; $labels['attachments'] = 'Prílohy'; $labels['upload'] = 'Nahrať'; $labels['uploadprogress'] = '$percent ($current z $total)'; $labels['close'] = 'Zatvoriť'; $labels['messageoptions'] = 'Nastavenia správy...'; - $labels['low'] = 'Nízka'; $labels['lowest'] = 'Najnižšia'; $labels['normal'] = 'Normálna'; $labels['high'] = 'Vysoká'; $labels['highest'] = 'Najvyššia'; - $labels['nosubject'] = '(bez predmetu)'; $labels['showimages'] = 'Ukázať obrázky'; $labels['alwaysshow'] = 'Vždy zobraziť obrázky od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Toto je rozpísaná správa'; $labels['andnmore'] = '$nr viac...'; $labels['togglemoreheaders'] = 'Zobraziť viac záhlaví správ'; $labels['togglefullheaders'] = 'Prepnúť zobrazenie nespracovaných záhlaví správ'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Čistý text'; $labels['savesentmessagein'] = 'Ukladať odoslané správy do'; $labels['dontsave'] = 'Neukladať'; $labels['maxuploadsize'] = 'Maximálna povolená veľkosť súboru je $size'; - $labels['addcc'] = 'Pridať kópiu'; $labels['addbcc'] = 'Pridať skrytú kopiu'; $labels['addreplyto'] = 'Pridať odpoveď'; $labels['addfollowupto'] = 'Pridať pokračovať na'; - -// mdn $labels['mdnrequest'] = 'Odosielateľ tejto správy chce byť upozornený na to, že ste správu obdržali. Chcete potvrdiť prijatie správy?'; $labels['receiptread'] = 'Potvrdenie o prijatí správy'; $labels['yourmessage'] = 'Toto je potvrdenie o prijatí Vašej správy'; $labels['receiptnote'] = 'Poznámka: Toto potvrdenie negarantuje, že správa bola príjemcom prečítaná a porozumel jej obsahu.'; - -// address boook $labels['name'] = 'Názov'; $labels['firstname'] = 'Meno'; $labels['surname'] = 'Priezvisko'; @@ -304,7 +264,6 @@ $labels['search'] = 'Hľadať'; $labels['advsearch'] = 'Rozšírené vyhľadávanie'; $labels['advanced'] = 'Rozšírené'; $labels['other'] = 'Ostatné'; - $labels['typehome'] = 'Domov'; $labels['typework'] = 'Práca'; $labels['typeother'] = 'Ostatné'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistent'; $labels['typehomepage'] = 'Domovská stránka'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Pridať položku...'; $labels['addcontact'] = 'Pridať nový kontakt'; $labels['editcontact'] = 'Upraviť kontakt'; $labels['contacts'] = 'Kontakty'; $labels['contactproperties'] = 'Vlastnosti kontaktu'; $labels['personalinfo'] = 'Osobné informácie'; - $labels['edit'] = 'Upraviť'; $labels['cancel'] = 'Zrušiť'; $labels['save'] = 'Uložiť'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Premenovať'; $labels['addphoto'] = 'Pridať'; $labels['replacephoto'] = 'Nahradiť'; $labels['uploadphoto'] = 'Nahrať fotku'; - $labels['newcontact'] = 'Vytvoriť nový kontakt'; $labels['deletecontact'] = 'Zmazať zvolené kontakty'; $labels['composeto'] = 'Vytvoriť správu pre'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Vytvoriť novú skupinu kontaktov'; $labels['grouprename'] = 'Premenovať skupinu'; $labels['groupdelete'] = 'Zmazať skupinu'; $labels['groupremoveselected'] = 'Odstrániť vybrané kontakty zo skupiny'; - $labels['previouspage'] = 'Predchádzajúca stránka'; $labels['firstpage'] = 'Prvá stránka'; $labels['nextpage'] = 'Nasledujúca stránka'; $labels['lastpage'] = 'Posledná stránka'; - $labels['group'] = 'Skupina'; $labels['groups'] = 'Skupiny'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Osobné adresy'; - $labels['searchsave'] = 'Uložiť vyhľadávanie'; $labels['searchdelete'] = 'Zmazať vyhľadávanie'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Importovať kontakty'; $labels['importfromfile'] = 'Importovať zo súboru:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Pridať nové kontakty do adresára:'; $labels['importreplace'] = 'Nahradiť celý zoznam kontaktov'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Hotovo'; - -// settings $labels['settingsfor'] = 'Nastavenia pre'; $labels['about'] = 'O programe'; $labels['preferences'] = 'Vlastnosti'; $labels['userpreferences'] = 'Používateľské nastavenia'; $labels['editpreferences'] = 'Upraviť používateľské nastavenia'; - $labels['identities'] = 'Profily'; $labels['manageidentities'] = 'Spravovať profily pre tento účet'; $labels['newidentity'] = 'Nový profil'; - $labels['newitem'] = 'Nová položka'; $labels['edititem'] = 'Upraviť položku'; - $labels['preferhtml'] = 'Uprednostniť HTML zobrazenie'; $labels['defaultcharset'] = 'Predvolené kódovanie'; $labels['htmlmessage'] = 'HTML správa'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Preposielanie správ'; $labels['inline'] = 'v tele spávy'; $labels['asattachment'] = 'ako príloha'; - $labels['folder'] = 'Priečinok'; $labels['folders'] = 'Priečinky'; $labels['foldername'] = 'Názov priečinku'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Typ priečinka'; $labels['personalfolder'] = 'Súkromný priečinok'; $labels['otherfolder'] = 'Iné užívateľove adresáre'; $labels['sharedfolder'] = 'Verejný adresár'; - $labels['sortby'] = 'Triediť podľa'; $labels['sortasc'] = 'Triediť vzostupne'; $labels['sortdesc'] = 'Triediť zostupne'; $labels['undo'] = 'Vrátiť'; - $labels['installedplugins'] = 'Nainštalované zásuvné moduly'; $labels['plugin'] = 'Zásuvný modul'; $labels['version'] = 'Verzia'; $labels['source'] = 'Zdroj'; $labels['license'] = 'Licencia'; $labels['support'] = 'Získať podporu'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Angličtina'; $labels['westerneuropean'] = 'Západná Európa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamčina'; $labels['japanese'] = 'Japončina'; $labels['korean'] = 'Korejčina'; $labels['chinese'] = 'Čínština'; - ?> diff --git a/program/localization/sk_SK/messages.inc b/program/localization/sk_SK/messages.inc index 17aaa3a53..d3acbf9af 100644 --- a/program/localization/sk_SK/messages.inc +++ b/program/localization/sk_SK/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Nemôžem vytvoriť/presunúť adresár do zvo $messages['messagetoobig'] = 'Časť správy je príliš veľká na spracovanie.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/sl_SI/labels.inc b/program/localization/sl_SI/labels.inc index c33ea479c..260d5da17 100644 --- a/program/localization/sl_SI/labels.inc +++ b/program/localization/sl_SI/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Dobrodošli v $product'; $labels['username'] = 'Uporabniško ime'; $labels['password'] = 'Geslo'; $labels['server'] = 'Strežnik'; $labels['login'] = 'Prijava'; - -// taskbar $labels['logout'] = 'Odjava'; $labels['mail'] = 'E-Pošta'; $labels['settings'] = 'Osebne nastavitve'; $labels['addressbook'] = 'Stiki'; - -// mailbox names $labels['inbox'] = 'Prejeto'; $labels['drafts'] = 'Osnutki'; $labels['sent'] = 'Poslano'; $labels['trash'] = 'Smeti'; $labels['junk'] = 'Nezaželena sporočila'; $labels['show_real_foldernames'] = 'Prikaži prava imena za posebne mape'; - -// message listing $labels['subject'] = 'Zadeva'; $labels['from'] = 'Pošiljatelj'; $labels['sender'] = 'Pošiljatelj'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioriteta'; $labels['organization'] = 'Organizacija'; $labels['readstatus'] = 'Status'; $labels['listoptions'] = 'Možnosti prikaza...'; - $labels['mailboxlist'] = 'Mape'; $labels['messagesfromto'] = 'Sporočila $from do $to od $count'; $labels['threadsfromto'] = 'Nit $from do $to od $count'; $labels['messagenrof'] = 'Sporočilo $nr od $count'; $labels['fromtoshort'] = '$from – $to od $count'; - $labels['copy'] = 'Kopiraj'; $labels['move'] = 'Premakni'; $labels['moveto'] = 'Premakni v...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Prenesi'; $labels['open'] = 'Odpri'; $labels['showattachment'] = 'Prikaži'; $labels['showanyway'] = 'Prikaži'; - $labels['filename'] = 'Ime datoteke'; $labels['filesize'] = 'Velikost datoteke'; - $labels['addtoaddressbook'] = 'Dodaj med stike'; - -// weekdays short $labels['sun'] = 'ned'; $labels['mon'] = 'pon'; $labels['tue'] = 'tor'; @@ -82,8 +69,6 @@ $labels['wed'] = 'sre'; $labels['thu'] = 'čet'; $labels['fri'] = 'pet'; $labels['sat'] = 'sob'; - -// weekdays long $labels['sunday'] = 'nedelja'; $labels['monday'] = 'ponedeljek'; $labels['tuesday'] = 'torek'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'sreda'; $labels['thursday'] = 'četrtek'; $labels['friday'] = 'petek'; $labels['saturday'] = 'sobota'; - -// months short $labels['jan'] = 'jan'; $labels['feb'] = 'feb'; $labels['mar'] = 'mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sep'; $labels['oct'] = 'okt'; $labels['nov'] = 'nov'; $labels['dec'] = 'dec'; - -// months long $labels['longjan'] = 'januar'; $labels['longfeb'] = 'februar'; $labels['longmar'] = 'marec'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'september'; $labels['longoct'] = 'oktober'; $labels['longnov'] = 'november'; $labels['longdec'] = 'december'; - $labels['today'] = 'Danes'; - -// toolbar buttons $labels['refresh'] = 'Osveži'; $labels['checkmail'] = 'Preglej nova sporočila'; $labels['compose'] = 'Sestavi sporočilo'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Več možnosti...'; $labels['more'] = 'Več'; $labels['back'] = 'Nazaj'; $labels['options'] = 'Možnosti'; - $labels['select'] = 'Izberi'; $labels['all'] = 'Vse'; $labels['none'] = 'Brez'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Razširi vse'; $labels['expand-unread'] = 'Razširi neprebrano'; $labels['collapse-all'] = 'Zloži vse'; $labels['threaded'] = 'Nitno'; - $labels['autoexpand_threads'] = 'Razširi niti'; $labels['do_expand'] = 'vse niti'; $labels['expand_only_unread'] = 'samo niti z neprebranimi sporočili'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Seznam stolpcev'; $labels['listsorting'] = 'Urejanje stolpcev'; $labels['listorder'] = 'Vrstni red'; $labels['listmode'] = 'Način prikaza seznama'; - $labels['folderactions'] = 'Upravljanje map...'; $labels['compact'] = 'Stisni'; $labels['empty'] = 'Izprazni'; $labels['importmessages'] = 'Uvozi sporočila'; - $labels['quota'] = 'Poraba prostora'; $labels['unknown'] = 'neznana'; $labels['unlimited'] = 'neomejena'; - $labels['quicksearch'] = 'Hitri iskalnik'; $labels['resetsearch'] = 'Prekliči iskanje'; $labels['searchmod'] = 'Spremembe iskanja'; $labels['msgtext'] = 'Celotno sporočilo'; $labels['body'] = 'Vsebina sporočila'; $labels['type'] = 'Tip'; - $labels['openinextwin'] = 'Odpri v novem oknu'; $labels['emlsave'] = 'Prenos datoteke (.eml)'; $labels['changeformattext'] = 'Prikaži kot golo besedilo'; $labels['changeformathtml'] = 'Prikaži v formatu HTML'; - -// message compose $labels['editasnew'] = 'Uredi kot novo'; $labels['send'] = 'Pošlji'; $labels['sendmessage'] = 'Pošlji sporočilo'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Potrdilo prejemnika'; $labels['dsn'] = 'Status dostave sporočila'; $labels['mailreplyintro'] = '$date, je $sender napisal'; $labels['originalmessage'] = 'Izvorno sporočilo'; - $labels['editidents'] = 'Uredi identitete'; $labels['spellcheck'] = 'Črkovanje'; $labels['checkspelling'] = 'Preglej pravopis'; $labels['resumeediting'] = 'Nadaljuj z urejanjem'; $labels['revertto'] = 'Razveljavi'; - $labels['attach'] = 'Pripni'; $labels['attachments'] = 'Priponke'; $labels['upload'] = 'Naloži'; $labels['uploadprogress'] = '$percent ($current od $total)'; $labels['close'] = 'Zapri'; $labels['messageoptions'] = 'Možnosti'; - $labels['low'] = 'Nizka'; $labels['lowest'] = 'Najnižja'; $labels['normal'] = 'Običajna'; $labels['high'] = 'Visoka'; $labels['highest'] = 'Najvišja'; - $labels['nosubject'] = '(brez naslova)'; $labels['showimages'] = 'Prikaži slike'; $labels['alwaysshow'] = 'Vedno prikaži slike od $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'To je osnutek sporočila.'; $labels['andnmore'] = '$nr več...'; $labels['togglemoreheaders'] = 'Prikaži več glav sporočila'; $labels['togglefullheaders'] = 'Preklopi na neobdelan zapis glave sporočila'; - $labels['htmltoggle'] = 'Obogateno besedilo (HTML)'; $labels['plaintoggle'] = 'Samo besedilo'; $labels['savesentmessagein'] = 'Shrani poslana sporočila v'; $labels['dontsave'] = 'Ne shrani'; $labels['maxuploadsize'] = 'Največja dovoljena velikost datoteke je $size'; - $labels['addcc'] = 'Dodaj Kp'; $labels['addbcc'] = 'Dodaj Skp'; $labels['addreplyto'] = 'Dodaj naslov za odgovor'; $labels['addfollowupto'] = 'Dodaj naslov za odgovor'; - -// mdn $labels['mdnrequest'] = 'Pošiljatelj tega sporočila je zaprosil za potrdilo o branju. Želite o tem obvestiti pošiljatelja?'; $labels['receiptread'] = 'Potrdilo o branju'; $labels['yourmessage'] = 'To je potrdilo o branju.'; $labels['receiptnote'] = 'Pozor: to je samo potrdilo, da je bilo vaše sporočilo prikazano na prejemnikovem računalniku. To še ne pomeni, da je prejemnik prebral ali razumel vsebino vašega sporočila.'; - -// address boook $labels['name'] = 'Ime za prikaz'; $labels['firstname'] = 'Ime'; $labels['surname'] = 'Priimek'; @@ -304,7 +264,6 @@ $labels['search'] = 'Iskanje'; $labels['advsearch'] = 'Napredno iskanje'; $labels['advanced'] = 'Napredno'; $labels['other'] = 'Ostalo'; - $labels['typehome'] = 'Doma'; $labels['typework'] = 'Služba'; $labels['typeother'] = 'Ostalo'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Pomoč'; $labels['typehomepage'] = 'Domača stran'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Dodaj polje...'; $labels['addcontact'] = 'Dodaj izbrane stike v imenik'; $labels['editcontact'] = 'Uredi vizitko'; $labels['contacts'] = 'Stiki'; $labels['contactproperties'] = 'Lastnosti stika'; $labels['personalinfo'] = 'Osebni podatki'; - $labels['edit'] = 'Uredi'; $labels['cancel'] = 'Prekliči'; $labels['save'] = 'Shrani'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Preimenuj'; $labels['addphoto'] = 'Dodaj'; $labels['replacephoto'] = 'Zamenjaj'; $labels['uploadphoto'] = 'Naloži sliko'; - $labels['newcontact'] = 'Dodaj vizitko'; $labels['deletecontact'] = 'Izbriši izbrane vizitke'; $labels['composeto'] = 'Sestavi sporočilo za'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Ustvari novo skupino stikov'; $labels['grouprename'] = 'Preimenuj skupino'; $labels['groupdelete'] = 'Izbriši skupino'; $labels['groupremoveselected'] = 'Odstrani izbrane stike iz skupine'; - $labels['previouspage'] = 'Prejšnja stran'; $labels['firstpage'] = 'Prva stran'; $labels['nextpage'] = 'Naslednja stran'; $labels['lastpage'] = 'Zadnja stran'; - $labels['group'] = 'Skupina'; $labels['groups'] = 'Skupine'; $labels['listgroup'] = 'Izpiši seznam članov skupine'; $labels['personaladrbook'] = 'Stiki'; - $labels['searchsave'] = 'Shrani iskanje'; $labels['searchdelete'] = 'Izbriši iskanje'; - $labels['import'] = 'Uvozi'; $labels['importcontacts'] = 'Uvozi stike'; $labels['importfromfile'] = 'Uvozi iz datoteke:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Dodaj nove stike v imenik:'; $labels['importreplace'] = 'Zamenjaj celoten imenik'; $labels['importdesc'] = 'Stike lahko naložite iz obstoječega imenika.
Trenutno je podprt uvoz stikov v zapisu vCard ali v CSV (z vejico ločene vrednosti) zapisu.'; $labels['done'] = 'Dokončano'; - -// settings $labels['settingsfor'] = 'Nastavitve za'; $labels['about'] = 'Vizitka'; $labels['preferences'] = 'Nastavitve'; $labels['userpreferences'] = 'Uporabniške nastavitve'; $labels['editpreferences'] = 'Uredi uporabniške nastavitve'; - $labels['identities'] = 'Identitete'; $labels['manageidentities'] = 'Upravljaj identitete za ta račun'; $labels['newidentity'] = 'Nova identiteta'; - $labels['newitem'] = 'Nov predmet'; $labels['edititem'] = 'Uredi predmet'; - $labels['preferhtml'] = 'Prednostno HTML'; $labels['defaultcharset'] = 'Privzeto kodiranje znakov'; $labels['htmlmessage'] = 'HTML sporočilo'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Prikaži pojavna okna kot običajna'; $labels['forwardmode'] = 'Posredovanje sporočil'; $labels['inline'] = 'medvrstično'; $labels['asattachment'] = 'Kot priponka'; - $labels['folder'] = 'Mapa'; $labels['folders'] = 'Mape'; $labels['foldername'] = 'Ime mape'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Tip mape'; $labels['personalfolder'] = 'Zasebna mapa'; $labels['otherfolder'] = 'Mapa drugega uporabnika'; $labels['sharedfolder'] = 'Javna mapa'; - $labels['sortby'] = 'Uredi po'; $labels['sortasc'] = 'Uredi naraščajoče'; $labels['sortdesc'] = 'Uredi padajoče'; $labels['undo'] = 'Prekliči'; - $labels['installedplugins'] = 'Nameščeni vtičniki'; $labels['plugin'] = 'Vtičnik'; $labels['version'] = 'Različica'; $labels['source'] = 'Vir'; $labels['license'] = 'Licenca'; $labels['support'] = 'Podpora'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Angleško'; $labels['westerneuropean'] = 'Zahodnoevropsko'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamsko'; $labels['japanese'] = 'Japonsko'; $labels['korean'] = 'Korejsko'; $labels['chinese'] = 'Kitajsko'; - ?> diff --git a/program/localization/sl_SI/messages.inc b/program/localization/sl_SI/messages.inc index dc731d01b..e582cca5e 100644 --- a/program/localization/sl_SI/messages.inc +++ b/program/localization/sl_SI/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Podmape v tej mapi ni bilo mogoče ustvariti/p $messages['messagetoobig'] = 'Sporočilo je preveliko za obdelavo.'; $messages['attachmentvalidationerror'] = 'OPOZORILO! Priponka vsebuje sumljivo vsebino, saj tip priponke ne ustreza tipu, določenemu v sporočilu. Če ne zaupate pošiljatelju, priponke v brskalniku ne odpirajte, saj lahko vsebuje zlonamerno vsebino.

Pričakovano: $expected; Najdeno: $detected'; $messages['noscriptwarning'] = 'Opozorilo: Ta spletna stran zahteva Javascript! Za uporabo jo vključite v nastavitvah vašega brskalnika.'; - ?> diff --git a/program/localization/sq_AL/labels.inc b/program/localization/sq_AL/labels.inc index e2cb6791b..ed222c4e0 100644 --- a/program/localization/sq_AL/labels.inc +++ b/program/localization/sq_AL/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Mirëseerdhe te $product'; $labels['username'] = 'Përdoruesi'; $labels['password'] = 'Fjalëkalimi'; $labels['server'] = 'Serveri'; $labels['login'] = 'Hyr'; - -// taskbar $labels['logout'] = 'Dil'; $labels['mail'] = 'Mesazhet'; $labels['settings'] = 'Konfigurimi Personal'; $labels['addressbook'] = 'Libri i Adresave'; - -// mailbox names $labels['inbox'] = 'Ardhjet'; $labels['drafts'] = 'Drafte'; $labels['sent'] = 'Dërguar'; $labels['trash'] = 'Fshirë'; $labels['junk'] = 'Reklama'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Tema'; $labels['from'] = 'Dërguesi'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Përparësia'; $labels['organization'] = 'Organizata'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'Kutitë'; $labels['messagesfromto'] = 'Mesazhet $from në $to nga $count'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Mesazhi $nr nga $count'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'Kopje'; $labels['move'] = 'Move'; $labels['moveto'] = 'ço te...'; @@ -68,13 +59,9 @@ $labels['download'] = 'shkarko'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Emër skedari'; $labels['filesize'] = 'Madhësi skedari'; - $labels['addtoaddressbook'] = 'Shto në librin e adresave'; - -// weekdays short $labels['sun'] = 'Dje'; $labels['mon'] = 'Hën'; $labels['tue'] = 'Mar'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Mër'; $labels['thu'] = 'Enj'; $labels['fri'] = 'Pre'; $labels['sat'] = 'Sht'; - -// weekdays long $labels['sunday'] = 'e djelë'; $labels['monday'] = 'e hënë'; $labels['tuesday'] = 'e martë'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'e mërkurë'; $labels['thursday'] = 'e enjte'; $labels['friday'] = 'e premte'; $labels['saturday'] = 'e shtunë'; - -// months short $labels['jan'] = 'Jan'; $labels['feb'] = 'Feb'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Sep'; $labels['oct'] = 'Oct'; $labels['nov'] = 'Nov'; $labels['dec'] = 'Dec'; - -// months long $labels['longjan'] = 'January'; $labels['longfeb'] = 'February'; $labels['longmar'] = 'March'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'September'; $labels['longoct'] = 'October'; $labels['longnov'] = 'November'; $labels['longdec'] = 'December'; - $labels['today'] = 'sot'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Shiko për mesazhe të reja'; $labels['compose'] = 'Shkruaj një mesazh'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'Zgjidh'; $labels['all'] = 'Të gjitha'; $labels['none'] = 'Asnjë'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Zvogëlo'; $labels['empty'] = 'Boshatis'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Përdorimi i diskut'; $labels['unknown'] = 'i panjohur'; $labels['unlimited'] = 'i pakufizuar'; - $labels['quicksearch'] = 'Kërkim i shpejtë'; $labels['resetsearch'] = 'Pastro kërkimin'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Dërgoje mesazhin tani'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Njoftim marrje'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Kontroll gabimesh'; $labels['resumeediting'] = 'Vazhdo editimin'; $labels['revertto'] = 'Ktheje te'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'Bashkangjitjet'; $labels['upload'] = 'Ngarko'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Mbyll'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'I ulët'; $labels['lowest'] = 'Më i ulëti'; $labels['normal'] = 'Normal'; $labels['high'] = 'I lartë'; $labels['highest'] = 'Më i larti'; - $labels['nosubject'] = '(pa subjekt)'; $labels['showimages'] = 'Shfaq imazhet'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'TEXT'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Shto Cc'; $labels['addbcc'] = 'Shto Bcc'; $labels['addreplyto'] = 'Shto Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'Dërguesi i këtij mesazhi ka kërkuar që të njoftohet kur ju të lexoni këtë mesazh. Dëshironi ta njoftoni dërguesin?'; $labels['receiptread'] = 'Njoftim Leximi'; $labels['yourmessage'] = 'Ky është një njoftim leximi për mesazhin tuaj'; $labels['receiptnote'] = 'Shënim: Ky njoftim tregon vetëm që mesazhi u shfaq në kompjuterin e marrësit. Nuk ka siguri që marrësi e ka lexuar ose e ka kuptuar përmbajtjen e mesazhit.'; - -// address boook $labels['name'] = 'Emri që thirret'; $labels['firstname'] = 'Emri'; $labels['surname'] = 'Mbiemri'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Shto një kontakt të ri'; $labels['editcontact'] = 'Ndrysho kontaktin'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'Ndrysho'; $labels['cancel'] = 'Anullo'; $labels['save'] = 'Ruaj'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'Krijo nje kartë të re kontakti'; $labels['deletecontact'] = 'Fshi kontaktet e zgjedhura'; $labels['composeto'] = 'Shkruaj email për'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'Shfaq grupin e mëparshëm'; $labels['firstpage'] = 'Shfaq grupin e parë'; $labels['nextpage'] = 'Shfaq grupin tjetër'; $labels['lastpage'] = 'Shfaq grupin e fundit'; - $labels['group'] = 'Group'; $labels['groups'] = 'Grupet'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Adresat Personale'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'Konfigurimet për'; $labels['about'] = 'About'; $labels['preferences'] = 'Preferencat'; $labels['userpreferences'] = 'Preferencat e përdoruesit'; $labels['editpreferences'] = 'Ndrysho preferencat e përdoruesit'; - $labels['identities'] = 'Identitetet'; $labels['manageidentities'] = 'Manaxho identitetet per këtë llogari'; $labels['newidentity'] = 'Identitet i ri'; - $labels['newitem'] = 'Element i ri'; $labels['edititem'] = 'Ndrysho element'; - $labels['preferhtml'] = 'Shfaq HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Mesazh HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Kutia'; $labels['folders'] = 'Kutitë'; $labels['foldername'] = 'Emër kutie'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'Rradhit sipas'; $labels['sortasc'] = 'Rradhitje rritëse'; $labels['sortdesc'] = 'Rradhitje zbritëse'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/sq_AL/messages.inc b/program/localization/sq_AL/messages.inc index 5a18aafca..6e48b1689 100644 --- a/program/localization/sq_AL/messages.inc +++ b/program/localization/sq_AL/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/sr_CS/labels.inc b/program/localization/sr_CS/labels.inc index 4bdf25020..abaa91d0a 100644 --- a/program/localization/sr_CS/labels.inc +++ b/program/localization/sr_CS/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Добродошли на $product'; $labels['username'] = 'Корисничко име'; $labels['password'] = 'Лозинка'; $labels['server'] = 'Сервер'; $labels['login'] = 'Пријава'; - -// taskbar $labels['logout'] = 'Одјава'; $labels['mail'] = 'Сандуче'; $labels['settings'] = 'Подешавања'; $labels['addressbook'] = 'Именик'; - -// mailbox names $labels['inbox'] = 'Примљене'; $labels['drafts'] = 'U pripremi'; $labels['sent'] = 'Послате'; $labels['trash'] = 'Канта'; $labels['junk'] = 'Смеће'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Наслов'; $labels['from'] = 'Од'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Приоритет'; $labels['organization'] = 'Организација'; $labels['readstatus'] = 'Статус поруке'; $labels['listoptions'] = 'Излистај опције...'; - $labels['mailboxlist'] = 'Фасцикле'; $labels['messagesfromto'] = 'Поруке $from до $to од укупно $count'; $labels['threadsfromto'] = 'Страница $from до $to од $count'; $labels['messagenrof'] = 'Порука број $nr од $count'; $labels['fromtoshort'] = '$from – $to од $count'; - $labels['copy'] = 'Копирај'; $labels['move'] = 'Пребаци'; $labels['moveto'] = 'Пребаци у...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Преузми (скидање)'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'Име датотекеe'; $labels['filesize'] = 'Величина датотеке'; - $labels['addtoaddressbook'] = 'Додај у именик'; - -// weekdays short $labels['sun'] = 'Нед'; $labels['mon'] = 'Пон'; $labels['tue'] = 'Уто'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Сре'; $labels['thu'] = 'Чет'; $labels['fri'] = 'Пет'; $labels['sat'] = 'Суб'; - -// weekdays long $labels['sunday'] = 'Недеља'; $labels['monday'] = 'Понедељак'; $labels['tuesday'] = 'Уторак'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Среда'; $labels['thursday'] = 'Четвртак'; $labels['friday'] = 'Петак'; $labels['saturday'] = 'Субота'; - -// months short $labels['jan'] = 'Јан'; $labels['feb'] = 'Феб'; $labels['mar'] = 'Мар'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Сеп'; $labels['oct'] = 'Окт'; $labels['nov'] = 'Нов'; $labels['dec'] = 'Дец'; - -// months long $labels['longjan'] = 'Јануар'; $labels['longfeb'] = 'Фебруар'; $labels['longmar'] = 'Март'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Септембар'; $labels['longoct'] = 'Октобар'; $labels['longnov'] = 'Новембар'; $labels['longdec'] = 'Децембар'; - $labels['today'] = 'Данас'; - -// toolbar buttons $labels['refresh'] = 'Освежи'; $labels['checkmail'] = 'Провера нових порука'; $labels['compose'] = 'Нова порука'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Остале радње...'; $labels['more'] = 'Више'; $labels['back'] = 'Назад'; $labels['options'] = 'Опције'; - $labels['select'] = 'Одабери'; $labels['all'] = 'Све'; $labels['none'] = 'Ништа'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Прошири све'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Сажми све'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'само са непрочитаним порукама'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Лист колона'; $labels['listsorting'] = 'Сортирање колонe'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'Лист режим приказивања'; - $labels['folderactions'] = 'Поставке фасцикле'; $labels['compact'] = 'Компакција'; $labels['empty'] = 'Испразни'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Квота'; $labels['unknown'] = 'непозната'; $labels['unlimited'] = 'бесконачна'; - $labels['quicksearch'] = 'Брза претрага'; $labels['resetsearch'] = 'Прикажи све поруке'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Цела порука'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Отвори у новом прозору'; $labels['emlsave'] = 'Довнлоад (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Модификуј као ново'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Пошаљи поруку'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Потврда о приспећу'; $labels['dsn'] = 'Обавештење о статусу слања поруке'; $labels['mailreplyintro'] = 'Дана $date, $sender је написао:'; $labels['originalmessage'] = 'Оригинална порука'; - $labels['editidents'] = 'Модификуј псеудониме'; $labels['spellcheck'] = 'Провера правописа'; $labels['checkspelling'] = 'Провера правописа'; $labels['resumeediting'] = 'Повратак у режим писања'; $labels['revertto'] = 'Врати се на'; - $labels['attach'] = 'Приложи'; $labels['attachments'] = 'Прилози'; $labels['upload'] = 'Додај'; $labels['uploadprogress'] = '$percent ($current од $total)'; $labels['close'] = 'Затвори'; $labels['messageoptions'] = 'Опције поруке'; - $labels['low'] = 'Низак'; $labels['lowest'] = 'Најнижи'; $labels['normal'] = 'Средњи'; $labels['high'] = 'Висок'; $labels['highest'] = 'Највиши'; - $labels['nosubject'] = '(без наслова)'; $labels['showimages'] = 'Прикажи слике'; $labels['alwaysshow'] = 'Увек покажи слике од $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Обичан текст'; $labels['savesentmessagein'] = 'Послате поруке сачувај у'; $labels['dontsave'] = 'Не сачувај'; $labels['maxuploadsize'] = 'Максимална величина податка је $size'; - $labels['addcc'] = 'Додај Cc'; $labels['addbcc'] = 'Додај Bcc'; $labels['addreplyto'] = 'Додај Одговор-за'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'Пошиљалац ове поруке је замолио да буде обавештен када прочитате ову поруку. Да ли желите да обавестите пошиљаоца?'; $labels['receiptread'] = 'Обавештење о приспећу (прочитана порука)'; $labels['yourmessage'] = 'Ово је обавештење о приспећу за вашу поруку'; $labels['receiptnote'] = 'Пажња: Ово обавештење само потврђује да је порука приказана на рачунару примаоца. Не постоји гаранција да је прималац прочитао или разумео садржај поруке.'; - -// address boook $labels['name'] = 'Пуно име'; $labels['firstname'] = 'Име'; $labels['surname'] = 'Презиме'; @@ -304,7 +264,6 @@ $labels['search'] = 'Тражи'; $labels['advsearch'] = 'Напредна претрага'; $labels['advanced'] = 'Напредно'; $labels['other'] = 'Остало'; - $labels['typehome'] = 'Кућа'; $labels['typework'] = 'Посао'; $labels['typeother'] = 'Остало'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Асистент'; $labels['typehomepage'] = 'Почетна страница'; $labels['typeblog'] = 'Блог'; $labels['typeprofile'] = 'Профил'; - $labels['addfield'] = 'Додај поље'; $labels['addcontact'] = 'Додај нови контакт'; $labels['editcontact'] = 'Измени контакт'; $labels['contacts'] = 'Конакти'; $labels['contactproperties'] = 'Својства контакта'; $labels['personalinfo'] = 'Личне информације'; - $labels['edit'] = 'Измени'; $labels['cancel'] = 'Откажи'; $labels['save'] = 'Сачувај'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Преименуј'; $labels['addphoto'] = 'Додај'; $labels['replacephoto'] = 'Измени'; $labels['uploadphoto'] = 'Постави фотографију'; - $labels['newcontact'] = 'Додај нови контакт'; $labels['deletecontact'] = 'Обриши одабране контакте'; $labels['composeto'] = 'Напиши поруку...'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Креирај нову контакт групу' $labels['grouprename'] = 'Преименуј групу'; $labels['groupdelete'] = 'Обриши групу'; $labels['groupremoveselected'] = 'Избриши изабране контакте из групе'; - $labels['previouspage'] = 'Прикажи претходну страну'; $labels['firstpage'] = 'Прикажи први скуп'; $labels['nextpage'] = 'Прикажи следећу страну'; $labels['lastpage'] = 'Прикажи последњи скуп'; - $labels['group'] = 'Група'; $labels['groups'] = 'Групе'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Личне адресе'; - $labels['searchsave'] = 'Сачувај претрагу'; $labels['searchdelete'] = 'Избриши претрагу'; - $labels['import'] = 'Увези'; $labels['importcontacts'] = 'Увези контакте'; $labels['importfromfile'] = 'Увези из датотеке:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Додај нове контакте у адреса $labels['importreplace'] = 'Измени цели адресар'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Готово'; - -// settings $labels['settingsfor'] = 'Подешавања за'; $labels['about'] = 'Инфо'; $labels['preferences'] = 'Подешавања'; $labels['userpreferences'] = 'Општа подешавања'; $labels['editpreferences'] = 'Измена општих подешавања'; - $labels['identities'] = 'Идентитети'; $labels['manageidentities'] = 'Подеси идентитете за овај налог'; $labels['newidentity'] = 'Додај идентитет'; - $labels['newitem'] = 'Нова ставка'; $labels['edititem'] = 'Измена ставке'; - $labels['preferhtml'] = 'Предност дај ХТМЛ формату'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ХТМЛ формат поруке'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'Фасцикла'; $labels['folders'] = 'Фасцикле'; $labels['foldername'] = 'Име фасцикле'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'типа фасцикле'; $labels['personalfolder'] = 'Приватна фасцикла'; $labels['otherfolder'] = 'Фасцикла Других Корисникa'; $labels['sharedfolder'] = 'Јавна фасцикла'; - $labels['sortby'] = 'Сортирај по'; $labels['sortasc'] = 'Сортирај растуће'; $labels['sortdesc'] = 'Сортирај опадајуће'; $labels['undo'] = 'Унатраг'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Додаци'; $labels['version'] = 'Верзија'; $labels['source'] = 'Извор'; $labels['license'] = 'Лиценца'; $labels['support'] = 'подршка'; - -// units $labels['B'] = 'Б'; $labels['KB'] = 'КБ'; $labels['MB'] = 'МБ'; $labels['GB'] = 'ГБ'; - -// character sets $labels['unicode'] = 'Универзални код'; $labels['english'] = 'Енглески'; $labels['westerneuropean'] = 'Западна Европа'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Вијетнамски'; $labels['japanese'] = 'Јапански'; $labels['korean'] = 'Кореански'; $labels['chinese'] = 'Кинески'; - ?> diff --git a/program/localization/sr_CS/messages.inc b/program/localization/sr_CS/messages.inc index 016cef163..1a5f5ff01 100644 --- a/program/localization/sr_CS/messages.inc +++ b/program/localization/sr_CS/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Не може да направи/премес $messages['messagetoobig'] = 'Део са поруком је превелик за обраду.'; $messages['attachmentvalidationerror'] = 'УПОЗОРЕЊЕ! Овај прилог је сумњив зато што се његов тип не поклапа са типом објављеним у поруци. Уколико немате поверења у пошиљаоца, не отварајте је у прегледачу зато што може садржати злонамерни садржај.

Очекивао: $expected; нашао: $detected'; $messages['noscriptwarning'] = 'Упозорење: ова поштанска услуга захтева Јаваскрипт! Да бисте је користили, укључите Јаваскрипт у подешавањима вашег прегледача.'; - ?> diff --git a/program/localization/sv_SE/labels.inc b/program/localization/sv_SE/labels.inc index 7169aeba8..c7340647d 100644 --- a/program/localization/sv_SE/labels.inc +++ b/program/localization/sv_SE/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Välkommen till $product'; $labels['username'] = 'Användarnamn'; $labels['password'] = 'Lösenord'; $labels['server'] = 'Server'; $labels['login'] = 'Logga in'; - -// taskbar $labels['logout'] = 'Logga ut'; $labels['mail'] = 'Meddelanden'; $labels['settings'] = 'Inställningar'; $labels['addressbook'] = 'Adressbok'; - -// mailbox names $labels['inbox'] = 'Inkorg'; $labels['drafts'] = 'Utkast'; $labels['sent'] = 'Skickat'; $labels['trash'] = 'Papperskorg'; $labels['junk'] = 'Skräp'; $labels['show_real_foldernames'] = 'Visa verkliga namn på särskilda kataloger'; - -// message listing $labels['subject'] = 'Ämne'; $labels['from'] = 'Avsändare'; $labels['sender'] = 'Avsändare'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organisation'; $labels['readstatus'] = 'Lässtatus'; $labels['listoptions'] = 'Listalternativ...'; - $labels['mailboxlist'] = 'Kataloger'; $labels['messagesfromto'] = 'Meddelande $from till $to av $count'; $labels['threadsfromto'] = 'Tråd $from till $to av $count'; $labels['messagenrof'] = 'Meddelande $nr av $count'; $labels['fromtoshort'] = '$from – $to av $count'; - $labels['copy'] = 'Kopiera'; $labels['move'] = 'Flytta'; $labels['moveto'] = 'Flytta till:'; @@ -68,13 +59,9 @@ $labels['download'] = 'Ladda ner'; $labels['open'] = 'Öppna'; $labels['showattachment'] = 'Visa'; $labels['showanyway'] = 'Visa det ändå'; - $labels['filename'] = 'Filnamn'; $labels['filesize'] = 'Filstorlek'; - $labels['addtoaddressbook'] = 'Lägg till i adressbok'; - -// weekdays short $labels['sun'] = 'sön'; $labels['mon'] = 'mån'; $labels['tue'] = 'tis'; @@ -82,8 +69,6 @@ $labels['wed'] = 'ons'; $labels['thu'] = 'tor'; $labels['fri'] = 'fre'; $labels['sat'] = 'lör'; - -// weekdays long $labels['sunday'] = 'söndag'; $labels['monday'] = 'måndag'; $labels['tuesday'] = 'tisdag'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'onsdag'; $labels['thursday'] = 'torsdag'; $labels['friday'] = 'fredag'; $labels['saturday'] = 'lördag'; - -// months short $labels['jan'] = 'jan'; $labels['feb'] = 'feb'; $labels['mar'] = 'mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'sep'; $labels['oct'] = 'okt'; $labels['nov'] = 'nov'; $labels['dec'] = 'dec'; - -// months long $labels['longjan'] = 'januari'; $labels['longfeb'] = 'februari'; $labels['longmar'] = 'mars'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'september'; $labels['longoct'] = 'oktober'; $labels['longnov'] = 'november'; $labels['longdec'] = 'december'; - $labels['today'] = 'idag'; - -// toolbar buttons $labels['refresh'] = 'Uppdatera'; $labels['checkmail'] = 'Hämta nya meddelanden'; $labels['compose'] = 'Nytt meddelande'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Fler åtgärder'; $labels['more'] = 'Fler'; $labels['back'] = 'Tillbaka'; $labels['options'] = 'Alternativ'; - $labels['select'] = 'Välj'; $labels['all'] = 'Alla'; $labels['none'] = 'Ingen'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Visa alla'; $labels['expand-unread'] = 'Visa olästa'; $labels['collapse-all'] = 'Dölj alla'; $labels['threaded'] = 'Trådat'; - $labels['autoexpand_threads'] = 'Visa trådade meddelanden'; $labels['do_expand'] = 'Alla trådar'; $labels['expand_only_unread'] = 'Trådar med olästa meddelanden'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Kolumner'; $labels['listsorting'] = 'Sortering'; $labels['listorder'] = 'Ordning'; $labels['listmode'] = 'Visningsläge'; - $labels['folderactions'] = 'Hantera kataloger'; $labels['compact'] = 'Packa'; $labels['empty'] = 'Töm'; $labels['importmessages'] = 'Importera meddelanden'; - $labels['quota'] = 'Diskutrymme'; $labels['unknown'] = 'okänt'; $labels['unlimited'] = 'obegränsat'; - $labels['quicksearch'] = 'Snabbsök'; $labels['resetsearch'] = 'Återställ sökning'; $labels['searchmod'] = 'Sökalternativ'; $labels['msgtext'] = 'Hela meddelandet'; $labels['body'] = 'Innehåll'; $labels['type'] = 'Typ'; - $labels['openinextwin'] = 'Öppna i nytt fönster'; $labels['emlsave'] = 'Spara (.eml)'; $labels['changeformattext'] = 'Visa i text-format'; $labels['changeformathtml'] = 'Visa i HTML-format'; - -// message compose $labels['editasnew'] = 'Redigera som nytt'; $labels['send'] = 'Skicka'; $labels['sendmessage'] = 'Skicka meddelande'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Mottagarkvitto'; $labels['dsn'] = 'Leveransstatusmeddelande'; $labels['mailreplyintro'] = '$date skrev $sender:'; $labels['originalmessage'] = 'Ursprungligt meddelande'; - $labels['editidents'] = 'Ändra identiteter'; $labels['spellcheck'] = 'Rättstava'; $labels['checkspelling'] = 'Kontrollera stavning'; $labels['resumeediting'] = 'Återuppta redigering'; $labels['revertto'] = 'Återgå till'; - $labels['attach'] = 'Bifoga'; $labels['attachments'] = 'Bilagor'; $labels['upload'] = 'Bifoga'; $labels['uploadprogress'] = '$percent ($current av $total)'; $labels['close'] = 'Stäng'; $labels['messageoptions'] = 'Meddelandealternativ'; - $labels['low'] = 'Låg'; $labels['lowest'] = 'Lägst'; $labels['normal'] = 'Normal'; $labels['high'] = 'Hög'; $labels['highest'] = 'Högst'; - $labels['nosubject'] = '(inget ämne)'; $labels['showimages'] = 'Visa bilder'; $labels['alwaysshow'] = 'Visa alltid bilder från $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Detta meddelande är ett utkast.'; $labels['andnmore'] = '$nr fler...'; $labels['togglemoreheaders'] = 'Visa fler meddelandehuvuden'; $labels['togglefullheaders'] = 'Växla meddelandehuvuden'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Text'; $labels['savesentmessagein'] = 'Spara kopia i'; $labels['dontsave'] = 'Spara inte'; $labels['maxuploadsize'] = 'Tillåten filstorlek är $size'; - $labels['addcc'] = 'Kopia'; $labels['addbcc'] = 'Dold kopia'; $labels['addreplyto'] = 'Svar till'; $labels['addfollowupto'] = 'Uppföljning till'; - -// mdn $labels['mdnrequest'] = 'Avsändaren har begärt mottagarkvitto för det här meddelandet. Vill du skicka ett mottagarkvitto?'; $labels['receiptread'] = 'Mottagarkvitto (läst)'; $labels['yourmessage'] = 'Det här är ett mottagarkvitto för ditt meddelande'; $labels['receiptnote'] = 'Notera: Mottagarkvittot innebär bara att meddelandet visats på mottagarens dator. Därmed finns ingen garanti att mottagaren har läst och förstått meddelandet.'; - -// address boook $labels['name'] = 'Namn'; $labels['firstname'] = 'Förnamn'; $labels['surname'] = 'Efternamn'; @@ -304,7 +264,6 @@ $labels['search'] = 'Sök'; $labels['advsearch'] = 'Avancerad sökning'; $labels['advanced'] = 'Avancerad'; $labels['other'] = 'Annat'; - $labels['typehome'] = 'Hem'; $labels['typework'] = 'Arbete'; $labels['typeother'] = 'Annat'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistent'; $labels['typehomepage'] = 'Webbsida'; $labels['typeblog'] = 'Blogg'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Lägg till fält...'; $labels['addcontact'] = 'Lägg till ny kontakt'; $labels['editcontact'] = 'Ändra kontakt'; $labels['contacts'] = 'Kontakter'; $labels['contactproperties'] = 'Kontaktegenskaper'; $labels['personalinfo'] = 'Personlig information'; - $labels['edit'] = 'Redigera'; $labels['cancel'] = 'Avbryt'; $labels['save'] = 'Spara'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Ändra namn'; $labels['addphoto'] = 'Lägg till'; $labels['replacephoto'] = 'Ersätt'; $labels['uploadphoto'] = 'Ladda upp foto'; - $labels['newcontact'] = 'Ny kontakt'; $labels['deletecontact'] = 'Ta bort vald kontakt'; $labels['composeto'] = 'Nytt meddelande till'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Ny kontaktgrupp'; $labels['grouprename'] = 'Ändra gruppnamn'; $labels['groupdelete'] = 'Ta bort grupp'; $labels['groupremoveselected'] = 'Ta bort markerade kontakter från gruppen'; - $labels['previouspage'] = 'Visa föregående sida'; $labels['firstpage'] = 'Visa första sidan'; $labels['nextpage'] = 'Visa nästa sida'; $labels['lastpage'] = 'Visa sista sidan'; - $labels['group'] = 'Grupp'; $labels['groups'] = 'Kontaktgrupper'; $labels['listgroup'] = 'Visa gruppmedlemmar'; $labels['personaladrbook'] = 'Personliga adresser'; - $labels['searchsave'] = 'Lägg till sökning'; $labels['searchdelete'] = 'Ta bort sökning'; - $labels['import'] = 'Importera'; $labels['importcontacts'] = 'Importera kontakter'; $labels['importfromfile'] = 'Importera från fil:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Lägg till nya kontakter till adressbok:'; $labels['importreplace'] = 'Ersätt samtliga kontakter i adressboken'; $labels['importdesc'] = 'Kontakter kan importeras från en befintlig adressbok.
Programmet stödjer inläsning av kontakter i formatet vCard eller formatet CSV (kommaseparerad data).'; $labels['done'] = 'Klart'; - -// settings $labels['settingsfor'] = 'Inställningar för'; $labels['about'] = 'Om'; $labels['preferences'] = 'Inställningar'; $labels['userpreferences'] = 'Användarinställningar'; $labels['editpreferences'] = 'Ändra användarinställningar'; - $labels['identities'] = 'Identiteter'; $labels['manageidentities'] = 'Hantera identiteter'; $labels['newidentity'] = 'Ny identitet'; - $labels['newitem'] = 'Ny information'; $labels['edititem'] = 'Ändra information'; - $labels['preferhtml'] = 'Visa meddelanden i HTML-format'; $labels['defaultcharset'] = 'Förvald teckenkodning'; $labels['htmlmessage'] = 'HTML-meddelande'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Hantera popup-rutor som standardfönster'; $labels['forwardmode'] = 'Vidarebefordra meddelande'; $labels['inline'] = 'Infogat'; $labels['asattachment'] = 'Bilaga'; - $labels['folder'] = 'Katalog'; $labels['folders'] = 'Kataloger'; $labels['foldername'] = 'Katalognamn'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Katalogtyp'; $labels['personalfolder'] = 'Privat katalog'; $labels['otherfolder'] = 'Annan användares katalog'; $labels['sharedfolder'] = 'Publik katalog'; - $labels['sortby'] = 'Sortera på'; $labels['sortasc'] = 'Sortera stigande'; $labels['sortdesc'] = 'Sortera fallande'; $labels['undo'] = 'Ångra'; - $labels['installedplugins'] = 'Installerade tillägg'; $labels['plugin'] = 'Tillägg'; $labels['version'] = 'Version'; $labels['source'] = 'Källkod'; $labels['license'] = 'Licens'; $labels['support'] = 'Hjälp'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Engelsk'; $labels['westerneuropean'] = 'Västeuropeisk'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamesisk'; $labels['japanese'] = 'Japansk'; $labels['korean'] = 'Koreansk'; $labels['chinese'] = 'Kinesisk'; - ?> diff --git a/program/localization/sv_SE/messages.inc b/program/localization/sv_SE/messages.inc index d0c58a97d..d7d66292f 100644 --- a/program/localization/sv_SE/messages.inc +++ b/program/localization/sv_SE/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Katalogen kunde inte skapas eller flyttas. Åt $messages['messagetoobig'] = 'Denna del av meddelandet är alltför stor för att hantera.'; $messages['attachmentvalidationerror'] = 'VARNING! Bilagan misstänks vara av annan typ än vad som anges i meddelandet. Om du inte litar på avsändaren ska du inte öppna bilagan.

Angiven typ: $expected; funnen typ: $detected'; $messages['noscriptwarning'] = 'Varning: Denna webbmailtjänst fungerar inte utan Javascript! Aktivera Javascript i webbläsarens inställningar.'; - ?> diff --git a/program/localization/ta_IN/labels.inc b/program/localization/ta_IN/labels.inc index 197e80606..e4471de6a 100644 --- a/program/localization/ta_IN/labels.inc +++ b/program/localization/ta_IN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'நல்வரவு'; $labels['username'] = 'பயனர்'; $labels['password'] = 'கடவுச்சொல்'; $labels['server'] = 'சேவையகம்'; $labels['login'] = 'நுழை'; - -// taskbar $labels['logout'] = 'வெளியேறு'; $labels['mail'] = 'மின்னஞ்சல்'; $labels['settings'] = 'அமைப்புகள்'; $labels['addressbook'] = 'தொடர்புகள்'; - -// mailbox names $labels['inbox'] = 'அகப்பெட்டி'; $labels['drafts'] = 'வரைவுகள்'; $labels['sent'] = 'அனுப்பிய அஞ்சல்'; $labels['trash'] = 'குப்பை'; $labels['junk'] = 'எரிதம்'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'தலைப்பு'; $labels['from'] = 'அனுப்புனர்'; $labels['sender'] = 'Sender'; @@ -54,13 +47,11 @@ $labels['priority'] = 'முக்கியத்துவம்'; $labels['organization'] = 'நிறுவனம்'; $labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'List options...'; - $labels['mailboxlist'] = 'அடைவுகள்'; $labels['messagesfromto'] = 'செய்திகள் $countல் $from லிருந்து $to வரை'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$countல் $nr வது செய்தி'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'நகல்'; $labels['move'] = 'Move'; $labels['moveto'] = 'இதற்கு அனுப்பு...'; @@ -68,13 +59,9 @@ $labels['download'] = 'பதிவிறக்கு'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'கோப்பு பெயர்'; $labels['filesize'] = 'கோப்பு அளவு'; - $labels['addtoaddressbook'] = 'தொடர்புகளுக்கு சேர்க்கவும்'; - -// weekdays short $labels['sun'] = 'ஞாயிறு'; $labels['mon'] = 'திங்கள்'; $labels['tue'] = 'செவ்வாய்'; @@ -82,8 +69,6 @@ $labels['wed'] = 'புதன்'; $labels['thu'] = 'வியாழன்'; $labels['fri'] = 'வெள்ளி'; $labels['sat'] = 'சனி'; - -// weekdays long $labels['sunday'] = 'ஞாயிறு'; $labels['monday'] = 'திங்கள்'; $labels['tuesday'] = 'செவ்வாய்'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'புதன்'; $labels['thursday'] = 'வியாழன்'; $labels['friday'] = 'வெள்ளி'; $labels['saturday'] = 'சனி'; - -// months short $labels['jan'] = 'சனவரி'; $labels['feb'] = 'பிப்ரவரி'; $labels['mar'] = 'மார்ச்'; @@ -105,8 +88,6 @@ $labels['sep'] = 'செப்டம்பர்'; $labels['oct'] = 'அக்டோபர்'; $labels['nov'] = 'நவம்பர்'; $labels['dec'] = 'டிசம்பர்'; - -// months long $labels['longjan'] = 'சனவரி'; $labels['longfeb'] = 'பிப்ரவரி'; $labels['longmar'] = 'மார்ச்'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'செப்டம்பர்'; $labels['longoct'] = 'அக்டோபர்'; $labels['longnov'] = 'நவம்பர்'; $labels['longdec'] = 'டிசம்பர்'; - $labels['today'] = 'இன்று'; - -// toolbar buttons $labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'புது அஞ்சல்களை பார்க்கவும்'; $labels['compose'] = 'அஞ்சல் எழுது'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'More actions...'; $labels['more'] = 'More'; $labels['back'] = 'Back'; $labels['options'] = 'Options'; - $labels['select'] = 'தேர்ந்தெடு'; $labels['all'] = 'எல்லாம்'; $labels['none'] = 'எதுவுமில்லை'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Expand All'; $labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Collapse All'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'குறுகிய'; $labels['empty'] = 'காலி'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'பயன்பாட்டு அளவு'; $labels['unknown'] = 'தெரியாத'; $labels['unlimited'] = 'அளவில்லா'; - $labels['quicksearch'] = 'விரைவு தேடல்'; $labels['resetsearch'] = 'தேடலை மறுஅமை'; $labels['searchmod'] = 'மாற்றிகளை தேடு'; $labels['msgtext'] = 'முழு செய்தி'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'புது சாளரத்தில் திற'; $labels['emlsave'] = 'பதிவிறக்கு (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'புதியதாக திருத்து'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'இப்போது அனுப்பு'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'திரும்பு சீட்டு'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'எழுத்துப்பிழை சரிபார்'; $labels['resumeediting'] = 'திருத்துவதை தொடரவும்'; $labels['revertto'] = 'முந்திய நிலைக்கு திரும்பவும்'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'கோப்பு இணைப்புகள்'; $labels['upload'] = 'பதிவேற்று'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'மூடு'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'குறைந்த'; $labels['lowest'] = 'மிக குறைந்த'; $labels['normal'] = 'சாதாரண'; $labels['high'] = 'அதிக'; $labels['highest'] = 'மிக அதிக'; - $labels['nosubject'] = '(தலைப்பில்லா)'; $labels['showimages'] = 'படங்களை காட்டு'; $labels['alwaysshow'] = '$-னிடமிருந்து வரும் படங்களை காட்டு'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'எளிய உரை'; $labels['savesentmessagein'] = 'அனுப்பிய அஞ்சலை இங்கு சேமிக்கவும்'; $labels['dontsave'] = 'சேமிக்காதே'; $labels['maxuploadsize'] = 'அனுமதிக்கப்படும் அதிகபட்ச கோப்பு அளவு $'; - $labels['addcc'] = 'நகல் சேர்'; $labels['addbcc'] = 'மறை நகல் சேர்'; $labels['addreplyto'] = 'பதிலளிக்க வேண்டியவர்களை சேர்'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'இந்த செய்தியின் அனுப்புனர் இதை படித்தவுடன் அறிவிக்கும்படி கேட்டார். அறிவிக்க விரும்புகிறீர்களா ?'; $labels['receiptread'] = 'திரும்பு சீட்டு (படி)'; $labels['yourmessage'] = 'இது உங்கள் செய்தியின் திரும்பு சீட்டு'; $labels['receiptnote'] = 'குறிப்பு: இந்த ஒப்புகை பெறுனரிடம் செய்தியை காட்டியதற்காக வருகிறது. அவர் அதை படித்ததற்கு எந்த உத்திரவாதமும் இல்லை'; - -// address boook $labels['name'] = 'காட்சி பெயர்'; $labels['firstname'] = 'முதற் பெயர்'; $labels['surname'] = 'கடைசி பெயர்'; @@ -304,7 +264,6 @@ $labels['search'] = 'Search'; $labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'Advanced'; $labels['other'] = 'Other'; - $labels['typehome'] = 'Home'; $labels['typework'] = 'Work'; $labels['typeother'] = 'Other'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'Blog'; $labels['typeprofile'] = 'Profile'; - $labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'புது தொடர்பை சேர்'; $labels['editcontact'] = 'தொடர்பை திருத்து'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'திருத்து'; $labels['cancel'] = 'ரத்து'; $labels['save'] = 'சேமி'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Rename'; $labels['addphoto'] = 'Add'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'புது தொடர்பு அட்டையை உருவாக்கு'; $labels['deletecontact'] = 'தேர்ந்தெடுத்த தொடர்புகளை நீக்கு'; $labels['composeto'] = 'இவர்-கு அஞ்சல் எழுது'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'முந்திய குழுவை காட்டு'; $labels['firstpage'] = 'முதல் குழுவை காட்டு'; $labels['nextpage'] = 'அடுத்த குழுவை காட்டு'; $labels['lastpage'] = 'கடைசி குழுவை காட்டு'; - $labels['group'] = 'Group'; $labels['groups'] = 'குழுக்கள்'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'சுய முகவரி'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'இறக்குமதி'; $labels['importcontacts'] = 'தொடர்புகளை இறக்குமதி செய்யவும்'; $labels['importfromfile'] = 'இந்த கோப்பிலிருந்து இறக்குமதி செய்யவும்:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'எல்லா தொடர்புகளையும் மாற்றி அமை'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'முடிந்தது'; - -// settings $labels['settingsfor'] = 'இதற்கான அமைப்புகள்'; $labels['about'] = 'About'; $labels['preferences'] = 'விருப்பங்கள்'; $labels['userpreferences'] = 'பயனர் விருப்பங்கள்'; $labels['editpreferences'] = 'பயனர் விருப்பங்களை திருத்து'; - $labels['identities'] = 'அடையாளங்கள்'; $labels['manageidentities'] = 'இந்த கணக்கிற்கான அடையாளங்களை நிற்வாகிக்கவும்'; $labels['newidentity'] = 'புது அடையாளம்'; - $labels['newitem'] = 'புது உருப்படி'; $labels['edititem'] = 'உருப்படியை திருத்து'; - $labels['preferhtml'] = 'HTML காட்டு'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML செய்தி'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; - $labels['folder'] = 'அடைவு'; $labels['folders'] = 'அடைவுகள்'; $labels['foldername'] = 'அடைவு பெயர்'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'Private Folder'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Public Folder'; - $labels['sortby'] = 'வாரியாக அடுக்கு'; $labels['sortasc'] = 'ஏறு வரிசையாக அடுக்கு'; $labels['sortdesc'] = 'இறங்கு வரிசையாக அடுக்கு'; $labels['undo'] = 'Undo'; - $labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Version'; $labels['source'] = 'Source'; $labels['license'] = 'License'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/ta_IN/messages.inc b/program/localization/ta_IN/messages.inc index 22466351a..e1c2251a0 100644 --- a/program/localization/ta_IN/messages.inc +++ b/program/localization/ta_IN/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/th_TH/labels.inc b/program/localization/th_TH/labels.inc index 85b091e5b..e0a9656ec 100644 --- a/program/localization/th_TH/labels.inc +++ b/program/localization/th_TH/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'ยินดีต้อนรับสู่ $product'; $labels['username'] = 'บัญชีผู้ใช้'; $labels['password'] = 'รหัสผ่าน'; $labels['server'] = 'เซิร์ฟเวอร์'; $labels['login'] = 'เข้าสู่ระบบ'; - -// taskbar $labels['logout'] = 'ออกจากระบบ'; $labels['mail'] = 'อีเมล์'; $labels['settings'] = 'ปรับแต่งค่าส่วนตัว'; $labels['addressbook'] = 'สมุดรายชื่อ'; - -// mailbox names $labels['inbox'] = 'กล่องขาเข้า'; $labels['drafts'] = 'กล่องจดหมายร่าง'; $labels['sent'] = 'กล่องขาออก'; $labels['trash'] = 'ถังขยะ'; $labels['junk'] = 'กล่องจดหมายขยะ'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'หัวจดหมาย'; $labels['from'] = 'ผู้ส่ง'; $labels['sender'] = 'ผู้ส่ง'; @@ -54,13 +47,11 @@ $labels['priority'] = 'ระดับความสำคัญ'; $labels['organization'] = 'องค์กร'; $labels['readstatus'] = 'สถานะการเปิดอ่าน'; $labels['listoptions'] = 'ตัวเลือกการแสดงรายการ'; - $labels['mailboxlist'] = 'กล่องจดหมาย'; $labels['messagesfromto'] = 'จดหมายจาก $from ถึง $to จำนวน $count ฉบับ'; $labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'จดหมายฉบับที่ $nr จาก $count ฉบับ'; $labels['fromtoshort'] = '$from – $to of $count'; - $labels['copy'] = 'คัดลอก'; $labels['move'] = 'เลื่อน'; $labels['moveto'] = 'ย้ายไป...'; @@ -68,13 +59,9 @@ $labels['download'] = 'ดาวน์โหลด'; $labels['open'] = 'Open'; $labels['showattachment'] = 'แสดง'; $labels['showanyway'] = 'Show it anyway'; - $labels['filename'] = 'ชื่อไฟล์'; $labels['filesize'] = 'ขนาดไฟล์'; - $labels['addtoaddressbook'] = 'บันทึกในสมุดรายชื่อ'; - -// weekdays short $labels['sun'] = 'อ'; $labels['mon'] = 'จ'; $labels['tue'] = 'อ'; @@ -82,8 +69,6 @@ $labels['wed'] = 'พ'; $labels['thu'] = 'พฤ'; $labels['fri'] = 'ศ'; $labels['sat'] = 'ส'; - -// weekdays long $labels['sunday'] = 'วันอาทิตย์'; $labels['monday'] = 'วันจันทร์'; $labels['tuesday'] = 'วันอังคาร'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'วันพุธ'; $labels['thursday'] = 'วันพฤหัสบดี'; $labels['friday'] = 'วันศุกร์'; $labels['saturday'] = 'วันเสาร์'; - -// months short $labels['jan'] = 'ม.ค.'; $labels['feb'] = 'ก.พ.'; $labels['mar'] = 'มี.ค.'; @@ -105,8 +88,6 @@ $labels['sep'] = 'ก.ย.'; $labels['oct'] = 'ต.ค.'; $labels['nov'] = 'พ.ย.'; $labels['dec'] = 'ธ.ค.'; - -// months long $labels['longjan'] = 'มกราคม'; $labels['longfeb'] = 'กุมภาพันธ์'; $labels['longmar'] = 'มีนาคม'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'กันยายน'; $labels['longoct'] = 'ตุลาคม'; $labels['longnov'] = 'พฤศจิกายน'; $labels['longdec'] = 'ธันวาคม'; - $labels['today'] = 'วันนี้'; - -// toolbar buttons $labels['refresh'] = 'รีเฟรช'; $labels['checkmail'] = 'ตรวจสอบจดหมายใหม่'; $labels['compose'] = 'เขียนจดหมายใหม่'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'การกระทำเพิ่มเติ $labels['more'] = 'เพิ่มเติม'; $labels['back'] = 'ย้อนกลับ'; $labels['options'] = 'ตัวเลือก'; - $labels['select'] = 'เลือก'; $labels['all'] = 'ทั้งหมด'; $labels['none'] = 'ไม่เลือก'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'แสดงทั้งหมด'; $labels['expand-unread'] = 'แสดงเฉพาะที่ยังไม่ได้อ่าน'; $labels['collapse-all'] = 'ปิดทั้งหมด'; $labels['threaded'] = 'Threaded'; - $labels['autoexpand_threads'] = 'Expand message threads'; $labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'only with unread messages'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'จัดเรียงคอลัมน์'; $labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'List view mode'; - $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'แบบย่อ'; $labels['empty'] = 'ว่างเปล่า'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'พื้นที่ใช้งาน'; $labels['unknown'] = 'ไม่ทราบ'; $labels['unlimited'] = 'ไม่จำกัด'; - $labels['quicksearch'] = 'ค้นหาแบบด่วน'; $labels['resetsearch'] = 'ล้างการค้นหา'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; $labels['body'] = 'เนื้อหา'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'ส่งจดหมาย'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'ตอบกลับผู้รับ'; $labels['dsn'] = 'Delivery status notification'; $labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Original Message'; - $labels['editidents'] = 'Edit identities'; $labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ตรวจสอบคำผิด'; $labels['resumeediting'] = 'แก้ไขต่อ'; $labels['revertto'] = 'ย้นกลับไปยัง'; - $labels['attach'] = 'Attach'; $labels['attachments'] = 'ไฟล์แนบ'; $labels['upload'] = 'อัพโหลด'; $labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'ปิด'; $labels['messageoptions'] = 'Message options...'; - $labels['low'] = 'ต่ำ'; $labels['lowest'] = 'ต่ำสุด'; $labels['normal'] = 'ปกติ'; $labels['high'] = 'สูง'; $labels['highest'] = 'สูงสุด'; - $labels['nosubject'] = '(ไม่มีหัวข้อ)'; $labels['showimages'] = 'แสดงรูป'; $labels['alwaysshow'] = 'Always show images from $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'This is a draft message.'; $labels['andnmore'] = '$nr more...'; $labels['togglemoreheaders'] = 'Show more message headers'; $labels['togglefullheaders'] = 'Toggle raw message headers'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; $labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'don\'t save'; $labels['maxuploadsize'] = 'Maximum allowed file size is $size'; - $labels['addcc'] = 'Add Cc'; $labels['addbcc'] = 'Add Bcc'; $labels['addreplyto'] = 'Add Reply-To'; $labels['addfollowupto'] = 'Add Followup-To'; - -// mdn $labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'Return Receipt (read)'; $labels['yourmessage'] = 'This is a Return Receipt for your message'; $labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; - -// address boook $labels['name'] = 'ชื่อแสดง'; $labels['firstname'] = 'ชื่อ'; $labels['surname'] = 'สกุล'; @@ -304,7 +264,6 @@ $labels['search'] = 'ค้นหา'; $labels['advsearch'] = 'ค้นหาขั้นสูง'; $labels['advanced'] = 'ขั้นสูง'; $labels['other'] = 'อื่นๆ'; - $labels['typehome'] = 'บ้าน'; $labels['typework'] = 'สถานที่ทำงาน'; $labels['typeother'] = 'อื่นๆ'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'โฮมเพจ'; $labels['typeblog'] = 'บล็อก'; $labels['typeprofile'] = 'โปรไฟล์'; - $labels['addfield'] = 'เพิ่มช่องข้อมูล...'; $labels['addcontact'] = 'เพิ่มรายชื่อ'; $labels['editcontact'] = 'แก้ไขรายชื่อ'; $labels['contacts'] = 'Contacts'; $labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'Personal information'; - $labels['edit'] = 'แก้ไข'; $labels['cancel'] = 'ยกเลิก'; $labels['save'] = 'บันทึก'; @@ -335,7 +292,6 @@ $labels['rename'] = 'เปลี่ยนชื่อ'; $labels['addphoto'] = 'เพิ่ม'; $labels['replacephoto'] = 'Replace'; $labels['uploadphoto'] = 'Upload photo'; - $labels['newcontact'] = 'สร้างรายชื่อใหม่'; $labels['deletecontact'] = 'ลบรายชื่อที่เลือก'; $labels['composeto'] = 'เขียนจดหมายถึง'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'Delete group'; $labels['groupremoveselected'] = 'Remove selected contacts from group'; - $labels['previouspage'] = 'หน้าที่แล้ว'; $labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'หน้าถัดไป'; $labels['lastpage'] = 'Show last page'; - $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; - $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; - $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; - -// settings $labels['settingsfor'] = 'ตั้งค่าสำหรับ'; $labels['about'] = 'About'; $labels['preferences'] = 'ปรับแต่ง'; $labels['userpreferences'] = 'ข้อมูลส่วนตัว'; $labels['editpreferences'] = 'แก้ไขข้อมูลส่วนตัว'; - $labels['identities'] = 'ชื่อแสดงตัว'; $labels['manageidentities'] = 'จัดการชื่อแสดงตัวสำหรับรายชื่อนี้'; $labels['newidentity'] = 'ชื่อแสดงตัวใหม่'; - $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; - $labels['preferhtml'] = 'อ่านแบบ HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'จดหมาย HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'เป็นไฟล์แนบ'; - $labels['folder'] = 'กล่องจดหมาย'; $labels['folders'] = 'กล่องจดหมาย'; $labels['foldername'] = 'ชื่อกล่องจดหมาย'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'ประเภทโฟลเดอร์'; $labels['personalfolder'] = 'โฟลเดอร์ส่วนตัว'; $labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'โฟลเดอร์สาธารณะ'; - $labels['sortby'] = 'เรียงตาม'; $labels['sortasc'] = 'เรียงจากหน้าไปหลัง'; $labels['sortdesc'] = 'เรียงจากหลังไปหน้า'; $labels['undo'] = 'เลิกทำ'; - $labels['installedplugins'] = 'ปลั๊กอินที่ติดตั้ง'; $labels['plugin'] = 'ปลั๊กอิน'; $labels['version'] = 'รุ่น'; $labels['source'] = 'Source'; $labels['license'] = 'สัญญาอนุญาต'; $labels['support'] = 'Get support'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'English'; $labels['westerneuropean'] = 'Western European'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japanese'; $labels['korean'] = 'Korean'; $labels['chinese'] = 'Chinese'; - ?> diff --git a/program/localization/th_TH/messages.inc b/program/localization/th_TH/messages.inc index cf9a1cde8..81164fe77 100644 --- a/program/localization/th_TH/messages.inc +++ b/program/localization/th_TH/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Unable to create/move folder into selected par $messages['messagetoobig'] = 'The message part is too big to process it.'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/tr_TR/labels.inc b/program/localization/tr_TR/labels.inc index c62c5c079..511f3e15e 100644 --- a/program/localization/tr_TR/labels.inc +++ b/program/localization/tr_TR/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '$product, Hoş Geldiniz'; $labels['username'] = 'Kullanıcı Adı'; $labels['password'] = 'Parola'; $labels['server'] = 'Sunucu'; $labels['login'] = 'Oturum Aç'; - -// taskbar $labels['logout'] = 'Oturumu Kapat'; $labels['mail'] = 'E-Posta'; $labels['settings'] = 'Kişisel Ayarlar'; $labels['addressbook'] = 'Adres Defteri'; - -// mailbox names $labels['inbox'] = 'Gelen'; $labels['drafts'] = 'Taslaklar'; $labels['sent'] = 'Giden'; $labels['trash'] = 'Çöp'; $labels['junk'] = 'İstenmeyen'; $labels['show_real_foldernames'] = 'Özel klasörler için gerçek isimleri göster'; - -// message listing $labels['subject'] = 'Konu'; $labels['from'] = 'Gönderen'; $labels['sender'] = 'Gönderici'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Öncelik'; $labels['organization'] = 'Kuruluş'; $labels['readstatus'] = 'Okunma durumu'; $labels['listoptions'] = 'Seçenekleri listele...'; - $labels['mailboxlist'] = 'Klasörler'; $labels['messagesfromto'] = 'Postalar: $from - $to , Toplam: $count'; $labels['threadsfromto'] = 'Postalar: $from - $to, Toplam $count'; $labels['messagenrof'] = 'Posta: $nr / $count'; $labels['fromtoshort'] = '$from - $to , Toplam: $count'; - $labels['copy'] = 'Kopyala'; $labels['move'] = 'Taşı'; $labels['moveto'] = 'Şuraya taşı...'; @@ -68,13 +59,9 @@ $labels['download'] = 'İndir'; $labels['open'] = 'Aç'; $labels['showattachment'] = 'Göster'; $labels['showanyway'] = 'Yine de göster'; - $labels['filename'] = 'Dosya Adı'; $labels['filesize'] = 'Dosya Boyutu'; - $labels['addtoaddressbook'] = 'Adres Defterine Ekle'; - -// weekdays short $labels['sun'] = 'Paz'; $labels['mon'] = 'Pzt'; $labels['tue'] = 'Sal'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Çrş'; $labels['thu'] = 'Per'; $labels['fri'] = 'Cum'; $labels['sat'] = 'Cts'; - -// weekdays long $labels['sunday'] = 'Paz'; $labels['monday'] = 'Pazartesi'; $labels['tuesday'] = 'Salı'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Çarşamba'; $labels['thursday'] = 'Perşembe'; $labels['friday'] = 'Cuma'; $labels['saturday'] = 'Cumartesi'; - -// months short $labels['jan'] = 'Oca'; $labels['feb'] = 'Şub'; $labels['mar'] = 'Mar'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Eyl'; $labels['oct'] = 'Eki'; $labels['nov'] = 'Kas'; $labels['dec'] = 'Ara'; - -// months long $labels['longjan'] = 'Ocak'; $labels['longfeb'] = 'Şubat'; $labels['longmar'] = 'Mart'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Eylül'; $labels['longoct'] = 'Ekim'; $labels['longnov'] = 'Kasım'; $labels['longdec'] = 'Aralık'; - $labels['today'] = 'Bugün'; - -// toolbar buttons $labels['refresh'] = 'Yenile'; $labels['checkmail'] = 'Yeni Postaları Kontrol Et'; $labels['compose'] = 'E-Posta Yaz'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Diğer İşlemler'; $labels['more'] = 'Daha Fazla'; $labels['back'] = 'Geri'; $labels['options'] = 'Seçenekler'; - $labels['select'] = 'Seç'; $labels['all'] = 'Hepsini'; $labels['none'] = 'Yok'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Tümünü genişlet'; $labels['expand-unread'] = 'Okunmamışları genişlet'; $labels['collapse-all'] = 'Tümünü daralt'; $labels['threaded'] = 'Dizilimli'; - $labels['autoexpand_threads'] = 'Dizilimleri aç'; $labels['do_expand'] = 'tüm dizilimler'; $labels['expand_only_unread'] = 'sadece okunmamış posta içeren dizilimler'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Sütunları listele'; $labels['listsorting'] = 'Sıralama sütunu'; $labels['listorder'] = 'Sıralama düzeni'; $labels['listmode'] = 'Liste görünümü'; - $labels['folderactions'] = 'Klasör eylemleri...'; $labels['compact'] = 'Sıklaştır'; $labels['empty'] = 'Boşalt'; $labels['importmessages'] = 'Mesajları içe aktar'; - $labels['quota'] = 'Disk kullanımı'; $labels['unknown'] = 'bilinmeyen'; $labels['unlimited'] = 'sınırsız'; - $labels['quicksearch'] = 'Hızlı arama'; $labels['resetsearch'] = 'Aramayı bitir'; $labels['searchmod'] = 'Arama detayları'; $labels['msgtext'] = 'Tüm posta gövdesi'; $labels['body'] = 'Gövde'; $labels['type'] = 'Tip'; - $labels['openinextwin'] = 'Yeni pencerede aç'; $labels['emlsave'] = 'İndir (.eml)'; $labels['changeformattext'] = 'Düz yazı formatında göster'; $labels['changeformathtml'] = 'HTML formatında göster'; - -// message compose $labels['editasnew'] = 'Postayı yeni olarak düzenle'; $labels['send'] = 'Gönder'; $labels['sendmessage'] = 'Postayı gönder'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Alındı onayı'; $labels['dsn'] = 'Teslimat durumu bildirisi'; $labels['mailreplyintro'] = '$date, $sender yazmış:'; $labels['originalmessage'] = 'Özgün ileti'; - $labels['editidents'] = 'Kimlikleri düzenle'; $labels['spellcheck'] = 'Yazım denetimi'; $labels['checkspelling'] = 'Yazım denetimi yap'; $labels['resumeediting'] = 'Düzenlemeye devam et'; $labels['revertto'] = 'Geri çevir:'; - $labels['attach'] = 'Ekle'; $labels['attachments'] = 'Ekler'; $labels['upload'] = 'Yükle'; $labels['uploadprogress'] = '$percent ($current / $total)'; $labels['close'] = 'Kapat'; $labels['messageoptions'] = 'İleti seçenekleri...'; - $labels['low'] = 'Düşük'; $labels['lowest'] = 'En Düşük'; $labels['normal'] = 'Normal'; $labels['high'] = 'Yüksek'; $labels['highest'] = 'En yüksek'; - $labels['nosubject'] = '(Konu Belirtilmemiş)'; $labels['showimages'] = 'Resimleri göster'; $labels['alwaysshow'] = '$sender tarafından gönderilen resimleri her zaman göster'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Bu posta taslaktır.'; $labels['andnmore'] = '$nr daha...'; $labels['togglemoreheaders'] = 'Daha fazla posta başlığı göster'; $labels['togglefullheaders'] = 'Posta başlıklarını göster/gizle'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Düz metin'; $labels['savesentmessagein'] = 'Gönderileni buraya kaydet'; $labels['dontsave'] = 'kaydetme'; $labels['maxuploadsize'] = 'İzin verilen en büyük dosya boyutu $size'; - $labels['addcc'] = 'İlgili kopyası ekle'; $labels['addbcc'] = 'Gizli kopya ekle'; $labels['addreplyto'] = 'Yanıtlama adresi ekle'; $labels['addfollowupto'] = 'Takip adresi ekle'; - -// mdn $labels['mdnrequest'] = 'Bu postayı gönderen kişi, postayı okuduğunuza dair alındı onayı istedi. Alındı onayını göndermek ister misiniz ?'; $labels['receiptread'] = 'Alındı Onayı (okundu)'; $labels['yourmessage'] = 'Bu, postanız için alındı onayıdır'; $labels['receiptnote'] = 'Not: Bu alındı onayı sadece postanızın alıcının bilgisayarında gösterildiğini belirtir. Alıcının posta içeriğini okuduğunu veya anladığını garantilemez.'; - -// address boook $labels['name'] = 'Görüntülenen isim'; $labels['firstname'] = 'Ad'; $labels['surname'] = 'Soyad'; @@ -304,7 +264,6 @@ $labels['search'] = 'Ara'; $labels['advsearch'] = 'Gelişmiş ara'; $labels['advanced'] = 'Gelişmiş'; $labels['other'] = 'Diğer'; - $labels['typehome'] = 'Ev'; $labels['typework'] = 'İş'; $labels['typeother'] = 'Diğer'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Asistan'; $labels['typehomepage'] = 'Ev sayfası'; $labels['typeblog'] = 'Günlük'; $labels['typeprofile'] = 'Profil'; - $labels['addfield'] = 'Alan ekle...'; $labels['addcontact'] = 'Adres defterine ekle'; $labels['editcontact'] = 'Kişiyi düzenle'; $labels['contacts'] = 'Kişiler'; $labels['contactproperties'] = 'Kişi özellikleri'; $labels['personalinfo'] = 'Kişisel bilgiler'; - $labels['edit'] = 'Düzenle'; $labels['cancel'] = 'İptal'; $labels['save'] = 'Kaydet'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Yeniden adlandır'; $labels['addphoto'] = 'Ekle'; $labels['replacephoto'] = 'Değiştir'; $labels['uploadphoto'] = 'Fotoğraf yükle'; - $labels['newcontact'] = 'Yeni adres kartı ekle'; $labels['deletecontact'] = 'Seçili kişileri sil'; $labels['composeto'] = 'Seçili kişiye posta gönder'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Yeni kişi grubu oluştur'; $labels['grouprename'] = 'Grubu yeniden adlandır'; $labels['groupdelete'] = 'Grubu sil'; $labels['groupremoveselected'] = 'Seçili kişileri gruptan sil'; - $labels['previouspage'] = 'Öncekileri göster'; $labels['firstpage'] = 'İlkini göster'; $labels['nextpage'] = 'Sonrakileri göster'; $labels['lastpage'] = 'Sonuncuyu göster'; - $labels['group'] = 'Grup'; $labels['groups'] = 'Gruplar'; $labels['listgroup'] = 'Grup üyelerini listele'; $labels['personaladrbook'] = 'Adresler'; - $labels['searchsave'] = 'Aramayı kaydet'; $labels['searchdelete'] = 'Aramayı sil'; - $labels['import'] = 'İçe aktar'; $labels['importcontacts'] = 'Kişileri içe aktar'; $labels['importfromfile'] = 'Dosyadan içe aktar:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Yeni kişiler eklenecek adres defteri:'; $labels['importreplace'] = 'Tüm adres defterinin yerine geçsin'; $labels['importdesc'] = 'Mevcut bir adres defterinden kişileri yükleyebilirsiniz.
Şu anda vCard veya CSV (virgülle ayrılmış) veri formatları desteklenmektedir.'; $labels['done'] = 'Tamam'; - -// settings $labels['settingsfor'] = 'Ayarlar'; $labels['about'] = 'Hakkında'; $labels['preferences'] = 'Tercihler'; $labels['userpreferences'] = 'Kullanıcı tercihleri'; $labels['editpreferences'] = 'Kullanıcı tercihlerini düzenle'; - $labels['identities'] = 'Kimlikler'; $labels['manageidentities'] = 'Bu hesap için kimlikleri düzenle'; $labels['newidentity'] = 'Yeni kimlik'; - $labels['newitem'] = 'Yeni öğe'; $labels['edititem'] = 'Öğe düzenle'; - $labels['preferhtml'] = 'HTML görüntüle'; $labels['defaultcharset'] = 'Varsayılan Karakter Kümesi'; $labels['htmlmessage'] = 'HTML Posta'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Popup pencerelerini standart pencere olarak yönet $labels['forwardmode'] = 'Posta yönlendirme'; $labels['inline'] = 'postanın içinde'; $labels['asattachment'] = 'ek olarak'; - $labels['folder'] = 'Klasör'; $labels['folders'] = 'Klasörler'; $labels['foldername'] = 'Klasör Adı'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Klasör Türü'; $labels['personalfolder'] = 'Kişisel Klasör'; $labels['otherfolder'] = 'Diğer Kullanıcıların Klasörü'; $labels['sharedfolder'] = 'Genel Klasör'; - $labels['sortby'] = 'Sırala'; $labels['sortasc'] = 'Artarak'; $labels['sortdesc'] = 'Azalarak'; $labels['undo'] = 'Geri al'; - $labels['installedplugins'] = 'Yüklü eklentiler'; $labels['plugin'] = 'Eklenti'; $labels['version'] = 'Sürüm'; $labels['source'] = 'Kaynak'; $labels['license'] = 'Lisans'; $labels['support'] = 'Destek Al'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'İngilizce'; $labels['westerneuropean'] = 'Batı Avrupa'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Vietnamca'; $labels['japanese'] = 'Japonca'; $labels['korean'] = 'Korece'; $labels['chinese'] = 'Çince'; - ?> diff --git a/program/localization/tr_TR/messages.inc b/program/localization/tr_TR/messages.inc index 3f728b523..88b8eec0f 100644 --- a/program/localization/tr_TR/messages.inc +++ b/program/localization/tr_TR/messages.inc @@ -169,5 +169,4 @@ $messages['parentnotwritable'] = 'Klasör, seçilen üst klasöre taşınamıyor $messages['messagetoobig'] = 'Bu ileti parçası işlenemeyecek kadar büyük.'; $messages['attachmentvalidationerror'] = 'UYARI! Bu eklenti mesajda belirtilenden farklı olduğu için şüpheli bulundu. Eğer göndericiye güvenmiyorsanız eki web tarayıcısında açmayın. Şüpheli içerik bulunabilir.'; $messages['noscriptwarning'] = 'Uyarı: Bu e-posta servisi Javascript gerektirmektedir! Servisi kullanabilmek için lütfen web tarayıcınızın ayarlarından Javascript\'i etkinleştiriniz.'; - ?> diff --git a/program/localization/uk_UA/labels.inc b/program/localization/uk_UA/labels.inc index bb483012b..2bf666334 100644 --- a/program/localization/uk_UA/labels.inc +++ b/program/localization/uk_UA/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Ласкаво просимо до $product'; $labels['username'] = 'Ім\'я користувача'; $labels['password'] = 'Пароль'; $labels['server'] = 'Сервер'; $labels['login'] = 'Увійти'; - -// taskbar $labels['logout'] = 'Вийти'; $labels['mail'] = 'Пошта'; $labels['settings'] = 'Налаштування'; $labels['addressbook'] = 'Контакти'; - -// mailbox names $labels['inbox'] = 'Вхідні'; $labels['drafts'] = 'Чернетки'; $labels['sent'] = 'Надіслані'; $labels['trash'] = 'Кошик'; $labels['junk'] = 'Спам'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Тема'; $labels['from'] = 'Відправник'; $labels['sender'] = 'Відправник'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Пріоритет'; $labels['organization'] = 'Організація'; $labels['readstatus'] = 'Статус прочитання'; $labels['listoptions'] = 'Налаштування списку...'; - $labels['mailboxlist'] = 'Папки'; $labels['messagesfromto'] = 'Повідомлення з $from по $to із $count'; $labels['threadsfromto'] = 'Обговорення з $from по $to із $count'; $labels['messagenrof'] = 'Лист $nr із $count'; $labels['fromtoshort'] = '$from – $to з $count'; - $labels['copy'] = 'Копіювати'; $labels['move'] = 'Перемістити'; $labels['moveto'] = 'Перемістити до...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Завантажити'; $labels['open'] = 'Відкрити'; $labels['showattachment'] = 'Показати'; $labels['showanyway'] = 'Все одно показати'; - $labels['filename'] = 'Ім\'я файлу'; $labels['filesize'] = 'Розмір файлу'; - $labels['addtoaddressbook'] = 'Додати до контактів'; - -// weekdays short $labels['sun'] = 'Нд'; $labels['mon'] = 'Пн'; $labels['tue'] = 'Вт'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Ср'; $labels['thu'] = 'Чт'; $labels['fri'] = 'Пт'; $labels['sat'] = 'Сб'; - -// weekdays long $labels['sunday'] = 'Неділя'; $labels['monday'] = 'Понеділок'; $labels['tuesday'] = 'Вівторок'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Середа'; $labels['thursday'] = 'Четвер'; $labels['friday'] = 'П\'ятниця'; $labels['saturday'] = 'Субота'; - -// months short $labels['jan'] = 'січ'; $labels['feb'] = 'лют'; $labels['mar'] = 'бер'; @@ -105,8 +88,6 @@ $labels['sep'] = 'вер'; $labels['oct'] = 'жов'; $labels['nov'] = 'лис'; $labels['dec'] = 'гр'; - -// months long $labels['longjan'] = 'Січень'; $labels['longfeb'] = 'Лютий'; $labels['longmar'] = 'Березень'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Вересень'; $labels['longoct'] = 'Жовтень'; $labels['longnov'] = 'Листопад'; $labels['longdec'] = 'Грудень'; - $labels['today'] = 'Сьогодні'; - -// toolbar buttons $labels['refresh'] = 'Оновити'; $labels['checkmail'] = 'Перевірити пошту'; $labels['compose'] = 'Написати листа'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Інші дії...'; $labels['more'] = 'Ще'; $labels['back'] = 'Назад'; $labels['options'] = 'Параметри'; - $labels['select'] = 'Вибрати'; $labels['all'] = 'Всі'; $labels['none'] = 'Не сортувати'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Розкрити всі'; $labels['expand-unread'] = 'Розкрити непрочитані'; $labels['collapse-all'] = 'Згорнути всі'; $labels['threaded'] = 'Гілками'; - $labels['autoexpand_threads'] = 'Розкривати гілки'; $labels['do_expand'] = 'усі гілки'; $labels['expand_only_unread'] = 'тільки з непрочитаними листами'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = 'Атрибути для відображення'; $labels['listsorting'] = 'Сортувати за атрибутом'; $labels['listorder'] = 'Порядок сортування'; $labels['listmode'] = 'Режим перегляду'; - $labels['folderactions'] = 'Операції з папкою...'; $labels['compact'] = 'Стиснути'; $labels['empty'] = 'Спорожнити'; $labels['importmessages'] = 'Імпорт повідомлень'; - $labels['quota'] = 'Використано'; $labels['unknown'] = 'невідомо'; $labels['unlimited'] = 'без обмеження'; - $labels['quicksearch'] = 'Швидкий пошук'; $labels['resetsearch'] = 'Очистити пошук'; $labels['searchmod'] = 'Де шукати'; @@ -207,13 +180,10 @@ $labels['msgtext'] = 'В усьому листі'; $labels['body'] = 'Тіло повідомлення'; $labels['type'] = 'Type'; $labels['namex'] = 'Ім\'я'; - $labels['openinextwin'] = 'Відкрити в новому вікні'; $labels['emlsave'] = 'Зберегти (.eml)'; $labels['changeformattext'] = 'Відображення в текстовому форматі'; $labels['changeformathtml'] = 'Відображення у форматі HTML'; - -// message compose $labels['editasnew'] = 'Редагувати як новий'; $labels['send'] = 'Відправлено'; $labels['sendmessage'] = 'Надіслати зараз'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = 'Запит відповіді'; $labels['dsn'] = 'Повідомлення про доставку'; $labels['mailreplyintro'] = '$date, $sender написав:'; $labels['originalmessage'] = 'Оригінальне повідомлення'; - $labels['editidents'] = 'Змінити данні'; $labels['spellcheck'] = 'Орфографія'; $labels['checkspelling'] = 'Перевірити орфографію'; $labels['resumeediting'] = 'Продовжити редагування'; $labels['revertto'] = 'Відмінити редагування'; - $labels['attach'] = 'Вкласти'; $labels['attachments'] = 'Вкладені файли'; $labels['upload'] = 'Вкласти'; $labels['uploadprogress'] = '$percent ($current з $total)'; $labels['close'] = 'Закрити'; $labels['messageoptions'] = 'Налаштування листів'; - $labels['low'] = 'Низький'; $labels['lowest'] = 'Найнижчий'; $labels['normal'] = 'Нормальний'; $labels['high'] = 'Високий'; $labels['highest'] = 'Найвищий'; - $labels['nosubject'] = '(без теми)'; $labels['showimages'] = 'Показувати зображення'; $labels['alwaysshow'] = 'Завжди показувати зображення від $sender'; @@ -252,25 +218,19 @@ $labels['isdraft'] = 'Це чернетка.'; $labels['andnmore'] = 'ще $nr...'; $labels['togglemoreheaders'] = 'Завантажити ще заголовки повідомлень'; $labels['togglefullheaders'] = 'Показати оригінальні заголовки повідомлення'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Звичайний текст'; $labels['savesentmessagein'] = 'зберегти надісланого листа в'; $labels['dontsave'] = 'не зберігати'; $labels['maxuploadsize'] = 'Максимальний розмір файлу $size'; - $labels['addcc'] = 'Додати копію'; $labels['addbcc'] = 'Додати приховану копію'; $labels['addreplyto'] = 'Додати зворотню адресу'; $labels['addfollowupto'] = 'Додати Followup-To'; - -// mdn $labels['mdnrequest'] = 'Відправник цього листа запитав про прочитання. Повідомити відправника?'; $labels['receiptread'] = 'Повідомлення про прочитання'; $labels['yourmessage'] = 'Повідомлення про прочитання Вашого листа'; $labels['receiptnote'] = 'Зауваження: Це повідомлення означає лише, що листа було відкрито одержувачем, і не гарантує того, що його було прочитано.'; - -// address boook $labels['name'] = 'Ім`я для відображення'; $labels['firstname'] = 'Ім`я'; $labels['surname'] = 'Прізвище'; @@ -305,7 +265,6 @@ $labels['search'] = 'Пошук'; $labels['advsearch'] = 'Розширений пошук'; $labels['advanced'] = 'Додатково'; $labels['other'] = 'Інше'; - $labels['typehome'] = 'Дім'; $labels['typework'] = 'Робота'; $labels['typeother'] = 'Інше'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = 'Помічник'; $labels['typehomepage'] = 'Домашня сторінка'; $labels['typeblog'] = 'Блог'; $labels['typeprofile'] = 'Профіль'; - $labels['addfield'] = 'Додати поле...'; $labels['addcontact'] = 'Додати вибрані контакти до списку контактів'; $labels['editcontact'] = 'Редагувати контакт'; $labels['contacts'] = 'Контакти'; $labels['contactproperties'] = 'Властивості контакта'; $labels['personalinfo'] = 'Особова інформація'; - $labels['edit'] = 'Правка'; $labels['cancel'] = 'Скасувати'; $labels['save'] = 'Зберегти'; @@ -336,7 +293,6 @@ $labels['rename'] = 'Перейменувати'; $labels['addphoto'] = 'Додати'; $labels['replacephoto'] = 'Замінити'; $labels['uploadphoto'] = 'Завантажити фотографію'; - $labels['newcontact'] = 'Створити новий контакт'; $labels['deletecontact'] = 'Видалити вибрані контакти'; $labels['composeto'] = 'Створити листа для вибранних контактів'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = 'Створити нову групу контак $labels['grouprename'] = 'Перейменувати групу'; $labels['groupdelete'] = 'Видалити групу'; $labels['groupremoveselected'] = 'Видалити обрані контакти з групи'; - $labels['previouspage'] = 'Попередня сторінка'; $labels['firstpage'] = 'Перша сторінка'; $labels['nextpage'] = 'Наступна сторінка'; $labels['lastpage'] = 'Остання сторінка'; - $labels['group'] = 'Група'; $labels['groups'] = 'Групи'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Персональні адреси'; - $labels['searchsave'] = 'Зберегти пошук'; $labels['searchdelete'] = 'Видалити пошук'; - $labels['import'] = 'Імпорт'; $labels['importcontacts'] = 'Імпортувати контакти'; $labels['importfromfile'] = 'Імпортувати з файлу:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = 'All (create groups if necessary)'; $labels['importgroupsexisting'] = 'Лише для існуючих груп'; $labels['importdesc'] = 'Ви можете завантажити контакти з існуючої адресної книги.
В даний час ми підтримуємо імпорт адрес в форматі візитної картки vCard або CSV (дані розділені комами).'; $labels['done'] = 'Готово'; - -// settings $labels['settingsfor'] = 'Налаштування для'; $labels['about'] = 'Про програму'; $labels['preferences'] = 'Параметри'; $labels['userpreferences'] = 'Налаштування користувача'; $labels['editpreferences'] = 'Редагувати налаштування користувача'; - $labels['identities'] = 'Профілі'; $labels['manageidentities'] = 'Керування профілями'; $labels['newidentity'] = 'Новий профіль'; - $labels['newitem'] = 'Новий'; $labels['edititem'] = 'Редагувати'; - $labels['preferhtml'] = 'Показувати в HTML'; $labels['defaultcharset'] = 'Кодування за замовчуваннням'; $labels['htmlmessage'] = 'Лист у HTML'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Пересилання повідомлень'; $labels['inline'] = 'у тексті'; $labels['asattachment'] = 'як вкладення'; - $labels['folder'] = 'Папка'; $labels['folders'] = 'Папки'; $labels['foldername'] = 'Назва папки'; @@ -505,26 +451,20 @@ $labels['foldertype'] = 'Тип каталогу'; $labels['personalfolder'] = 'Приватний каталог'; $labels['otherfolder'] = 'Каталог іншого користувача'; $labels['sharedfolder'] = 'Публічний каталог'; - $labels['sortby'] = 'Відсортувати за'; $labels['sortasc'] = 'Сортувати за зростанням'; $labels['sortdesc'] = 'Сортувати за спаданням'; $labels['undo'] = 'Відмінити'; - $labels['installedplugins'] = 'Встановлені плагіни'; $labels['plugin'] = 'Доповнення'; $labels['version'] = 'Версія'; $labels['source'] = 'Джерело'; $labels['license'] = 'Ліцензія'; $labels['support'] = 'Отримати підтримку'; - -// units $labels['B'] = 'б'; $labels['KB'] = 'Кб'; $labels['MB'] = 'Мб'; $labels['GB'] = 'Гб'; - -// character sets $labels['unicode'] = 'Юнікод'; $labels['english'] = 'Англійське'; $labels['westerneuropean'] = 'Західноєвропейське'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = 'В\'єтнамське'; $labels['japanese'] = 'Японське'; $labels['korean'] = 'Корейське'; $labels['chinese'] = 'Китайське'; - ?> diff --git a/program/localization/uk_UA/messages.inc b/program/localization/uk_UA/messages.inc index 2a114803f..1e79e90a2 100644 --- a/program/localization/uk_UA/messages.inc +++ b/program/localization/uk_UA/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Неможливо створити/перем $messages['messagetoobig'] = 'Частина повідомлення занадто велика для опрацювання.'; $messages['attachmentvalidationerror'] = 'УВАГА! Це вкладення є підозрілим, тому що його тип не збігається з типом, оголошеним у повідомленні. Якщо ви не довіряєте відправнику, ви не повинні відкривати його в браузері, оскільки його вміст може бути шкідливим.

Очікуване: $expected; знайдене: $detected '; $messages['noscriptwarning'] = 'Увага: Даний клієнт електронної пошти потрібує Javascript! Для того, щоб використовувати його необхідно включити підтримку Javascript в налаштуваннях вашого браузера.'; - ?> diff --git a/program/localization/vi_VN/labels.inc b/program/localization/vi_VN/labels.inc index aad0dafe6..187bcbff8 100644 --- a/program/localization/vi_VN/labels.inc +++ b/program/localization/vi_VN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = 'Chào bạn đã đến với $product'; $labels['username'] = 'Tên đăng nhập'; $labels['password'] = 'Mật khẩu'; $labels['server'] = 'Máy chủ'; $labels['login'] = 'Đăng nhập'; - -// taskbar $labels['logout'] = 'Thoát'; $labels['mail'] = 'Thư'; $labels['settings'] = 'Tùy chọn'; $labels['addressbook'] = 'Sổ địa chỉ'; - -// mailbox names $labels['inbox'] = 'Hộp thư'; $labels['drafts'] = 'Thư nháp'; $labels['sent'] = 'Đã gửi'; $labels['trash'] = 'Sọt rác'; $labels['junk'] = 'Thư rác'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = 'Tiêu đề'; $labels['from'] = 'Người gửi'; $labels['sender'] = 'Người gửi'; @@ -54,13 +47,11 @@ $labels['priority'] = 'Độ ưu tiên'; $labels['organization'] = 'Tổ chức'; $labels['readstatus'] = 'Trạng thái của thư'; $labels['listoptions'] = 'Danh sách lựa chọn'; - $labels['mailboxlist'] = 'Các thư mục'; $labels['messagesfromto'] = 'Thư từ $from đến $to trong tổng số $count'; $labels['threadsfromto'] = 'Dòng thư từ $from đến $to của tổng số $count'; $labels['messagenrof'] = 'Thư thứ $nr trong tổng số $count'; $labels['fromtoshort'] = '$from - $to của $count'; - $labels['copy'] = 'Sao chép'; $labels['move'] = 'Di Chuyển'; $labels['moveto'] = 'Di chuyển tới...'; @@ -68,13 +59,9 @@ $labels['download'] = 'Tải về'; $labels['open'] = 'Open'; $labels['showattachment'] = 'Hiển thị'; $labels['showanyway'] = 'Tiếp tục hiển thị'; - $labels['filename'] = 'Tên tập tin'; $labels['filesize'] = 'Kích cỡ tập tin'; - $labels['addtoaddressbook'] = 'Thêm vào danh bạ'; - -// weekdays short $labels['sun'] = 'Chủ Nhật'; $labels['mon'] = 'Thứ Hai'; $labels['tue'] = 'Thứ Ba'; @@ -82,8 +69,6 @@ $labels['wed'] = 'Thứ Tư'; $labels['thu'] = 'Thứ Năm'; $labels['fri'] = 'Thứ Sáu'; $labels['sat'] = 'Thứ Bảy'; - -// weekdays long $labels['sunday'] = 'Chủ Nhật'; $labels['monday'] = 'Thứ Hai'; $labels['tuesday'] = 'Thứ Ba'; @@ -91,8 +76,6 @@ $labels['wednesday'] = 'Thứ Tư'; $labels['thursday'] = 'Thứ Năm'; $labels['friday'] = 'Thứ Sáu'; $labels['saturday'] = 'Thứ Bảy'; - -// months short $labels['jan'] = 'Tháng Một'; $labels['feb'] = 'Tháng Hai'; $labels['mar'] = 'Tháng Ba'; @@ -105,8 +88,6 @@ $labels['sep'] = 'Tháng Chín'; $labels['oct'] = 'Tháng Mười'; $labels['nov'] = 'Tháng Mười Một'; $labels['dec'] = 'Tháng Mười Hai'; - -// months long $labels['longjan'] = 'Tháng Một'; $labels['longfeb'] = 'Tháng Hai'; $labels['longmar'] = 'Tháng Ba'; @@ -119,10 +100,7 @@ $labels['longsep'] = 'Tháng Chín'; $labels['longoct'] = 'Tháng Mười'; $labels['longnov'] = 'Tháng Mười Một'; $labels['longdec'] = 'Tháng Mười Hai'; - $labels['today'] = 'Hôm nay'; - -// toolbar buttons $labels['refresh'] = 'Nạp lại'; $labels['checkmail'] = 'Kiểm tra thư mới'; $labels['compose'] = 'Soạn thư'; @@ -155,7 +133,6 @@ $labels['moreactions'] = 'Thêm hành động...'; $labels['more'] = 'Thêm'; $labels['back'] = 'Quay lại'; $labels['options'] = 'Tuỳ chọn'; - $labels['select'] = 'Lựa chọn'; $labels['all'] = 'Tất cả'; $labels['none'] = 'Không có'; @@ -174,7 +151,6 @@ $labels['expand-all'] = 'Mở rộng tất cả'; $labels['expand-unread'] = 'Mở rộng thư chưa đọc'; $labels['collapse-all'] = 'Đóng hết'; $labels['threaded'] = 'Đã nhóm theo chủ đề thư'; - $labels['autoexpand_threads'] = 'Mở rộng các chủ đề thư'; $labels['do_expand'] = 'Tất cả các chủ đề thư'; $labels['expand_only_unread'] = 'Chỉ với những thư chưa đọc'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = 'Các cột danh sách'; $labels['listsorting'] = 'Cột sắp xếp'; $labels['listorder'] = 'Thứ tự sắp xếp'; $labels['listmode'] = 'Xem dạng danh sách'; - $labels['folderactions'] = 'Thao tác với thư mục'; $labels['compact'] = 'Nén'; $labels['empty'] = 'Trống'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = 'Lượng đĩa sử dụng'; $labels['unknown'] = 'Không rõ'; $labels['unlimited'] = 'không giới hạn'; - $labels['quicksearch'] = 'Tìm nhanh'; $labels['resetsearch'] = 'Thiết lập lại tìm kiếm'; $labels['searchmod'] = 'Tìm kiếm với từ khóa và ký tự đặc biệt [() : " - ]'; $labels['msgtext'] = 'Toàn bộ thư'; $labels['body'] = 'Nội dung thư'; $labels['type'] = 'Type'; - $labels['openinextwin'] = 'Mở trong khung cửa mới'; $labels['emlsave'] = 'Tải về theo định dạng .eml'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = 'Sửa như một email mới'; $labels['send'] = 'Gửi'; $labels['sendmessage'] = 'Gửi thư'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = 'Báo nhận'; $labels['dsn'] = 'Thông báo trạng thái gửi thư'; $labels['mailreplyintro'] = 'Vào ngày $date, $sender viết:'; $labels['originalmessage'] = 'Thư gốc'; - $labels['editidents'] = 'Chỉnh sửa nhận diện'; $labels['spellcheck'] = 'Đánh vần'; $labels['checkspelling'] = 'Kiểm tra chính tả'; $labels['resumeediting'] = 'Tiếp tục soạn thảo'; $labels['revertto'] = 'Trở lại với'; - $labels['attach'] = 'Đính kèm'; $labels['attachments'] = 'Các đính kèm'; $labels['upload'] = 'Tải lên'; $labels['uploadprogress'] = '$percent ($current từ $total)'; $labels['close'] = 'Đóng'; $labels['messageoptions'] = 'Tùy chọn cho thư...'; - $labels['low'] = 'Thấp'; $labels['lowest'] = 'Thấp nhất'; $labels['normal'] = 'Bình thường'; $labels['high'] = 'Cao'; $labels['highest'] = 'Cao nhất'; - $labels['nosubject'] = '(Không có chủ đề)'; $labels['showimages'] = 'Hiển thị ảnh'; $labels['alwaysshow'] = 'Luôn luôn hiển thị ảnh từ $sender'; @@ -251,25 +217,19 @@ $labels['isdraft'] = 'Đây là thư nháp'; $labels['andnmore'] = 'Thêm $nr'; $labels['togglemoreheaders'] = 'Hiển thị chi tiết thông tin thư'; $labels['togglefullheaders'] = 'Mở/đóng chi tiết thông tin thư'; - $labels['htmltoggle'] = 'Mã HTML'; $labels['plaintoggle'] = 'Văn bản thô'; $labels['savesentmessagein'] = 'Lưu thư đã gửi trong'; $labels['dontsave'] = 'Không lưu'; $labels['maxuploadsize'] = 'Dung lượng tập tin tối đa cho phép là $size'; - $labels['addcc'] = 'Thêm Cc'; $labels['addbcc'] = 'Thêm Bcc'; $labels['addreplyto'] = 'Thêm trả lời tới'; $labels['addfollowupto'] = 'Thêm sự theo dõi tới'; - -// mdn $labels['mdnrequest'] = 'Người gửi thư này muốn nhận được thông báo khi bạn đọc thư. Bạn có muốn cho người gửi biết thông báo này không?'; $labels['receiptread'] = 'Biên nhận (đã đọc)'; $labels['yourmessage'] = 'Đây là sự trả lại xác nhận cho thư của bạn'; $labels['receiptnote'] = 'Lưu ý: Biên nhận này chỉ báo rằng thư đã được hiển thị trên máy tính của người nhận. Không bảo đảm rằng người nhận đó đã có đọc hoặc hiểu nội dung thư.'; - -// address boook $labels['name'] = 'Tên hiển thị'; $labels['firstname'] = 'Tên Gọi'; $labels['surname'] = 'Tên Họ'; @@ -304,7 +264,6 @@ $labels['search'] = 'Tìm kiếm'; $labels['advsearch'] = 'Tìm kiếm chi tiết'; $labels['advanced'] = 'Nâng cao'; $labels['other'] = 'Loại khác'; - $labels['typehome'] = 'Thư mục chính'; $labels['typework'] = 'Cơ quan'; $labels['typeother'] = 'Loại khác'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = 'Trợ lý'; $labels['typehomepage'] = 'Trang nhà'; $labels['typeblog'] = 'Trang nhật ký'; $labels['typeprofile'] = 'Lý lịch'; - $labels['addfield'] = 'Thêm lĩnh vực...'; $labels['addcontact'] = 'Thêm một liên hệ mới'; $labels['editcontact'] = 'Sửa liên lạc'; $labels['contacts'] = 'Danh bạ'; $labels['contactproperties'] = 'Tính chất của liên hệ'; $labels['personalinfo'] = 'Thông tin cá nhân'; - $labels['edit'] = 'Chỉnh sửa'; $labels['cancel'] = 'Huỷ'; $labels['save'] = 'Lưu'; @@ -335,7 +292,6 @@ $labels['rename'] = 'Đổi tên'; $labels['addphoto'] = 'Thêm'; $labels['replacephoto'] = 'Thay thế'; $labels['uploadphoto'] = 'Tải ảnh lên'; - $labels['newcontact'] = 'Tạo danh bạ mới'; $labels['deletecontact'] = 'Xoá các liên lạc đã chọn'; $labels['composeto'] = 'Soạn thư cho'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = 'Tạo nhóm liên lạc mới'; $labels['grouprename'] = 'Đổi tên nhóm'; $labels['groupdelete'] = 'Xóa nhóm'; $labels['groupremoveselected'] = 'Xóa bỏ các liên lạc được chọn từ nhóm'; - $labels['previouspage'] = 'Hiển thị trang trước'; $labels['firstpage'] = 'Hiển thị trang đầu tiên'; $labels['nextpage'] = 'Hiển thị trang kế tiếp'; $labels['lastpage'] = 'Hiển thị trang cuối'; - $labels['group'] = 'Nhóm'; $labels['groups'] = 'Các nhóm'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Các địa chỉ cá nhân'; - $labels['searchsave'] = 'Lưu tìm kiếm'; $labels['searchdelete'] = 'Xóa tìm kiếm'; - $labels['import'] = 'Nhập'; $labels['importcontacts'] = 'Nhập liên lạc'; $labels['importfromfile'] = 'Nhập từ tập tin:'; @@ -370,21 +322,16 @@ $labels['importtarget'] = 'Thêm liên lạc mới vào sổ địa chỉ'; $labels['importreplace'] = 'Thay thế toàn bộ sổ địa chỉ'; $labels['importdesc'] = 'Bạn có thể cập nhật các liên hệ từ một sổ địa chỉ có sẵn.
Hiện tại, chúng tôi hỗ trợ nhập địa chỉ từ dạng dữ liệu
vCard hoặc CSV (dạng thức dữ liệu ngăn cách bằng dấu phẩy)'; $labels['done'] = 'Hoàn tất'; - -// settings $labels['settingsfor'] = 'Thiết lập cho'; $labels['about'] = 'Lời ngõ'; $labels['preferences'] = 'Sở thích'; $labels['userpreferences'] = 'Sở thích người dùng'; $labels['editpreferences'] = 'Chỉnh sửa sở thích'; - $labels['identities'] = 'Các nhận diện'; $labels['manageidentities'] = 'Quản lý nhận diện cho trương mục này'; $labels['newidentity'] = 'Nhận diện mới'; - $labels['newitem'] = 'Mục mới'; $labels['edititem'] = 'Sửa đổi mục'; - $labels['preferhtml'] = 'Hiển thị HTML'; $labels['defaultcharset'] = 'Bộ ký tự mặc định'; $labels['htmlmessage'] = 'Thư theo định dạng HTML'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Chuyển tiếp thư'; $labels['inline'] = 'nội tuyến'; $labels['asattachment'] = 'dạng gửi kèm'; - $labels['folder'] = 'Thư mục'; $labels['folders'] = 'Các thư mục'; $labels['foldername'] = 'Tên thư mục'; @@ -501,26 +447,20 @@ $labels['foldertype'] = 'Kiểu thư mục'; $labels['personalfolder'] = 'Thư mục cá nhân'; $labels['otherfolder'] = 'Thư mục khác của Người dùng'; $labels['sharedfolder'] = 'Thư mục công khai'; - $labels['sortby'] = 'Soạn theo'; $labels['sortasc'] = 'Soạn tăng dần'; $labels['sortdesc'] = 'Soạn giảm dần'; $labels['undo'] = 'Hoàn lại'; - $labels['installedplugins'] = 'Các chương trình phụ trợ đã được cài đặt'; $labels['plugin'] = 'Phần bổ sung'; $labels['version'] = 'Phiên bản'; $labels['source'] = 'Nguồn'; $labels['license'] = 'Bản quyền'; $labels['support'] = 'Yêu cầu hỗ trợ'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = 'Tiếng Anh'; $labels['westerneuropean'] = 'Tiếng Tây Âu'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = 'Tiếng Việt'; $labels['japanese'] = 'Tiếng Nhật'; $labels['korean'] = 'Tiếng Hàn'; $labels['chinese'] = 'Tiếng Hoa'; - ?> diff --git a/program/localization/vi_VN/messages.inc b/program/localization/vi_VN/messages.inc index 769a21afd..74e97adcb 100644 --- a/program/localization/vi_VN/messages.inc +++ b/program/localization/vi_VN/messages.inc @@ -172,5 +172,4 @@ $messages['parentnotwritable'] = 'Không thể tạo/chuyển folder vào folder $messages['messagetoobig'] = 'Một phần thư quá lớn để xử lý nó.'; $messages['attachmentvalidationerror'] = 'Cảnh báo: Tệp tin đính kèm có dấu hiệu nguy hiểm, vì kiểu tệp tin không trùng với kiểu được khai báo sử dụng trong thư. Nếu bạn không biết người gửi, bạn không nên mở thư vì nó có thể có các dữ liệu gây hại.

Dự kiến: $expected; được tìm thấy: $detected'; $messages['noscriptwarning'] = 'Cảnh báo: Dịch vụ webmail này yêu cầu sử dụng Javascript. Để sử dụng, bạn cần kích hoạt hỗ trợ Javascript trong cấu hình trình duyệt Internet đang sử dụng.'; - ?> diff --git a/program/localization/zh_CN/labels.inc b/program/localization/zh_CN/labels.inc index b568a7008..95efa1529 100644 --- a/program/localization/zh_CN/labels.inc +++ b/program/localization/zh_CN/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '欢迎使用 $product'; $labels['username'] = '用户名'; $labels['password'] = '密码'; $labels['server'] = '服务器'; $labels['login'] = '登录'; - -// taskbar $labels['logout'] = '注销'; $labels['mail'] = '邮件'; $labels['settings'] = '设置'; $labels['addressbook'] = '通讯录'; - -// mailbox names $labels['inbox'] = '收件箱'; $labels['drafts'] = '草稿箱'; $labels['sent'] = '已发送邮件'; $labels['trash'] = '已删除邮件'; $labels['junk'] = '垃圾邮件'; $labels['show_real_foldernames'] = 'Show real names for special folders'; - -// message listing $labels['subject'] = '主题'; $labels['from'] = '发件人'; $labels['sender'] = '发件人'; @@ -54,13 +47,11 @@ $labels['priority'] = '优先级'; $labels['organization'] = '组织'; $labels['readstatus'] = '阅读状态'; $labels['listoptions'] = '列表选项'; - $labels['mailboxlist'] = '邮件夹'; $labels['messagesfromto'] = '第 $from 到 $to,共计 $count 封邮件'; $labels['threadsfromto'] = '第 $from 到 $to,共计 $count 个主题'; $labels['messagenrof'] = '第 $nr 封邮件,共计 $count 封'; $labels['fromtoshort'] = '自 $from – $to 统计 $count'; - $labels['copy'] = '复制'; $labels['move'] = '移动'; $labels['moveto'] = '移至...'; @@ -68,13 +59,9 @@ $labels['download'] = '下载'; $labels['open'] = '打开'; $labels['showattachment'] = '显示'; $labels['showanyway'] = '总是显示'; - $labels['filename'] = '文件名'; $labels['filesize'] = '文件大小'; - $labels['addtoaddressbook'] = '添加至通讯录'; - -// weekdays short $labels['sun'] = '星期日'; $labels['mon'] = '星期一'; $labels['tue'] = '星期二'; @@ -82,8 +69,6 @@ $labels['wed'] = '星期三'; $labels['thu'] = '星期四'; $labels['fri'] = '星期五'; $labels['sat'] = '星期六'; - -// weekdays long $labels['sunday'] = '星期日'; $labels['monday'] = '星期一'; $labels['tuesday'] = '星期二'; @@ -91,8 +76,6 @@ $labels['wednesday'] = '星期三'; $labels['thursday'] = '星期四'; $labels['friday'] = '星期五'; $labels['saturday'] = '星期六'; - -// months short $labels['jan'] = '一月'; $labels['feb'] = '二月'; $labels['mar'] = '三月'; @@ -105,8 +88,6 @@ $labels['sep'] = '九月'; $labels['oct'] = '十月'; $labels['nov'] = '十一月'; $labels['dec'] = '十二月'; - -// months long $labels['longjan'] = '一月'; $labels['longfeb'] = '二月'; $labels['longmar'] = '三月'; @@ -119,10 +100,7 @@ $labels['longsep'] = '九月'; $labels['longoct'] = '十月'; $labels['longnov'] = '十一月'; $labels['longdec'] = '十二月'; - $labels['today'] = '今天'; - -// toolbar buttons $labels['refresh'] = '刷新'; $labels['checkmail'] = '检查新邮件'; $labels['compose'] = '撰写新邮件'; @@ -155,7 +133,6 @@ $labels['moreactions'] = '更多操作...'; $labels['more'] = '更多'; $labels['back'] = '返回'; $labels['options'] = '选项'; - $labels['select'] = '选择'; $labels['all'] = '全部'; $labels['none'] = '无'; @@ -174,7 +151,6 @@ $labels['expand-all'] = '展开全部'; $labels['expand-unread'] = '展开未读'; $labels['collapse-all'] = '收起全部'; $labels['threaded'] = '所有邮件'; - $labels['autoexpand_threads'] = '展开消息主题'; $labels['do_expand'] = '所有主题'; $labels['expand_only_unread'] = '仅未读消息'; @@ -190,29 +166,23 @@ $labels['listcolumns'] = '列表列'; $labels['listsorting'] = '排序列'; $labels['listorder'] = '排序'; $labels['listmode'] = '列表视图样式'; - $labels['folderactions'] = '文件夹操作...'; $labels['compact'] = '压缩'; $labels['empty'] = '清空'; $labels['importmessages'] = 'Import messages'; - $labels['quota'] = '邮箱容量'; $labels['unknown'] = '未知'; $labels['unlimited'] = '无限制'; - $labels['quicksearch'] = '快速查找'; $labels['resetsearch'] = '清空'; $labels['searchmod'] = '修改搜索'; $labels['msgtext'] = '整封邮件'; $labels['body'] = '正文'; $labels['type'] = 'Type'; - $labels['openinextwin'] = '在新窗口中打开'; $labels['emlsave'] = '下载(.eml)'; $labels['changeformattext'] = 'Display in plain text format'; $labels['changeformathtml'] = 'Display in HTML format'; - -// message compose $labels['editasnew'] = '以新邮件编辑'; $labels['send'] = '发送'; $labels['sendmessage'] = '立即发送'; @@ -224,26 +194,22 @@ $labels['returnreceipt'] = '需要已读回执'; $labels['dsn'] = '投递状态通知'; $labels['mailreplyintro'] = '在 $date,$sender 写道:'; $labels['originalmessage'] = '原始邮件'; - $labels['editidents'] = '编辑身份'; $labels['spellcheck'] = '拼写'; $labels['checkspelling'] = '拼写检查'; $labels['resumeediting'] = '继续编辑'; $labels['revertto'] = '恢复至'; - $labels['attach'] = '附加'; $labels['attachments'] = '附件'; $labels['upload'] = '上传'; $labels['uploadprogress'] = '$percent ($current / $total)'; $labels['close'] = '关闭'; $labels['messageoptions'] = '邮件选项...'; - $labels['low'] = '低'; $labels['lowest'] = '最低'; $labels['normal'] = '普通'; $labels['high'] = '高'; $labels['highest'] = '最高'; - $labels['nosubject'] = '(无主题)'; $labels['showimages'] = '显示图片'; $labels['alwaysshow'] = '总是在来自 $sender 的邮件中显示图片'; @@ -251,25 +217,19 @@ $labels['isdraft'] = '这是一封草稿'; $labels['andnmore'] = '第$nr封或更多...'; $labels['togglemoreheaders'] = '显示更多消息头'; $labels['togglefullheaders'] = '切换至原始消息头'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = '纯文本'; $labels['savesentmessagein'] = '保存已发送邮件至'; $labels['dontsave'] = '不保存'; $labels['maxuploadsize'] = '上传附件最大不超过 $size'; - $labels['addcc'] = '添加抄送'; $labels['addbcc'] = '添加密送'; $labels['addreplyto'] = '添加回复'; $labels['addfollowupto'] = '添加投递组'; - -// mdn $labels['mdnrequest'] = '发件人要求在您阅读这封邮件时发送已读通知。您是否希望通知发件人?'; $labels['receiptread'] = '发送回执(已读)'; $labels['yourmessage'] = '这是您的邮件回执'; $labels['receiptnote'] = '注意:回执只表示邮件在收件人的电脑上被打开过,不表示收件人已经阅读或了解邮件内容。'; - -// address boook $labels['name'] = '显示名称'; $labels['firstname'] = '名字'; $labels['surname'] = '姓氏'; @@ -304,7 +264,6 @@ $labels['search'] = '查询'; $labels['advsearch'] = '高级查询'; $labels['advanced'] = '高级选项'; $labels['other'] = '其他'; - $labels['typehome'] = '家庭'; $labels['typework'] = '工作'; $labels['typeother'] = '其他'; @@ -319,14 +278,12 @@ $labels['typeassistant'] = '助理'; $labels['typehomepage'] = '主页'; $labels['typeblog'] = '博客'; $labels['typeprofile'] = '资料'; - $labels['addfield'] = '新增条目...'; $labels['addcontact'] = '新建联系人'; $labels['editcontact'] = '编辑联系人'; $labels['contacts'] = '联系人'; $labels['contactproperties'] = '联系人信息'; $labels['personalinfo'] = '个人信息'; - $labels['edit'] = '编辑'; $labels['cancel'] = '取消'; $labels['save'] = '保存'; @@ -335,7 +292,6 @@ $labels['rename'] = '重命名'; $labels['addphoto'] = '上传'; $labels['replacephoto'] = '替换照片'; $labels['uploadphoto'] = '上传照片'; - $labels['newcontact'] = '新建联系人'; $labels['deletecontact'] = '删除选中的联系人'; $labels['composeto'] = '写信至选中的联系人'; @@ -349,20 +305,16 @@ $labels['newcontactgroup'] = '创建新的联系人群组'; $labels['grouprename'] = '重命名群组'; $labels['groupdelete'] = '删除群组组'; $labels['groupremoveselected'] = '删除选中'; - $labels['previouspage'] = '上一页'; $labels['firstpage'] = '第一页'; $labels['nextpage'] = '下一页'; $labels['lastpage'] = '最后一页'; - $labels['group'] = '分组'; $labels['groups'] = '分组'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = '个人通讯录'; - $labels['searchsave'] = '保存搜索'; $labels['searchdelete'] = '删除搜索'; - $labels['import'] = '导入'; $labels['importcontacts'] = '导入通讯录'; $labels['importfromfile'] = '从文件导入'; @@ -370,21 +322,16 @@ $labels['importtarget'] = '添加新联系人至通讯录:'; $labels['importreplace'] = '替换全部通讯录'; $labels['importdesc'] = '您可以从通讯录文件上传联系人,目前已支持 vCard 和 CSV(逗号分隔)格式'; $labels['done'] = '完成'; - -// settings $labels['settingsfor'] = '设置'; $labels['about'] = '关于'; $labels['preferences'] = '选项'; $labels['userpreferences'] = '个人选项'; $labels['editpreferences'] = '修改个人选项'; - $labels['identities'] = '发件身份'; $labels['manageidentities'] = '管理此账号的身份'; $labels['newidentity'] = '添加身份'; - $labels['newitem'] = '添加条目'; $labels['edititem'] = '编辑条目'; - $labels['preferhtml'] = '以 HTML 格式显示'; $labels['defaultcharset'] = '默认字符集'; $labels['htmlmessage'] = 'HTML 邮件'; @@ -480,7 +427,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = '邮件转发方式'; $labels['inline'] = '内嵌'; $labels['asattachment'] = '作为附件'; - $labels['folder'] = '目录管理'; $labels['folders'] = '目录管理'; $labels['foldername'] = '邮件夹名称'; @@ -501,26 +447,20 @@ $labels['foldertype'] = '目录类型'; $labels['personalfolder'] = '私有目录'; $labels['otherfolder'] = '他人目录'; $labels['sharedfolder'] = '共享目录'; - $labels['sortby'] = '排序'; $labels['sortasc'] = '递增排序'; $labels['sortdesc'] = '递减排序'; $labels['undo'] = '撤销'; - $labels['installedplugins'] = '已安装插件'; $labels['plugin'] = '插件'; $labels['version'] = '版本'; $labels['source'] = '源代码'; $labels['license'] = '许可协议'; $labels['support'] = '支持'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = 'Unicode'; $labels['english'] = '英语'; $labels['westerneuropean'] = '西欧'; @@ -539,5 +479,4 @@ $labels['vietnamese'] = '越南语'; $labels['japanese'] = '日文'; $labels['korean'] = '韩语'; $labels['chinese'] = '中文'; - ?> diff --git a/program/localization/zh_CN/messages.inc b/program/localization/zh_CN/messages.inc index 4c47f833e..5f1bb8160 100644 --- a/program/localization/zh_CN/messages.inc +++ b/program/localization/zh_CN/messages.inc @@ -165,5 +165,4 @@ $messages['parentnotwritable'] = '无法创建和转移到所选的目录,权限 $messages['messagetoobig'] = '由于邮件部分过大无法处理。'; $messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; - ?> diff --git a/program/localization/zh_TW/csv2vcard.inc b/program/localization/zh_TW/csv2vcard.inc index 9fcacc818..9dacddedd 100644 --- a/program/localization/zh_TW/csv2vcard.inc +++ b/program/localization/zh_TW/csv2vcard.inc @@ -16,13 +16,7 @@ +-----------------------------------------------------------------------+ */ -// This is a list of CSV column names specified in CSV file header -// These must be original texts used in Outlook/Thunderbird exported csv files -// Encoding UTF-8 - $map = array(); - -// MS Outlook 2010 $map['anniversary'] = "紀念日"; $map['assistants_name'] = "助理"; $map['assistants_phone'] = "助理電話"; @@ -69,8 +63,6 @@ $map['spouse'] = "配偶"; $map['suffix'] = "稱謂"; $map['title'] = "頭銜"; $map['web_page'] = "網頁"; - -// Thunderbird $map['last'] = "姓"; $map['first'] = "名"; $map['birth_day'] = "生日 (日)"; diff --git a/program/localization/zh_TW/labels.inc b/program/localization/zh_TW/labels.inc index 5706ca7b1..cac178715 100644 --- a/program/localization/zh_TW/labels.inc +++ b/program/localization/zh_TW/labels.inc @@ -18,28 +18,21 @@ $labels = array(); -// login page $labels['welcome'] = '歡迎使用 $product'; $labels['username'] = '使用者名稱'; $labels['password'] = '使用者密碼'; $labels['server'] = '伺服器'; $labels['login'] = '登入'; - -// taskbar $labels['logout'] = '登出'; $labels['mail'] = '電子郵件'; $labels['settings'] = '設定'; $labels['addressbook'] = '通訊錄'; - -// mailbox names $labels['inbox'] = '收件匣'; $labels['drafts'] = '草稿匣'; $labels['sent'] = '寄件備份'; $labels['trash'] = '垃圾桶'; $labels['junk'] = '垃圾郵件'; $labels['show_real_foldernames'] = '顯示特殊資料夾的實際名稱'; - -// message listing $labels['subject'] = '主旨'; $labels['from'] = '寄件者'; $labels['sender'] = '寄件者'; @@ -54,13 +47,11 @@ $labels['priority'] = '優先順序'; $labels['organization'] = '組織'; $labels['readstatus'] = '讀信狀態'; $labels['listoptions'] = '列表選項...'; - $labels['mailboxlist'] = '資料夾'; $labels['messagesfromto'] = '郵件 $from 至 $to,共有 $count 封郵件'; $labels['threadsfromto'] = '郵件串 $from 至 $to,共有 $count 個'; $labels['messagenrof'] = '第 $nr 封郵件,共有 $count 封'; $labels['fromtoshort'] = '自 $from – $to 統計 $count'; - $labels['copy'] = '複製'; $labels['move'] = '移動'; $labels['moveto'] = '移至...'; @@ -68,13 +59,9 @@ $labels['download'] = '下載'; $labels['open'] = '開啟'; $labels['showattachment'] = '顯示'; $labels['showanyway'] = '總是顯示'; - $labels['filename'] = '檔案名稱'; $labels['filesize'] = '檔案大小'; - $labels['addtoaddressbook'] = '新增至通訊錄'; - -// weekdays short $labels['sun'] = '週日'; $labels['mon'] = '週一'; $labels['tue'] = '週二'; @@ -82,8 +69,6 @@ $labels['wed'] = '週三'; $labels['thu'] = '週四'; $labels['fri'] = '週五'; $labels['sat'] = '週六'; - -// weekdays long $labels['sunday'] = '星期日'; $labels['monday'] = '星期一'; $labels['tuesday'] = '星期二'; @@ -91,8 +76,6 @@ $labels['wednesday'] = '星期三'; $labels['thursday'] = '星期四'; $labels['friday'] = '星期五'; $labels['saturday'] = '星期六'; - -// months short $labels['jan'] = '一'; $labels['feb'] = '二'; $labels['mar'] = '三'; @@ -105,8 +88,6 @@ $labels['sep'] = '九'; $labels['oct'] = '十'; $labels['nov'] = '十一'; $labels['dec'] = '十二'; - -// months long $labels['longjan'] = '一月'; $labels['longfeb'] = '二月'; $labels['longmar'] = '三月'; @@ -119,10 +100,7 @@ $labels['longsep'] = '九月'; $labels['longoct'] = '十月'; $labels['longnov'] = '十一月'; $labels['longdec'] = '十二月'; - $labels['today'] = '今日'; - -// toolbar buttons $labels['refresh'] = '重新整理'; $labels['checkmail'] = '檢查新郵件'; $labels['compose'] = '撰寫新郵件'; @@ -155,7 +133,6 @@ $labels['moreactions'] = '更多動作...'; $labels['more'] = '更多'; $labels['back'] = '返回'; $labels['options'] = '選項'; - $labels['select'] = '選取'; $labels['all'] = '全部郵件'; $labels['none'] = '無'; @@ -174,7 +151,6 @@ $labels['expand-all'] = '全部展開'; $labels['expand-unread'] = '展開未讀取'; $labels['collapse-all'] = '全部收起'; $labels['threaded'] = '郵件串'; - $labels['autoexpand_threads'] = '只展開郵件串'; $labels['do_expand'] = '所有郵件串'; $labels['expand_only_unread'] = '只展開未讀訊息'; @@ -190,16 +166,13 @@ $labels['listcolumns'] = '列出欄位'; $labels['listsorting'] = '排序欄位'; $labels['listorder'] = '排序順序'; $labels['listmode'] = '清單檢視模式'; - $labels['folderactions'] = '資料夾動作...'; $labels['compact'] = '壓縮'; $labels['empty'] = '清空'; $labels['importmessages'] = '匯入郵件'; - $labels['quota'] = '磁碟使用量'; $labels['unknown'] = '未知'; $labels['unlimited'] = '無限制'; - $labels['quicksearch'] = '快速搜尋'; $labels['resetsearch'] = '重設搜尋'; $labels['searchmod'] = '修改搜尋'; @@ -207,13 +180,10 @@ $labels['msgtext'] = '整封郵件'; $labels['body'] = '內文'; $labels['type'] = 'Type'; $labels['namex'] = '名稱'; - $labels['openinextwin'] = '在新視窗開啟'; $labels['emlsave'] = '下載(.eml)'; $labels['changeformattext'] = '以純文字格式顯示'; $labels['changeformathtml'] = '以 HTML 格式顯示'; - -// message compose $labels['editasnew'] = '以新郵件編輯'; $labels['send'] = '寄出'; $labels['sendmessage'] = '立即寄出'; @@ -225,26 +195,22 @@ $labels['returnreceipt'] = '要求讀取回條'; $labels['dsn'] = '傳送狀態通知'; $labels['mailreplyintro'] = '$sender 於 $date 寫到:'; $labels['originalmessage'] = '原始郵件'; - $labels['editidents'] = '編輯身份資訊'; $labels['spellcheck'] = '拼字'; $labels['checkspelling'] = '拼字檢查'; $labels['resumeediting'] = '繼續編輯'; $labels['revertto'] = '恢復至'; - $labels['attach'] = '附件'; $labels['attachments'] = '附加檔案'; $labels['upload'] = '上傳'; $labels['uploadprogress'] = '$percent ($current / $total)'; $labels['close'] = '關閉'; $labels['messageoptions'] = '郵件選項...'; - $labels['low'] = '低'; $labels['lowest'] = '最低'; $labels['normal'] = '普通'; $labels['high'] = '高'; $labels['highest'] = '最高'; - $labels['nosubject'] = '(沒有主旨)'; $labels['showimages'] = '顯示圖片'; $labels['alwaysshow'] = '永遠顯示來自 $sender 的圖片'; @@ -252,25 +218,19 @@ $labels['isdraft'] = '這是一封草稿'; $labels['andnmore'] = '第$nr封或是更多...'; $labels['togglemoreheaders'] = '顯示更多的訊息表頭'; $labels['togglefullheaders'] = '切換原始訊息表頭'; - $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = '純文字'; $labels['savesentmessagein'] = '儲存寄件備份至'; $labels['dontsave'] = '不要儲存'; $labels['maxuploadsize'] = '上傳檔案大小限制為 $size'; - $labels['addcc'] = '新增副本'; $labels['addbcc'] = '新增密件副本'; $labels['addreplyto'] = '新增回覆地址'; $labels['addfollowupto'] = '新增 信件跟隨至'; - -// mdn $labels['mdnrequest'] = '此郵件的寄件者希望在你閱讀此郵件時受到通知。你想要通知寄件者嗎?'; $labels['receiptread'] = '郵件回條(已閱讀)'; $labels['yourmessage'] = '這是你郵件的郵件回條'; $labels['receiptnote'] = '注意:此回條只能確認收件者的電腦顯示了郵件,並不能保證收件者已閱讀或了解郵件的內容。'; - -// address boook $labels['name'] = '顯示名稱'; $labels['firstname'] = '名稱'; $labels['surname'] = '姓氏'; @@ -305,7 +265,6 @@ $labels['search'] = '搜尋'; $labels['advsearch'] = '進階搜尋'; $labels['advanced'] = '進階設定'; $labels['other'] = '其他'; - $labels['typehome'] = '住家'; $labels['typework'] = '工作'; $labels['typeother'] = '其他'; @@ -320,14 +279,12 @@ $labels['typeassistant'] = '助理'; $labels['typehomepage'] = '首頁'; $labels['typeblog'] = '部落格'; $labels['typeprofile'] = '設定檔'; - $labels['addfield'] = '新增欄位...'; $labels['addcontact'] = '新增聯絡人'; $labels['editcontact'] = '編輯聯絡人'; $labels['contacts'] = '聯絡人'; $labels['contactproperties'] = '聯絡人資訊'; $labels['personalinfo'] = '個人資訊'; - $labels['edit'] = '編輯'; $labels['cancel'] = '取消'; $labels['save'] = '儲存'; @@ -336,7 +293,6 @@ $labels['rename'] = '重新命名'; $labels['addphoto'] = '新增'; $labels['replacephoto'] = '取代'; $labels['uploadphoto'] = '上傳相片'; - $labels['newcontact'] = '建立新聯絡人資料'; $labels['deletecontact'] = '刪除所選擇的聯絡人'; $labels['composeto'] = '寄信至所選擇的聯絡人'; @@ -350,20 +306,16 @@ $labels['newcontactgroup'] = '新增聯絡人群組'; $labels['grouprename'] = '重新命名群組'; $labels['groupdelete'] = '刪除群組'; $labels['groupremoveselected'] = '從群組中刪除選擇的聯絡人'; - $labels['previouspage'] = '顯示上一頁'; $labels['firstpage'] = '顯示第一頁'; $labels['nextpage'] = '顯示下一頁'; $labels['lastpage'] = '顯示最後一頁'; - $labels['group'] = '群組'; $labels['groups'] = '群組'; $labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = '個人通訊錄'; - $labels['searchsave'] = '儲存搜尋結果'; $labels['searchdelete'] = '刪除搜尋結果'; - $labels['import'] = '匯入通訊錄'; $labels['importcontacts'] = '由檔案匯入通訊錄'; $labels['importfromfile'] = '選擇你要匯入的檔案:'; @@ -374,21 +326,16 @@ $labels['importgroupsall'] = '全部(如有必要,新增群組)'; $labels['importgroupsexisting'] = '僅限於既有群組'; $labels['importdesc'] = '您可以將已存在的資料匯入通訊錄,目前支援匯入 vCard 與 CSV (逗點分隔)格式資料'; $labels['done'] = '完成'; - -// settings $labels['settingsfor'] = '設定'; $labels['about'] = '關於'; $labels['preferences'] = '設定'; $labels['userpreferences'] = '個人設定'; $labels['editpreferences'] = '編輯個人設定'; - $labels['identities'] = '身份資訊'; $labels['manageidentities'] = '管理此帳號的身份資訊'; $labels['newidentity'] = '新增身份資訊'; - $labels['newitem'] = '新增項目'; $labels['edititem'] = '編輯項目'; - $labels['preferhtml'] = '使用 HTML 顯示'; $labels['defaultcharset'] = '預設編碼'; $labels['htmlmessage'] = 'HTML 郵件'; @@ -484,7 +431,6 @@ $labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = '郵件轉寄方式'; $labels['inline'] = '放入內文'; $labels['asattachment'] = '當成附件'; - $labels['folder'] = '資料夾'; $labels['folders'] = '資料夾'; $labels['foldername'] = '資料夾名稱'; @@ -505,26 +451,20 @@ $labels['foldertype'] = '資料夾類型'; $labels['personalfolder'] = '私人資料夾'; $labels['otherfolder'] = '其他使用者資料夾'; $labels['sharedfolder'] = '公用資料夾'; - $labels['sortby'] = '排序'; $labels['sortasc'] = '遞增排序'; $labels['sortdesc'] = '遞減排序'; $labels['undo'] = '復原'; - $labels['installedplugins'] = '已安裝的插件'; $labels['plugin'] = '擴充套件'; $labels['version'] = '版本'; $labels['source'] = '來源'; $labels['license'] = '授權許可'; $labels['support'] = '取得支援'; - -// units $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; - -// character sets $labels['unicode'] = '萬國碼'; $labels['english'] = '英語'; $labels['westerneuropean'] = '西歐語系'; @@ -543,5 +483,4 @@ $labels['vietnamese'] = '越南'; $labels['japanese'] = '日本'; $labels['korean'] = '韓國'; $labels['chinese'] = '國語'; - ?> diff --git a/program/localization/zh_TW/messages.inc b/program/localization/zh_TW/messages.inc index b6fdcccae..381aec610 100644 --- a/program/localization/zh_TW/messages.inc +++ b/program/localization/zh_TW/messages.inc @@ -173,5 +173,4 @@ $messages['messagetoobig'] = '郵件太大無法處理'; $messages['attachmentvalidationerror'] = '警告!這個附件是可疑的,因為它的檔案類型與其宣稱的不同。如果您不能相信寄件者請不要開啟附件,它可能含有惡意的內容。

Expected: $expected; found: $detected'; $messages['noscriptwarning'] = '警告:使用Webmail需要Javascript支援,請檢查您瀏覽器的Javascript設定'; - ?> -- cgit v1.2.3 From 3d9e683cda1d67de89e98597cc32a8d192d23d6b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 20:04:53 +0200 Subject: Added plugin localizations --- plugins/acl/localization/be_BE.inc | 91 ++++++++++ plugins/acl/localization/bg_BG.inc | 91 ++++++++++ plugins/acl/localization/el_GR.inc | 91 ++++++++++ plugins/acl/localization/es_AR.inc | 90 ++++++++++ plugins/acl/localization/eu_ES.inc | 91 ++++++++++ plugins/acl/localization/lv_LV.inc | 73 ++++++++ plugins/acl/localization/th_TH.inc | 51 ++++++ plugins/acl/localization/ti.inc | 68 ++++++++ plugins/archive/localization/ar.inc | 21 +++ plugins/archive/localization/ast.inc | 33 ++++ plugins/archive/localization/bn_BD.inc | 21 +++ plugins/archive/localization/eu_ES.inc | 33 ++++ plugins/archive/localization/fa_AF.inc | 28 ++++ plugins/archive/localization/hi_IN.inc | 21 +++ plugins/archive/localization/ia.inc | 21 +++ plugins/archive/localization/mn_MN.inc | 21 +++ plugins/archive/localization/ms_MY.inc | 21 +++ plugins/archive/localization/my_MM.inc | 21 +++ plugins/archive/localization/nl_BE.inc | 21 +++ plugins/archive/localization/nqo.inc | 21 +++ plugins/archive/localization/om.inc | 21 +++ plugins/archive/localization/te_IN.inc | 21 +++ plugins/archive/localization/th_TH.inc | 21 +++ plugins/archive/localization/ti.inc | 21 +++ plugins/archive/localization/tzm.inc | 21 +++ plugins/archive/localization/ur_PK.inc | 21 +++ plugins/attachment_reminder/localization/ar.inc | 22 +++ plugins/attachment_reminder/localization/ar_SA.inc | 22 +++ plugins/attachment_reminder/localization/az_AZ.inc | 22 +++ plugins/attachment_reminder/localization/be_BE.inc | 22 +++ plugins/attachment_reminder/localization/bg_BG.inc | 22 +++ plugins/attachment_reminder/localization/bn_BD.inc | 22 +++ plugins/attachment_reminder/localization/bs_BA.inc | 22 +++ plugins/attachment_reminder/localization/ca_ES.inc | 22 +++ plugins/attachment_reminder/localization/cs_CZ.inc | 22 +++ plugins/attachment_reminder/localization/cy_GB.inc | 22 +++ plugins/attachment_reminder/localization/da_DK.inc | 22 +++ plugins/attachment_reminder/localization/el_GR.inc | 22 +++ plugins/attachment_reminder/localization/eo.inc | 22 +++ plugins/attachment_reminder/localization/es_AR.inc | 22 +++ plugins/attachment_reminder/localization/et_EE.inc | 22 +++ plugins/attachment_reminder/localization/eu_ES.inc | 22 +++ plugins/attachment_reminder/localization/fa_AF.inc | 22 +++ plugins/attachment_reminder/localization/fa_IR.inc | 22 +++ plugins/attachment_reminder/localization/fi_FI.inc | 22 +++ plugins/attachment_reminder/localization/gl_ES.inc | 22 +++ plugins/attachment_reminder/localization/he_IL.inc | 22 +++ plugins/attachment_reminder/localization/hi_IN.inc | 22 +++ plugins/attachment_reminder/localization/hu_HU.inc | 22 +++ plugins/attachment_reminder/localization/hy_AM.inc | 22 +++ plugins/attachment_reminder/localization/ia.inc | 22 +++ plugins/attachment_reminder/localization/id_ID.inc | 22 +++ plugins/attachment_reminder/localization/ja_JP.inc | 22 +++ plugins/attachment_reminder/localization/ko_KR.inc | 22 +++ plugins/attachment_reminder/localization/lt_LT.inc | 22 +++ plugins/attachment_reminder/localization/lv_LV.inc | 22 +++ plugins/attachment_reminder/localization/ml_IN.inc | 22 +++ plugins/attachment_reminder/localization/mn_MN.inc | 22 +++ plugins/attachment_reminder/localization/ms_MY.inc | 22 +++ plugins/attachment_reminder/localization/my_MM.inc | 22 +++ plugins/attachment_reminder/localization/nb_NO.inc | 22 +++ plugins/attachment_reminder/localization/nl_BE.inc | 22 +++ plugins/attachment_reminder/localization/nn_NO.inc | 22 +++ plugins/attachment_reminder/localization/nqo.inc | 22 +++ plugins/attachment_reminder/localization/om.inc | 22 +++ plugins/attachment_reminder/localization/pt_BR.inc | 22 +++ plugins/attachment_reminder/localization/pt_PT.inc | 22 +++ plugins/attachment_reminder/localization/ro_RO.inc | 22 +++ plugins/attachment_reminder/localization/ru_RU.inc | 22 +++ plugins/attachment_reminder/localization/sk_SK.inc | 22 +++ plugins/attachment_reminder/localization/sl_SI.inc | 22 +++ plugins/attachment_reminder/localization/sr_CS.inc | 22 +++ plugins/attachment_reminder/localization/sv_SE.inc | 22 +++ plugins/attachment_reminder/localization/te_IN.inc | 22 +++ plugins/attachment_reminder/localization/th_TH.inc | 22 +++ plugins/attachment_reminder/localization/ti.inc | 22 +++ plugins/attachment_reminder/localization/tr_TR.inc | 22 +++ plugins/attachment_reminder/localization/tzm.inc | 22 +++ plugins/attachment_reminder/localization/uk_UA.inc | 22 +++ plugins/attachment_reminder/localization/ur_PK.inc | 22 +++ plugins/attachment_reminder/localization/vi_VN.inc | 22 +++ plugins/help/localization/ar.inc | 21 +++ plugins/help/localization/ast.inc | 23 +++ plugins/help/localization/be_BE.inc | 23 +++ plugins/help/localization/bg_BG.inc | 23 +++ plugins/help/localization/bn_BD.inc | 21 +++ plugins/help/localization/el_GR.inc | 23 +++ plugins/help/localization/es_AR.inc | 23 +++ plugins/help/localization/eu_ES.inc | 23 +++ plugins/help/localization/fa_AF.inc | 23 +++ plugins/help/localization/hi_IN.inc | 21 +++ plugins/help/localization/ia.inc | 21 +++ plugins/help/localization/lv_LV.inc | 23 +++ plugins/help/localization/ml_IN.inc | 21 +++ plugins/help/localization/mn_MN.inc | 21 +++ plugins/help/localization/ms_MY.inc | 21 +++ plugins/help/localization/my_MM.inc | 21 +++ plugins/help/localization/nl_BE.inc | 21 +++ plugins/help/localization/nqo.inc | 21 +++ plugins/help/localization/om.inc | 21 +++ plugins/help/localization/ro_RO.inc | 23 +++ plugins/help/localization/te_IN.inc | 21 +++ plugins/help/localization/th_TH.inc | 21 +++ plugins/help/localization/ti.inc | 23 +++ plugins/help/localization/tzm.inc | 21 +++ plugins/help/localization/uk_UA.inc | 23 +++ plugins/help/localization/ur_PK.inc | 21 +++ plugins/hide_blockquote/localization/ar.inc | 21 +++ plugins/hide_blockquote/localization/ar_SA.inc | 22 +++ plugins/hide_blockquote/localization/be_BE.inc | 23 +++ plugins/hide_blockquote/localization/bg_BG.inc | 23 +++ plugins/hide_blockquote/localization/bn_BD.inc | 21 +++ plugins/hide_blockquote/localization/el_GR.inc | 23 +++ plugins/hide_blockquote/localization/es_AR.inc | 23 +++ plugins/hide_blockquote/localization/eu_ES.inc | 23 +++ plugins/hide_blockquote/localization/fa_AF.inc | 21 +++ plugins/hide_blockquote/localization/hi_IN.inc | 21 +++ plugins/hide_blockquote/localization/ia.inc | 21 +++ plugins/hide_blockquote/localization/lv_LV.inc | 23 +++ plugins/hide_blockquote/localization/ml_IN.inc | 21 +++ plugins/hide_blockquote/localization/mn_MN.inc | 21 +++ plugins/hide_blockquote/localization/ms_MY.inc | 21 +++ plugins/hide_blockquote/localization/my_MM.inc | 21 +++ plugins/hide_blockquote/localization/nl_BE.inc | 21 +++ plugins/hide_blockquote/localization/nqo.inc | 21 +++ plugins/hide_blockquote/localization/om.inc | 21 +++ plugins/hide_blockquote/localization/ro_RO.inc | 23 +++ plugins/hide_blockquote/localization/te_IN.inc | 21 +++ plugins/hide_blockquote/localization/th_TH.inc | 21 +++ plugins/hide_blockquote/localization/ti.inc | 21 +++ plugins/hide_blockquote/localization/tzm.inc | 21 +++ plugins/hide_blockquote/localization/uk_UA.inc | 22 +++ plugins/hide_blockquote/localization/ur_PK.inc | 21 +++ plugins/managesieve/localization/ar_SA.inc | 36 ++++ plugins/managesieve/localization/eu_ES.inc | 184 +++++++++++++++++++++ plugins/managesieve/localization/th_TH.inc | 48 ++++++ plugins/markasjunk/localization/ar.inc | 22 +++ plugins/markasjunk/localization/bg_BG.inc | 23 +++ plugins/markasjunk/localization/eu_ES.inc | 23 +++ plugins/new_user_dialog/localization/ar.inc | 22 +++ plugins/new_user_dialog/localization/ar_SA.inc | 21 +++ plugins/new_user_dialog/localization/ast.inc | 22 +++ plugins/new_user_dialog/localization/es_AR.inc | 22 +++ plugins/new_user_dialog/localization/eu_ES.inc | 22 +++ plugins/new_user_dialog/localization/fa_AF.inc | 22 +++ plugins/newmail_notifier/localization/ast.inc | 29 ++++ plugins/newmail_notifier/localization/bg_BG.inc | 29 ++++ plugins/newmail_notifier/localization/el_GR.inc | 28 ++++ plugins/newmail_notifier/localization/es_AR.inc | 28 ++++ plugins/newmail_notifier/localization/eu_ES.inc | 28 ++++ plugins/newmail_notifier/localization/ti.inc | 28 ++++ plugins/password/localization/ar.inc | 35 ++++ plugins/password/localization/ar_SA.inc | 32 ++++ plugins/password/localization/ast.inc | 35 ++++ plugins/password/localization/be_BE.inc | 35 ++++ plugins/password/localization/el_GR.inc | 35 ++++ plugins/password/localization/eu_ES.inc | 35 ++++ plugins/password/localization/fa_AF.inc | 35 ++++ plugins/password/localization/ti.inc | 35 ++++ plugins/password/localization/uk_UA.inc | 35 ++++ .../subscriptions_option/localization/az_AZ.inc | 21 +++ .../subscriptions_option/localization/be_BE.inc | 21 +++ .../subscriptions_option/localization/bg_BG.inc | 21 +++ .../subscriptions_option/localization/el_GR.inc | 21 +++ .../subscriptions_option/localization/es_AR.inc | 21 +++ .../subscriptions_option/localization/eu_ES.inc | 21 +++ .../subscriptions_option/localization/fa_AF.inc | 21 +++ .../subscriptions_option/localization/id_ID.inc | 21 +++ .../subscriptions_option/localization/lv_LV.inc | 21 +++ .../subscriptions_option/localization/nn_NO.inc | 21 +++ .../subscriptions_option/localization/ro_RO.inc | 21 +++ plugins/userinfo/localization/ar.inc | 23 +++ plugins/userinfo/localization/ast.inc | 24 +++ plugins/userinfo/localization/bg_BG.inc | 24 +++ plugins/userinfo/localization/el_GR.inc | 24 +++ plugins/userinfo/localization/es_AR.inc | 24 +++ plugins/userinfo/localization/eu_ES.inc | 24 +++ plugins/userinfo/localization/fa_AF.inc | 24 +++ plugins/userinfo/localization/ti.inc | 24 +++ plugins/vcard_attachments/localization/ar.inc | 22 +++ plugins/vcard_attachments/localization/ar_SA.inc | 22 +++ plugins/vcard_attachments/localization/bg_BG.inc | 22 +++ plugins/vcard_attachments/localization/el_GR.inc | 22 +++ plugins/vcard_attachments/localization/es_AR.inc | 22 +++ plugins/vcard_attachments/localization/eu_ES.inc | 22 +++ plugins/zipdownload/localization/ar.inc | 22 +++ plugins/zipdownload/localization/ar_SA.inc | 22 +++ plugins/zipdownload/localization/be_BE.inc | 22 +++ plugins/zipdownload/localization/bg_BG.inc | 22 +++ plugins/zipdownload/localization/el_GR.inc | 22 +++ plugins/zipdownload/localization/eo.inc | 22 +++ plugins/zipdownload/localization/eu_ES.inc | 22 +++ plugins/zipdownload/localization/fa_AF.inc | 22 +++ plugins/zipdownload/localization/fi_FI.inc | 22 +++ plugins/zipdownload/localization/id_ID.inc | 22 +++ plugins/zipdownload/localization/ko_KR.inc | 22 +++ plugins/zipdownload/localization/lv_LV.inc | 22 +++ plugins/zipdownload/localization/sl_SI.inc | 22 +++ plugins/zipdownload/localization/uk_UA.inc | 22 +++ plugins/zipdownload/localization/zh_CN.inc | 22 +++ 200 files changed, 5228 insertions(+) create mode 100644 plugins/acl/localization/be_BE.inc create mode 100644 plugins/acl/localization/bg_BG.inc create mode 100644 plugins/acl/localization/el_GR.inc create mode 100644 plugins/acl/localization/es_AR.inc create mode 100644 plugins/acl/localization/eu_ES.inc create mode 100644 plugins/acl/localization/lv_LV.inc create mode 100644 plugins/acl/localization/th_TH.inc create mode 100644 plugins/acl/localization/ti.inc create mode 100644 plugins/archive/localization/ar.inc create mode 100644 plugins/archive/localization/ast.inc create mode 100644 plugins/archive/localization/bn_BD.inc create mode 100644 plugins/archive/localization/eu_ES.inc create mode 100644 plugins/archive/localization/fa_AF.inc create mode 100644 plugins/archive/localization/hi_IN.inc create mode 100644 plugins/archive/localization/ia.inc create mode 100644 plugins/archive/localization/mn_MN.inc create mode 100644 plugins/archive/localization/ms_MY.inc create mode 100644 plugins/archive/localization/my_MM.inc create mode 100644 plugins/archive/localization/nl_BE.inc create mode 100644 plugins/archive/localization/nqo.inc create mode 100644 plugins/archive/localization/om.inc create mode 100644 plugins/archive/localization/te_IN.inc create mode 100644 plugins/archive/localization/th_TH.inc create mode 100644 plugins/archive/localization/ti.inc create mode 100644 plugins/archive/localization/tzm.inc create mode 100644 plugins/archive/localization/ur_PK.inc create mode 100644 plugins/attachment_reminder/localization/ar.inc create mode 100644 plugins/attachment_reminder/localization/ar_SA.inc create mode 100644 plugins/attachment_reminder/localization/az_AZ.inc create mode 100644 plugins/attachment_reminder/localization/be_BE.inc create mode 100644 plugins/attachment_reminder/localization/bg_BG.inc create mode 100644 plugins/attachment_reminder/localization/bn_BD.inc create mode 100644 plugins/attachment_reminder/localization/bs_BA.inc create mode 100644 plugins/attachment_reminder/localization/ca_ES.inc create mode 100644 plugins/attachment_reminder/localization/cs_CZ.inc create mode 100644 plugins/attachment_reminder/localization/cy_GB.inc create mode 100644 plugins/attachment_reminder/localization/da_DK.inc create mode 100644 plugins/attachment_reminder/localization/el_GR.inc create mode 100644 plugins/attachment_reminder/localization/eo.inc create mode 100644 plugins/attachment_reminder/localization/es_AR.inc create mode 100644 plugins/attachment_reminder/localization/et_EE.inc create mode 100644 plugins/attachment_reminder/localization/eu_ES.inc create mode 100644 plugins/attachment_reminder/localization/fa_AF.inc create mode 100644 plugins/attachment_reminder/localization/fa_IR.inc create mode 100644 plugins/attachment_reminder/localization/fi_FI.inc create mode 100644 plugins/attachment_reminder/localization/gl_ES.inc create mode 100644 plugins/attachment_reminder/localization/he_IL.inc create mode 100644 plugins/attachment_reminder/localization/hi_IN.inc create mode 100644 plugins/attachment_reminder/localization/hu_HU.inc create mode 100644 plugins/attachment_reminder/localization/hy_AM.inc create mode 100644 plugins/attachment_reminder/localization/ia.inc create mode 100644 plugins/attachment_reminder/localization/id_ID.inc create mode 100644 plugins/attachment_reminder/localization/ja_JP.inc create mode 100644 plugins/attachment_reminder/localization/ko_KR.inc create mode 100644 plugins/attachment_reminder/localization/lt_LT.inc create mode 100644 plugins/attachment_reminder/localization/lv_LV.inc create mode 100644 plugins/attachment_reminder/localization/ml_IN.inc create mode 100644 plugins/attachment_reminder/localization/mn_MN.inc create mode 100644 plugins/attachment_reminder/localization/ms_MY.inc create mode 100644 plugins/attachment_reminder/localization/my_MM.inc create mode 100644 plugins/attachment_reminder/localization/nb_NO.inc create mode 100644 plugins/attachment_reminder/localization/nl_BE.inc create mode 100644 plugins/attachment_reminder/localization/nn_NO.inc create mode 100644 plugins/attachment_reminder/localization/nqo.inc create mode 100644 plugins/attachment_reminder/localization/om.inc create mode 100644 plugins/attachment_reminder/localization/pt_BR.inc create mode 100644 plugins/attachment_reminder/localization/pt_PT.inc create mode 100644 plugins/attachment_reminder/localization/ro_RO.inc create mode 100644 plugins/attachment_reminder/localization/ru_RU.inc create mode 100644 plugins/attachment_reminder/localization/sk_SK.inc create mode 100644 plugins/attachment_reminder/localization/sl_SI.inc create mode 100644 plugins/attachment_reminder/localization/sr_CS.inc create mode 100644 plugins/attachment_reminder/localization/sv_SE.inc create mode 100644 plugins/attachment_reminder/localization/te_IN.inc create mode 100644 plugins/attachment_reminder/localization/th_TH.inc create mode 100644 plugins/attachment_reminder/localization/ti.inc create mode 100644 plugins/attachment_reminder/localization/tr_TR.inc create mode 100644 plugins/attachment_reminder/localization/tzm.inc create mode 100644 plugins/attachment_reminder/localization/uk_UA.inc create mode 100644 plugins/attachment_reminder/localization/ur_PK.inc create mode 100644 plugins/attachment_reminder/localization/vi_VN.inc create mode 100644 plugins/help/localization/ar.inc create mode 100644 plugins/help/localization/ast.inc create mode 100644 plugins/help/localization/be_BE.inc create mode 100644 plugins/help/localization/bg_BG.inc create mode 100644 plugins/help/localization/bn_BD.inc create mode 100644 plugins/help/localization/el_GR.inc create mode 100644 plugins/help/localization/es_AR.inc create mode 100644 plugins/help/localization/eu_ES.inc create mode 100644 plugins/help/localization/fa_AF.inc create mode 100644 plugins/help/localization/hi_IN.inc create mode 100644 plugins/help/localization/ia.inc create mode 100644 plugins/help/localization/lv_LV.inc create mode 100644 plugins/help/localization/ml_IN.inc create mode 100644 plugins/help/localization/mn_MN.inc create mode 100644 plugins/help/localization/ms_MY.inc create mode 100644 plugins/help/localization/my_MM.inc create mode 100644 plugins/help/localization/nl_BE.inc create mode 100644 plugins/help/localization/nqo.inc create mode 100644 plugins/help/localization/om.inc create mode 100644 plugins/help/localization/ro_RO.inc create mode 100644 plugins/help/localization/te_IN.inc create mode 100644 plugins/help/localization/th_TH.inc create mode 100644 plugins/help/localization/ti.inc create mode 100644 plugins/help/localization/tzm.inc create mode 100644 plugins/help/localization/uk_UA.inc create mode 100644 plugins/help/localization/ur_PK.inc create mode 100644 plugins/hide_blockquote/localization/ar.inc create mode 100644 plugins/hide_blockquote/localization/ar_SA.inc create mode 100644 plugins/hide_blockquote/localization/be_BE.inc create mode 100644 plugins/hide_blockquote/localization/bg_BG.inc create mode 100644 plugins/hide_blockquote/localization/bn_BD.inc create mode 100644 plugins/hide_blockquote/localization/el_GR.inc create mode 100644 plugins/hide_blockquote/localization/es_AR.inc create mode 100644 plugins/hide_blockquote/localization/eu_ES.inc create mode 100644 plugins/hide_blockquote/localization/fa_AF.inc create mode 100644 plugins/hide_blockquote/localization/hi_IN.inc create mode 100644 plugins/hide_blockquote/localization/ia.inc create mode 100644 plugins/hide_blockquote/localization/lv_LV.inc create mode 100644 plugins/hide_blockquote/localization/ml_IN.inc create mode 100644 plugins/hide_blockquote/localization/mn_MN.inc create mode 100644 plugins/hide_blockquote/localization/ms_MY.inc create mode 100644 plugins/hide_blockquote/localization/my_MM.inc create mode 100644 plugins/hide_blockquote/localization/nl_BE.inc create mode 100644 plugins/hide_blockquote/localization/nqo.inc create mode 100644 plugins/hide_blockquote/localization/om.inc create mode 100644 plugins/hide_blockquote/localization/ro_RO.inc create mode 100644 plugins/hide_blockquote/localization/te_IN.inc create mode 100644 plugins/hide_blockquote/localization/th_TH.inc create mode 100644 plugins/hide_blockquote/localization/ti.inc create mode 100644 plugins/hide_blockquote/localization/tzm.inc create mode 100644 plugins/hide_blockquote/localization/uk_UA.inc create mode 100644 plugins/hide_blockquote/localization/ur_PK.inc create mode 100644 plugins/managesieve/localization/ar_SA.inc create mode 100644 plugins/managesieve/localization/eu_ES.inc create mode 100644 plugins/managesieve/localization/th_TH.inc create mode 100644 plugins/markasjunk/localization/ar.inc create mode 100644 plugins/markasjunk/localization/bg_BG.inc create mode 100644 plugins/markasjunk/localization/eu_ES.inc create mode 100644 plugins/new_user_dialog/localization/ar.inc create mode 100644 plugins/new_user_dialog/localization/ar_SA.inc create mode 100644 plugins/new_user_dialog/localization/ast.inc create mode 100644 plugins/new_user_dialog/localization/es_AR.inc create mode 100644 plugins/new_user_dialog/localization/eu_ES.inc create mode 100644 plugins/new_user_dialog/localization/fa_AF.inc create mode 100644 plugins/newmail_notifier/localization/ast.inc create mode 100644 plugins/newmail_notifier/localization/bg_BG.inc create mode 100644 plugins/newmail_notifier/localization/el_GR.inc create mode 100644 plugins/newmail_notifier/localization/es_AR.inc create mode 100644 plugins/newmail_notifier/localization/eu_ES.inc create mode 100644 plugins/newmail_notifier/localization/ti.inc create mode 100644 plugins/password/localization/ar.inc create mode 100644 plugins/password/localization/ar_SA.inc create mode 100644 plugins/password/localization/ast.inc create mode 100644 plugins/password/localization/be_BE.inc create mode 100644 plugins/password/localization/el_GR.inc create mode 100644 plugins/password/localization/eu_ES.inc create mode 100644 plugins/password/localization/fa_AF.inc create mode 100644 plugins/password/localization/ti.inc create mode 100644 plugins/password/localization/uk_UA.inc create mode 100644 plugins/subscriptions_option/localization/az_AZ.inc create mode 100644 plugins/subscriptions_option/localization/be_BE.inc create mode 100644 plugins/subscriptions_option/localization/bg_BG.inc create mode 100644 plugins/subscriptions_option/localization/el_GR.inc create mode 100644 plugins/subscriptions_option/localization/es_AR.inc create mode 100644 plugins/subscriptions_option/localization/eu_ES.inc create mode 100644 plugins/subscriptions_option/localization/fa_AF.inc create mode 100644 plugins/subscriptions_option/localization/id_ID.inc create mode 100644 plugins/subscriptions_option/localization/lv_LV.inc create mode 100644 plugins/subscriptions_option/localization/nn_NO.inc create mode 100644 plugins/subscriptions_option/localization/ro_RO.inc create mode 100644 plugins/userinfo/localization/ar.inc create mode 100644 plugins/userinfo/localization/ast.inc create mode 100644 plugins/userinfo/localization/bg_BG.inc create mode 100644 plugins/userinfo/localization/el_GR.inc create mode 100644 plugins/userinfo/localization/es_AR.inc create mode 100644 plugins/userinfo/localization/eu_ES.inc create mode 100644 plugins/userinfo/localization/fa_AF.inc create mode 100644 plugins/userinfo/localization/ti.inc create mode 100644 plugins/vcard_attachments/localization/ar.inc create mode 100644 plugins/vcard_attachments/localization/ar_SA.inc create mode 100644 plugins/vcard_attachments/localization/bg_BG.inc create mode 100644 plugins/vcard_attachments/localization/el_GR.inc create mode 100644 plugins/vcard_attachments/localization/es_AR.inc create mode 100644 plugins/vcard_attachments/localization/eu_ES.inc create mode 100644 plugins/zipdownload/localization/ar.inc create mode 100644 plugins/zipdownload/localization/ar_SA.inc create mode 100644 plugins/zipdownload/localization/be_BE.inc create mode 100644 plugins/zipdownload/localization/bg_BG.inc create mode 100644 plugins/zipdownload/localization/el_GR.inc create mode 100644 plugins/zipdownload/localization/eo.inc create mode 100644 plugins/zipdownload/localization/eu_ES.inc create mode 100644 plugins/zipdownload/localization/fa_AF.inc create mode 100644 plugins/zipdownload/localization/fi_FI.inc create mode 100644 plugins/zipdownload/localization/id_ID.inc create mode 100644 plugins/zipdownload/localization/ko_KR.inc create mode 100644 plugins/zipdownload/localization/lv_LV.inc create mode 100644 plugins/zipdownload/localization/sl_SI.inc create mode 100644 plugins/zipdownload/localization/uk_UA.inc create mode 100644 plugins/zipdownload/localization/zh_CN.inc diff --git a/plugins/acl/localization/be_BE.inc b/plugins/acl/localization/be_BE.inc new file mode 100644 index 000000000..37b984c08 --- /dev/null +++ b/plugins/acl/localization/be_BE.inc @@ -0,0 +1,91 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'Сумесны доступ'; +$labels['myrights'] = 'Правы доступа'; +$labels['username'] = 'Карыстальнік:'; +$labels['advanced'] = 'экспертны рэжым'; +$labels['newuser'] = 'Дадаць запіс'; +$labels['actions'] = 'Дзеянні з правамі доступа...'; +$labels['anyone'] = 'Усе карыстальнікі (любыя)'; +$labels['anonymous'] = 'Госці (ананімныя)'; +$labels['identifier'] = 'Ідэнтыфікатар'; +$labels['acll'] = 'Пошук'; +$labels['aclr'] = 'Прачытаць паведамленні'; +$labels['acls'] = 'Пакінуць стан Бачанае'; +$labels['aclw'] = 'Флагі запісвання'; +$labels['acli'] = 'Уставіць (капіраваць у)'; +$labels['aclp'] = 'Адправіць'; +$labels['aclc'] = 'Стварыць укладзеныя папкі'; +$labels['aclk'] = 'Стварыць укладзеныя папкі'; +$labels['acld'] = 'Выдаліць паведамленні'; +$labels['aclt'] = 'Выдаліць паведамленні'; +$labels['acle'] = 'Знішчыць паведамленні'; +$labels['aclx'] = 'Выдаліць папку'; +$labels['acla'] = 'Адміністраваць'; +$labels['aclfull'] = 'Поўны доступ'; +$labels['aclother'] = 'Іншае'; +$labels['aclread'] = 'Чытанне'; +$labels['aclwrite'] = 'Запіс'; +$labels['acldelete'] = 'Выдаленне'; +$labels['shortacll'] = 'Пошук'; +$labels['shortaclr'] = 'Чытанне'; +$labels['shortacls'] = 'Пакінуць'; +$labels['shortaclw'] = 'Запісванне'; +$labels['shortacli'] = 'Даданне'; +$labels['shortaclp'] = 'Адпраўленне'; +$labels['shortaclc'] = 'Стварэнне'; +$labels['shortaclk'] = 'Стварэнне'; +$labels['shortacld'] = 'Выдаленне'; +$labels['shortaclt'] = 'Выдаленне'; +$labels['shortacle'] = 'Знішчэнне'; +$labels['shortaclx'] = 'Выдаленне папкі'; +$labels['shortacla'] = 'Адміністраванне'; +$labels['shortaclother'] = 'Іншае'; +$labels['shortaclread'] = 'Чытанне'; +$labels['shortaclwrite'] = 'Запіс'; +$labels['shortacldelete'] = 'Выдаленне'; +$labels['longacll'] = 'Папку можна пабачыць у спісах і падпісацца на яе'; +$labels['longaclr'] = 'Папку можна адчыніць для чытання'; +$labels['longacls'] = 'На паведамленнях можна пераключаць флаг Бачанае'; +$labels['longaclw'] = 'На паведамленнях можна мяняць ключавыя словы і пераключаць флагі, апроч Бачанае і Выдаленае'; +$labels['longacli'] = 'Паведамленні могуць быць запісаныя альбо скапіяваныя ў папку'; +$labels['longaclp'] = 'Паведамленні могуць быць адпраўленыя ў гэтую папку'; +$labels['longaclc'] = 'Папкі могуць быць створаны (альбо перайменаваны) наўпрост пад гэтай папкай'; +$labels['longaclk'] = 'Папкі могуць быць створаны (альбо перайменаваны) наўпрост пад гэтай папкай'; +$labels['longacld'] = 'На паведамленнях можна пераключаць флаг Выдаленае'; +$labels['longaclt'] = 'На паведамленнях можна пераключаць флаг Выдаленае'; +$labels['longacle'] = 'Паведамленні могуць быць знішчаны'; +$labels['longaclx'] = 'Папку можна выдаліць альбо перайменаваць'; +$labels['longacla'] = 'Правы доступу на папку можна змяняць'; +$labels['longaclfull'] = 'Поўны доступ, уключна з адмінстраваннем папкі'; +$labels['longaclread'] = 'Папку можна адчыніць для чытання'; +$labels['longaclwrite'] = 'Паведамленні могуць быць пазначаныя, запісаныя альбо скапіяваныя ў папку'; +$labels['longacldelete'] = 'Паведамленні можна выдаляць'; +$messages['deleting'] = 'Правы доступу выдаляюцца...'; +$messages['saving'] = 'Правы доступу захоўваюцца...'; +$messages['updatesuccess'] = 'Правы доступу зменены'; +$messages['deletesuccess'] = 'Правы доступу выдалены'; +$messages['createsuccess'] = 'Правы доступу дададзены'; +$messages['updateerror'] = 'Не ўдалося абнавіць правы доступу'; +$messages['deleteerror'] = 'Не ўдалося выдаліць правы доступу'; +$messages['createerror'] = 'Не ўдалося дадаць правы доступу'; +$messages['deleteconfirm'] = 'Напраўду выдаліць правы доступу для вылучанага карыстальніка(ў)?'; +$messages['norights'] = 'Жадных правоў не зададзена!'; +$messages['nouser'] = 'Жадных імёнаў карыстальнікаў не зададзена!'; +?> diff --git a/plugins/acl/localization/bg_BG.inc b/plugins/acl/localization/bg_BG.inc new file mode 100644 index 000000000..c41d69ece --- /dev/null +++ b/plugins/acl/localization/bg_BG.inc @@ -0,0 +1,91 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'Споделяне'; +$labels['myrights'] = 'Права за достъп'; +$labels['username'] = 'Потребител:'; +$labels['advanced'] = 'разширен режим'; +$labels['newuser'] = 'Добавяне на запис'; +$labels['actions'] = 'Действия на права за достъп...'; +$labels['anyone'] = 'Всички потребители (който и да е)'; +$labels['anonymous'] = 'Гости (анонимни)'; +$labels['identifier'] = 'Индентификатор'; +$labels['acll'] = 'Претърсване'; +$labels['aclr'] = 'Четене на писма'; +$labels['acls'] = 'Запазване на Видяно'; +$labels['aclw'] = 'Записване на флагове'; +$labels['acli'] = 'Вмъкване (Копиране в)'; +$labels['aclp'] = 'Изпращане'; +$labels['aclc'] = 'Създаване на подпапки'; +$labels['aclk'] = 'Създаване на подпапки'; +$labels['acld'] = 'Изтриване на писма'; +$labels['aclt'] = 'Изтриване на писмо'; +$labels['acle'] = 'Заличаване'; +$labels['aclx'] = 'Изтриване на папка'; +$labels['acla'] = 'Администриране'; +$labels['aclfull'] = 'Пълен контрол'; +$labels['aclother'] = 'Други'; +$labels['aclread'] = 'Четене'; +$labels['aclwrite'] = 'Писане'; +$labels['acldelete'] = 'Изтриване'; +$labels['shortacll'] = 'Търсене'; +$labels['shortaclr'] = 'Четене'; +$labels['shortacls'] = 'Запазване'; +$labels['shortaclw'] = 'Писане'; +$labels['shortacli'] = 'Вмъкване'; +$labels['shortaclp'] = 'Изпращане'; +$labels['shortaclc'] = 'Създаване'; +$labels['shortaclk'] = 'Създаване'; +$labels['shortacld'] = 'Изтриване'; +$labels['shortaclt'] = 'Изтриване'; +$labels['shortacle'] = 'Заличаване'; +$labels['shortaclx'] = 'Изтриване на папка'; +$labels['shortacla'] = 'Администриране'; +$labels['shortaclother'] = 'Други'; +$labels['shortaclread'] = 'Четене'; +$labels['shortaclwrite'] = 'Писане'; +$labels['shortacldelete'] = 'Изтриване'; +$labels['longacll'] = 'Папката е видима в списъците и може да се абонирате'; +$labels['longaclr'] = 'Папката може да бъде отворена за четене'; +$labels['longacls'] = 'Флаг Видяно може да бъде променен.'; +$labels['longaclw'] = 'Флаговете и кл. думи за писмата могат да бъдат променяни, без Видяно и Изтрито.'; +$labels['longacli'] = 'Писмата могат да бъдат писани или копирани към папката.'; +$labels['longaclp'] = 'Писмата могат да бъдат писани в папката'; +$labels['longaclc'] = 'Папките могат да бъдат създавани (или преименувани) директно в тази папка'; +$labels['longaclk'] = 'Папките могат да бъдат създавани (или преименувани) в тази основна папка'; +$labels['longacld'] = 'Флагът Изтрито може да бъде променян'; +$labels['longaclt'] = 'Флагът Изтрито може да бъде променян'; +$labels['longacle'] = 'Писмата могат да бъдат заличавани'; +$labels['longaclx'] = 'Папката може да бъде изтривана или преименувана'; +$labels['longacla'] = 'Правата за достъп до папката могат да бъдат променяни'; +$labels['longaclfull'] = 'Пълен контрол, включително и администриране на папките'; +$labels['longaclread'] = 'Папката може да бъде отворена за четене'; +$labels['longaclwrite'] = 'Писмата могат да бъдат маркирани, записвани или копирани в папката'; +$labels['longacldelete'] = 'Писмата могат да бъдат изтривани'; +$messages['deleting'] = 'Изтриване на права за достъп...'; +$messages['saving'] = 'Запазване на права за достъп...'; +$messages['updatesuccess'] = 'Правата за достъп са променени успешно'; +$messages['deletesuccess'] = 'Правата за достъп са изтрити успешно'; +$messages['createsuccess'] = 'Правата за достъп са добавени успешно'; +$messages['updateerror'] = 'Невъзможно модифициране на правата за достъп'; +$messages['deleteerror'] = 'Невъзможно изтриване на права за достъп'; +$messages['createerror'] = 'Невъзможно добавяне на права за достъп'; +$messages['deleteconfirm'] = 'Сигурни ли сте, че желаете да премахнате правата за достъп от избраните потребители?'; +$messages['norights'] = 'Няма указани права!'; +$messages['nouser'] = 'Няма указано потребителско име!'; +?> diff --git a/plugins/acl/localization/el_GR.inc b/plugins/acl/localization/el_GR.inc new file mode 100644 index 000000000..df317aca0 --- /dev/null +++ b/plugins/acl/localization/el_GR.inc @@ -0,0 +1,91 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'Μοιρασμα'; +$labels['myrights'] = 'Δικαιώματα Πρόσβασης '; +$labels['username'] = 'Χρηστης:'; +$labels['advanced'] = 'προηγμένη λειτουργία '; +$labels['newuser'] = 'Προσθήκη καταχώρησης '; +$labels['actions'] = 'Πρόσβαση σωστων ενέργειων...'; +$labels['anyone'] = 'Όλοι οι χρήστες (ο καθένας)'; +$labels['anonymous'] = 'Οι επισκέπτες (ανώνυμα) '; +$labels['identifier'] = 'Αναγνωριστικό'; +$labels['acll'] = 'Αναζήτηση '; +$labels['aclr'] = 'Διαβάστε τα μηνύματα '; +$labels['acls'] = 'Κρατήστε Επίσκεψη κατάσταση'; +$labels['aclw'] = 'Δημιουργια σημαιων'; +$labels['acli'] = 'Εισάγωγη (Αντιγραφή σε) '; +$labels['aclp'] = 'Καταχώρηση'; +$labels['aclc'] = 'Δημιουργια υποφακελων'; +$labels['aclk'] = 'Δημιουργια υποφακελων'; +$labels['acld'] = 'Διαγραφή μηνυμάτων'; +$labels['aclt'] = 'Διαγραφή μηνυμάτων'; +$labels['acle'] = 'Απαλειψη'; +$labels['aclx'] = 'Διαγραφή φακέλου'; +$labels['acla'] = 'Χορηγος'; +$labels['aclfull'] = 'Πληρης ελεγχος'; +$labels['aclother'] = 'Άλλα'; +$labels['aclread'] = 'Αναγνωση'; +$labels['aclwrite'] = 'Δημιουργια'; +$labels['acldelete'] = 'Διαγραφή'; +$labels['shortacll'] = 'Αναζήτηση'; +$labels['shortaclr'] = 'Αναγνωση'; +$labels['shortacls'] = 'Κρατηση'; +$labels['shortaclw'] = 'Δημιουργια'; +$labels['shortacli'] = 'Αντιστροφη'; +$labels['shortaclp'] = 'Καταχωρηση'; +$labels['shortaclc'] = 'Δημιουργία'; +$labels['shortaclk'] = 'Δημιουργία'; +$labels['shortacld'] = 'Διαγραφή'; +$labels['shortaclt'] = 'Διαγραφή'; +$labels['shortacle'] = 'Απαλειψη'; +$labels['shortaclx'] = 'Διαγραφη φακελου'; +$labels['shortacla'] = 'Χορηγος'; +$labels['shortaclother'] = 'Άλλα'; +$labels['shortaclread'] = 'Αναγνωση'; +$labels['shortaclwrite'] = 'Δημιουργια'; +$labels['shortacldelete'] = 'Διαγραφή'; +$labels['longacll'] = 'Ο φάκελος είναι ορατος στης λιστες και μπορεί να εγγραφεί'; +$labels['longaclr'] = 'Ο φάκελος μπορεί να ανοίξει για την ανάγνωση '; +$labels['longacls'] = 'Η σημαια μυνηματων μπορει να αλλαχθει'; +$labels['longaclw'] = 'Μηνύματα σημαίες και λέξεις-κλειδιά που μπορεί να αλλάξει, εκτός δει και διαγράφεται '; +$labels['longacli'] = 'Τα μηνύματα μπορούν να γραφθουν ή να αντιγραφθούν στο φάκελο '; +$labels['longaclp'] = 'Τα μηνύματα μπορούν να τοποθετηθούν σε αυτόν το φάκελο '; +$labels['longaclc'] = 'Μπορούν να δημιουργηθούν φάκελοι (ή να μετονομαστουν ) ακριβώς κάτω από αυτόν το φάκελο '; +$labels['longaclk'] = 'Μπορούν να δημιουργηθούν φάκελοι (ή να μετονομαστουν ) ακριβώς κάτω από αυτόν το φάκελο '; +$labels['longacld'] = 'Διαγραφή μηνυμάτων σημαίας μπορεί να αλλάξει '; +$labels['longaclt'] = 'Διαγραφή μηνυμάτων σημαίας μπορεί να αλλάξει '; +$labels['longacle'] = 'Μυνηματα που μπορουν να απαλειφθουν'; +$labels['longaclx'] = 'Ο φακελος δεν μπορει να μετονομασθει η να διαγραφθει'; +$labels['longacla'] = 'Τα δικαιώματα πρόσβασης στο φάκελο και μπορεί να αλλάξει'; +$labels['longaclfull'] = 'Πλήρης έλεγχος συμπεριλαμβανομένης της διοίκησης '; +$labels['longaclread'] = 'Ο φάκελος μπορεί να ανοίξει για την ανάγνωση '; +$labels['longaclwrite'] = 'Μηνύματα να σημαδεύονται, γραπτή ή αντιγράφονται στο φάκελο'; +$labels['longacldelete'] = 'Τα μυνηματα μπορουν να διαγραφθουν'; +$messages['deleting'] = 'Διαγραφή των δικαιωμάτων πρόσβασης...'; +$messages['saving'] = 'Αποθήκευση δικαιώματων πρόσβασης...'; +$messages['updatesuccess'] = 'Άλλαξε με επιτυχία τα δικαιώματα πρόσβασης '; +$messages['deletesuccess'] = 'Διαγράφηκε με επιτυχία τα δικαιώματα πρόσβασης '; +$messages['createsuccess'] = 'Προστέθηκε με επιτυχία τα δικαιώματα πρόσβασης '; +$messages['updateerror'] = 'Δεν είναι δυνατή η ενημέρωση δικαιωμάτων πρόσβασης'; +$messages['deleteerror'] = 'Δεν είναι δυνατή η διαγραφή των δικαιωμάτων πρόσβασης '; +$messages['createerror'] = 'Δεν είναι δυνατή η προσθήκη δικαιώματα πρόσβασης '; +$messages['deleteconfirm'] = 'Είσαι σίγουρος, ότι θέλετε να καταργήσετε τα δικαιώματα πρόσβασης του επιλεγμένου(ων) χρήστης '; +$messages['norights'] = 'Κανένα δικαίωμα έχει καθοριστεί'; +$messages['nouser'] = 'Το όνομα δεν έχει καθοριστεί! '; +?> diff --git a/plugins/acl/localization/es_AR.inc b/plugins/acl/localization/es_AR.inc new file mode 100644 index 000000000..410fa4fee --- /dev/null +++ b/plugins/acl/localization/es_AR.inc @@ -0,0 +1,90 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'Compartiendo'; +$labels['myrights'] = 'Permisos de acceso'; +$labels['username'] = 'Usuario:'; +$labels['advanced'] = 'modo avanzado'; +$labels['newuser'] = 'Agregar entrada'; +$labels['actions'] = 'Acciones para los permisos de acceso...'; +$labels['anyone'] = 'Todos los usuarios (cualquiera)'; +$labels['anonymous'] = 'Invitado (anonimo)'; +$labels['identifier'] = 'Identificacion'; +$labels['acll'] = 'Buscar'; +$labels['aclr'] = 'Leer mensajes'; +$labels['acls'] = 'Mantener como visualizado'; +$labels['aclw'] = 'Escribir marcadores'; +$labels['acli'] = 'Insertar (Copiar en)'; +$labels['aclp'] = 'Publicar'; +$labels['aclc'] = 'Crear subcarpetas'; +$labels['aclk'] = 'Crear subcarpetas'; +$labels['acld'] = 'Eliminar mensajes'; +$labels['aclt'] = 'Eliminar mensajes'; +$labels['acle'] = 'Descartar'; +$labels['aclx'] = 'Eliminar carpeta'; +$labels['acla'] = 'Administrar'; +$labels['aclfull'] = 'Control total'; +$labels['aclother'] = 'Otro'; +$labels['aclread'] = 'Leer'; +$labels['aclwrite'] = 'Escribir'; +$labels['acldelete'] = 'Eliminar'; +$labels['shortacll'] = 'Buscar'; +$labels['shortaclr'] = 'Leer'; +$labels['shortacls'] = 'Mantener'; +$labels['shortaclw'] = 'Escribir'; +$labels['shortacli'] = 'Insertar'; +$labels['shortaclp'] = 'Publicar'; +$labels['shortaclc'] = 'Crear'; +$labels['shortaclk'] = 'Crear'; +$labels['shortacld'] = 'Eliminar'; +$labels['shortaclt'] = 'Eliminar'; +$labels['shortacle'] = 'Descartar'; +$labels['shortaclx'] = 'Borrado de carpeta'; +$labels['shortacla'] = 'Administrar'; +$labels['shortaclother'] = 'Otro'; +$labels['shortaclread'] = 'Leer'; +$labels['shortaclwrite'] = 'Escribir'; +$labels['shortacldelete'] = 'Eliminar'; +$labels['longacll'] = 'La carpeta es visible en listas y es posible suscribirse a ella'; +$labels['longaclr'] = 'La carpeta se puede abirir para lectura'; +$labels['longacls'] = 'El marcador de Mensajes Vistos puede ser modificado'; +$labels['longaclw'] = 'Los marcadores de mensajes y palabras clave se pueden modificar, excepto Visto y Eliminado'; +$labels['longacli'] = 'En esta carpeta se pueden escribir o copiar mensajes'; +$labels['longaclp'] = 'En esta carpeta se pueden publicar mensajes'; +$labels['longaclc'] = 'Debajo de esta carpeta se puede crear (o renombrar) otras carpetas directamente'; +$labels['longaclk'] = 'Debajo de esta carpeta se puede crear (o renombrar) otras carpetas directamente'; +$labels['longacld'] = 'El marcador de Mensaje Eliminado puede ser modificado'; +$labels['longaclt'] = 'El marcador de Mensaje Eliminado puede ser modificado'; +$labels['longacle'] = 'Los mensajes pueden ser descartados'; +$labels['longaclx'] = 'La carpeta puede ser eliminada o renombrada'; +$labels['longacla'] = 'Los permisos de acceso de esta carpeta pueden ser modificados'; +$labels['longaclfull'] = 'Control total incluyendo la administracion de carpeta'; +$labels['longaclread'] = 'La carpeta se puede abrir para lectura'; +$labels['longaclwrite'] = 'En esta carpeta los mensajes pueden ser marcados, escritos o copiados'; +$labels['longacldelete'] = 'Los mensajes se pueden eliminar'; +$messages['deleting'] = 'Eliminando permisos de acceso...'; +$messages['saving'] = 'Salvando permisos de acceso...'; +$messages['updatesuccess'] = 'Permisos de acceso modificados satisfactoriamente'; +$messages['deletesuccess'] = 'Permisos de acceso eliminados correctamente'; +$messages['createsuccess'] = 'Permisos de acceso agregados satisfactoriamente'; +$messages['deleteerror'] = 'No se pueden eliminar los permisos de acceso'; +$messages['createerror'] = 'No se pueden agregar los permisos de acceso'; +$messages['deleteconfirm'] = 'Estas seguro que queres remover los permisos de acceso a el/los usuario(s) seleccionado/s?'; +$messages['norights'] = 'Ningun permiso ha sido especificado!'; +$messages['nouser'] = 'Ningun nombre de usuario ha sido especificado!'; +?> diff --git a/plugins/acl/localization/eu_ES.inc b/plugins/acl/localization/eu_ES.inc new file mode 100644 index 000000000..8f3e319e0 --- /dev/null +++ b/plugins/acl/localization/eu_ES.inc @@ -0,0 +1,91 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'Partekatzen'; +$labels['myrights'] = 'Sarbide-eskubideak'; +$labels['username'] = 'Erabiltzailea:'; +$labels['advanced'] = 'modu aurreratua'; +$labels['newuser'] = 'Gehitu sarrera'; +$labels['actions'] = 'Sarbide-eskubideen ekintzak...'; +$labels['anyone'] = 'Erabiltzaile guztiak (edozein)'; +$labels['anonymous'] = 'Gonbidatuak (anonimo)'; +$labels['identifier'] = 'Identifikatzailea'; +$labels['acll'] = 'Bilatu'; +$labels['aclr'] = 'Irakurri mezuak'; +$labels['acls'] = 'Mantendu ikusita egoera'; +$labels['aclw'] = 'Idatzi banderak'; +$labels['acli'] = 'Txertatu (kopiatu barnean)'; +$labels['aclp'] = 'Posta'; +$labels['aclc'] = 'Sortu azpikarpetak'; +$labels['aclk'] = 'Sortu azpikarpetak'; +$labels['acld'] = 'Ezabatu mezuak'; +$labels['aclt'] = 'Ezabatu mezuak'; +$labels['acle'] = 'Kendu'; +$labels['aclx'] = 'Ezabatu karpeta'; +$labels['acla'] = 'Administratu'; +$labels['aclfull'] = 'Kontrol osoa'; +$labels['aclother'] = 'Beste'; +$labels['aclread'] = 'Irakurri'; +$labels['aclwrite'] = 'Idatzi'; +$labels['acldelete'] = 'Ezabatu'; +$labels['shortacll'] = 'Bilatu'; +$labels['shortaclr'] = 'Irakurri'; +$labels['shortacls'] = 'Mantendu'; +$labels['shortaclw'] = 'Idatzi'; +$labels['shortacli'] = 'Txertatu'; +$labels['shortaclp'] = 'Bidali'; +$labels['shortaclc'] = 'Sortu'; +$labels['shortaclk'] = 'Sortu'; +$labels['shortacld'] = 'Ezabatu'; +$labels['shortaclt'] = 'Ezabatu'; +$labels['shortacle'] = 'Kendu'; +$labels['shortaclx'] = 'Ezabatu karpeta'; +$labels['shortacla'] = 'Administratu'; +$labels['shortaclother'] = 'Beste'; +$labels['shortaclread'] = 'Irakurri'; +$labels['shortaclwrite'] = 'Idatzi'; +$labels['shortacldelete'] = 'Ezabatu'; +$labels['longacll'] = 'Karpeta hau zerrendan ikusgai dago eta harpidetzen ahal zara'; +$labels['longaclr'] = 'Karpeta ireki daiteke irakurtzeko'; +$labels['longacls'] = 'Mezuen ikusita bandera aldatu daiteke'; +$labels['longaclw'] = 'Mezuen banderak eta gako-hitzak alda daitezke, ikusita eta ezabatuta salbu'; +$labels['longacli'] = 'Mezuak karpetara idatzi edo kopiatu daitezke'; +$labels['longaclp'] = 'Mezuak bidali daitezke karpeta honetara'; +$labels['longaclc'] = 'Karpetak sor daitezke (edo berrizendatu) zuzenean karpeta honetan'; +$labels['longaclk'] = 'Karpetak sor daitezke (edo berrizendatu) karpeta honetan'; +$labels['longacld'] = 'Mezuen ezabatu bandera alda daiteke'; +$labels['longaclt'] = 'Mezuen ezabatu bandera alda daiteke'; +$labels['longacle'] = 'Mezuak betiko ezaba daitezke'; +$labels['longaclx'] = 'Karpeta ezaba edo berrizenda daiteke'; +$labels['longacla'] = 'Karpetaren sarbide eskubideak alda daitezke'; +$labels['longaclfull'] = 'Kontrol osoa, karpetaren administrazioa barne'; +$labels['longaclread'] = 'Karpeta ireki daiteke irakurtzeko'; +$labels['longaclwrite'] = 'Mezuak marka, idatzi edo kopia daitezke karpetara'; +$labels['longacldelete'] = 'Mezuak ezaba daitezke'; +$messages['deleting'] = 'Sarbide-eskubideak ezabatzen...'; +$messages['saving'] = 'Sarbide-eskubideak gordetzen...'; +$messages['updatesuccess'] = 'Sarbide-eskubideak ongi aldatu dira'; +$messages['deletesuccess'] = 'Sarbide-eskubideak ongi ezabatu dira'; +$messages['createsuccess'] = 'Sarbide-eskubideak ongi gehitu dira'; +$messages['updateerror'] = 'Ezin dira eguneratu sarbide-eskubideak'; +$messages['deleteerror'] = 'Ezin dira ezabatu sarbide-eskubideak'; +$messages['createerror'] = 'Ezin dira gehitu sarbide-eskubideak'; +$messages['deleteconfirm'] = 'Seguru zaude hautatutako erabiltzaile(ar)en sarbide-eskubideak ezabatu nahi duzula?'; +$messages['norights'] = 'Eskubideak ez dira zehaztu!'; +$messages['nouser'] = 'Erabiltzaile-izana ez da zehaztu!'; +?> diff --git a/plugins/acl/localization/lv_LV.inc b/plugins/acl/localization/lv_LV.inc new file mode 100644 index 000000000..c44269e36 --- /dev/null +++ b/plugins/acl/localization/lv_LV.inc @@ -0,0 +1,73 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['myrights'] = 'Piekļuves tiesības'; +$labels['username'] = 'Lietotājs:'; +$labels['advanced'] = 'paplašinātais režīms'; +$labels['newuser'] = 'Pievienot ierakstu'; +$labels['actions'] = 'Darbības ar piekļuves tiesībām...'; +$labels['anyone'] = 'Visi lietotāji (ikviens)'; +$labels['anonymous'] = 'Viesi (anonīmie)'; +$labels['identifier'] = 'Identifikators'; +$labels['acll'] = 'Atrast'; +$labels['aclr'] = 'Lasīt ziņojumus'; +$labels['aclc'] = 'Izveidot apakšmapes'; +$labels['aclk'] = 'Izveidot apakšmapes'; +$labels['acld'] = 'Dzēst ziņojumus'; +$labels['aclt'] = 'Dzēst ziņojumus'; +$labels['aclx'] = 'Dzēst mapi'; +$labels['acla'] = 'Pārvaldīt'; +$labels['aclfull'] = 'Pilna kontrole'; +$labels['aclother'] = 'Cits'; +$labels['aclread'] = 'Lasīt'; +$labels['aclwrite'] = 'Rakstīt'; +$labels['acldelete'] = 'Dzēst'; +$labels['shortacll'] = 'Atrast'; +$labels['shortaclr'] = 'Lasīt'; +$labels['shortacls'] = 'Paturēt'; +$labels['shortaclw'] = 'Rakstīt'; +$labels['shortacli'] = 'Ievietot'; +$labels['shortaclc'] = 'Izveidot'; +$labels['shortaclk'] = 'Izveidot'; +$labels['shortacld'] = 'Dzēst'; +$labels['shortaclt'] = 'Dzēst'; +$labels['shortaclx'] = 'Mapju dzēšana'; +$labels['shortacla'] = 'Pārvaldīt'; +$labels['shortaclother'] = 'Cits'; +$labels['shortaclread'] = 'Lasīt'; +$labels['shortaclwrite'] = 'Rakstīt'; +$labels['shortacldelete'] = 'Dzēst'; +$labels['longaclr'] = 'Ši mape var tikt atvērta lasīšanai'; +$labels['longaclx'] = 'Mape var tikt gan dzēsta, gan pārdēvēta'; +$labels['longacla'] = 'Mapes pieejas tiesības var tikt izmainītas'; +$labels['longaclfull'] = 'Pilna kontrole, iekļaujot arī mapju administrēšanu'; +$labels['longaclread'] = 'Mape var tikt atvērta lasīšanai'; +$labels['longaclwrite'] = 'Ziņojumi mapē var tikt gan atzīmēti, gan ierakstīti vai arī pārkopēti uz mapi'; +$labels['longacldelete'] = 'Vēstules var tikt izdzēstas'; +$messages['deleting'] = 'Dzēš piekļuves tiesības...'; +$messages['saving'] = 'Saglabā piekļuves tiesības...'; +$messages['updatesuccess'] = 'Piekļuves tiesības tika veiksmīgi samainītas'; +$messages['deletesuccess'] = 'Piekļuves tiesības tika veiksmīgi izdzēstas'; +$messages['createsuccess'] = 'Piekļuves tiesības tika veiksmīgi pievienotas'; +$messages['updateerror'] = 'Pieejas tiesības nomainīt neizdevās'; +$messages['deleteerror'] = 'Piekļuves tiesības izdzēst neizdevās'; +$messages['createerror'] = 'Piekļuves tiesības pievienot neizdevās'; +$messages['deleteconfirm'] = 'Vai tiešām atzīmētajiem lietotājiem noņemt piekļuves tiesības?'; +$messages['norights'] = 'Netika norādītas tiesības!'; +$messages['nouser'] = 'Netika norādīts lietotājvārds!'; +?> diff --git a/plugins/acl/localization/th_TH.inc b/plugins/acl/localization/th_TH.inc new file mode 100644 index 000000000..3cbcb14b6 --- /dev/null +++ b/plugins/acl/localization/th_TH.inc @@ -0,0 +1,51 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'การแชร์ข้อมูล'; +$labels['myrights'] = 'สิทธิ์การเข้าใช้'; +$labels['username'] = 'ผู้ใช้งาน:'; +$labels['advanced'] = 'โหมดขั้นสูง'; +$labels['newuser'] = 'เพิ่มรายการ'; +$labels['anyone'] = 'ผู้ใช้งานทั้งหมด (ใครก็ได้)'; +$labels['anonymous'] = 'ผู้เยี่ยมชม (คนแปลกหน้า)'; +$labels['aclr'] = 'อ่านข้อความ'; +$labels['acli'] = 'แทรก (คัดลอกไปไว้)'; +$labels['aclp'] = 'โพสต์'; +$labels['aclc'] = 'สร้างโฟลเดอร์ย่อย'; +$labels['aclk'] = 'สร้างโฟลเดอร์ย่อย'; +$labels['acld'] = 'ลบข้อความ'; +$labels['aclt'] = 'ลบข้อความ'; +$labels['aclx'] = 'ลบโฟลเดอร์'; +$labels['aclother'] = 'อื่นๆ'; +$labels['aclread'] = 'อ่าน'; +$labels['aclwrite'] = 'เขียน'; +$labels['acldelete'] = 'ลบ'; +$labels['shortaclr'] = 'อ่าน'; +$labels['shortaclw'] = 'เขียน'; +$labels['shortacli'] = 'แทรก'; +$labels['shortaclp'] = 'โพสต์'; +$labels['shortaclc'] = 'สร้าง'; +$labels['shortaclk'] = 'สร้าง'; +$labels['shortacld'] = 'ลบ'; +$labels['shortaclt'] = 'ลบ'; +$labels['shortaclx'] = 'ลบโฟลเดอร์'; +$labels['shortaclother'] = 'อื่นๆ'; +$labels['shortaclread'] = 'อ่าน'; +$labels['shortaclwrite'] = 'เขียน'; +$labels['shortacldelete'] = 'ลบ'; +?> diff --git a/plugins/acl/localization/ti.inc b/plugins/acl/localization/ti.inc new file mode 100644 index 000000000..ed769b66b --- /dev/null +++ b/plugins/acl/localization/ti.inc @@ -0,0 +1,68 @@ +.inc | + | | + | Localization file of the Roundcube Webmail ACL plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ +*/ + +$labels['sharing'] = 'ንኻልእ'; +$labels['myrights'] = 'መሰላት በዓል ዋና'; +$labels['username'] = 'በዓል ዋና'; +$labels['advanced'] = 'ዝማዕበለ አሰራርሓ'; +$labels['newuser'] = 'እታዎ ክውስኽ'; +$labels['actions'] = 'ንጥፈታት መብት ተጠቃማይነት'; +$labels['anyone'] = 'ኩሉም በዓልቲ ዋናታት(ዝኾነ ሰብ)'; +$labels['anonymous'] = 'ጋሻ(ሽም አልቦ)'; +$labels['identifier'] = 'መለለዪ'; +$labels['acll'] = 'አለሻ'; +$labels['aclr'] = 'ዝተነበቡ መልእኽታት'; +$labels['acls'] = 'ተራእዩ ብዝብል ይጽናሕ'; +$labels['aclw'] = 'ምልክታት ምጽሓፍ'; +$labels['acli'] = 'ሸጉጥ(አብ..መንጎ አቐምጥ)'; +$labels['aclp'] = 'ጠቅዕ'; +$labels['aclc'] = 'ማህደር ፍጠር'; +$labels['aclk'] = 'ክፍለማህደር ፍጠር'; +$labels['acld'] = 'መልእኽታት አጥፍእ'; +$labels['aclt'] = 'መልእኽታት አጥፍእ'; +$labels['acle'] = 'ንሓዋሩ አጥፍእ'; +$labels['aclx'] = 'ማህደር አጥፍእ'; +$labels['acla'] = 'ተቖፃፀር'; +$labels['aclfull'] = 'ምሉእ ቑጽፅር'; +$labels['aclother'] = 'ካሊእ'; +$labels['aclread'] = 'ከንብብ'; +$labels['aclwrite'] = 'ክጽሕፍ'; +$labels['acldelete'] = 'ይጥፈአለይ'; +$labels['shortacll'] = 'አለሻ'; +$labels['shortaclr'] = 'ዝተነበበ'; +$labels['shortacls'] = 'ይፅናሕ'; +$labels['shortaclw'] = 'ይጽሓፍ'; +$labels['shortacli'] = 'ይሸጎጥ'; +$labels['shortaclp'] = 'ይጠቃዕ'; +$labels['shortaclc'] = 'ይፈጠር'; +$labels['shortaclk'] = 'ይፈጠር'; +$labels['shortacld'] = 'ይጥፋእ'; +$labels['shortaclt'] = 'ይጥፋእ'; +$labels['shortacle'] = 'ንሓዋሩ ይጥፋእ'; +$labels['shortaclx'] = 'ዝጠፍእ ማህደር'; +$labels['shortacla'] = 'ክቆፃፀር'; +$labels['shortaclother'] = 'ካሊእ'; +$labels['shortaclread'] = 'ከንብብ'; +$labels['shortaclwrite'] = 'ክጽሕፍ'; +$labels['shortacldelete'] = 'ይጥፋእ'; +$labels['longaclr'] = 'ማህደር ተኸፊቱ ክንበብ ይኽእል'; +$labels['longacls'] = 'ተራእዩ ዝብል መልእኽቲ ዕላም ክለወጥ ይኽእል'; +$labels['longaclw'] = 'ዕላማትን መፍትሕ ቃላትን መልኽትታት ክልወጡ ይኽእሉ, ብዘይካ ዝተረኣዩን ዝጠፍኡን'; +$labels['longacli'] = 'መልእኽቲ ናብዚ ማህደር ክጽሓፍ ወይ ክቕዳሕ ይኽእል'; +$labels['longaclp'] = 'መልእኽቲ ናብዚ ማህደር ክኣቱ ይኽእል'; +?> diff --git a/plugins/archive/localization/ar.inc b/plugins/archive/localization/ar.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/ar.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/ast.inc b/plugins/archive/localization/ast.inc new file mode 100644 index 000000000..9d88fd7fe --- /dev/null +++ b/plugins/archive/localization/ast.inc @@ -0,0 +1,33 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); +$labels['buttontext'] = 'Archivu'; +$labels['buttontitle'] = 'Archivar esti mensaxe'; +$labels['archived'] = 'Mensaxe archiváu'; +$labels['archivedreload'] = 'Archiváu correchamente. Recarga la páxina pa ver les nueves carpetes d\'archivu.'; +$labels['archiveerror'] = 'Nun pudieron archivase dalgunos mensaxes'; +$labels['archivefolder'] = 'Archivu'; +$labels['settingstitle'] = 'Archivu'; +$labels['archivetype'] = 'Dividir l\'archivu por'; +$labels['archivetypeyear'] = 'Añu (p.ex. Archivu/2012)'; +$labels['archivetypemonth'] = 'Mes (p.ex. Archivu/2012/06)'; +$labels['archivetypefolder'] = 'Bandexa orixinal'; +$labels['archivetypesender'] = 'Corréu-e del remitente'; +$labels['unkownsender'] = 'desconocíu'; +?> diff --git a/plugins/archive/localization/bn_BD.inc b/plugins/archive/localization/bn_BD.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/bn_BD.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/eu_ES.inc b/plugins/archive/localization/eu_ES.inc new file mode 100644 index 000000000..d962ebd5e --- /dev/null +++ b/plugins/archive/localization/eu_ES.inc @@ -0,0 +1,33 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); +$labels['buttontext'] = 'Gorde'; +$labels['buttontitle'] = 'Gorde mezu hau'; +$labels['archived'] = 'Ongi gorde da'; +$labels['archivedreload'] = 'Ongi gorde da. Freskatu orria fitxategi-karpeta berria ikusteko.'; +$labels['archiveerror'] = 'Mezu batzuk ezin dira gorde.'; +$labels['archivefolder'] = 'Gorde'; +$labels['settingstitle'] = 'Gorde'; +$labels['archivetype'] = 'Banatu honen arabera'; +$labels['archivetypeyear'] = 'Urtea (e.b. Archive/2012)'; +$labels['archivetypemonth'] = 'Hilabete (e.b. Archive/2012/06)'; +$labels['archivetypefolder'] = 'Jatorrizko karpeta'; +$labels['archivetypesender'] = 'Bidaltzailearen helbidea'; +$labels['unkownsender'] = 'ezezaguna'; +?> diff --git a/plugins/archive/localization/fa_AF.inc b/plugins/archive/localization/fa_AF.inc new file mode 100644 index 000000000..498cd94e1 --- /dev/null +++ b/plugins/archive/localization/fa_AF.inc @@ -0,0 +1,28 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); +$labels['buttontext'] = 'ارشیو'; +$labels['buttontitle'] = 'ارشیو این پیام'; +$labels['archived'] = 'با موفقیت ارشیو شد'; +$labels['archivefolder'] = 'ارشیو'; +$labels['settingstitle'] = 'ارشیو'; +$labels['archivetypefolder'] = 'پوشه اصلی'; +$labels['archivetypesender'] = 'ایمیل فرستنده'; +$labels['unkownsender'] = 'نا شناس'; +?> diff --git a/plugins/archive/localization/hi_IN.inc b/plugins/archive/localization/hi_IN.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/hi_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/ia.inc b/plugins/archive/localization/ia.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/ia.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/mn_MN.inc b/plugins/archive/localization/mn_MN.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/mn_MN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/ms_MY.inc b/plugins/archive/localization/ms_MY.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/ms_MY.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/my_MM.inc b/plugins/archive/localization/my_MM.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/my_MM.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/nl_BE.inc b/plugins/archive/localization/nl_BE.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/nl_BE.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/nqo.inc b/plugins/archive/localization/nqo.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/nqo.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/om.inc b/plugins/archive/localization/om.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/om.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/te_IN.inc b/plugins/archive/localization/te_IN.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/te_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/th_TH.inc b/plugins/archive/localization/th_TH.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/th_TH.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/ti.inc b/plugins/archive/localization/ti.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/ti.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/tzm.inc b/plugins/archive/localization/tzm.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/tzm.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/archive/localization/ur_PK.inc b/plugins/archive/localization/ur_PK.inc new file mode 100644 index 000000000..1068fd4b6 --- /dev/null +++ b/plugins/archive/localization/ur_PK.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ +*/ + +$labels = array(); + +?> diff --git a/plugins/attachment_reminder/localization/ar.inc b/plugins/attachment_reminder/localization/ar.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ar.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ar_SA.inc b/plugins/attachment_reminder/localization/ar_SA.inc new file mode 100644 index 000000000..f41ecf971 --- /dev/null +++ b/plugins/attachment_reminder/localization/ar_SA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "هل نسيت إرفاق ملف؟"; +$messages['reminderoption'] = "تذكير حول المرفقات المنسية"; +$messages['keywords'] = "المرفقات,الملف,ارفاق,مرفق,ارفاق,مضمون,CV,صفحة المغلف"; diff --git a/plugins/attachment_reminder/localization/az_AZ.inc b/plugins/attachment_reminder/localization/az_AZ.inc new file mode 100644 index 000000000..df8190531 --- /dev/null +++ b/plugins/attachment_reminder/localization/az_AZ.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Faylı əlavə etməyi unutdunuz?"; +$messages['reminderoption'] = "Unudulmuş qoşmalardan xəbərdar et"; +$messages['keywords'] = "qoşmalar,fayl,qoşma,qoşulub,qoşulur,qapalı,CV,qoşma məktub"; diff --git a/plugins/attachment_reminder/localization/be_BE.inc b/plugins/attachment_reminder/localization/be_BE.inc new file mode 100644 index 000000000..faf663b8d --- /dev/null +++ b/plugins/attachment_reminder/localization/be_BE.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Забыліся далучыць файл?"; +$messages['reminderoption'] = "Напамінаць пра забытыя далучэнні"; +$messages['keywords'] = "далучэнне,файл,далучыць,далучаны,далучаецца,укладзены,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bg_BG.inc b/plugins/attachment_reminder/localization/bg_BG.inc new file mode 100644 index 000000000..6dd474a7c --- /dev/null +++ b/plugins/attachment_reminder/localization/bg_BG.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Забравихте ли да прикрепите файл към съобщението?"; +$messages['reminderoption'] = "Напомняне за забравени прикачени файлове"; +$messages['keywords'] = "прикачен,прикрепен,прикачам,прикачвам,прикрепям,прикрепвам,файл,attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bn_BD.inc b/plugins/attachment_reminder/localization/bn_BD.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/bn_BD.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/bs_BA.inc b/plugins/attachment_reminder/localization/bs_BA.inc new file mode 100644 index 000000000..7a73bcaa1 --- /dev/null +++ b/plugins/attachment_reminder/localization/bs_BA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Da li ste zaboravili da dodate ovu datoteku?"; +$messages['reminderoption'] = "Napomene o zaboravljenim prilozima"; +$messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter,prilog,biografija,popratno pismo,prilogu,popratnom pismu,datoteka,fajl"; diff --git a/plugins/attachment_reminder/localization/ca_ES.inc b/plugins/attachment_reminder/localization/ca_ES.inc new file mode 100644 index 000000000..2a7f32276 --- /dev/null +++ b/plugins/attachment_reminder/localization/ca_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Heu oblidat afegir un fitxer?"; +$messages['reminderoption'] = "Avís de fitxers adjunts oblidats"; +$messages['keywords'] = "adjunt,fitxer,adjuntar,adjuntat,adjuntant,CV,carta"; diff --git a/plugins/attachment_reminder/localization/cs_CZ.inc b/plugins/attachment_reminder/localization/cs_CZ.inc new file mode 100644 index 000000000..dee1f77ad --- /dev/null +++ b/plugins/attachment_reminder/localization/cs_CZ.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Nezapomněli jste připojit přílohu?"; +$messages['reminderoption'] = "Upozorňovat na zapomenuté přílohy"; +$messages['keywords'] = "příloha,přílohy,příloze,přílohu,přiloženém,připojeném,CV,životopis"; diff --git a/plugins/attachment_reminder/localization/cy_GB.inc b/plugins/attachment_reminder/localization/cy_GB.inc new file mode 100644 index 000000000..dffe10702 --- /dev/null +++ b/plugins/attachment_reminder/localization/cy_GB.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Wedi anghofio atodi ffeil?"; +$messages['reminderoption'] = "Atgoffa am atodiadau ar goll"; +$messages['keywords'] = "atodiad,atodi,atodaf,atodwyd,atodir,amgaedig,dogfen,llythyr,ffeil,attachment,file,attach,attached,attaching,enclosed,CV,cover letter,"; diff --git a/plugins/attachment_reminder/localization/da_DK.inc b/plugins/attachment_reminder/localization/da_DK.inc new file mode 100644 index 000000000..c7983cfc0 --- /dev/null +++ b/plugins/attachment_reminder/localization/da_DK.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Glemte du at vedhæfte en fil?"; +$messages['reminderoption'] = "Påmind om glemt vedhæftning af filer"; +$messages['keywords'] = "vedhæftet fil,fil,vedhæft,vedhæftet,vedhæfter,lukket,CV,følgebrev"; diff --git a/plugins/attachment_reminder/localization/el_GR.inc b/plugins/attachment_reminder/localization/el_GR.inc new file mode 100644 index 000000000..a24e82d3e --- /dev/null +++ b/plugins/attachment_reminder/localization/el_GR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Μήπως ξεχάσετε να επισυνάψετε ένα αρχείο; "; +$messages['reminderoption'] = "Υπενθύμιση ξεχάσmena συνημμένα "; +$messages['keywords'] = "συνημμένο, αρχείο, συννημενο, επισυναψη, επισυνάπτοντας, κλειστό, βιογραφικό σημείωμα, συνοδευτική επιστολή"; diff --git a/plugins/attachment_reminder/localization/eo.inc b/plugins/attachment_reminder/localization/eo.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/eo.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/es_AR.inc b/plugins/attachment_reminder/localization/es_AR.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/es_AR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/et_EE.inc b/plugins/attachment_reminder/localization/et_EE.inc new file mode 100644 index 000000000..629dcf084 --- /dev/null +++ b/plugins/attachment_reminder/localization/et_EE.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Unustasid faili lisada?"; +$messages['reminderoption'] = "Tuleta mulle meelde kui unustasin manuse lisada"; +$messages['keywords'] = "manus,manuses,lisatud,lisasin,fail,file,failis,attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/eu_ES.inc b/plugins/attachment_reminder/localization/eu_ES.inc new file mode 100644 index 000000000..c7bdd8337 --- /dev/null +++ b/plugins/attachment_reminder/localization/eu_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Ahaztu zaizu fitxategia eranstea?"; +$messages['reminderoption'] = "Ohartarazi ahaztutako erankinez"; +$messages['keywords'] = "eranskin,fitxategia,erantzi,erantzita,eransten,atxikita"; diff --git a/plugins/attachment_reminder/localization/fa_AF.inc b/plugins/attachment_reminder/localization/fa_AF.inc new file mode 100644 index 000000000..ee5bc1d9e --- /dev/null +++ b/plugins/attachment_reminder/localization/fa_AF.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "آیا فراموش کردید که فایل را الصاق کرده اید؟"; +$messages['reminderoption'] = "یاد آوری درمورد ضمایم فراموش شده"; +$messages['keywords'] = "ضمیمه،فایل،ضمیمه کردن،ضمیمه شده،در حال ضمیمه کردن، الصاق شده،CV، عنوان نامه"; diff --git a/plugins/attachment_reminder/localization/fa_IR.inc b/plugins/attachment_reminder/localization/fa_IR.inc new file mode 100644 index 000000000..974ca7f15 --- /dev/null +++ b/plugins/attachment_reminder/localization/fa_IR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "آیا شما پیوست کردن پرونده را فراموش کرده‌اید؟"; +$messages['reminderoption'] = "یادآوری فراموشی پیوست‌ها"; +$messages['keywords'] = "پیوست،پرونده،پیوست کردن، پیوست شده، CV"; diff --git a/plugins/attachment_reminder/localization/fi_FI.inc b/plugins/attachment_reminder/localization/fi_FI.inc new file mode 100644 index 000000000..ddb939e13 --- /dev/null +++ b/plugins/attachment_reminder/localization/fi_FI.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Unohditko liittää tiedoston?"; +$messages['reminderoption'] = "Muistuta mahdollisesti unohtuneista liitteistä"; +$messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter,liite,tiedosto,liitteenä,liitetiedosto"; diff --git a/plugins/attachment_reminder/localization/gl_ES.inc b/plugins/attachment_reminder/localization/gl_ES.inc new file mode 100644 index 000000000..aaa22d741 --- /dev/null +++ b/plugins/attachment_reminder/localization/gl_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Esqueceches adxuntar un ficheiro?"; +$messages['reminderoption'] = "Lembrete de adxuntos esquecidos"; +$messages['keywords'] = "adxunto,ficheiro,engádega, engadido,engadindo,anexo,CV,cuberta,carta"; diff --git a/plugins/attachment_reminder/localization/he_IL.inc b/plugins/attachment_reminder/localization/he_IL.inc new file mode 100644 index 000000000..40ba85cdd --- /dev/null +++ b/plugins/attachment_reminder/localization/he_IL.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "האם שכחת לצרף קובץ?"; +$messages['reminderoption'] = "להזכיר לצרף נספח"; +$messages['keywords'] = "נספח,קובץ,לצרף,מצורף,מצרף,מצרפת,רצ\"ב,קו\"ח,קורות חיים"; diff --git a/plugins/attachment_reminder/localization/hi_IN.inc b/plugins/attachment_reminder/localization/hi_IN.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/hi_IN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/hu_HU.inc b/plugins/attachment_reminder/localization/hu_HU.inc new file mode 100644 index 000000000..6b5ea9480 --- /dev/null +++ b/plugins/attachment_reminder/localization/hu_HU.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Nem felejtetted el a csatolandó file-t?"; +$messages['reminderoption'] = "Emlékeztessen a csatolandó csatolmányra"; +$messages['keywords'] = "csatolmány, file, csatolás, csatolt, csatolni, közrezárt, CV, kisérőlevél"; diff --git a/plugins/attachment_reminder/localization/hy_AM.inc b/plugins/attachment_reminder/localization/hy_AM.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/hy_AM.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ia.inc b/plugins/attachment_reminder/localization/ia.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ia.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/id_ID.inc b/plugins/attachment_reminder/localization/id_ID.inc new file mode 100644 index 000000000..e08546bbc --- /dev/null +++ b/plugins/attachment_reminder/localization/id_ID.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Apakah anda lupa menambahkan attachment?"; +$messages['reminderoption'] = "Pengingat attachment yang terlupakan"; +$messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/ja_JP.inc b/plugins/attachment_reminder/localization/ja_JP.inc new file mode 100644 index 000000000..742cae109 --- /dev/null +++ b/plugins/attachment_reminder/localization/ja_JP.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "ファイルの添付を忘れていませんか?"; +$messages['reminderoption'] = "添付ファイルの付け忘れを確認"; +$messages['keywords'] = "添付,ファイル,添付ファイル,同封,添え状"; diff --git a/plugins/attachment_reminder/localization/ko_KR.inc b/plugins/attachment_reminder/localization/ko_KR.inc new file mode 100644 index 000000000..d74e03a8b --- /dev/null +++ b/plugins/attachment_reminder/localization/ko_KR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "파일을 첨부하는 것을 잊으셨습니까?"; +$messages['reminderoption'] = "잊었던 첨부파일에 대해 알리기"; +$messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/lt_LT.inc b/plugins/attachment_reminder/localization/lt_LT.inc new file mode 100644 index 000000000..3eae1cf80 --- /dev/null +++ b/plugins/attachment_reminder/localization/lt_LT.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Ar nepamiršote prisegti priedo?"; +$messages['reminderoption'] = "Priminti apie neprisegtus priedus"; +$messages['keywords'] = "priedas, byla, prisegti, prisegta, prisegama, uždaras, CV, laiškas"; diff --git a/plugins/attachment_reminder/localization/lv_LV.inc b/plugins/attachment_reminder/localization/lv_LV.inc new file mode 100644 index 000000000..99b97bc48 --- /dev/null +++ b/plugins/attachment_reminder/localization/lv_LV.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Vai Jūs nepiemirsāt pievienot failu?"; +$messages['reminderoption'] = "Atgādināt par nepievienotajiem pielikumiem"; +$messages['keywords'] = "pielikums,fails,pievienot,pielikt,pievienots,pielikts,ievietot,ievietots,CV"; diff --git a/plugins/attachment_reminder/localization/ml_IN.inc b/plugins/attachment_reminder/localization/ml_IN.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ml_IN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/mn_MN.inc b/plugins/attachment_reminder/localization/mn_MN.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/mn_MN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ms_MY.inc b/plugins/attachment_reminder/localization/ms_MY.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ms_MY.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/my_MM.inc b/plugins/attachment_reminder/localization/my_MM.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/my_MM.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nb_NO.inc b/plugins/attachment_reminder/localization/nb_NO.inc new file mode 100644 index 000000000..06c240e05 --- /dev/null +++ b/plugins/attachment_reminder/localization/nb_NO.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Glemte du å legge ved en fil?"; +$messages['reminderoption'] = "Gi meg en påminnelse om glemte vedlegg"; +$messages['keywords'] = "vedlegg, fil, legg ved, lagt ved, legger ved, lukket, CV, følgebrev"; diff --git a/plugins/attachment_reminder/localization/nl_BE.inc b/plugins/attachment_reminder/localization/nl_BE.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/nl_BE.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nn_NO.inc b/plugins/attachment_reminder/localization/nn_NO.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/nn_NO.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nqo.inc b/plugins/attachment_reminder/localization/nqo.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/nqo.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/om.inc b/plugins/attachment_reminder/localization/om.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/om.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/pt_BR.inc b/plugins/attachment_reminder/localization/pt_BR.inc new file mode 100644 index 000000000..411025e12 --- /dev/null +++ b/plugins/attachment_reminder/localization/pt_BR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Você esqueceu-se de anexar um arquivo?"; +$messages['reminderoption'] = "Alertar quando os anexos forem esquecidos"; +$messages['keywords'] = "anexo,arquivo,anexar,anexado,anexando,incluso,CV,currículo"; diff --git a/plugins/attachment_reminder/localization/pt_PT.inc b/plugins/attachment_reminder/localization/pt_PT.inc new file mode 100644 index 000000000..abbaf6391 --- /dev/null +++ b/plugins/attachment_reminder/localization/pt_PT.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Você esqueceu-se de anexar um ficheiro?"; +$messages['reminderoption'] = "Lembrar sobre anexos esquecidos"; +$messages['keywords'] = "anexo,ficheiro,anexar,anexado,a anexar,em anexo,currículo,carta de apresentação"; diff --git a/plugins/attachment_reminder/localization/ro_RO.inc b/plugins/attachment_reminder/localization/ro_RO.inc new file mode 100644 index 000000000..9f7baa7b1 --- /dev/null +++ b/plugins/attachment_reminder/localization/ro_RO.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Ați uitat să atașati ?"; +$messages['reminderoption'] = "Adu-mi aminte de atașamente"; +$messages['keywords'] = "atașament,atasament,atas,atasat,ataș,attach,fisier,fișier,attach,atach,attache"; diff --git a/plugins/attachment_reminder/localization/ru_RU.inc b/plugins/attachment_reminder/localization/ru_RU.inc new file mode 100644 index 000000000..7805acab0 --- /dev/null +++ b/plugins/attachment_reminder/localization/ru_RU.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Вы не забыли прикрепить файл?"; +$messages['reminderoption'] = "Напоминать о забытых вложениях"; +$messages['keywords'] = "вложение,файл, вложенный, прикрепленный,резюме,документ"; diff --git a/plugins/attachment_reminder/localization/sk_SK.inc b/plugins/attachment_reminder/localization/sk_SK.inc new file mode 100644 index 000000000..4c2cd271d --- /dev/null +++ b/plugins/attachment_reminder/localization/sk_SK.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Nezabudli ste pridať prílohu?"; +$messages['reminderoption'] = "Pripomenúť zabudnuté prílohy"; +$messages['keywords'] = "príloha,súbor,pripojiť,priložená,priložený,priložené,v prílohe,životopis,sprievodný list"; diff --git a/plugins/attachment_reminder/localization/sl_SI.inc b/plugins/attachment_reminder/localization/sl_SI.inc new file mode 100644 index 000000000..6166b4458 --- /dev/null +++ b/plugins/attachment_reminder/localization/sl_SI.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Ste pozabili pripeti datoteko?"; +$messages['reminderoption'] = "Opozorilo za dodajanje priponk"; +$messages['keywords'] = "priponka,datoteka,pripeti,pripeta,pripenjati,priložen,priložiti,CV,spremno pismo"; diff --git a/plugins/attachment_reminder/localization/sr_CS.inc b/plugins/attachment_reminder/localization/sr_CS.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/sr_CS.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/sv_SE.inc b/plugins/attachment_reminder/localization/sv_SE.inc new file mode 100644 index 000000000..4bcd7e53f --- /dev/null +++ b/plugins/attachment_reminder/localization/sv_SE.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Glömde du att bifoga en fil?"; +$messages['reminderoption'] = "Påminn om glömda bilagor"; +$messages['keywords'] = "bilaga,fil,bifoga,bifogad,bifogar,infogad,CV,personligt brev"; diff --git a/plugins/attachment_reminder/localization/te_IN.inc b/plugins/attachment_reminder/localization/te_IN.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/te_IN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/th_TH.inc b/plugins/attachment_reminder/localization/th_TH.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/th_TH.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ti.inc b/plugins/attachment_reminder/localization/ti.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ti.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/tr_TR.inc b/plugins/attachment_reminder/localization/tr_TR.inc new file mode 100644 index 000000000..bddaf748f --- /dev/null +++ b/plugins/attachment_reminder/localization/tr_TR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = "Bir dosya eklemeyi unuttunuz mu?"; +$messages['reminderoption'] = "Unutulan dosya eklemelerini hatırlat"; +$messages['keywords'] = "ekleme,dosya,ek,eklenildi,ekleniliyor,konuldu,CV,kapak mektubu"; diff --git a/plugins/attachment_reminder/localization/tzm.inc b/plugins/attachment_reminder/localization/tzm.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/tzm.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/uk_UA.inc b/plugins/attachment_reminder/localization/uk_UA.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/uk_UA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ur_PK.inc b/plugins/attachment_reminder/localization/ur_PK.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/ur_PK.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/vi_VN.inc b/plugins/attachment_reminder/localization/vi_VN.inc new file mode 100644 index 000000000..1ca508296 --- /dev/null +++ b/plugins/attachment_reminder/localization/vi_VN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ + +$messages = array(); +$messages['forgotattachment'] = ""; +$messages['reminderoption'] = ""; +$messages['keywords'] = ""; diff --git a/plugins/help/localization/ar.inc b/plugins/help/localization/ar.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/ar.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/ast.inc b/plugins/help/localization/ast.inc new file mode 100644 index 000000000..0b39726d3 --- /dev/null +++ b/plugins/help/localization/ast.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Ayuda'; +$labels['about'] = 'Tocante a'; +$labels['license'] = 'Llicencia'; +?> diff --git a/plugins/help/localization/be_BE.inc b/plugins/help/localization/be_BE.inc new file mode 100644 index 000000000..d1505ec32 --- /dev/null +++ b/plugins/help/localization/be_BE.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Дапамога'; +$labels['about'] = 'Апісанне'; +$labels['license'] = 'Ліцэнзія'; +?> diff --git a/plugins/help/localization/bg_BG.inc b/plugins/help/localization/bg_BG.inc new file mode 100644 index 000000000..335a31e61 --- /dev/null +++ b/plugins/help/localization/bg_BG.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Помощ'; +$labels['about'] = 'Относно'; +$labels['license'] = 'Лиценз'; +?> diff --git a/plugins/help/localization/bn_BD.inc b/plugins/help/localization/bn_BD.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/bn_BD.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/el_GR.inc b/plugins/help/localization/el_GR.inc new file mode 100644 index 000000000..8006587ee --- /dev/null +++ b/plugins/help/localization/el_GR.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Βοηθεια'; +$labels['about'] = 'Σχετικά'; +$labels['license'] = 'Άδεια χρήσης'; +?> diff --git a/plugins/help/localization/es_AR.inc b/plugins/help/localization/es_AR.inc new file mode 100644 index 000000000..469a5218d --- /dev/null +++ b/plugins/help/localization/es_AR.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Ayuda'; +$labels['about'] = 'Acerca de'; +$labels['license'] = 'Licencia'; +?> diff --git a/plugins/help/localization/eu_ES.inc b/plugins/help/localization/eu_ES.inc new file mode 100644 index 000000000..9b0b36c98 --- /dev/null +++ b/plugins/help/localization/eu_ES.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Laguntza'; +$labels['about'] = 'Honi buruz'; +$labels['license'] = 'Lizentzia'; +?> diff --git a/plugins/help/localization/fa_AF.inc b/plugins/help/localization/fa_AF.inc new file mode 100644 index 000000000..aaa6436d9 --- /dev/null +++ b/plugins/help/localization/fa_AF.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'راهنما'; +$labels['about'] = 'درباره نرم افزار'; +$labels['license'] = 'حق نشر'; +?> diff --git a/plugins/help/localization/hi_IN.inc b/plugins/help/localization/hi_IN.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/hi_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/ia.inc b/plugins/help/localization/ia.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/ia.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/lv_LV.inc b/plugins/help/localization/lv_LV.inc new file mode 100644 index 000000000..5aaf30e52 --- /dev/null +++ b/plugins/help/localization/lv_LV.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Palīdzība'; +$labels['about'] = 'Par'; +$labels['license'] = 'Licence'; +?> diff --git a/plugins/help/localization/ml_IN.inc b/plugins/help/localization/ml_IN.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/ml_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/mn_MN.inc b/plugins/help/localization/mn_MN.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/mn_MN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/ms_MY.inc b/plugins/help/localization/ms_MY.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/ms_MY.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/my_MM.inc b/plugins/help/localization/my_MM.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/my_MM.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/nl_BE.inc b/plugins/help/localization/nl_BE.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/nl_BE.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/nqo.inc b/plugins/help/localization/nqo.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/nqo.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/om.inc b/plugins/help/localization/om.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/om.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/ro_RO.inc b/plugins/help/localization/ro_RO.inc new file mode 100644 index 000000000..181c63a87 --- /dev/null +++ b/plugins/help/localization/ro_RO.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Ajutor'; +$labels['about'] = 'Despre'; +$labels['license'] = 'Licența'; +?> diff --git a/plugins/help/localization/te_IN.inc b/plugins/help/localization/te_IN.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/te_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/th_TH.inc b/plugins/help/localization/th_TH.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/th_TH.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/ti.inc b/plugins/help/localization/ti.inc new file mode 100644 index 000000000..48cb156df --- /dev/null +++ b/plugins/help/localization/ti.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'መምሃሪ'; +$labels['about'] = 'ብዛዕባ'; +$labels['license'] = 'ፍቓድ'; +?> diff --git a/plugins/help/localization/tzm.inc b/plugins/help/localization/tzm.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/tzm.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/help/localization/uk_UA.inc b/plugins/help/localization/uk_UA.inc new file mode 100644 index 000000000..e263cdb20 --- /dev/null +++ b/plugins/help/localization/uk_UA.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); +$labels['help'] = 'Допомога'; +$labels['about'] = 'Про програму'; +$labels['license'] = 'Ліцензія'; +?> diff --git a/plugins/help/localization/ur_PK.inc b/plugins/help/localization/ur_PK.inc new file mode 100644 index 000000000..6ccba88a7 --- /dev/null +++ b/plugins/help/localization/ur_PK.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Help plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ar.inc b/plugins/hide_blockquote/localization/ar.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ar.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ar_SA.inc b/plugins/hide_blockquote/localization/ar_SA.inc new file mode 100644 index 000000000..bcb373ce0 --- /dev/null +++ b/plugins/hide_blockquote/localization/ar_SA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'إخفاء'; +$labels['show'] = 'إظهار'; +?> diff --git a/plugins/hide_blockquote/localization/be_BE.inc b/plugins/hide_blockquote/localization/be_BE.inc new file mode 100644 index 000000000..20d981246 --- /dev/null +++ b/plugins/hide_blockquote/localization/be_BE.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Схаваць'; +$labels['show'] = 'Паказаць'; +$labels['quotelimit'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць'; +?> diff --git a/plugins/hide_blockquote/localization/bg_BG.inc b/plugins/hide_blockquote/localization/bg_BG.inc new file mode 100644 index 000000000..8685f7e2d --- /dev/null +++ b/plugins/hide_blockquote/localization/bg_BG.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Скрий'; +$labels['show'] = 'Покажи'; +$labels['quotelimit'] = 'Скрива цитатите когато броя редове е по-голям от'; +?> diff --git a/plugins/hide_blockquote/localization/bn_BD.inc b/plugins/hide_blockquote/localization/bn_BD.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/bn_BD.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/el_GR.inc b/plugins/hide_blockquote/localization/el_GR.inc new file mode 100644 index 000000000..153de13a7 --- /dev/null +++ b/plugins/hide_blockquote/localization/el_GR.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Αποκρυψη'; +$labels['show'] = 'Εμφάνιση'; +$labels['quotelimit'] = 'Απόκρυψη παραπομπων όταν οι γραμμές μέτρησης είναι μεγαλύτερες από'; +?> diff --git a/plugins/hide_blockquote/localization/es_AR.inc b/plugins/hide_blockquote/localization/es_AR.inc new file mode 100644 index 000000000..db0e8f7ae --- /dev/null +++ b/plugins/hide_blockquote/localization/es_AR.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Ocultar'; +$labels['show'] = 'Mostrar'; +$labels['quotelimit'] = 'Ocultar el mail citado cuando el número de líneas sea mayor que'; +?> diff --git a/plugins/hide_blockquote/localization/eu_ES.inc b/plugins/hide_blockquote/localization/eu_ES.inc new file mode 100644 index 000000000..bede314fa --- /dev/null +++ b/plugins/hide_blockquote/localization/eu_ES.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Ezkutatu'; +$labels['show'] = 'Erakutsi'; +$labels['quotelimit'] = 'Ezkutatu aipamena lerroen kopurua hau baino handiagoa denean'; +?> diff --git a/plugins/hide_blockquote/localization/fa_AF.inc b/plugins/hide_blockquote/localization/fa_AF.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/fa_AF.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/hi_IN.inc b/plugins/hide_blockquote/localization/hi_IN.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/hi_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ia.inc b/plugins/hide_blockquote/localization/ia.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ia.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/lv_LV.inc b/plugins/hide_blockquote/localization/lv_LV.inc new file mode 100644 index 000000000..bbc77a759 --- /dev/null +++ b/plugins/hide_blockquote/localization/lv_LV.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Slēpt'; +$labels['show'] = 'Rādīt'; +$labels['quotelimit'] = 'Slēpt citātu kad līniju skaits ir lielāks kā'; +?> diff --git a/plugins/hide_blockquote/localization/ml_IN.inc b/plugins/hide_blockquote/localization/ml_IN.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ml_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/mn_MN.inc b/plugins/hide_blockquote/localization/mn_MN.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/mn_MN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ms_MY.inc b/plugins/hide_blockquote/localization/ms_MY.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ms_MY.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/my_MM.inc b/plugins/hide_blockquote/localization/my_MM.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/my_MM.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/nl_BE.inc b/plugins/hide_blockquote/localization/nl_BE.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/nl_BE.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/nqo.inc b/plugins/hide_blockquote/localization/nqo.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/nqo.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/om.inc b/plugins/hide_blockquote/localization/om.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/om.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ro_RO.inc b/plugins/hide_blockquote/localization/ro_RO.inc new file mode 100644 index 000000000..a170c3297 --- /dev/null +++ b/plugins/hide_blockquote/localization/ro_RO.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Ascunde'; +$labels['show'] = 'Afișează'; +$labels['quotelimit'] = 'Ascunde citațiile dacă numărul de linii este mai mare ca'; +?> diff --git a/plugins/hide_blockquote/localization/te_IN.inc b/plugins/hide_blockquote/localization/te_IN.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/te_IN.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/th_TH.inc b/plugins/hide_blockquote/localization/th_TH.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/th_TH.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/ti.inc b/plugins/hide_blockquote/localization/ti.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ti.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/tzm.inc b/plugins/hide_blockquote/localization/tzm.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/tzm.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/hide_blockquote/localization/uk_UA.inc b/plugins/hide_blockquote/localization/uk_UA.inc new file mode 100644 index 000000000..5d1be362e --- /dev/null +++ b/plugins/hide_blockquote/localization/uk_UA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); +$labels['hide'] = 'Приховати'; +$labels['show'] = 'Показати'; +?> diff --git a/plugins/hide_blockquote/localization/ur_PK.inc b/plugins/hide_blockquote/localization/ur_PK.inc new file mode 100644 index 000000000..0457efa17 --- /dev/null +++ b/plugins/hide_blockquote/localization/ur_PK.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Hide-Blockquote plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ +*/ + +$labels = array(); + +?> diff --git a/plugins/managesieve/localization/ar_SA.inc b/plugins/managesieve/localization/ar_SA.inc new file mode 100644 index 000000000..83136cec4 --- /dev/null +++ b/plugins/managesieve/localization/ar_SA.inc @@ -0,0 +1,36 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Managesieve plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ +*/ + + +$labels['messagedelete'] = 'حذف الرسالة'; +$labels['add'] = 'إضافة'; +$labels['del'] = 'حذف'; +$labels['recipient'] = 'مستلم'; +$labels['active'] = 'نشط'; +$labels['flagdeleted'] = 'محذوف'; +$labels['flagflagged'] = 'موسوم'; +$labels['flagdraft'] = 'مسودة'; +$labels['notifyimportancelow'] = 'منخفض'; +$labels['notifyimportancenormal'] = 'عادي'; +$labels['notifyimportancehigh'] = 'مرتفع'; +$labels['advancedopts'] = 'خيارات متقدّمة'; +$labels['address'] = 'العنوان'; +$labels['allparts'] = 'الكل'; +$labels['domain'] = 'المجال'; +$messages = array(); +?> diff --git a/plugins/managesieve/localization/eu_ES.inc b/plugins/managesieve/localization/eu_ES.inc new file mode 100644 index 000000000..b999814f6 --- /dev/null +++ b/plugins/managesieve/localization/eu_ES.inc @@ -0,0 +1,184 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Managesieve plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ +*/ + + +$labels['filters'] = 'Iragazkiak'; +$labels['managefilters'] = 'Administratu postaren sarrera-iragazkiak'; +$labels['filtername'] = 'Iragazkiaren izena'; +$labels['newfilter'] = 'Iragazki berria'; +$labels['filteradd'] = 'Gehitu iragazkia'; +$labels['filterdel'] = 'Ezabatu iragazkia'; +$labels['moveup'] = 'Mugitu gora'; +$labels['movedown'] = 'Mugitu behera'; +$labels['filterallof'] = 'alderatu datozen arau guztiak'; +$labels['filteranyof'] = 'alderatu datozen arauetako batzuk'; +$labels['filterany'] = 'mezu guztiak'; +$labels['filtercontains'] = 'badu'; +$labels['filternotcontains'] = 'ez du'; +$labels['filteris'] = 'honen berdina da'; +$labels['filterisnot'] = 'ez da honen berdina'; +$labels['filterexists'] = 'badago'; +$labels['filternotexists'] = 'ez dago'; +$labels['filtermatches'] = 'bat datozen adierazpenak'; +$labels['filternotmatches'] = 'bat ez datozen adierazpenak'; +$labels['filterregex'] = 'bat datozen adierazpen erregularrak'; +$labels['filternotregex'] = 'bat ez datozen adierazpen erregularrak'; +$labels['filterunder'] = 'azpian'; +$labels['filterover'] = 'gainean'; +$labels['addrule'] = 'Gehitu araua'; +$labels['delrule'] = 'Ezabatu araua'; +$labels['messagemoveto'] = 'Mugitu mezua hona'; +$labels['messageredirect'] = 'Birbideratu mezua hona '; +$labels['messagecopyto'] = 'Kopiatu mezua hona'; +$labels['messagesendcopy'] = 'Bidali mezuaren kopia hona'; +$labels['messagereply'] = 'Erantzun mezuarekin'; +$labels['messagedelete'] = 'Ezabatu mezua'; +$labels['messagediscard'] = 'Baztertu mezuarekin'; +$labels['messagesrules'] = 'Sarrerako postarako:'; +$labels['messagesactions'] = '...exekutatu datozen ekintzak:'; +$labels['add'] = 'Gehitu'; +$labels['del'] = 'Ezabatu'; +$labels['sender'] = 'Bidaltzailea'; +$labels['recipient'] = 'Hartzailea'; +$labels['vacationdays'] = 'Zer maiztasunarekin bidaltzen ditu mezuak (egunak)'; +$labels['vacationinterval'] = 'Zenbatero bidali mezuak:'; +$labels['days'] = 'egun'; +$labels['seconds'] = 'segundo'; +$labels['vacationreason'] = 'Mezuaren gorputza (oporrak direla medio):'; +$labels['vacationsubject'] = 'Mezuaren izenburua:'; +$labels['rulestop'] = 'Gelditu arauak ebaluatzen'; +$labels['enable'] = 'Gaitu/Ezgaitu'; +$labels['filterset'] = 'Iragazki-paketea'; +$labels['filtersets'] = 'Iragazki paketeak'; +$labels['filtersetadd'] = 'Gehitu iragazki-paketea'; +$labels['filtersetdel'] = 'Ezabatu uneko iragazki-paketea'; +$labels['filtersetact'] = 'Gaitu uneko iragazki-paketea'; +$labels['filtersetdeact'] = 'Ezgaitu uneko iragazki-paketea'; +$labels['filterdef'] = 'Iragazkiaren definizioa'; +$labels['filtersetname'] = 'Iragazki-paketearen izena'; +$labels['newfilterset'] = 'Iragazki-pakete berria'; +$labels['active'] = 'gaitua'; +$labels['none'] = 'Bat ere ez'; +$labels['fromset'] = 'paketetik'; +$labels['fromfile'] = 'fitxategitik'; +$labels['filterdisabled'] = 'Iragazki ezgaitua'; +$labels['countisgreaterthan'] = 'kopurua handiagoa da hau baino'; +$labels['countisgreaterthanequal'] = 'kopurua hau baino handiagoa edo berdina da'; +$labels['countislessthan'] = 'kopurua hau baino txikiagoa da'; +$labels['countislessthanequal'] = 'kopurua hau baino txikiagoa edo berdina da'; +$labels['countequals'] = 'kopurua honen berdina da'; +$labels['countnotequals'] = 'kopurua ez da honen berdina'; +$labels['valueisgreaterthan'] = 'balioa hau baino handiagoa da'; +$labels['valueisgreaterthanequal'] = 'balioa hau baino handiagoa edo berdina da'; +$labels['valueislessthan'] = 'balioa hau baino txikiagoa da'; +$labels['valueislessthanequal'] = 'balioa hau baino txikiagoa edo berdina da'; +$labels['valueequals'] = 'balioa honen berdina da'; +$labels['valuenotequals'] = 'balioa ez da honen berdina'; +$labels['setflags'] = 'Jarri banderak mezuarik'; +$labels['addflags'] = 'Gehitu banderak mezuari'; +$labels['removeflags'] = 'Ezabatu banderak mezutik'; +$labels['flagread'] = 'Irakurri'; +$labels['flagdeleted'] = 'Ezabatuta'; +$labels['flaganswered'] = 'Erantzunda'; +$labels['flagflagged'] = 'Bandera jarrita'; +$labels['flagdraft'] = 'Ziriborroa'; +$labels['setvariable'] = 'Ezarri aldagaia'; +$labels['setvarname'] = 'Aldagaiaren izena:'; +$labels['setvarvalue'] = 'Aldagaiaren balioa:'; +$labels['setvarmodifiers'] = 'Modifikatzaileak:'; +$labels['varlower'] = 'minuskulan'; +$labels['varupper'] = 'maiuskulan'; +$labels['varlowerfirst'] = 'lehenengo karakterea minuskulan'; +$labels['varupperfirst'] = 'lehenengo karakterea maiuskulan'; +$labels['varquotewildcard'] = 'aipatu karaktere bereziak'; +$labels['varlength'] = 'luzera'; +$labels['notify'] = 'Bidali jakinarazpena'; +$labels['notifyaddress'] = 'e-posta helbidera:'; +$labels['notifybody'] = 'Jakinarazpenaren gorputza:'; +$labels['notifysubject'] = 'Jakinarazpenaren subjektua:'; +$labels['notifyfrom'] = 'Jakinarazpenaren bidaltzailea:'; +$labels['notifyimportance'] = 'Garrantzia:'; +$labels['notifyimportancelow'] = 'baxua'; +$labels['notifyimportancenormal'] = 'normala'; +$labels['notifyimportancehigh'] = 'altua'; +$labels['filtercreate'] = 'Sortu iragazkia'; +$labels['usedata'] = 'Erabili datorren data iragazkian:'; +$labels['nextstep'] = 'Hurrengo urratsa'; +$labels['...'] = '...'; +$labels['currdate'] = 'Uneko data'; +$labels['datetest'] = 'Data'; +$labels['dateheader'] = 'goiburua:'; +$labels['year'] = 'urte'; +$labels['month'] = 'hilabete'; +$labels['day'] = 'egun'; +$labels['date'] = 'data (yyyy-mm-dd)'; +$labels['julian'] = 'data (juliarra)'; +$labels['hour'] = 'ordu'; +$labels['minute'] = 'minutu'; +$labels['second'] = 'segundo'; +$labels['time'] = 'ordua (hh:mm:ss)'; +$labels['iso8601'] = 'data (ISO8601)'; +$labels['std11'] = 'data (RFC2822)'; +$labels['zone'] = 'ordu-zona'; +$labels['weekday'] = 'asteguna (0-6)'; +$labels['advancedopts'] = 'Aukera aurreratuak'; +$labels['body'] = 'Gorputza'; +$labels['address'] = 'helbidea'; +$labels['envelope'] = 'gutun-azala'; +$labels['modifier'] = 'modifikatzailea:'; +$labels['text'] = 'testua'; +$labels['undecoded'] = 'kodetu gabe (gordina)'; +$labels['contenttype'] = 'eduki mota'; +$labels['modtype'] = 'mota:'; +$labels['allparts'] = 'denak'; +$labels['domain'] = 'domeinua'; +$labels['localpart'] = 'zati lokala'; +$labels['user'] = 'erabiltzailea'; +$labels['detail'] = 'xehetasuna'; +$labels['comparator'] = 'alderatzailea:'; +$labels['default'] = 'lehenetsia'; +$labels['octet'] = 'zorrotza (zortzikotea)'; +$labels['asciicasemap'] = 'minuskulak eta maiuskulak (ascii-casemap)'; +$labels['asciinumeric'] = 'numerikoa (ascii-numeric)'; +$labels['index'] = 'indexatu:'; +$labels['indexlast'] = 'atzeraka'; +$messages = array(); +$messages['filterunknownerror'] = 'Zerbitzari ezezaguna errorea'; +$messages['filterconnerror'] = 'Ezin da konektatu zerbitzariarekin.'; +$messages['filterdeleted'] = 'Iragazkia ongi ezabatu da.'; +$messages['filtersaved'] = 'Iragazkia ongi ezabatu da.'; +$messages['filterdeleteconfirm'] = 'Seguru zaude hautatutako iragazkiak ezabatu nahi dituzula?'; +$messages['ruledeleteconfirm'] = 'Seguru zaude hautatutako arauak ezabatu nahi dituzula?'; +$messages['actiondeleteconfirm'] = 'Seguru zaude hautatutako ekintzak ezabatu nahi dituzula?'; +$messages['forbiddenchars'] = 'Debekatutako karaktereak eremuan.'; +$messages['cannotbeempty'] = 'Eremua ezin da hutsik egon.'; +$messages['ruleexist'] = 'Lehendik badago izen hori duen iragazki bat.'; +$messages['setactivated'] = 'Iragazki paketea ongi aktibatu da.'; +$messages['setdeactivated'] = 'Iragazki paketea ongi desaktibatu da.'; +$messages['setdeleted'] = 'Iragazki paketea ongi ezabatu da.'; +$messages['setdeleteconfirm'] = 'Seguru zaude hautatutako iragazki paketea ezabatu nahi duzula?'; +$messages['setcreated'] = 'Iragazki paketea ongi sortu da.'; +$messages['deactivated'] = 'Iragazkia(k) ongi ezgaitu da.'; +$messages['activated'] = 'Iragazkia(k) ongi gaitu da.'; +$messages['moved'] = 'Iragazkia ongi mugitu da.'; +$messages['nametoolong'] = 'Izen luzeegia.'; +$messages['namereserved'] = 'Izen erreserbatua.'; +$messages['setexist'] = 'Lehendik badago pakete hori.'; +$messages['nodata'] = 'Gutxienez posizio bat hautatu behar da!'; +$messages['invaliddateformat'] = 'Dataren edo dataren zati baten formatua ez da baliozkoa '; +?> diff --git a/plugins/managesieve/localization/th_TH.inc b/plugins/managesieve/localization/th_TH.inc new file mode 100644 index 000000000..65309f1b2 --- /dev/null +++ b/plugins/managesieve/localization/th_TH.inc @@ -0,0 +1,48 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Managesieve plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ +*/ + + +$labels['filters'] = 'ตัวกรองข้อมูล'; +$labels['filtername'] = 'ชื่อตัวกรองข้อมูล'; +$labels['newfilter'] = 'สร้างตัวกรองข้อมูลใหม่'; +$labels['filteradd'] = 'เพิ่มตัวกรองข้อมูล'; +$labels['filterdel'] = 'ลบตัวกรองข้อมูล'; +$labels['moveup'] = 'เลื่อนขึ้น'; +$labels['movedown'] = 'เลื่อนลง'; +$labels['filterany'] = 'ข้อความทั้งหมด'; +$labels['filtercontains'] = 'ที่มีคำว่า'; +$labels['filternotcontains'] = 'ไม่มีคำว่า'; +$labels['filteris'] = 'ที่มีค่าเท่ากับ'; +$labels['filterisnot'] = 'ที่มีค่าไม่เท่ากับ'; +$labels['addrule'] = 'เพิ่มกฏ'; +$labels['delrule'] = 'ลบกฏ'; +$labels['messagemoveto'] = 'ย้ายข้อความไปที่'; +$labels['messageredirect'] = 'เปลียนเส้นทางข้อความไปที่'; +$labels['messagecopyto'] = 'คัดลอกข้อความไปที่'; +$labels['messagesendcopy'] = 'ส่งข้อความคัดลอกไปที่'; +$labels['messagedelete'] = 'ลบข้อความ'; +$labels['messagediscard'] = 'ยกเลิกข้อความ'; +$labels['messagesrules'] = 'สำหรับอีเมลขาเข้า:'; +$labels['add'] = 'เพิ่ม'; +$labels['del'] = 'ลบ'; +$labels['sender'] = 'ผู้ส่ง'; +$labels['recipient'] = 'ผู้รับ'; +$labels['vacationsubject'] = 'หัวเรื่องข้อความ:'; +$labels['enable'] = 'เปิดใช้งาน/ปิดใช้งาน'; +$messages = array(); +?> diff --git a/plugins/markasjunk/localization/ar.inc b/plugins/markasjunk/localization/ar.inc new file mode 100644 index 000000000..3a8923058 --- /dev/null +++ b/plugins/markasjunk/localization/ar.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Mark-As-Junk plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ +*/ + +$labels = array(); +$labels['buttontext'] = 'غير المرغوب'; +$labels['buttontitle'] = 'حدد كغير مرغوب'; +?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/bg_BG.inc b/plugins/markasjunk/localization/bg_BG.inc new file mode 100644 index 000000000..83b4a0098 --- /dev/null +++ b/plugins/markasjunk/localization/bg_BG.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Mark-As-Junk plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ +*/ + +$labels = array(); +$labels['buttontext'] = 'Спам'; +$labels['buttontitle'] = 'Маркирай като спам'; +$labels['reportedasjunk'] = 'Писмото е маркирано като спам успешно'; +?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/eu_ES.inc b/plugins/markasjunk/localization/eu_ES.inc new file mode 100644 index 000000000..cd27806a6 --- /dev/null +++ b/plugins/markasjunk/localization/eu_ES.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Mark-As-Junk plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ +*/ + +$labels = array(); +$labels['buttontext'] = 'Zabor-mezua'; +$labels['buttontitle'] = 'Markatu zabor-mezu bezala'; +$labels['reportedasjunk'] = 'Zabor bezala markatu da'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ar.inc b/plugins/new_user_dialog/localization/ar.inc new file mode 100644 index 000000000..195e05e2b --- /dev/null +++ b/plugins/new_user_dialog/localization/ar.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialogtitle'] = 'يرجى إكمال هوية المرسل'; +$labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند تسجيل الدخول أول مرة .'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ar_SA.inc b/plugins/new_user_dialog/localization/ar_SA.inc new file mode 100644 index 000000000..37358049d --- /dev/null +++ b/plugins/new_user_dialog/localization/ar_SA.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند أول الدخول'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ast.inc b/plugins/new_user_dialog/localization/ast.inc new file mode 100644 index 000000000..929a58322 --- /dev/null +++ b/plugins/new_user_dialog/localization/ast.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialogtitle'] = 'Por favor, completa los tos datos personales'; +$labels['identitydialoghint'] = 'Esti diálogu namái va apaecer la primer vegada que te coneutes al corréu.'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/es_AR.inc b/plugins/new_user_dialog/localization/es_AR.inc new file mode 100644 index 000000000..1385da029 --- /dev/null +++ b/plugins/new_user_dialog/localization/es_AR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialogtitle'] = 'Por favor, seleccione una identidad para los mensajes salientes'; +$labels['identitydialoghint'] = 'Este diálogo aparecerá sólo una vez durante el primer ingreso'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/eu_ES.inc b/plugins/new_user_dialog/localization/eu_ES.inc new file mode 100644 index 000000000..b6275df49 --- /dev/null +++ b/plugins/new_user_dialog/localization/eu_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialogtitle'] = 'Osatu zure bidaltzaile-identitatea'; +$labels['identitydialoghint'] = 'Kutxa hau behin bakarri agertzen da lehenengoz sartzean.'; +?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fa_AF.inc b/plugins/new_user_dialog/localization/fa_AF.inc new file mode 100644 index 000000000..6a60e100a --- /dev/null +++ b/plugins/new_user_dialog/localization/fa_AF.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New User Dialog plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ +*/ + +$labels = array(); +$labels['identitydialogtitle'] = 'لطفا مشخصات فرستنده را کامل کنید'; +$labels['identitydialoghint'] = 'این متن تنها هنگام اولین ورود نمایش داده خواهد شد'; +?> \ No newline at end of file diff --git a/plugins/newmail_notifier/localization/ast.inc b/plugins/newmail_notifier/localization/ast.inc new file mode 100644 index 000000000..63f4ad003 --- /dev/null +++ b/plugins/newmail_notifier/localization/ast.inc @@ -0,0 +1,29 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'Amosar notificaciones del navegador cuando aporte un mensaxe nuevu'; +$labels['desktop'] = 'Amosar notificaciones del escritoriu cuando aporte un mensaxe nuevu'; +$labels['sound'] = 'Reproducir soníu cuando aporte un mensaxe nuevu'; +$labels['test'] = 'Prueba'; +$labels['title'] = '¡Mensaxe nuevu!'; +$labels['body'] = 'Recibisti un mensaxe nuevu'; +$labels['testbody'] = 'Esta ye una notificación de pruebes'; +$labels['desktopdisabled'] = 'Les notificaciones d\'escritoriu tán deshabilitaes nel to navegador.'; +$labels['desktopunsupported'] = 'El to navegador nun sofita notificaciones d\'escritoriu.'; +$labels['desktoptimeout'] = 'Zarrar notificación d\'escritoriu'; +?> diff --git a/plugins/newmail_notifier/localization/bg_BG.inc b/plugins/newmail_notifier/localization/bg_BG.inc new file mode 100644 index 000000000..3abf9f79d --- /dev/null +++ b/plugins/newmail_notifier/localization/bg_BG.inc @@ -0,0 +1,29 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'Показва известия в браузъра при ново писмо'; +$labels['desktop'] = 'Показва известия на работния плот при ново писмо'; +$labels['sound'] = 'Възпроизведи звук при ново писмо'; +$labels['test'] = 'Тест'; +$labels['title'] = 'Ново писмо!'; +$labels['body'] = 'Получихте ново писмо.'; +$labels['testbody'] = 'Това е тестово известие.'; +$labels['desktopdisabled'] = 'Известията на работния плот са изключени за Вашия браузър.'; +$labels['desktopunsupported'] = 'Вашият браузър не поддържа известия на работния плот.'; +$labels['desktoptimeout'] = 'Затваряне на известие на работния плот'; +?> diff --git a/plugins/newmail_notifier/localization/el_GR.inc b/plugins/newmail_notifier/localization/el_GR.inc new file mode 100644 index 000000000..18804dbca --- /dev/null +++ b/plugins/newmail_notifier/localization/el_GR.inc @@ -0,0 +1,28 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'Εμφανίση ειδοποιήσεων πρόγραμματος περιήγησης στο νέο μήνυμα'; +$labels['desktop'] = 'Εμφάνιση ειδοποιήσεων στην επιφάνεια εργασίας για νέο μήνυμα '; +$labels['sound'] = 'Ηχητική ειδοποίηση κατά την λήψη νέων μηνυμάτων'; +$labels['test'] = 'Δοκιμη'; +$labels['title'] = 'Nεο Email!'; +$labels['body'] = 'Έχετε λάβει ένα νέο μήνυμα.'; +$labels['testbody'] = 'Αυτή είναι μια δοκιμή ειδοποίησης.'; +$labels['desktopdisabled'] = 'Οι κοινοποιήσεις Desktop ειναι απενεργοποιημένη στον περιηγητή σας.'; +$labels['desktopunsupported'] = 'Ο περιηγητής σας δεν υποστηρίζει ειδοποιήσεις στην επιφάνεια εργασίας.'; +?> diff --git a/plugins/newmail_notifier/localization/es_AR.inc b/plugins/newmail_notifier/localization/es_AR.inc new file mode 100644 index 000000000..23c50d609 --- /dev/null +++ b/plugins/newmail_notifier/localization/es_AR.inc @@ -0,0 +1,28 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'Mostrar notificación cuando haya nuevos mensajes'; +$labels['desktop'] = 'Mostrar notificación en escritorio cuando haya nuevos mensajes'; +$labels['sound'] = 'Reproducir sonido cuando haya nuevos mensajes'; +$labels['test'] = 'Prueba'; +$labels['title'] = 'Correo nuevo!'; +$labels['body'] = 'Has recibido correo nuevo'; +$labels['testbody'] = 'Esta es una notificación de prueba'; +$labels['desktopdisabled'] = 'Las notificaciones en escritorio están deshabilitadas en tu navegador'; +$labels['desktopunsupported'] = 'Tu navegador no soporta notificaciones en escritorio'; +?> diff --git a/plugins/newmail_notifier/localization/eu_ES.inc b/plugins/newmail_notifier/localization/eu_ES.inc new file mode 100644 index 000000000..a08704859 --- /dev/null +++ b/plugins/newmail_notifier/localization/eu_ES.inc @@ -0,0 +1,28 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'Bistaratu nabigatzailearen jakinarazpenak mezu berrian'; +$labels['desktop'] = 'Bistaratu sistemaren jakinarazpenak mezu berrian'; +$labels['sound'] = 'Jo soinu bat mezu berriarekin'; +$labels['test'] = 'Testa'; +$labels['title'] = 'ePosta berria'; +$labels['body'] = 'Mezu berria jaso duzu'; +$labels['testbody'] = 'Hau jakinarazpen proba bat da'; +$labels['desktopdisabled'] = 'Sistemaren jakinarazpenak ezgaituak daude zure nabigatzailean'; +$labels['desktopunsupported'] = 'Zure nabigatzaileak ez ditu sistemaren jakinarazpenak onartzen.'; +?> diff --git a/plugins/newmail_notifier/localization/ti.inc b/plugins/newmail_notifier/localization/ti.inc new file mode 100644 index 000000000..efb79d0b6 --- /dev/null +++ b/plugins/newmail_notifier/localization/ti.inc @@ -0,0 +1,28 @@ +.inc | + | | + | Localization file of the Roundcube Webmail New Mail Notifier plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ +*/ + +$labels['basic'] = 'ሓዱሽ መል እኽቲ ጠቆምቲ አብ ጎስጓሲ ይርአ'; +$labels['desktop'] = 'ሓዱሽ መል እኽቲ ጠቆምቲ ኣብ ደስክቶፕ ይርአ'; +$labels['sound'] = 'ሓዱሽ መል እኽቲ ምስዝመጽእ ድምጺ ይሰማዕ'; +$labels['test'] = 'ፈተነ'; +$labels['title'] = 'ሓድሽ ኢደብዳበ!'; +$labels['body'] = 'ሓድሽ ኢደብዳበ በጺሑ አሎ::'; +$labels['testbody'] = 'እዚ ጥቆማ ንፈተን ዝተገብረ እዩ::'; +$labels['desktopdisabled'] = 'ናይ ደስክቶፕ ጠቆምቲ ተኸልኪሎማ አለዉ::'; +$labels['desktopunsupported'] = 'እዚ ጎስጓሲ ናይ ደስክቶፕ ጠቆምቲ ኣይተገጠመሉን::'; +?> diff --git a/plugins/password/localization/ar.inc b/plugins/password/localization/ar.inc new file mode 100644 index 000000000..d1d061856 --- /dev/null +++ b/plugins/password/localization/ar.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'تغيير كلمة المرور'; +$labels['curpasswd'] = 'كلمة المرور الحالية:'; +$labels['newpasswd'] = 'كلمة المرور الجديدة:'; +$labels['confpasswd'] = 'تأكيد كلمة المرور الجديدة:'; +$messages = array(); +$messages['nopassword'] = 'من فضلك أدخل كلمة المرور الجديدة.'; +$messages['nocurpassword'] = 'من فضلك أدخل كلمة المرور الحالية.'; +$messages['passwordincorrect'] = 'كلمة المرور الحالية غير صحيحة.'; +$messages['passwordinconsistency'] = 'كلمة المرور غير مطابقة حاول مجددا'; +$messages['crypterror'] = 'تعذر حفظ كلمة المرور الجديدة. وظيفة التشفير مفقودة.'; +$messages['connecterror'] = 'تعذر حفظ كلمة المرور الجديدة. خطأ بالإتصال.'; +$messages['internalerror'] = 'تعذر حفظ كلمة المرور الجديدة.'; +$messages['passwordshort'] = 'كلمة المرور يجب على الأقل $length أحرف'; +$messages['passwordweak'] = ' كلمة المرور يجب أن تتضمن رقم واحد على الأقل وحرف ترقيم واحد.'; +$messages['passwordforbidden'] = 'كلمة المرور تحتوى على أحرف ممنوعة'; +?> diff --git a/plugins/password/localization/ar_SA.inc b/plugins/password/localization/ar_SA.inc new file mode 100644 index 000000000..68de461d7 --- /dev/null +++ b/plugins/password/localization/ar_SA.inc @@ -0,0 +1,32 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'تغيير كلمة المرور'; +$labels['curpasswd'] = 'كلمة المرور الحالية'; +$labels['newpasswd'] = 'كلمة المرور الجديدة'; +$labels['confpasswd'] = 'تأكيد كلمة المرور الجديدة'; +$messages = array(); +$messages['nopassword'] = 'من فضلك أدخل كلمة مرور جديدة'; +$messages['nocurpassword'] = 'من فضلك أدخل كلمة المرور الحالية'; +$messages['passwordincorrect'] = 'كلمة المرور الحالية غير صحيحة'; +$messages['passwordinconsistency'] = 'كلمة المرور غير مطابقة, أعد المحاولة'; +$messages['connecterror'] = 'تعذر حفظ كلمة المرور الجديدة. خطأ في الإتصال'; +$messages['internalerror'] = 'تعذر حفظ كلمة المرور الجديدة'; +$messages['passwordforbidden'] = 'كلمة المرور تحتوي حروفاً ممنوعة'; +?> diff --git a/plugins/password/localization/ast.inc b/plugins/password/localization/ast.inc new file mode 100644 index 000000000..55d88abc0 --- /dev/null +++ b/plugins/password/localization/ast.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'Camudar contraseña'; +$labels['curpasswd'] = 'Contraseña actual:'; +$labels['newpasswd'] = 'Contraseña nueva:'; +$labels['confpasswd'] = 'Confirmar contraseña:'; +$messages = array(); +$messages['nopassword'] = 'Por favor, introduz una contraseña nueva.'; +$messages['nocurpassword'] = 'Por favor, introduz la contraseña actual.'; +$messages['passwordincorrect'] = 'La contraseña actual ye incorreuta.'; +$messages['passwordinconsistency'] = 'Les contraseñes nun concasen. Por favor, inténtalo otra vegada.'; +$messages['crypterror'] = 'Nun pudo guardase la contraseña nueva. Falta la función de cifráu.'; +$messages['connecterror'] = 'Nun pudo guardase la contraseña nueva. Fallu de conexón.'; +$messages['internalerror'] = 'Nun pudo guardase la contraseña nueva. '; +$messages['passwordshort'] = 'La contraseña tien de tener polo menos $length caráuteres.'; +$messages['passwordweak'] = 'La contraseña tien de tener polo menos un númberu y un signu de puntuación.'; +$messages['passwordforbidden'] = 'La contraseña que s\'introduxo contién caráuteres non permitíos.'; +?> diff --git a/plugins/password/localization/be_BE.inc b/plugins/password/localization/be_BE.inc new file mode 100644 index 000000000..f8c45ac7e --- /dev/null +++ b/plugins/password/localization/be_BE.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'Змяніць пароль'; +$labels['curpasswd'] = 'Бягучы пароль:'; +$labels['newpasswd'] = 'Новы пароль:'; +$labels['confpasswd'] = 'Паўтарыце новы пароль:'; +$messages = array(); +$messages['nopassword'] = 'Увядзіце новы пароль.'; +$messages['nocurpassword'] = 'Увядзіце бягучы пароль.'; +$messages['passwordincorrect'] = 'Няслушны бягучы пароль.'; +$messages['passwordinconsistency'] = 'Паролі не супадаюць. Паспрабуйце яшчэ раз.'; +$messages['crypterror'] = 'Не ўдалося захаваць новы пароль. Бракуе функцыі шыфравання.'; +$messages['connecterror'] = 'Не ўдалося захаваць новы пароль. Памылка злучэння.'; +$messages['internalerror'] = 'Не ўдалося захаваць новы пароль.'; +$messages['passwordshort'] = 'Пароль мусіць быць мінімум $length знакаў.'; +$messages['passwordweak'] = 'Пароль мусіць утрымліваць мінімум адну лічбу і адзін знак пунктуацыі.'; +$messages['passwordforbidden'] = 'Пароль утрымлівае забароненыя знакі.'; +?> diff --git a/plugins/password/localization/el_GR.inc b/plugins/password/localization/el_GR.inc new file mode 100644 index 000000000..7437e793c --- /dev/null +++ b/plugins/password/localization/el_GR.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'Αλλαγη κωδικου προσβασης'; +$labels['curpasswd'] = 'Τρεχων κωδικος προσβασης:'; +$labels['newpasswd'] = 'Νεος κωδικος προσβασης:'; +$labels['confpasswd'] = 'Επιβεβαιωση κωδικου προσβασης:'; +$messages = array(); +$messages['nopassword'] = 'Εισαγετε εναν νεο κωδικο.'; +$messages['nocurpassword'] = 'Εισαγετε τον τρεχων κωδικο.'; +$messages['passwordincorrect'] = 'Ο τρεχων κωδικος ειναι λαθος.'; +$messages['passwordinconsistency'] = 'Οι κωδικοί πρόσβασης δεν ταιριάζουν, προσπαθήστε ξανά.'; +$messages['crypterror'] = 'Δεν μπορεσε να αποθηκεύθει ο νέος κωδικός πρόσβασης. Η λειτουργία κρυπτογράφησης λείπει.'; +$messages['connecterror'] = 'Δεν μπορεσε να αποθηκεύθει ο νέος κωδικός πρόσβασης. Σφάλμα σύνδεσης.'; +$messages['internalerror'] = 'Δεν μπορεσε να αποθηκεύθει ο νέος κωδικός πρόσβασης. '; +$messages['passwordshort'] = 'Ο κωδικός πρόσβασης πρέπει να είναι τουλάχιστον $μήκος χαρακτήρων.'; +$messages['passwordweak'] = 'Ο κωδικός πρόσβασης πρέπει να περιλαμβάνει τουλάχιστον έναν αριθμό και ένα σημείο στίξης. '; +$messages['passwordforbidden'] = 'Ο κωδικός πρόσβασης περιέχει μη επιτρεπτούς χαρακτήρες. '; +?> diff --git a/plugins/password/localization/eu_ES.inc b/plugins/password/localization/eu_ES.inc new file mode 100644 index 000000000..6ca7aa5da --- /dev/null +++ b/plugins/password/localization/eu_ES.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'Pasahitza aldatu'; +$labels['curpasswd'] = 'Oraingo pasahitza:'; +$labels['newpasswd'] = 'Pasahitz berria:'; +$labels['confpasswd'] = 'Konfirmatu pasahitz berria:'; +$messages = array(); +$messages['nopassword'] = 'Sartu pasahitz berria.'; +$messages['nocurpassword'] = 'Sartu oraingo pasahitza.'; +$messages['passwordincorrect'] = 'Oraingo pasahitza ez da zuzena.'; +$messages['passwordinconsistency'] = 'Pasahitz berria ez datoz bat, saiatu berriz.'; +$messages['crypterror'] = 'Ezin izan da pasahitz berria gorde. Ez da enkriptazio funtziorik aurkitu.'; +$messages['connecterror'] = 'Ezin izan da pasahitz berria gorde. Konexio arazoak egon dira.'; +$messages['internalerror'] = 'Ezin izan da pasahitz berria gorde.'; +$messages['passwordshort'] = 'Gutxienez $length karakteretakoa izan behar du pasahitzak.'; +$messages['passwordweak'] = 'Gutxienez zenbaki bat eta puntuazio karaktere bat izan behar du pasahitzak.'; +$messages['passwordforbidden'] = 'Galarazitako karaktereak daude pasahitzean.'; +?> diff --git a/plugins/password/localization/fa_AF.inc b/plugins/password/localization/fa_AF.inc new file mode 100644 index 000000000..0c954188e --- /dev/null +++ b/plugins/password/localization/fa_AF.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'تغییر رمز عبور'; +$labels['curpasswd'] = 'رمز عبور کنونی'; +$labels['newpasswd'] = 'رمز عبور جدید'; +$labels['confpasswd'] = 'تایید رمز عبور جدید'; +$messages = array(); +$messages['nopassword'] = 'لطفا رمز عبور جدیدی وارد کنید'; +$messages['nocurpassword'] = 'لطفا رمز عبور کنونی را وارد کنید'; +$messages['passwordincorrect'] = 'رمز عبور کنونی اشتباه است'; +$messages['passwordinconsistency'] = 'رمزهای عبور با هم مطابقت ندارند، لطفا دوباره سعی کنید'; +$messages['crypterror'] = 'امکان ذخیره رمز عبور جدید وجود ندارد. تابع رمزگذاری یافت نشد'; +$messages['connecterror'] = 'امکان ذخیره رمز عبور جدید وجود ندارد. لطفا دوباره سعی کنید'; +$messages['internalerror'] = 'امکان ذخیره رمز عبور جدید وجود ندارد'; +$messages['passwordshort'] = 'طول رمز عبور می بایست حداقل به طول $length کاراکتر باشد'; +$messages['passwordweak'] = 'رمز عبور می بایست دارای حداقل یک عدد و یک کاراکتر علامت گذاری باشد'; +$messages['passwordforbidden'] = 'رمز عبور شامل کاراکترهای غیر مجاز است'; +?> diff --git a/plugins/password/localization/ti.inc b/plugins/password/localization/ti.inc new file mode 100644 index 000000000..ef26bd436 --- /dev/null +++ b/plugins/password/localization/ti.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'መሕለፊ ቃል ይለወጥ'; +$labels['curpasswd'] = 'ህልው መሕለፊ ቃል:'; +$labels['newpasswd'] = 'ሓዱሽ መሕለፊ ቃል:'; +$labels['confpasswd'] = 'መረጋገፂ ሓዱሽ መሕለፊ ቃል :'; +$messages = array(); +$messages['nopassword'] = 'ሓዱሽ መሕለፊ ቃል አብዚ ይእቶ::'; +$messages['nocurpassword'] = 'ህልው መሕለፊ ቃል ኣብዚ ይእቶ::'; +$messages['passwordincorrect'] = 'ህልው መሕለፊ ቃል ከምኡ ኣይኮነን::'; +$messages['passwordinconsistency'] = 'መሕለፍቲ ቃላት ሓድ ኣይኮኑን ::ተውሳኺ ፈተነ የድሊ::'; +$messages['crypterror'] = 'መመስጥሪ ፋንክሽን ስለዝሳእነ እቲ መሕለፊ ቃል ኣይተቐመጠን::'; +$messages['connecterror'] = 'ናይ ርክብ ጸገም ስለዘሎ እቲ መሕለፊ ቃል ኣይተቐመጠን::'; +$messages['internalerror'] = 'እቲ መሕለፊ ቃል ኣይተቐመጠን::'; +$messages['passwordshort'] = 'ንውሓት መሕለፊ ቃል $length ፊዳላት ክኾን አለዎ::'; +$messages['passwordweak'] = 'መሕለፊ ቃል እንተውሓደ ሓደ ኣሃዝን ሓደ ስርዓተ ነጥብን ከጠቓልል አለዎ::'; +$messages['passwordforbidden'] = 'እቲ መሕለፊ ቃል ውጉዳት ፊዳላት አለውዎ::'; +?> diff --git a/plugins/password/localization/uk_UA.inc b/plugins/password/localization/uk_UA.inc new file mode 100644 index 000000000..87a477b1b --- /dev/null +++ b/plugins/password/localization/uk_UA.inc @@ -0,0 +1,35 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Password plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ +*/ + +$labels = array(); +$labels['changepasswd'] = 'Змінити пароль'; +$labels['curpasswd'] = 'Поточний пароль:'; +$labels['newpasswd'] = 'Новий пароль:'; +$labels['confpasswd'] = 'Підтвердіть новий пароль:'; +$messages = array(); +$messages['nopassword'] = 'Будь ласка, введіть новий пароль.'; +$messages['nocurpassword'] = 'Будь ласка, введіть поточний пароль.'; +$messages['passwordincorrect'] = 'Поточний пароль неправильний.'; +$messages['passwordinconsistency'] = 'Паролі не збігаються, спробуйте ще раз.'; +$messages['crypterror'] = 'Не вдалося зберегти новий пароль. Функція шифрування відсутня.'; +$messages['connecterror'] = 'Не вдалося зберегти новий пароль. Помилка з\'єднання.'; +$messages['internalerror'] = 'Не вдалося зберегти новий пароль.'; +$messages['passwordshort'] = 'Пароль повинен бути не менше $length символів.'; +$messages['passwordweak'] = 'Пароль повинен містити як мінімум одну цифру і один розділовий знак.'; +$messages['passwordforbidden'] = 'Пароль містить заборонені символи.'; +?> diff --git a/plugins/subscriptions_option/localization/az_AZ.inc b/plugins/subscriptions_option/localization/az_AZ.inc new file mode 100644 index 000000000..a091156dc --- /dev/null +++ b/plugins/subscriptions_option/localization/az_AZ.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'IMAP göndərişi istifadə et'; +?> diff --git a/plugins/subscriptions_option/localization/be_BE.inc b/plugins/subscriptions_option/localization/be_BE.inc new file mode 100644 index 000000000..e2d00002c --- /dev/null +++ b/plugins/subscriptions_option/localization/be_BE.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Выкарыстоўваць IMAP-падпіскі'; +?> diff --git a/plugins/subscriptions_option/localization/bg_BG.inc b/plugins/subscriptions_option/localization/bg_BG.inc new file mode 100644 index 000000000..a408f9da5 --- /dev/null +++ b/plugins/subscriptions_option/localization/bg_BG.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Използвай IMAP абонаменти'; +?> diff --git a/plugins/subscriptions_option/localization/el_GR.inc b/plugins/subscriptions_option/localization/el_GR.inc new file mode 100644 index 000000000..135122750 --- /dev/null +++ b/plugins/subscriptions_option/localization/el_GR.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Χρησιμοποιήστε IMAP Συνδρομές'; +?> diff --git a/plugins/subscriptions_option/localization/es_AR.inc b/plugins/subscriptions_option/localization/es_AR.inc new file mode 100644 index 000000000..10c515f6e --- /dev/null +++ b/plugins/subscriptions_option/localization/es_AR.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Usar suscripción a carpetas IMAP'; +?> diff --git a/plugins/subscriptions_option/localization/eu_ES.inc b/plugins/subscriptions_option/localization/eu_ES.inc new file mode 100644 index 000000000..739e05973 --- /dev/null +++ b/plugins/subscriptions_option/localization/eu_ES.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Erabili IMAP harpidetzak'; +?> diff --git a/plugins/subscriptions_option/localization/fa_AF.inc b/plugins/subscriptions_option/localization/fa_AF.inc new file mode 100644 index 000000000..55d0dd377 --- /dev/null +++ b/plugins/subscriptions_option/localization/fa_AF.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'از ثبت نام های IMAP استفاده کنید'; +?> diff --git a/plugins/subscriptions_option/localization/id_ID.inc b/plugins/subscriptions_option/localization/id_ID.inc new file mode 100644 index 000000000..e2c2f5876 --- /dev/null +++ b/plugins/subscriptions_option/localization/id_ID.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Gunakan Langganan IMAP'; +?> diff --git a/plugins/subscriptions_option/localization/lv_LV.inc b/plugins/subscriptions_option/localization/lv_LV.inc new file mode 100644 index 000000000..38b2cd757 --- /dev/null +++ b/plugins/subscriptions_option/localization/lv_LV.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Izmantot IMAP abonēšanas iestatījumus'; +?> diff --git a/plugins/subscriptions_option/localization/nn_NO.inc b/plugins/subscriptions_option/localization/nn_NO.inc new file mode 100644 index 000000000..c203d9ee6 --- /dev/null +++ b/plugins/subscriptions_option/localization/nn_NO.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Bruk IMAP-abonnement'; +?> diff --git a/plugins/subscriptions_option/localization/ro_RO.inc b/plugins/subscriptions_option/localization/ro_RO.inc new file mode 100644 index 000000000..7fec1e024 --- /dev/null +++ b/plugins/subscriptions_option/localization/ro_RO.inc @@ -0,0 +1,21 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Subscriptions plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ +*/ + +$labels = array(); +$labels['useimapsubscriptions'] = 'Utilizare abonări IMAP'; +?> diff --git a/plugins/userinfo/localization/ar.inc b/plugins/userinfo/localization/ar.inc new file mode 100644 index 000000000..b1960a0f2 --- /dev/null +++ b/plugins/userinfo/localization/ar.inc @@ -0,0 +1,23 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'معلومات المستخدم'; +$labels['lastlogin'] = 'أخر تسجيل دخول'; +$labels['defaultidentity'] = 'الهوية الافتراضية'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ast.inc b/plugins/userinfo/localization/ast.inc new file mode 100644 index 000000000..ae6033596 --- /dev/null +++ b/plugins/userinfo/localization/ast.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'Información d\'usuariu'; +$labels['created'] = 'Creáu'; +$labels['lastlogin'] = 'Cabera conexón'; +$labels['defaultidentity'] = 'Identidá predeterminada'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/bg_BG.inc b/plugins/userinfo/localization/bg_BG.inc new file mode 100644 index 000000000..59689e061 --- /dev/null +++ b/plugins/userinfo/localization/bg_BG.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'Потребителска информация'; +$labels['created'] = 'Създаден'; +$labels['lastlogin'] = 'Последен вход'; +$labels['defaultidentity'] = 'Самоличност по подразбиране'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/el_GR.inc b/plugins/userinfo/localization/el_GR.inc new file mode 100644 index 000000000..1da5e40ae --- /dev/null +++ b/plugins/userinfo/localization/el_GR.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'Πληροφορίες χρήστη '; +$labels['created'] = 'Δημιουργηθηκε'; +$labels['lastlogin'] = 'Τελευταια συνδεση'; +$labels['defaultidentity'] = 'Προκαθορισμένη ταυτότητα'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/es_AR.inc b/plugins/userinfo/localization/es_AR.inc new file mode 100644 index 000000000..844f68291 --- /dev/null +++ b/plugins/userinfo/localization/es_AR.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'Información de usuario'; +$labels['created'] = 'Creado'; +$labels['lastlogin'] = 'Ultimo ingreso'; +$labels['defaultidentity'] = 'Identidad por defecto'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/eu_ES.inc b/plugins/userinfo/localization/eu_ES.inc new file mode 100644 index 000000000..02d73b396 --- /dev/null +++ b/plugins/userinfo/localization/eu_ES.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'Erabiltzailearen informazioa'; +$labels['created'] = 'Sortua'; +$labels['lastlogin'] = 'Azken saioa'; +$labels['defaultidentity'] = 'Lehenetsitako identitatea'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/fa_AF.inc b/plugins/userinfo/localization/fa_AF.inc new file mode 100644 index 000000000..7353db90c --- /dev/null +++ b/plugins/userinfo/localization/fa_AF.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'اطلاعات کاربر'; +$labels['created'] = 'ایجاد شد'; +$labels['lastlogin'] = 'آخرین ورود'; +$labels['defaultidentity'] = 'هویت پیش فرض'; +?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ti.inc b/plugins/userinfo/localization/ti.inc new file mode 100644 index 000000000..a1fa4f301 --- /dev/null +++ b/plugins/userinfo/localization/ti.inc @@ -0,0 +1,24 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Userinfo plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ +*/ + +$labels = array(); +$labels['userinfo'] = 'ሓብሬታ በዓል ዋና '; +$labels['created'] = 'እዋን ፍጥረት'; +$labels['lastlogin'] = 'እዋን እታው'; +$labels['defaultidentity'] = 'ዘይተለወጠ መለለይ መንነት'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ar.inc b/plugins/vcard_attachments/localization/ar.inc new file mode 100644 index 000000000..51cc620a3 --- /dev/null +++ b/plugins/vcard_attachments/localization/ar.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'إضافة vCard إلى دفتر العناوين'; +$labels['vcardsavefailed'] = 'غير قادر على حفظ بصيغة vCard'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ar_SA.inc b/plugins/vcard_attachments/localization/ar_SA.inc new file mode 100644 index 000000000..7dca8dfa1 --- /dev/null +++ b/plugins/vcard_attachments/localization/ar_SA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'إضافة صيغة vCard إلى دفتر العناوين'; +$labels['vcardsavefailed'] = 'غير قادر على الحفظ بصيغة vCard'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/bg_BG.inc b/plugins/vcard_attachments/localization/bg_BG.inc new file mode 100644 index 000000000..4d92d55f4 --- /dev/null +++ b/plugins/vcard_attachments/localization/bg_BG.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'Добавяне на vCard към адресната книга'; +$labels['vcardsavefailed'] = 'Невъзможен запис на vCard'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/el_GR.inc b/plugins/vcard_attachments/localization/el_GR.inc new file mode 100644 index 000000000..e0a6db69b --- /dev/null +++ b/plugins/vcard_attachments/localization/el_GR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'Προσθήκη vCard στο βιβλίο διευθύνσεων'; +$labels['vcardsavefailed'] = 'Δεν είναι δυνατή η αποθήκευση του vCard'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/es_AR.inc b/plugins/vcard_attachments/localization/es_AR.inc new file mode 100644 index 000000000..c60515f37 --- /dev/null +++ b/plugins/vcard_attachments/localization/es_AR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'Agregar vCard a la libreta de direcciones'; +$labels['vcardsavefailed'] = 'Imposible guardar vCard'; +?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/eu_ES.inc b/plugins/vcard_attachments/localization/eu_ES.inc new file mode 100644 index 000000000..b3b82b751 --- /dev/null +++ b/plugins/vcard_attachments/localization/eu_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Vcard Attachments plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ +*/ + +$labels = array(); +$labels['addvcardmsg'] = 'Gehitu vCard helbide-liburura'; +$labels['vcardsavefailed'] = 'Ezin da vCard gorde'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar.inc b/plugins/zipdownload/localization/ar.inc new file mode 100644 index 000000000..5926d5db6 --- /dev/null +++ b/plugins/zipdownload/localization/ar.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'تنزيل كل المرفقات'; +$labels['downloadfolder'] = 'تنزيل المجلد'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar_SA.inc b/plugins/zipdownload/localization/ar_SA.inc new file mode 100644 index 000000000..8ac024c9f --- /dev/null +++ b/plugins/zipdownload/localization/ar_SA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'تحميل جميع المرفقات'; +$labels['downloadfolder'] = 'تحميل المجلد'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/be_BE.inc b/plugins/zipdownload/localization/be_BE.inc new file mode 100644 index 000000000..27867439b --- /dev/null +++ b/plugins/zipdownload/localization/be_BE.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Спампаваць усе далучэнні'; +$labels['downloadfolder'] = 'Спампаваць папку'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/bg_BG.inc b/plugins/zipdownload/localization/bg_BG.inc new file mode 100644 index 000000000..9ff93d620 --- /dev/null +++ b/plugins/zipdownload/localization/bg_BG.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Изтегляне на всички прикачени файлове'; +$labels['downloadfolder'] = 'Изтегляне на папка'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/el_GR.inc b/plugins/zipdownload/localization/el_GR.inc new file mode 100644 index 000000000..a71df8277 --- /dev/null +++ b/plugins/zipdownload/localization/el_GR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Λυψη ολων των συννημενων'; +$labels['downloadfolder'] = 'Λυψη φακελου'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eo.inc b/plugins/zipdownload/localization/eo.inc new file mode 100644 index 000000000..4a43669c7 --- /dev/null +++ b/plugins/zipdownload/localization/eo.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Elŝuti ĉiujn kunsendaĵojn'; +$labels['downloadfolder'] = 'Elŝuti dosierujon'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eu_ES.inc b/plugins/zipdownload/localization/eu_ES.inc new file mode 100644 index 000000000..40ea484e2 --- /dev/null +++ b/plugins/zipdownload/localization/eu_ES.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Deskargatu eranskin guztiak'; +$labels['downloadfolder'] = 'Deskargatu karpeta'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fa_AF.inc b/plugins/zipdownload/localization/fa_AF.inc new file mode 100644 index 000000000..e903ccc3d --- /dev/null +++ b/plugins/zipdownload/localization/fa_AF.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'بارگزاری همه ضمیمه ها'; +$labels['downloadfolder'] = 'بارگزاری پوشه'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fi_FI.inc b/plugins/zipdownload/localization/fi_FI.inc new file mode 100644 index 000000000..e40aea9b3 --- /dev/null +++ b/plugins/zipdownload/localization/fi_FI.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Lataa kaikki liitteet'; +$labels['downloadfolder'] = 'Lataa kansio'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/id_ID.inc b/plugins/zipdownload/localization/id_ID.inc new file mode 100644 index 000000000..1e5901066 --- /dev/null +++ b/plugins/zipdownload/localization/id_ID.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Unduh semua lampiran'; +$labels['downloadfolder'] = 'Folder download'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ko_KR.inc b/plugins/zipdownload/localization/ko_KR.inc new file mode 100644 index 000000000..3859b0830 --- /dev/null +++ b/plugins/zipdownload/localization/ko_KR.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = '모든 첨부파일을 다운로드'; +$labels['downloadfolder'] = '다운로드 폴더'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lv_LV.inc b/plugins/zipdownload/localization/lv_LV.inc new file mode 100644 index 000000000..6c757ff30 --- /dev/null +++ b/plugins/zipdownload/localization/lv_LV.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Lejupielādēt visus pielikumus'; +$labels['downloadfolder'] = 'Lejupielādēt mapi'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sl_SI.inc b/plugins/zipdownload/localization/sl_SI.inc new file mode 100644 index 000000000..b31638c09 --- /dev/null +++ b/plugins/zipdownload/localization/sl_SI.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Prenesi vse priponke'; +$labels['downloadfolder'] = 'Prenesi mapo'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/uk_UA.inc b/plugins/zipdownload/localization/uk_UA.inc new file mode 100644 index 000000000..847166652 --- /dev/null +++ b/plugins/zipdownload/localization/uk_UA.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = 'Завантажити всі вкладення'; +$labels['downloadfolder'] = 'Завантажити теку'; +?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/zh_CN.inc b/plugins/zipdownload/localization/zh_CN.inc new file mode 100644 index 000000000..9bf226fab --- /dev/null +++ b/plugins/zipdownload/localization/zh_CN.inc @@ -0,0 +1,22 @@ +.inc | + | | + | Localization file of the Roundcube Webmail Zipdownload plugin | + | Copyright (C) 2012-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ +*/ + +$labels = array(); +$labels['downloadall'] = '下载全部附件'; +$labels['downloadfolder'] = '下载文件夹'; +?> \ No newline at end of file -- cgit v1.2.3 From 6e0da1b82ea8fbc1b482e177e5a36efb52c68245 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 20:11:33 +0200 Subject: Remove also $labels=array() and $messages=array() lines --- bin/transifexpull.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh index 45ef089a7..8cd99f4f2 100755 --- a/bin/transifexpull.sh +++ b/bin/transifexpull.sh @@ -3,7 +3,7 @@ # In 'translator' mode files will contain empty translated texts # where translation is not available, we'll remove these later -#tx --debug pull -a --mode translator +tx --debug pull -a --mode translator PWD=`dirname "$0"` @@ -15,10 +15,12 @@ do_clean() echo "Cleaning $1" # remove untranslated/empty texts - perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1 - perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1 + perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//" $1 + perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//" $1 + # remove variable initialization + perl -pi -e "s/^\\\$(labels|messages)\s*=\s*array\(\);\n//" $1 # remove (one-line) comments - perl -pi -e "s/^\\/\\/.*//g" $1 + perl -pi -e "s/^\\/\\/.*//" $1 # remove empty lines (but not in file header) perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp mv $1.tmp $1 @@ -28,8 +30,6 @@ do_clean() for file in $PWD/../program/localization/*/*.inc; do do_clean $file done -exit - for file in $PWD/../plugins/*/localization/*.inc; do do_clean $file done -- cgit v1.2.3 From 9377edc497ae17014df1fcd124d220151a4882b0 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 9 Oct 2013 20:12:00 +0200 Subject: More lceanup --- plugins/acl/localization/az_AZ.inc | 8 -------- plugins/acl/localization/bs_BA.inc | 8 -------- plugins/acl/localization/ca_ES.inc | 8 -------- plugins/acl/localization/cs_CZ.inc | 8 -------- plugins/acl/localization/cy_GB.inc | 8 -------- plugins/acl/localization/da_DK.inc | 8 -------- plugins/acl/localization/de_CH.inc | 8 -------- plugins/acl/localization/de_DE.inc | 8 -------- plugins/acl/localization/en_GB.inc | 8 -------- plugins/acl/localization/eo.inc | 8 -------- plugins/acl/localization/es_ES.inc | 8 -------- plugins/acl/localization/et_EE.inc | 8 -------- plugins/acl/localization/fa_IR.inc | 8 -------- plugins/acl/localization/fi_FI.inc | 8 -------- plugins/acl/localization/fr_FR.inc | 8 -------- plugins/acl/localization/gl_ES.inc | 8 -------- plugins/acl/localization/he_IL.inc | 8 -------- plugins/acl/localization/hu_HU.inc | 8 -------- plugins/acl/localization/hy_AM.inc | 8 -------- plugins/acl/localization/id_ID.inc | 8 -------- plugins/acl/localization/it_IT.inc | 8 -------- plugins/acl/localization/ja_JP.inc | 8 -------- plugins/acl/localization/ko_KR.inc | 8 -------- plugins/acl/localization/lb_LU.inc | 8 -------- plugins/acl/localization/lt_LT.inc | 8 -------- plugins/acl/localization/nb_NO.inc | 8 -------- plugins/acl/localization/nl_NL.inc | 8 -------- plugins/acl/localization/nn_NO.inc | 8 -------- plugins/acl/localization/pl_PL.inc | 8 -------- plugins/acl/localization/pt_BR.inc | 8 -------- plugins/acl/localization/pt_PT.inc | 8 -------- plugins/acl/localization/ro_RO.inc | 8 -------- plugins/acl/localization/ru_RU.inc | 8 -------- plugins/acl/localization/sk_SK.inc | 8 -------- plugins/acl/localization/sl_SI.inc | 8 -------- plugins/acl/localization/sr_CS.inc | 8 -------- plugins/acl/localization/sv_SE.inc | 8 -------- plugins/acl/localization/tr_TR.inc | 8 -------- plugins/acl/localization/vi_VN.inc | 8 -------- plugins/acl/localization/zh_CN.inc | 8 -------- plugins/acl/localization/zh_TW.inc | 8 -------- plugins/archive/localization/ar.inc | 1 - plugins/archive/localization/ar_SA.inc | 2 -- plugins/archive/localization/ast.inc | 1 - plugins/archive/localization/az_AZ.inc | 2 -- plugins/archive/localization/be_BE.inc | 2 -- plugins/archive/localization/bg_BG.inc | 2 -- plugins/archive/localization/bn_BD.inc | 1 - plugins/archive/localization/br.inc | 2 -- plugins/archive/localization/bs_BA.inc | 2 -- plugins/archive/localization/ca_ES.inc | 2 -- plugins/archive/localization/cs_CZ.inc | 2 -- plugins/archive/localization/cy_GB.inc | 2 -- plugins/archive/localization/da_DK.inc | 2 -- plugins/archive/localization/de_CH.inc | 2 -- plugins/archive/localization/de_DE.inc | 2 -- plugins/archive/localization/el_GR.inc | 2 -- plugins/archive/localization/en_GB.inc | 2 -- plugins/archive/localization/eo.inc | 2 -- plugins/archive/localization/es_AR.inc | 2 -- plugins/archive/localization/es_ES.inc | 2 -- plugins/archive/localization/et_EE.inc | 2 -- plugins/archive/localization/eu_ES.inc | 1 - plugins/archive/localization/fa_AF.inc | 1 - plugins/archive/localization/fa_IR.inc | 2 -- plugins/archive/localization/fi_FI.inc | 2 -- plugins/archive/localization/fr_FR.inc | 2 -- plugins/archive/localization/gl_ES.inc | 2 -- plugins/archive/localization/he_IL.inc | 2 -- plugins/archive/localization/hi_IN.inc | 1 - plugins/archive/localization/hr_HR.inc | 2 -- plugins/archive/localization/hu_HU.inc | 2 -- plugins/archive/localization/hy_AM.inc | 2 -- plugins/archive/localization/ia.inc | 1 - plugins/archive/localization/id_ID.inc | 2 -- plugins/archive/localization/it_IT.inc | 2 -- plugins/archive/localization/ja_JP.inc | 2 -- plugins/archive/localization/km_KH.inc | 2 -- plugins/archive/localization/ko_KR.inc | 2 -- plugins/archive/localization/ku.inc | 2 -- plugins/archive/localization/lb_LU.inc | 2 -- plugins/archive/localization/lt_LT.inc | 2 -- plugins/archive/localization/lv_LV.inc | 2 -- plugins/archive/localization/ml_IN.inc | 2 -- plugins/archive/localization/mn_MN.inc | 1 - plugins/archive/localization/mr_IN.inc | 2 -- plugins/archive/localization/ms_MY.inc | 1 - plugins/archive/localization/my_MM.inc | 1 - plugins/archive/localization/nb_NO.inc | 2 -- plugins/archive/localization/nl_BE.inc | 1 - plugins/archive/localization/nl_NL.inc | 2 -- plugins/archive/localization/nn_NO.inc | 2 -- plugins/archive/localization/nqo.inc | 1 - plugins/archive/localization/om.inc | 1 - plugins/archive/localization/pl_PL.inc | 2 -- plugins/archive/localization/pt_BR.inc | 2 -- plugins/archive/localization/pt_PT.inc | 2 -- plugins/archive/localization/ro_RO.inc | 2 -- plugins/archive/localization/ru_RU.inc | 2 -- plugins/archive/localization/si_LK.inc | 2 -- plugins/archive/localization/sk_SK.inc | 2 -- plugins/archive/localization/sl_SI.inc | 2 -- plugins/archive/localization/sr_CS.inc | 2 -- plugins/archive/localization/sv_SE.inc | 2 -- plugins/archive/localization/te_IN.inc | 1 - plugins/archive/localization/th_TH.inc | 1 - plugins/archive/localization/ti.inc | 1 - plugins/archive/localization/tr_TR.inc | 2 -- plugins/archive/localization/tzm.inc | 1 - plugins/archive/localization/uk_UA.inc | 2 -- plugins/archive/localization/ur_PK.inc | 1 - plugins/archive/localization/vi_VN.inc | 2 -- plugins/archive/localization/zh_CN.inc | 2 -- plugins/archive/localization/zh_TW.inc | 2 -- plugins/attachment_reminder/localization/ar.inc | 1 - plugins/attachment_reminder/localization/ar_SA.inc | 1 - plugins/attachment_reminder/localization/az_AZ.inc | 1 - plugins/attachment_reminder/localization/be_BE.inc | 1 - plugins/attachment_reminder/localization/bg_BG.inc | 1 - plugins/attachment_reminder/localization/bn_BD.inc | 1 - plugins/attachment_reminder/localization/bs_BA.inc | 1 - plugins/attachment_reminder/localization/ca_ES.inc | 1 - plugins/attachment_reminder/localization/cs_CZ.inc | 1 - plugins/attachment_reminder/localization/cy_GB.inc | 1 - plugins/attachment_reminder/localization/da_DK.inc | 1 - plugins/attachment_reminder/localization/de_CH.inc | 1 - plugins/attachment_reminder/localization/de_DE.inc | 1 - plugins/attachment_reminder/localization/el_GR.inc | 1 - plugins/attachment_reminder/localization/eo.inc | 1 - plugins/attachment_reminder/localization/es_AR.inc | 1 - plugins/attachment_reminder/localization/es_ES.inc | 1 - plugins/attachment_reminder/localization/et_EE.inc | 1 - plugins/attachment_reminder/localization/eu_ES.inc | 1 - plugins/attachment_reminder/localization/fa_AF.inc | 1 - plugins/attachment_reminder/localization/fa_IR.inc | 1 - plugins/attachment_reminder/localization/fi_FI.inc | 1 - plugins/attachment_reminder/localization/fr_FR.inc | 1 - plugins/attachment_reminder/localization/gl_ES.inc | 1 - plugins/attachment_reminder/localization/he_IL.inc | 1 - plugins/attachment_reminder/localization/hi_IN.inc | 1 - plugins/attachment_reminder/localization/hu_HU.inc | 1 - plugins/attachment_reminder/localization/hy_AM.inc | 1 - plugins/attachment_reminder/localization/ia.inc | 1 - plugins/attachment_reminder/localization/id_ID.inc | 1 - plugins/attachment_reminder/localization/it_IT.inc | 1 - plugins/attachment_reminder/localization/ja_JP.inc | 1 - plugins/attachment_reminder/localization/ko_KR.inc | 1 - plugins/attachment_reminder/localization/lb_LU.inc | 1 - plugins/attachment_reminder/localization/lt_LT.inc | 1 - plugins/attachment_reminder/localization/lv_LV.inc | 1 - plugins/attachment_reminder/localization/ml_IN.inc | 1 - plugins/attachment_reminder/localization/mn_MN.inc | 1 - plugins/attachment_reminder/localization/ms_MY.inc | 1 - plugins/attachment_reminder/localization/my_MM.inc | 1 - plugins/attachment_reminder/localization/nb_NO.inc | 1 - plugins/attachment_reminder/localization/nl_BE.inc | 1 - plugins/attachment_reminder/localization/nl_NL.inc | 1 - plugins/attachment_reminder/localization/nn_NO.inc | 1 - plugins/attachment_reminder/localization/nqo.inc | 1 - plugins/attachment_reminder/localization/om.inc | 1 - plugins/attachment_reminder/localization/pl_PL.inc | 1 - plugins/attachment_reminder/localization/pt_BR.inc | 1 - plugins/attachment_reminder/localization/pt_PT.inc | 1 - plugins/attachment_reminder/localization/ro_RO.inc | 1 - plugins/attachment_reminder/localization/ru_RU.inc | 1 - plugins/attachment_reminder/localization/sk_SK.inc | 1 - plugins/attachment_reminder/localization/sl_SI.inc | 1 - plugins/attachment_reminder/localization/sr_CS.inc | 1 - plugins/attachment_reminder/localization/sv_SE.inc | 1 - plugins/attachment_reminder/localization/te_IN.inc | 1 - plugins/attachment_reminder/localization/th_TH.inc | 1 - plugins/attachment_reminder/localization/ti.inc | 1 - plugins/attachment_reminder/localization/tr_TR.inc | 1 - plugins/attachment_reminder/localization/tzm.inc | 1 - plugins/attachment_reminder/localization/uk_UA.inc | 1 - plugins/attachment_reminder/localization/ur_PK.inc | 1 - plugins/attachment_reminder/localization/vi_VN.inc | 1 - plugins/attachment_reminder/localization/zh_CN.inc | 1 - plugins/attachment_reminder/localization/zh_TW.inc | 1 - plugins/enigma/localization/ja_JP.inc | 8 +------- plugins/enigma/localization/ru_RU.inc | 5 ----- plugins/help/localization/ar.inc | 1 - plugins/help/localization/ar_SA.inc | 2 -- plugins/help/localization/ast.inc | 1 - plugins/help/localization/az_AZ.inc | 2 -- plugins/help/localization/be_BE.inc | 1 - plugins/help/localization/ber.inc | 1 - plugins/help/localization/bg_BG.inc | 1 - plugins/help/localization/bn_BD.inc | 1 - plugins/help/localization/br.inc | 2 -- plugins/help/localization/bs_BA.inc | 2 -- plugins/help/localization/ca_ES.inc | 2 -- plugins/help/localization/cs_CZ.inc | 2 -- plugins/help/localization/cy_GB.inc | 2 -- plugins/help/localization/da_DK.inc | 2 -- plugins/help/localization/de_CH.inc | 2 -- plugins/help/localization/de_DE.inc | 2 -- plugins/help/localization/el_GR.inc | 1 - plugins/help/localization/en_GB.inc | 2 -- plugins/help/localization/eo.inc | 2 -- plugins/help/localization/es_AR.inc | 1 - plugins/help/localization/es_ES.inc | 2 -- plugins/help/localization/et_EE.inc | 2 -- plugins/help/localization/eu_ES.inc | 1 - plugins/help/localization/fa_AF.inc | 1 - plugins/help/localization/fa_IR.inc | 2 -- plugins/help/localization/fi_FI.inc | 2 -- plugins/help/localization/fr_FR.inc | 2 -- plugins/help/localization/gl_ES.inc | 2 -- plugins/help/localization/he_IL.inc | 2 -- plugins/help/localization/hi_IN.inc | 1 - plugins/help/localization/hu_HU.inc | 2 -- plugins/help/localization/hy_AM.inc | 2 -- plugins/help/localization/ia.inc | 1 - plugins/help/localization/id_ID.inc | 2 -- plugins/help/localization/it_IT.inc | 2 -- plugins/help/localization/ja_JP.inc | 2 -- plugins/help/localization/km_KH.inc | 2 -- plugins/help/localization/ko_KR.inc | 2 -- plugins/help/localization/lb_LU.inc | 2 -- plugins/help/localization/lt_LT.inc | 2 -- plugins/help/localization/lv_LV.inc | 1 - plugins/help/localization/ml_IN.inc | 1 - plugins/help/localization/mn_MN.inc | 1 - plugins/help/localization/ms_MY.inc | 1 - plugins/help/localization/my_MM.inc | 1 - plugins/help/localization/nb_NO.inc | 2 -- plugins/help/localization/nl_BE.inc | 1 - plugins/help/localization/nl_NL.inc | 2 -- plugins/help/localization/nn_NO.inc | 2 -- plugins/help/localization/nqo.inc | 1 - plugins/help/localization/om.inc | 1 - plugins/help/localization/pl_PL.inc | 2 -- plugins/help/localization/pt_BR.inc | 2 -- plugins/help/localization/pt_PT.inc | 2 -- plugins/help/localization/ro_RO.inc | 1 - plugins/help/localization/ru_RU.inc | 2 -- plugins/help/localization/sk_SK.inc | 2 -- plugins/help/localization/sl_SI.inc | 2 -- plugins/help/localization/sr_CS.inc | 2 -- plugins/help/localization/sv_SE.inc | 2 -- plugins/help/localization/te_IN.inc | 1 - plugins/help/localization/th_TH.inc | 1 - plugins/help/localization/ti.inc | 1 - plugins/help/localization/tr_TR.inc | 2 -- plugins/help/localization/tzm.inc | 1 - plugins/help/localization/uk_UA.inc | 1 - plugins/help/localization/ur_PK.inc | 1 - plugins/help/localization/vi_VN.inc | 2 -- plugins/help/localization/zh_CN.inc | 2 -- plugins/help/localization/zh_TW.inc | 2 -- plugins/hide_blockquote/localization/ar.inc | 1 - plugins/hide_blockquote/localization/ar_SA.inc | 1 - plugins/hide_blockquote/localization/az_AZ.inc | 2 -- plugins/hide_blockquote/localization/be_BE.inc | 1 - plugins/hide_blockquote/localization/bg_BG.inc | 1 - plugins/hide_blockquote/localization/bn_BD.inc | 1 - plugins/hide_blockquote/localization/bs_BA.inc | 2 -- plugins/hide_blockquote/localization/ca_ES.inc | 2 -- plugins/hide_blockquote/localization/cs_CZ.inc | 2 -- plugins/hide_blockquote/localization/cy_GB.inc | 2 -- plugins/hide_blockquote/localization/da_DK.inc | 2 -- plugins/hide_blockquote/localization/de_CH.inc | 2 -- plugins/hide_blockquote/localization/de_DE.inc | 2 -- plugins/hide_blockquote/localization/el_GR.inc | 1 - plugins/hide_blockquote/localization/en_GB.inc | 2 -- plugins/hide_blockquote/localization/eo.inc | 2 -- plugins/hide_blockquote/localization/es_AR.inc | 1 - plugins/hide_blockquote/localization/es_ES.inc | 2 -- plugins/hide_blockquote/localization/et_EE.inc | 2 -- plugins/hide_blockquote/localization/eu_ES.inc | 1 - plugins/hide_blockquote/localization/fa_AF.inc | 1 - plugins/hide_blockquote/localization/fa_IR.inc | 2 -- plugins/hide_blockquote/localization/fi_FI.inc | 2 -- plugins/hide_blockquote/localization/fr_FR.inc | 2 -- plugins/hide_blockquote/localization/gl_ES.inc | 2 -- plugins/hide_blockquote/localization/he_IL.inc | 2 -- plugins/hide_blockquote/localization/hi_IN.inc | 1 - plugins/hide_blockquote/localization/hu_HU.inc | 2 -- plugins/hide_blockquote/localization/hy_AM.inc | 2 -- plugins/hide_blockquote/localization/ia.inc | 1 - plugins/hide_blockquote/localization/id_ID.inc | 2 -- plugins/hide_blockquote/localization/it_IT.inc | 2 -- plugins/hide_blockquote/localization/ja_JP.inc | 2 -- plugins/hide_blockquote/localization/ko_KR.inc | 2 -- plugins/hide_blockquote/localization/lb_LU.inc | 2 -- plugins/hide_blockquote/localization/lt_LT.inc | 2 -- plugins/hide_blockquote/localization/lv_LV.inc | 1 - plugins/hide_blockquote/localization/ml_IN.inc | 1 - plugins/hide_blockquote/localization/mn_MN.inc | 1 - plugins/hide_blockquote/localization/ms_MY.inc | 1 - plugins/hide_blockquote/localization/my_MM.inc | 1 - plugins/hide_blockquote/localization/nb_NO.inc | 2 -- plugins/hide_blockquote/localization/nl_BE.inc | 1 - plugins/hide_blockquote/localization/nl_NL.inc | 2 -- plugins/hide_blockquote/localization/nn_NO.inc | 2 -- plugins/hide_blockquote/localization/nqo.inc | 1 - plugins/hide_blockquote/localization/om.inc | 1 - plugins/hide_blockquote/localization/pl_PL.inc | 2 -- plugins/hide_blockquote/localization/pt_BR.inc | 2 -- plugins/hide_blockquote/localization/pt_PT.inc | 2 -- plugins/hide_blockquote/localization/ro_RO.inc | 1 - plugins/hide_blockquote/localization/ru_RU.inc | 2 -- plugins/hide_blockquote/localization/sk_SK.inc | 2 -- plugins/hide_blockquote/localization/sl_SI.inc | 2 -- plugins/hide_blockquote/localization/sr_CS.inc | 2 -- plugins/hide_blockquote/localization/sv_SE.inc | 2 -- plugins/hide_blockquote/localization/te_IN.inc | 1 - plugins/hide_blockquote/localization/th_TH.inc | 1 - plugins/hide_blockquote/localization/ti.inc | 1 - plugins/hide_blockquote/localization/tr_TR.inc | 2 -- plugins/hide_blockquote/localization/tzm.inc | 1 - plugins/hide_blockquote/localization/uk_UA.inc | 1 - plugins/hide_blockquote/localization/ur_PK.inc | 1 - plugins/hide_blockquote/localization/vi_VN.inc | 2 -- plugins/hide_blockquote/localization/zh_CN.inc | 2 -- plugins/hide_blockquote/localization/zh_TW.inc | 2 -- plugins/managesieve/localization/ar_SA.inc | 1 - plugins/managesieve/localization/az_AZ.inc | 3 --- plugins/managesieve/localization/be_BE.inc | 3 --- plugins/managesieve/localization/bg_BG.inc | 3 --- plugins/managesieve/localization/bs_BA.inc | 3 --- plugins/managesieve/localization/ca_ES.inc | 3 --- plugins/managesieve/localization/cs_CZ.inc | 3 --- plugins/managesieve/localization/cy_GB.inc | 3 --- plugins/managesieve/localization/da_DK.inc | 3 --- plugins/managesieve/localization/de_CH.inc | 3 --- plugins/managesieve/localization/de_DE.inc | 3 --- plugins/managesieve/localization/el_GR.inc | 3 --- plugins/managesieve/localization/en_GB.inc | 3 --- plugins/managesieve/localization/eo.inc | 3 --- plugins/managesieve/localization/es_AR.inc | 3 --- plugins/managesieve/localization/es_ES.inc | 3 --- plugins/managesieve/localization/et_EE.inc | 3 --- plugins/managesieve/localization/eu_ES.inc | 1 - plugins/managesieve/localization/fa_IR.inc | 3 --- plugins/managesieve/localization/fi_FI.inc | 3 --- plugins/managesieve/localization/fr_FR.inc | 3 --- plugins/managesieve/localization/gl_ES.inc | 3 --- plugins/managesieve/localization/he_IL.inc | 3 --- plugins/managesieve/localization/hr_HR.inc | 3 --- plugins/managesieve/localization/hu_HU.inc | 3 --- plugins/managesieve/localization/hy_AM.inc | 3 --- plugins/managesieve/localization/ia.inc | 3 --- plugins/managesieve/localization/id_ID.inc | 3 --- plugins/managesieve/localization/it_IT.inc | 3 --- plugins/managesieve/localization/ja_JP.inc | 3 --- plugins/managesieve/localization/ko_KR.inc | 3 --- plugins/managesieve/localization/lb_LU.inc | 3 --- plugins/managesieve/localization/lt_LT.inc | 3 --- plugins/managesieve/localization/lv_LV.inc | 3 --- plugins/managesieve/localization/ml_IN.inc | 3 --- plugins/managesieve/localization/mr_IN.inc | 3 --- plugins/managesieve/localization/nb_NO.inc | 3 --- plugins/managesieve/localization/nl_NL.inc | 3 --- plugins/managesieve/localization/nn_NO.inc | 3 --- plugins/managesieve/localization/pl_PL.inc | 3 --- plugins/managesieve/localization/pt_BR.inc | 3 --- plugins/managesieve/localization/pt_PT.inc | 3 --- plugins/managesieve/localization/ro_RO.inc | 3 --- plugins/managesieve/localization/ru_RU.inc | 3 --- plugins/managesieve/localization/si_LK.inc | 3 --- plugins/managesieve/localization/sk_SK.inc | 3 --- plugins/managesieve/localization/sl_SI.inc | 3 --- plugins/managesieve/localization/sv_SE.inc | 3 --- plugins/managesieve/localization/th_TH.inc | 1 - plugins/managesieve/localization/tr_TR.inc | 3 --- plugins/managesieve/localization/uk_UA.inc | 3 --- plugins/managesieve/localization/vi_VN.inc | 3 --- plugins/managesieve/localization/zh_CN.inc | 3 --- plugins/managesieve/localization/zh_TW.inc | 3 --- plugins/markasjunk/localization/ar.inc | 1 - plugins/markasjunk/localization/az_AZ.inc | 2 -- plugins/markasjunk/localization/be_BE.inc | 2 -- plugins/markasjunk/localization/ber.inc | 1 - plugins/markasjunk/localization/bg_BG.inc | 1 - plugins/markasjunk/localization/br.inc | 2 -- plugins/markasjunk/localization/bs_BA.inc | 2 -- plugins/markasjunk/localization/ca_ES.inc | 2 -- plugins/markasjunk/localization/cs_CZ.inc | 2 -- plugins/markasjunk/localization/cy_GB.inc | 2 -- plugins/markasjunk/localization/da_DK.inc | 2 -- plugins/markasjunk/localization/de_CH.inc | 2 -- plugins/markasjunk/localization/de_DE.inc | 2 -- plugins/markasjunk/localization/el_GR.inc | 2 -- plugins/markasjunk/localization/en_GB.inc | 2 -- plugins/markasjunk/localization/eo.inc | 2 -- plugins/markasjunk/localization/es_AR.inc | 2 -- plugins/markasjunk/localization/es_ES.inc | 2 -- plugins/markasjunk/localization/et_EE.inc | 2 -- plugins/markasjunk/localization/eu_ES.inc | 1 - plugins/markasjunk/localization/fa_IR.inc | 2 -- plugins/markasjunk/localization/fi_FI.inc | 2 -- plugins/markasjunk/localization/fr_FR.inc | 2 -- plugins/markasjunk/localization/gl_ES.inc | 2 -- plugins/markasjunk/localization/he_IL.inc | 2 -- plugins/markasjunk/localization/hr_HR.inc | 2 -- plugins/markasjunk/localization/hu_HU.inc | 2 -- plugins/markasjunk/localization/hy_AM.inc | 2 -- plugins/markasjunk/localization/id_ID.inc | 2 -- plugins/markasjunk/localization/it_IT.inc | 2 -- plugins/markasjunk/localization/ja_JP.inc | 2 -- plugins/markasjunk/localization/km_KH.inc | 2 -- plugins/markasjunk/localization/ko_KR.inc | 2 -- plugins/markasjunk/localization/ku.inc | 2 -- plugins/markasjunk/localization/lb_LU.inc | 2 -- plugins/markasjunk/localization/lt_LT.inc | 2 -- plugins/markasjunk/localization/lv_LV.inc | 2 -- plugins/markasjunk/localization/ml_IN.inc | 2 -- plugins/markasjunk/localization/mr_IN.inc | 2 -- plugins/markasjunk/localization/nb_NO.inc | 2 -- plugins/markasjunk/localization/nl_NL.inc | 2 -- plugins/markasjunk/localization/nn_NO.inc | 2 -- plugins/markasjunk/localization/pl_PL.inc | 2 -- plugins/markasjunk/localization/pt_BR.inc | 2 -- plugins/markasjunk/localization/pt_PT.inc | 2 -- plugins/markasjunk/localization/ro_RO.inc | 2 -- plugins/markasjunk/localization/ru_RU.inc | 2 -- plugins/markasjunk/localization/si_LK.inc | 2 -- plugins/markasjunk/localization/sk_SK.inc | 2 -- plugins/markasjunk/localization/sl_SI.inc | 2 -- plugins/markasjunk/localization/sr_CS.inc | 2 -- plugins/markasjunk/localization/sv_SE.inc | 2 -- plugins/markasjunk/localization/tr_TR.inc | 2 -- plugins/markasjunk/localization/uk_UA.inc | 2 -- plugins/markasjunk/localization/vi_VN.inc | 2 -- plugins/markasjunk/localization/zh_CN.inc | 2 -- plugins/markasjunk/localization/zh_TW.inc | 2 -- plugins/new_user_dialog/localization/ar.inc | 1 - plugins/new_user_dialog/localization/ar_SA.inc | 1 - plugins/new_user_dialog/localization/ast.inc | 1 - plugins/new_user_dialog/localization/az_AZ.inc | 2 -- plugins/new_user_dialog/localization/be_BE.inc | 2 -- plugins/new_user_dialog/localization/bg_BG.inc | 2 -- plugins/new_user_dialog/localization/bs_BA.inc | 2 -- plugins/new_user_dialog/localization/ca_ES.inc | 2 -- plugins/new_user_dialog/localization/cs_CZ.inc | 2 -- plugins/new_user_dialog/localization/cy_GB.inc | 2 -- plugins/new_user_dialog/localization/da_DK.inc | 2 -- plugins/new_user_dialog/localization/de_CH.inc | 2 -- plugins/new_user_dialog/localization/de_DE.inc | 2 -- plugins/new_user_dialog/localization/el_GR.inc | 2 -- plugins/new_user_dialog/localization/en_GB.inc | 2 -- plugins/new_user_dialog/localization/eo.inc | 2 -- plugins/new_user_dialog/localization/es_AR.inc | 1 - plugins/new_user_dialog/localization/es_ES.inc | 2 -- plugins/new_user_dialog/localization/et_EE.inc | 2 -- plugins/new_user_dialog/localization/eu_ES.inc | 1 - plugins/new_user_dialog/localization/fa_AF.inc | 1 - plugins/new_user_dialog/localization/fa_IR.inc | 2 -- plugins/new_user_dialog/localization/fi_FI.inc | 2 -- plugins/new_user_dialog/localization/fr_FR.inc | 2 -- plugins/new_user_dialog/localization/gl_ES.inc | 2 -- plugins/new_user_dialog/localization/he_IL.inc | 2 -- plugins/new_user_dialog/localization/hr_HR.inc | 2 -- plugins/new_user_dialog/localization/hu_HU.inc | 2 -- plugins/new_user_dialog/localization/hy_AM.inc | 2 -- plugins/new_user_dialog/localization/id_ID.inc | 2 -- plugins/new_user_dialog/localization/it_IT.inc | 2 -- plugins/new_user_dialog/localization/ja_JP.inc | 2 -- plugins/new_user_dialog/localization/km_KH.inc | 2 -- plugins/new_user_dialog/localization/ko_KR.inc | 2 -- plugins/new_user_dialog/localization/ku.inc | 2 -- plugins/new_user_dialog/localization/lb_LU.inc | 2 -- plugins/new_user_dialog/localization/lt_LT.inc | 2 -- plugins/new_user_dialog/localization/lv_LV.inc | 2 -- plugins/new_user_dialog/localization/ml_IN.inc | 2 -- plugins/new_user_dialog/localization/mr_IN.inc | 2 -- plugins/new_user_dialog/localization/nb_NO.inc | 2 -- plugins/new_user_dialog/localization/nl_NL.inc | 2 -- plugins/new_user_dialog/localization/nn_NO.inc | 2 -- plugins/new_user_dialog/localization/pl_PL.inc | 2 -- plugins/new_user_dialog/localization/pt_BR.inc | 2 -- plugins/new_user_dialog/localization/pt_PT.inc | 2 -- plugins/new_user_dialog/localization/ro_RO.inc | 2 -- plugins/new_user_dialog/localization/ru_RU.inc | 2 -- plugins/new_user_dialog/localization/sk_SK.inc | 2 -- plugins/new_user_dialog/localization/sl_SI.inc | 2 -- plugins/new_user_dialog/localization/sr_CS.inc | 2 -- plugins/new_user_dialog/localization/sv_SE.inc | 2 -- plugins/new_user_dialog/localization/tr_TR.inc | 2 -- plugins/new_user_dialog/localization/uk_UA.inc | 2 -- plugins/new_user_dialog/localization/vi_VN.inc | 2 -- plugins/new_user_dialog/localization/zh_CN.inc | 2 -- plugins/new_user_dialog/localization/zh_TW.inc | 2 -- plugins/newmail_notifier/localization/ar_SA.inc | 1 - plugins/newmail_notifier/localization/az_AZ.inc | 1 - plugins/newmail_notifier/localization/be_BE.inc | 1 - plugins/newmail_notifier/localization/br.inc | 1 - plugins/newmail_notifier/localization/bs_BA.inc | 1 - plugins/newmail_notifier/localization/ca_ES.inc | 1 - plugins/newmail_notifier/localization/cs_CZ.inc | 1 - plugins/newmail_notifier/localization/cy_GB.inc | 1 - plugins/newmail_notifier/localization/da_DK.inc | 1 - plugins/newmail_notifier/localization/de_CH.inc | 1 - plugins/newmail_notifier/localization/de_DE.inc | 1 - plugins/newmail_notifier/localization/en_GB.inc | 1 - plugins/newmail_notifier/localization/eo.inc | 1 - plugins/newmail_notifier/localization/es_ES.inc | 1 - plugins/newmail_notifier/localization/et_EE.inc | 1 - plugins/newmail_notifier/localization/fa_IR.inc | 1 - plugins/newmail_notifier/localization/fi_FI.inc | 1 - plugins/newmail_notifier/localization/fr_FR.inc | 1 - plugins/newmail_notifier/localization/gl_ES.inc | 1 - plugins/newmail_notifier/localization/he_IL.inc | 1 - plugins/newmail_notifier/localization/hr_HR.inc | 1 - plugins/newmail_notifier/localization/hu_HU.inc | 1 - plugins/newmail_notifier/localization/hy_AM.inc | 1 - plugins/newmail_notifier/localization/ia.inc | 1 - plugins/newmail_notifier/localization/id_ID.inc | 1 - plugins/newmail_notifier/localization/it_IT.inc | 1 - plugins/newmail_notifier/localization/ja_JP.inc | 1 - plugins/newmail_notifier/localization/km_KH.inc | 1 - plugins/newmail_notifier/localization/ko_KR.inc | 1 - plugins/newmail_notifier/localization/lb_LU.inc | 1 - plugins/newmail_notifier/localization/lt_LT.inc | 1 - plugins/newmail_notifier/localization/lv_LV.inc | 1 - plugins/newmail_notifier/localization/ml_IN.inc | 1 - plugins/newmail_notifier/localization/mr_IN.inc | 1 - plugins/newmail_notifier/localization/nb_NO.inc | 1 - plugins/newmail_notifier/localization/nl_NL.inc | 1 - plugins/newmail_notifier/localization/nn_NO.inc | 1 - plugins/newmail_notifier/localization/pl_PL.inc | 1 - plugins/newmail_notifier/localization/pt_BR.inc | 1 - plugins/newmail_notifier/localization/pt_PT.inc | 1 - plugins/newmail_notifier/localization/ro_RO.inc | 1 - plugins/newmail_notifier/localization/ru_RU.inc | 1 - plugins/newmail_notifier/localization/si_LK.inc | 1 - plugins/newmail_notifier/localization/sk_SK.inc | 1 - plugins/newmail_notifier/localization/sl_SI.inc | 1 - plugins/newmail_notifier/localization/sr_CS.inc | 1 - plugins/newmail_notifier/localization/sv_SE.inc | 1 - plugins/newmail_notifier/localization/tr_TR.inc | 1 - plugins/newmail_notifier/localization/uk_UA.inc | 1 - plugins/newmail_notifier/localization/vi_VN.inc | 1 - plugins/newmail_notifier/localization/zh_CN.inc | 1 - plugins/newmail_notifier/localization/zh_TW.inc | 1 - plugins/password/localization/ar.inc | 2 -- plugins/password/localization/ar_SA.inc | 2 -- plugins/password/localization/ast.inc | 2 -- plugins/password/localization/az_AZ.inc | 4 ---- plugins/password/localization/be_BE.inc | 2 -- plugins/password/localization/ber.inc | 1 - plugins/password/localization/bg_BG.inc | 4 ---- plugins/password/localization/br.inc | 4 ---- plugins/password/localization/bs_BA.inc | 4 ---- plugins/password/localization/ca_ES.inc | 4 ---- plugins/password/localization/cs_CZ.inc | 4 ---- plugins/password/localization/cy_GB.inc | 4 ---- plugins/password/localization/da_DK.inc | 4 ---- plugins/password/localization/de_CH.inc | 4 ---- plugins/password/localization/de_DE.inc | 4 ---- plugins/password/localization/el_GR.inc | 2 -- plugins/password/localization/en_GB.inc | 4 ---- plugins/password/localization/eo.inc | 4 ---- plugins/password/localization/es_AR.inc | 4 ---- plugins/password/localization/es_ES.inc | 4 ---- plugins/password/localization/et_EE.inc | 4 ---- plugins/password/localization/eu_ES.inc | 2 -- plugins/password/localization/fa_AF.inc | 2 -- plugins/password/localization/fa_IR.inc | 4 ---- plugins/password/localization/fi_FI.inc | 4 ---- plugins/password/localization/fr_FR.inc | 4 ---- plugins/password/localization/gl_ES.inc | 4 ---- plugins/password/localization/he_IL.inc | 4 ---- plugins/password/localization/hr_HR.inc | 4 ---- plugins/password/localization/hu_HU.inc | 4 ---- plugins/password/localization/hy_AM.inc | 4 ---- plugins/password/localization/id_ID.inc | 4 ---- plugins/password/localization/it_IT.inc | 4 ---- plugins/password/localization/ja_JP.inc | 4 ---- plugins/password/localization/ko_KR.inc | 4 ---- plugins/password/localization/ku.inc | 4 ---- plugins/password/localization/lb_LU.inc | 4 ---- plugins/password/localization/lt_LT.inc | 4 ---- plugins/password/localization/lv_LV.inc | 4 ---- plugins/password/localization/nb_NO.inc | 4 ---- plugins/password/localization/nl_NL.inc | 4 ---- plugins/password/localization/nn_NO.inc | 4 ---- plugins/password/localization/pl_PL.inc | 4 ---- plugins/password/localization/pt_BR.inc | 4 ---- plugins/password/localization/pt_PT.inc | 4 ---- plugins/password/localization/ro_RO.inc | 4 ---- plugins/password/localization/ru_RU.inc | 4 ---- plugins/password/localization/sk_SK.inc | 4 ---- plugins/password/localization/sl_SI.inc | 4 ---- plugins/password/localization/sr_CS.inc | 4 ---- plugins/password/localization/sv_SE.inc | 4 ---- plugins/password/localization/ti.inc | 2 -- plugins/password/localization/tr_TR.inc | 4 ---- plugins/password/localization/uk_UA.inc | 2 -- plugins/password/localization/vi_VN.inc | 4 ---- plugins/password/localization/zh_CN.inc | 4 ---- plugins/password/localization/zh_TW.inc | 4 ---- plugins/subscriptions_option/localization/az_AZ.inc | 1 - plugins/subscriptions_option/localization/be_BE.inc | 1 - plugins/subscriptions_option/localization/bg_BG.inc | 1 - plugins/subscriptions_option/localization/bs_BA.inc | 1 - plugins/subscriptions_option/localization/ca_ES.inc | 1 - plugins/subscriptions_option/localization/cs_CZ.inc | 1 - plugins/subscriptions_option/localization/cy_GB.inc | 1 - plugins/subscriptions_option/localization/da_DK.inc | 1 - plugins/subscriptions_option/localization/de_CH.inc | 1 - plugins/subscriptions_option/localization/de_DE.inc | 1 - plugins/subscriptions_option/localization/el_GR.inc | 1 - plugins/subscriptions_option/localization/en_GB.inc | 1 - plugins/subscriptions_option/localization/eo.inc | 1 - plugins/subscriptions_option/localization/es_AR.inc | 1 - plugins/subscriptions_option/localization/es_ES.inc | 1 - plugins/subscriptions_option/localization/et_EE.inc | 1 - plugins/subscriptions_option/localization/eu_ES.inc | 1 - plugins/subscriptions_option/localization/fa_AF.inc | 1 - plugins/subscriptions_option/localization/fa_IR.inc | 1 - plugins/subscriptions_option/localization/fi_FI.inc | 1 - plugins/subscriptions_option/localization/fr_FR.inc | 1 - plugins/subscriptions_option/localization/gl_ES.inc | 1 - plugins/subscriptions_option/localization/he_IL.inc | 1 - plugins/subscriptions_option/localization/hu_HU.inc | 1 - plugins/subscriptions_option/localization/hy_AM.inc | 1 - plugins/subscriptions_option/localization/id_ID.inc | 1 - plugins/subscriptions_option/localization/it_IT.inc | 1 - plugins/subscriptions_option/localization/ja_JP.inc | 1 - plugins/subscriptions_option/localization/ko_KR.inc | 1 - plugins/subscriptions_option/localization/lb_LU.inc | 1 - plugins/subscriptions_option/localization/lt_LT.inc | 1 - plugins/subscriptions_option/localization/lv_LV.inc | 1 - plugins/subscriptions_option/localization/nb_NO.inc | 1 - plugins/subscriptions_option/localization/nl_NL.inc | 1 - plugins/subscriptions_option/localization/nn_NO.inc | 1 - plugins/subscriptions_option/localization/pl_PL.inc | 1 - plugins/subscriptions_option/localization/pt_BR.inc | 1 - plugins/subscriptions_option/localization/pt_PT.inc | 1 - plugins/subscriptions_option/localization/ro_RO.inc | 1 - plugins/subscriptions_option/localization/ru_RU.inc | 1 - plugins/subscriptions_option/localization/sk_SK.inc | 1 - plugins/subscriptions_option/localization/sl_SI.inc | 1 - plugins/subscriptions_option/localization/sr_CS.inc | 1 - plugins/subscriptions_option/localization/sv_SE.inc | 1 - plugins/subscriptions_option/localization/tr_TR.inc | 1 - plugins/subscriptions_option/localization/vi_VN.inc | 1 - plugins/subscriptions_option/localization/zh_CN.inc | 1 - plugins/subscriptions_option/localization/zh_TW.inc | 1 - plugins/userinfo/localization/ar.inc | 1 - plugins/userinfo/localization/ar_SA.inc | 2 -- plugins/userinfo/localization/ast.inc | 1 - plugins/userinfo/localization/az_AZ.inc | 2 -- plugins/userinfo/localization/be_BE.inc | 2 -- plugins/userinfo/localization/ber.inc | 1 - plugins/userinfo/localization/bg_BG.inc | 1 - plugins/userinfo/localization/br.inc | 2 -- plugins/userinfo/localization/bs_BA.inc | 2 -- plugins/userinfo/localization/ca_ES.inc | 2 -- plugins/userinfo/localization/cs_CZ.inc | 2 -- plugins/userinfo/localization/cy_GB.inc | 2 -- plugins/userinfo/localization/da_DK.inc | 2 -- plugins/userinfo/localization/de_CH.inc | 2 -- plugins/userinfo/localization/de_DE.inc | 2 -- plugins/userinfo/localization/el_GR.inc | 1 - plugins/userinfo/localization/en_GB.inc | 2 -- plugins/userinfo/localization/eo.inc | 2 -- plugins/userinfo/localization/es_AR.inc | 1 - plugins/userinfo/localization/es_ES.inc | 2 -- plugins/userinfo/localization/et_EE.inc | 2 -- plugins/userinfo/localization/eu_ES.inc | 1 - plugins/userinfo/localization/fa_AF.inc | 1 - plugins/userinfo/localization/fa_IR.inc | 2 -- plugins/userinfo/localization/fi_FI.inc | 2 -- plugins/userinfo/localization/fr_FR.inc | 2 -- plugins/userinfo/localization/gl_ES.inc | 2 -- plugins/userinfo/localization/he_IL.inc | 2 -- plugins/userinfo/localization/hr_HR.inc | 2 -- plugins/userinfo/localization/hu_HU.inc | 2 -- plugins/userinfo/localization/hy_AM.inc | 2 -- plugins/userinfo/localization/ia.inc | 2 -- plugins/userinfo/localization/id_ID.inc | 2 -- plugins/userinfo/localization/it_IT.inc | 2 -- plugins/userinfo/localization/ja_JP.inc | 2 -- plugins/userinfo/localization/km_KH.inc | 2 -- plugins/userinfo/localization/ko_KR.inc | 2 -- plugins/userinfo/localization/ku.inc | 2 -- plugins/userinfo/localization/lb_LU.inc | 2 -- plugins/userinfo/localization/lt_LT.inc | 2 -- plugins/userinfo/localization/lv_LV.inc | 2 -- plugins/userinfo/localization/ml_IN.inc | 2 -- plugins/userinfo/localization/mr_IN.inc | 2 -- plugins/userinfo/localization/nb_NO.inc | 2 -- plugins/userinfo/localization/nl_NL.inc | 2 -- plugins/userinfo/localization/nn_NO.inc | 2 -- plugins/userinfo/localization/pl_PL.inc | 2 -- plugins/userinfo/localization/pt_BR.inc | 2 -- plugins/userinfo/localization/pt_PT.inc | 2 -- plugins/userinfo/localization/ro_RO.inc | 2 -- plugins/userinfo/localization/ru_RU.inc | 2 -- plugins/userinfo/localization/sk_SK.inc | 2 -- plugins/userinfo/localization/sl_SI.inc | 2 -- plugins/userinfo/localization/sr_CS.inc | 2 -- plugins/userinfo/localization/sv_SE.inc | 2 -- plugins/userinfo/localization/ti.inc | 1 - plugins/userinfo/localization/tr_TR.inc | 2 -- plugins/userinfo/localization/uk_UA.inc | 2 -- plugins/userinfo/localization/vi_VN.inc | 2 -- plugins/userinfo/localization/zh_CN.inc | 2 -- plugins/userinfo/localization/zh_TW.inc | 2 -- plugins/vcard_attachments/localization/ar.inc | 1 - plugins/vcard_attachments/localization/ar_SA.inc | 1 - plugins/vcard_attachments/localization/az_AZ.inc | 2 -- plugins/vcard_attachments/localization/be_BE.inc | 2 -- plugins/vcard_attachments/localization/bg_BG.inc | 1 - plugins/vcard_attachments/localization/bs_BA.inc | 2 -- plugins/vcard_attachments/localization/ca_ES.inc | 2 -- plugins/vcard_attachments/localization/cs_CZ.inc | 2 -- plugins/vcard_attachments/localization/cy_GB.inc | 2 -- plugins/vcard_attachments/localization/da_DK.inc | 2 -- plugins/vcard_attachments/localization/de_CH.inc | 2 -- plugins/vcard_attachments/localization/de_DE.inc | 2 -- plugins/vcard_attachments/localization/el_GR.inc | 1 - plugins/vcard_attachments/localization/en_GB.inc | 2 -- plugins/vcard_attachments/localization/eo.inc | 2 -- plugins/vcard_attachments/localization/es_AR.inc | 1 - plugins/vcard_attachments/localization/es_ES.inc | 2 -- plugins/vcard_attachments/localization/et_EE.inc | 2 -- plugins/vcard_attachments/localization/eu_ES.inc | 1 - plugins/vcard_attachments/localization/fa_IR.inc | 2 -- plugins/vcard_attachments/localization/fi_FI.inc | 2 -- plugins/vcard_attachments/localization/fr_FR.inc | 2 -- plugins/vcard_attachments/localization/gl_ES.inc | 2 -- plugins/vcard_attachments/localization/he_IL.inc | 2 -- plugins/vcard_attachments/localization/hr_HR.inc | 2 -- plugins/vcard_attachments/localization/hu_HU.inc | 2 -- plugins/vcard_attachments/localization/hy_AM.inc | 2 -- plugins/vcard_attachments/localization/id_ID.inc | 2 -- plugins/vcard_attachments/localization/it_IT.inc | 2 -- plugins/vcard_attachments/localization/ja_JP.inc | 2 -- plugins/vcard_attachments/localization/km_KH.inc | 2 -- plugins/vcard_attachments/localization/ko_KR.inc | 2 -- plugins/vcard_attachments/localization/lb_LU.inc | 2 -- plugins/vcard_attachments/localization/lt_LT.inc | 2 -- plugins/vcard_attachments/localization/lv_LV.inc | 2 -- plugins/vcard_attachments/localization/ml_IN.inc | 2 -- plugins/vcard_attachments/localization/mr_IN.inc | 2 -- plugins/vcard_attachments/localization/nb_NO.inc | 2 -- plugins/vcard_attachments/localization/nl_NL.inc | 2 -- plugins/vcard_attachments/localization/nn_NO.inc | 2 -- plugins/vcard_attachments/localization/pl_PL.inc | 2 -- plugins/vcard_attachments/localization/pt_BR.inc | 2 -- plugins/vcard_attachments/localization/pt_PT.inc | 2 -- plugins/vcard_attachments/localization/ro_RO.inc | 2 -- plugins/vcard_attachments/localization/ru_RU.inc | 2 -- plugins/vcard_attachments/localization/si_LK.inc | 2 -- plugins/vcard_attachments/localization/sk_SK.inc | 2 -- plugins/vcard_attachments/localization/sl_SI.inc | 2 -- plugins/vcard_attachments/localization/sr_CS.inc | 2 -- plugins/vcard_attachments/localization/sv_SE.inc | 2 -- plugins/vcard_attachments/localization/tr_TR.inc | 2 -- plugins/vcard_attachments/localization/uk_UA.inc | 2 -- plugins/vcard_attachments/localization/vi_VN.inc | 2 -- plugins/vcard_attachments/localization/zh_CN.inc | 2 -- plugins/vcard_attachments/localization/zh_TW.inc | 2 -- plugins/zipdownload/localization/ar.inc | 1 - plugins/zipdownload/localization/ar_SA.inc | 1 - plugins/zipdownload/localization/az_AZ.inc | 2 -- plugins/zipdownload/localization/be_BE.inc | 1 - plugins/zipdownload/localization/bg_BG.inc | 1 - plugins/zipdownload/localization/br.inc | 2 -- plugins/zipdownload/localization/bs_BA.inc | 2 -- plugins/zipdownload/localization/ca_ES.inc | 2 -- plugins/zipdownload/localization/cs_CZ.inc | 2 -- plugins/zipdownload/localization/cy_GB.inc | 2 -- plugins/zipdownload/localization/da_DK.inc | 2 -- plugins/zipdownload/localization/de_CH.inc | 2 -- plugins/zipdownload/localization/de_DE.inc | 2 -- plugins/zipdownload/localization/el_GR.inc | 1 - plugins/zipdownload/localization/en_GB.inc | 2 -- plugins/zipdownload/localization/eo.inc | 1 - plugins/zipdownload/localization/es_AR.inc | 2 -- plugins/zipdownload/localization/es_ES.inc | 2 -- plugins/zipdownload/localization/et_EE.inc | 2 -- plugins/zipdownload/localization/eu_ES.inc | 1 - plugins/zipdownload/localization/fa_AF.inc | 1 - plugins/zipdownload/localization/fa_IR.inc | 2 -- plugins/zipdownload/localization/fi_FI.inc | 1 - plugins/zipdownload/localization/fr_FR.inc | 2 -- plugins/zipdownload/localization/gl_ES.inc | 2 -- plugins/zipdownload/localization/he_IL.inc | 2 -- plugins/zipdownload/localization/hu_HU.inc | 2 -- plugins/zipdownload/localization/id_ID.inc | 1 - plugins/zipdownload/localization/it_IT.inc | 2 -- plugins/zipdownload/localization/ja_JP.inc | 2 -- plugins/zipdownload/localization/km_KH.inc | 2 -- plugins/zipdownload/localization/ko_KR.inc | 1 - plugins/zipdownload/localization/lb_LU.inc | 2 -- plugins/zipdownload/localization/lt_LT.inc | 2 -- plugins/zipdownload/localization/lv_LV.inc | 1 - plugins/zipdownload/localization/nb_NO.inc | 2 -- plugins/zipdownload/localization/nl_NL.inc | 2 -- plugins/zipdownload/localization/nn_NO.inc | 2 -- plugins/zipdownload/localization/pl_PL.inc | 2 -- plugins/zipdownload/localization/pt_BR.inc | 2 -- plugins/zipdownload/localization/pt_PT.inc | 2 -- plugins/zipdownload/localization/ro_RO.inc | 2 -- plugins/zipdownload/localization/ru_RU.inc | 2 -- plugins/zipdownload/localization/sk_SK.inc | 2 -- plugins/zipdownload/localization/sl_SI.inc | 1 - plugins/zipdownload/localization/sr_CS.inc | 2 -- plugins/zipdownload/localization/sv_SE.inc | 2 -- plugins/zipdownload/localization/tr_TR.inc | 2 -- plugins/zipdownload/localization/uk_UA.inc | 1 - plugins/zipdownload/localization/vi_VN.inc | 2 -- plugins/zipdownload/localization/zh_CN.inc | 1 - plugins/zipdownload/localization/zh_TW.inc | 2 -- program/localization/ar_SA/labels.inc | 1 - program/localization/ar_SA/messages.inc | 1 - program/localization/ast/labels.inc | 1 - program/localization/ast/messages.inc | 1 - program/localization/az_AZ/labels.inc | 1 - program/localization/az_AZ/messages.inc | 1 - program/localization/be_BE/labels.inc | 1 - program/localization/be_BE/messages.inc | 1 - program/localization/ber/labels.inc | 1 - program/localization/bg_BG/labels.inc | 1 - program/localization/bg_BG/messages.inc | 1 - program/localization/bn_BD/labels.inc | 1 - program/localization/bn_BD/messages.inc | 1 - program/localization/br/labels.inc | 1 - program/localization/br/messages.inc | 1 - program/localization/bs_BA/labels.inc | 1 - program/localization/bs_BA/messages.inc | 1 - program/localization/ca_ES/labels.inc | 1 - program/localization/ca_ES/messages.inc | 1 - program/localization/cs_CZ/labels.inc | 1 - program/localization/cs_CZ/messages.inc | 1 - program/localization/cy_GB/labels.inc | 1 - program/localization/cy_GB/messages.inc | 1 - program/localization/da_DK/labels.inc | 1 - program/localization/da_DK/messages.inc | 1 - program/localization/de_CH/labels.inc | 1 - program/localization/de_CH/messages.inc | 1 - program/localization/de_DE/labels.inc | 1 - program/localization/de_DE/messages.inc | 1 - program/localization/el_GR/labels.inc | 1 - program/localization/el_GR/messages.inc | 1 - program/localization/en_GB/labels.inc | 1 - program/localization/en_GB/messages.inc | 1 - program/localization/eo/labels.inc | 1 - program/localization/eo/messages.inc | 1 - program/localization/es_AR/labels.inc | 1 - program/localization/es_AR/messages.inc | 1 - program/localization/es_ES/labels.inc | 1 - program/localization/es_ES/messages.inc | 1 - program/localization/et_EE/labels.inc | 1 - program/localization/et_EE/messages.inc | 1 - program/localization/eu_ES/labels.inc | 1 - program/localization/eu_ES/messages.inc | 1 - program/localization/fa_AF/labels.inc | 1 - program/localization/fa_AF/messages.inc | 1 - program/localization/fa_IR/labels.inc | 1 - program/localization/fa_IR/messages.inc | 1 - program/localization/fi_FI/labels.inc | 1 - program/localization/fi_FI/messages.inc | 1 - program/localization/fr_FR/labels.inc | 1 - program/localization/fr_FR/messages.inc | 1 - program/localization/fy_NL/labels.inc | 1 - program/localization/fy_NL/messages.inc | 1 - program/localization/ga_IE/labels.inc | 1 - program/localization/ga_IE/messages.inc | 1 - program/localization/gl_ES/labels.inc | 1 - program/localization/gl_ES/messages.inc | 1 - program/localization/he_IL/labels.inc | 1 - program/localization/he_IL/messages.inc | 1 - program/localization/hi_IN/labels.inc | 1 - program/localization/hi_IN/messages.inc | 1 - program/localization/hr_HR/labels.inc | 1 - program/localization/hr_HR/messages.inc | 1 - program/localization/hu_HU/labels.inc | 1 - program/localization/hu_HU/messages.inc | 1 - program/localization/hy_AM/labels.inc | 1 - program/localization/hy_AM/messages.inc | 1 - program/localization/ia/labels.inc | 1 - program/localization/ia/messages.inc | 1 - program/localization/id_ID/labels.inc | 1 - program/localization/id_ID/messages.inc | 1 - program/localization/is_IS/labels.inc | 1 - program/localization/is_IS/messages.inc | 1 - program/localization/it_IT/labels.inc | 1 - program/localization/it_IT/messages.inc | 1 - program/localization/ja_JP/labels.inc | 1 - program/localization/ja_JP/messages.inc | 1 - program/localization/ka_GE/labels.inc | 1 - program/localization/ka_GE/messages.inc | 1 - program/localization/km_KH/labels.inc | 1 - program/localization/km_KH/messages.inc | 1 - program/localization/ko_KR/labels.inc | 1 - program/localization/ko_KR/messages.inc | 1 - program/localization/ku/labels.inc | 1 - program/localization/ku/messages.inc | 1 - program/localization/lb_LU/labels.inc | 1 - program/localization/lb_LU/messages.inc | 1 - program/localization/lt_LT/labels.inc | 1 - program/localization/lt_LT/messages.inc | 1 - program/localization/lv_LV/labels.inc | 1 - program/localization/lv_LV/messages.inc | 1 - program/localization/mk_MK/labels.inc | 1 - program/localization/mk_MK/messages.inc | 1 - program/localization/ml_IN/labels.inc | 1 - program/localization/ml_IN/messages.inc | 1 - program/localization/mr_IN/labels.inc | 1 - program/localization/mr_IN/messages.inc | 1 - program/localization/ms_MY/labels.inc | 1 - program/localization/ms_MY/messages.inc | 1 - program/localization/nb_NO/labels.inc | 1 - program/localization/nb_NO/messages.inc | 1 - program/localization/ne_NP/labels.inc | 1 - program/localization/ne_NP/messages.inc | 1 - program/localization/nl_BE/labels.inc | 1 - program/localization/nl_BE/messages.inc | 1 - program/localization/nl_NL/labels.inc | 1 - program/localization/nl_NL/messages.inc | 1 - program/localization/nn_NO/labels.inc | 1 - program/localization/nn_NO/messages.inc | 1 - program/localization/pl_PL/labels.inc | 1 - program/localization/pl_PL/messages.inc | 1 - program/localization/ps/labels.inc | 1 - program/localization/ps/messages.inc | 1 - program/localization/pt_BR/labels.inc | 1 - program/localization/pt_BR/messages.inc | 1 - program/localization/pt_PT/labels.inc | 1 - program/localization/pt_PT/messages.inc | 1 - program/localization/ro_RO/labels.inc | 1 - program/localization/ro_RO/messages.inc | 1 - program/localization/ru_RU/labels.inc | 1 - program/localization/ru_RU/messages.inc | 1 - program/localization/si_LK/labels.inc | 1 - program/localization/si_LK/messages.inc | 1 - program/localization/sk_SK/labels.inc | 1 - program/localization/sk_SK/messages.inc | 1 - program/localization/sl_SI/labels.inc | 1 - program/localization/sl_SI/messages.inc | 1 - program/localization/sq_AL/labels.inc | 1 - program/localization/sq_AL/messages.inc | 1 - program/localization/sr_CS/labels.inc | 1 - program/localization/sr_CS/messages.inc | 1 - program/localization/sv_SE/labels.inc | 1 - program/localization/sv_SE/messages.inc | 1 - program/localization/ta_IN/labels.inc | 1 - program/localization/ta_IN/messages.inc | 1 - program/localization/th_TH/labels.inc | 1 - program/localization/th_TH/messages.inc | 1 - program/localization/tr_TR/labels.inc | 1 - program/localization/tr_TR/messages.inc | 1 - program/localization/uk_UA/labels.inc | 1 - program/localization/uk_UA/messages.inc | 1 - program/localization/vi_VN/labels.inc | 1 - program/localization/vi_VN/messages.inc | 1 - program/localization/zh_CN/labels.inc | 1 - program/localization/zh_CN/messages.inc | 1 - program/localization/zh_TW/labels.inc | 1 - program/localization/zh_TW/messages.inc | 1 - 957 files changed, 1 insertion(+), 1886 deletions(-) mode change 100755 => 100644 plugins/userinfo/localization/fr_FR.inc mode change 100755 => 100644 plugins/userinfo/localization/ro_RO.inc diff --git a/plugins/acl/localization/az_AZ.inc b/plugins/acl/localization/az_AZ.inc index 5d875a2b7..1a2eea442 100644 --- a/plugins/acl/localization/az_AZ.inc +++ b/plugins/acl/localization/az_AZ.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Giriş hüququ ilə hərəkət...'; $labels['anyone'] = 'Bütün istifadəçilər (istənilən)'; $labels['anonymous'] = 'Qonaqlar (anonimlər)'; $labels['identifier'] = 'İdentifikator'; - $labels['acll'] = 'Baxış'; $labels['aclr'] = 'Məktubu oxu'; $labels['acls'] = 'Oxunulan kimi saxla'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Məktubu sil'; $labels['acle'] = 'Poz'; $labels['aclx'] = 'Qovluğu sil'; $labels['acla'] = 'İdarə'; - $labels['aclfull'] = 'Tam idarə'; $labels['aclother'] = 'Digər'; $labels['aclread'] = 'Oxu'; $labels['aclwrite'] = 'Yaz'; $labels['acldelete'] = 'Sil'; - $labels['shortacll'] = 'Baxış'; $labels['shortaclr'] = 'Oxu'; $labels['shortacls'] = 'Saxla'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Sil'; $labels['shortacle'] = 'Poz'; $labels['shortaclx'] = 'Qovluğun silinməsi'; $labels['shortacla'] = 'İdarə'; - $labels['shortaclother'] = 'Digər'; $labels['shortaclread'] = 'Oxu'; $labels['shortaclwrite'] = 'Yaz'; $labels['shortacldelete'] = 'Sil'; - $labels['longacll'] = 'Qovluq siyahıda görünür və yazılmağa hazırdır'; $labels['longaclr'] = 'Bu qovluq oxunmaq üçün açıla bilər'; $labels['longacls'] = 'Oxunulan flaqı dəyişdirilə bilər'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Silinən flaqı dəyişdirilə bilər'; $labels['longacle'] = 'Məktublar pozula bilər'; $labels['longaclx'] = 'Bu qovluq silinə və ya adı dəyişdirilə bilər'; $labels['longacla'] = 'Bu qovluğa giriş hüququ dəyişdirilə bilər'; - $labels['longaclfull'] = 'Qovluğun idarəsi ilə birlikdə, tam giriş.'; $labels['longaclread'] = 'Bu qovluq oxunmaq üçün açıla bilər'; $labels['longaclwrite'] = 'Məktubu bu qovluğa qeyd etmək, yazmaq və kopyalamaq olar'; $labels['longacldelete'] = 'Məktubu silmək olar'; - $messages['deleting'] = 'Giriş hüququnun silinməsi...'; $messages['saving'] = 'Giriş hüququnun saxlanılması...'; $messages['updatesuccess'] = 'Giriş hüququ dəyişdirildi'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Giriş hüququnu əlavə etmək mümkün deyil'; $messages['deleteconfirm'] = 'Seçilmiş istifadəçilərin giriş hüququnu silməkdə əminsiniz?'; $messages['norights'] = 'Giriş hüquqları göstərilməyib!'; $messages['nouser'] = 'İstifadəçi adı təyin olunmayıb!'; - ?> diff --git a/plugins/acl/localization/bs_BA.inc b/plugins/acl/localization/bs_BA.inc index b14db1b67..646600b5f 100644 --- a/plugins/acl/localization/bs_BA.inc +++ b/plugins/acl/localization/bs_BA.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Akcije za prava pristupa...'; $labels['anyone'] = 'Svi korisnici (bilo ko)'; $labels['anonymous'] = 'Gosti (anonimno)'; $labels['identifier'] = 'Identifikator'; - $labels['acll'] = 'Pronađi'; $labels['aclr'] = 'Pročitaj poruke'; $labels['acls'] = 'Zadrži stanje pregleda'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Obriši poruke'; $labels['acle'] = 'Izbriši'; $labels['aclx'] = 'Obriši folder'; $labels['acla'] = 'Administracija'; - $labels['aclfull'] = 'Puna kontrola'; $labels['aclother'] = 'Ostalo'; $labels['aclread'] = 'Pročitano'; $labels['aclwrite'] = 'Piši'; $labels['acldelete'] = 'Obriši'; - $labels['shortacll'] = 'Pronađi'; $labels['shortaclr'] = 'Pročitano'; $labels['shortacls'] = 'Zadrži'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Obriši'; $labels['shortacle'] = 'Izbriši'; $labels['shortaclx'] = 'Brisanje foldera'; $labels['shortacla'] = 'Administracija'; - $labels['shortaclother'] = 'Ostalo'; $labels['shortaclread'] = 'Pročitano'; $labels['shortaclwrite'] = 'Piši'; $labels['shortacldelete'] = 'Obriši'; - $labels['longacll'] = 'Ovaj folder je vidljiv u listama i moguće je izvršiti pretplatu na njega'; $labels['longaclr'] = 'Folder je moguće otvoriti radi čitanja'; $labels['longacls'] = 'Oznaka čitanja za poruke se može promijeniti'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Oznaka za obrisane poruke se može mijenjati'; $labels['longacle'] = 'Poruke je moguće obrisati'; $labels['longaclx'] = 'Folder je moguće obrisati ili preimenovati'; $labels['longacla'] = 'Pristupna prava foldera je moguće promijeniti'; - $labels['longaclfull'] = 'Puna kontrola uključujući i administraciju foldera'; $labels['longaclread'] = 'Folder je moguće otvoriti radi čitanja'; $labels['longaclwrite'] = 'Moguće je označavati, zapisivati i kopirati poruke u folder'; $labels['longacldelete'] = 'Moguće je obrisati poruke'; - $messages['deleting'] = 'Brišem prava pristupa...'; $messages['saving'] = 'Snimam prava pristupa...'; $messages['updatesuccess'] = 'Prava pristupa su uspješno promijenjena'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Nije moguće dodati prava pristupa'; $messages['deleteconfirm'] = 'Jeste li sigurni da želite ukloniti prava pristupa za odabrane korisnike?'; $messages['norights'] = 'Niste odabrali prava pristupa!'; $messages['nouser'] = 'Niste odabrali korisničko ime!'; - ?> diff --git a/plugins/acl/localization/ca_ES.inc b/plugins/acl/localization/ca_ES.inc index f660b8505..5944ae2c7 100644 --- a/plugins/acl/localization/ca_ES.inc +++ b/plugins/acl/localization/ca_ES.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Accions dels permisos d\'accés'; $labels['anyone'] = 'Tots els usuaris'; $labels['anonymous'] = 'Convidats'; $labels['identifier'] = 'Identificador'; - $labels['acll'] = 'Cerca'; $labels['aclr'] = 'Llegeix missatges'; $labels['acls'] = 'Conserva\'l com a llegit'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Suprimeix missatges'; $labels['acle'] = 'Buida'; $labels['aclx'] = 'Suprimeix carpeta'; $labels['acla'] = 'Administra'; - $labels['aclfull'] = 'Control total'; $labels['aclother'] = 'Un altre'; $labels['aclread'] = 'Lectura'; $labels['aclwrite'] = 'Escriptura'; $labels['acldelete'] = 'Suprimeix'; - $labels['shortacll'] = 'Cerca'; $labels['shortaclr'] = 'Lectura'; $labels['shortacls'] = 'Conserva'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Suprimeix'; $labels['shortacle'] = 'Buida'; $labels['shortaclx'] = 'Suprimeix carpeta'; $labels['shortacla'] = 'Administra'; - $labels['shortaclother'] = 'Un altre'; $labels['shortaclread'] = 'Lectura'; $labels['shortaclwrite'] = 'Escriptura'; $labels['shortacldelete'] = 'Suprimeix'; - $labels['longacll'] = 'La carpeta és visible a les llistes i s\'hi pot subscriure'; $labels['longaclr'] = 'La carpeta pot ser oberta per llegir'; $labels['longacls'] = 'Els missatges marcats com a Llegit poden ser canviats'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Poden ser canviats els missatges amb l\'indicador Suprimi $labels['longacle'] = 'Els missatges poden ser purgats'; $labels['longaclx'] = 'La carpeta pot ser suprimida o reanomenada'; $labels['longacla'] = 'Els permisos d\'accés a la carpeta poden ser canviats'; - $labels['longaclfull'] = 'Control total fins i tot la gestió de carpetes'; $labels['longaclread'] = 'La carpeta pot ser oberta per llegir'; $labels['longaclwrite'] = 'Els missatges poden ser marcats, escrits o copiats a la carpeta'; $labels['longacldelete'] = 'Els missatges poden ser suprimits'; - $messages['deleting'] = 'Suprimint els permisos d\'accés...'; $messages['saving'] = 'Desant els permisos d\'accés...'; $messages['updatesuccess'] = 'Els permisos d\'accés han estat canviats correctament'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'No s\'ha pogut afegir els permisos d\'accés'; $messages['deleteconfirm'] = 'Esteu segurs que voleu suprimir els permisos d\'accés de l\'usuari o usuaris seleccionats?'; $messages['norights'] = 'No s\'ha especificat cap permís'; $messages['nouser'] = 'No s\'ha especificat cap nom d\'usuari'; - ?> diff --git a/plugins/acl/localization/cs_CZ.inc b/plugins/acl/localization/cs_CZ.inc index 167788b4c..8dde16076 100644 --- a/plugins/acl/localization/cs_CZ.inc +++ b/plugins/acl/localization/cs_CZ.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Přístupové právo akce ...'; $labels['anyone'] = 'Všichni uživatelé (kdokoli)'; $labels['anonymous'] = 'Hosté (anonymní)'; $labels['identifier'] = 'Identifikátor'; - $labels['acll'] = 'Vyhledat'; $labels['aclr'] = 'Číst zprávy'; $labels['acls'] = 'Ponechat stav Přečteno'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Smazat zprávy'; $labels['acle'] = 'Vyprázdnit'; $labels['aclx'] = 'Smazat složku'; $labels['acla'] = 'Spravovat'; - $labels['aclfull'] = 'Plný přístup'; $labels['aclother'] = 'Ostatní'; $labels['aclread'] = 'Číst'; $labels['aclwrite'] = 'Zapsat'; $labels['acldelete'] = 'Smazat'; - $labels['shortacll'] = 'Vyhledat'; $labels['shortaclr'] = 'Číst'; $labels['shortacls'] = 'Zachovat'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Smazat'; $labels['shortacle'] = 'Vyprázdnit'; $labels['shortaclx'] = 'Mazat složky'; $labels['shortacla'] = 'Spravovat'; - $labels['shortaclother'] = 'Ostatní'; $labels['shortaclread'] = 'Číst'; $labels['shortaclwrite'] = 'Zapsat'; $labels['shortacldelete'] = 'Smazat'; - $labels['longacll'] = 'Složka je viditelná v seznamu a může být přihlášena'; $labels['longaclr'] = 'Složka může být otevřena pro čtení'; $labels['longacls'] = 'Označená zpráva byla změněna'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Značka o smazání zprávy může být změněna'; $labels['longacle'] = 'Zpráva může být smazána'; $labels['longaclx'] = 'Složka může být smazána nebo přejmenována'; $labels['longacla'] = 'Přístupová práva složky mohou být změněna'; - $labels['longaclfull'] = 'Plný přístup včetně správy složky'; $labels['longaclread'] = 'Složka může být otevřena pro čtení'; $labels['longaclwrite'] = 'Zpráva může být označena, napsána nebo zkopírována do složky'; $labels['longacldelete'] = 'Zprávy mohou být smazány'; - $messages['deleting'] = 'Odstraňuji přístupová práva...'; $messages['saving'] = 'Ukládám přístupová práva...'; $messages['updatesuccess'] = 'Přístupová práva byla úspěšně změněna'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Nelze přidat přístupová práva'; $messages['deleteconfirm'] = 'Opravdu si přejete odstranit přístupová práva pro vybrané(ho) uživatele?'; $messages['norights'] = 'Nejsou specifikována žádná práva!'; $messages['nouser'] = 'Není specifikováno uživatelské jméno'; - ?> diff --git a/plugins/acl/localization/cy_GB.inc b/plugins/acl/localization/cy_GB.inc index bf6e870e8..78b67b5fe 100644 --- a/plugins/acl/localization/cy_GB.inc +++ b/plugins/acl/localization/cy_GB.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Gweithredoedd hawl mynediad...'; $labels['anyone'] = 'Pob defnyddiwr (unrhywun)'; $labels['anonymous'] = 'Gwestai (anhysbys)'; $labels['identifier'] = 'Dynodwr'; - $labels['acll'] = 'Chwilio'; $labels['aclr'] = 'Darllen negeseuon'; $labels['acls'] = 'Cadw stad Gwelwyd'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Dileu negeseuon'; $labels['acle'] = 'Dileu'; $labels['aclx'] = 'Dileu ffolder'; $labels['acla'] = 'Gweinyddu'; - $labels['aclfull'] = 'Rheolaeth lawn'; $labels['aclother'] = 'Arall'; $labels['aclread'] = 'Darllen'; $labels['aclwrite'] = 'Ysgrifennu'; $labels['acldelete'] = 'Dileu'; - $labels['shortacll'] = 'Chwilio'; $labels['shortaclr'] = 'Darllen'; $labels['shortacls'] = 'Cadw'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Dileu'; $labels['shortacle'] = 'Dileu'; $labels['shortaclx'] = 'Dileu ffolder'; $labels['shortacla'] = 'Gweinyddu'; - $labels['shortaclother'] = 'Arall'; $labels['shortaclread'] = 'Darllen'; $labels['shortaclwrite'] = 'Ysgrifennu'; $labels['shortacldelete'] = 'Dileu'; - $labels['longacll'] = 'Mae\'r ffolder hwn i\'w weld ar y rhestrau a mae\'n bosib tanysgrifio iddo'; $labels['longaclr'] = 'Gellir agor y ffolder hwn i\'w ddarllen'; $labels['longacls'] = 'Gellir newid y fflag negeseuon Gwelwyd'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Gellir newid fflag neges Dileu'; $labels['longacle'] = 'Gellir gwaredu negeseuon'; $labels['longaclx'] = 'Gellir dileu neu ail-enwi\'r ffolder'; $labels['longacla'] = 'Gellir newid hawliau mynediad y ffolder'; - $labels['longaclfull'] = 'Rheolaeth lawn yn cynnwys rheolaeth ffolderi'; $labels['longaclread'] = 'Gellir agor y ffolder hwn i\'w ddarllen'; $labels['longaclwrite'] = 'Gellir nodi, ysgrifennu neu copïo negeseuon i\'r ffolder'; $labels['longacldelete'] = 'Gellir dileu negeseuon'; - $messages['deleting'] = 'Yn dileu hawliau mynediad...'; $messages['saving'] = 'Yn cadw hawliau mynediad...'; $messages['updatesuccess'] = 'Wedi newid hawliau mynediad yn llwyddiannus'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Methwyd ychwanegu hawliau mynediad'; $messages['deleteconfirm'] = 'Ydych chi\'n siwr eich bod am ddileu hawliau mynediad y defnyddiwr/wyr ddewiswyd?'; $messages['norights'] = 'Nid oes hawliau wedi eu nodi!'; $messages['nouser'] = 'Nid oes enw defnyddiwr wedi ei nodi!'; - ?> diff --git a/plugins/acl/localization/da_DK.inc b/plugins/acl/localization/da_DK.inc index 0830ccd99..bb5ace3ab 100644 --- a/plugins/acl/localization/da_DK.inc +++ b/plugins/acl/localization/da_DK.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Tilgangsrettigheder...'; $labels['anyone'] = 'Alle brugere'; $labels['anonymous'] = 'Gæst (anonym)'; $labels['identifier'] = 'Identifikator'; - $labels['acll'] = 'Slå op'; $labels['aclr'] = 'Læs beskeder'; $labels['acls'] = 'Behold læst-status'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Slet beskeder'; $labels['acle'] = 'Udslet'; $labels['aclx'] = 'Slet mappe'; $labels['acla'] = 'Administrer'; - $labels['aclfull'] = 'Fuld kontrol'; $labels['aclother'] = 'Andet'; $labels['aclread'] = 'Læse'; $labels['aclwrite'] = 'Skrive'; $labels['acldelete'] = 'Slet'; - $labels['shortacll'] = 'Slå op'; $labels['shortaclr'] = 'Læse'; $labels['shortacls'] = 'Behold'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Slet'; $labels['shortacle'] = 'Udslet'; $labels['shortaclx'] = 'Slet mappe'; $labels['shortacla'] = 'Administrer'; - $labels['shortaclother'] = 'Andet'; $labels['shortaclread'] = 'Læse'; $labels['shortaclwrite'] = 'Skrive'; $labels['shortacldelete'] = 'Slet'; - $labels['longacll'] = 'Mappen er synlig på listen og kan abonneres på'; $labels['longaclr'] = 'Mappen kan åbnes for læsning'; $labels['longacls'] = 'Beskeders Læst-flag kan ændres'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Beskeders Slet-flag kan ændres'; $labels['longacle'] = 'Beskeder kan slettes'; $labels['longaclx'] = 'Mappen kan blive slettet eller omdøbt'; $labels['longacla'] = 'Mappen adgangsrettigheder kan ændres'; - $labels['longaclfull'] = 'Fuld kontrol inklusiv mappeadministration'; $labels['longaclread'] = 'Mappen kan åbnes for læsning'; $labels['longaclwrite'] = 'Beskeder kan blive markeret, skrevet eller kopieret til mappen'; $labels['longacldelete'] = 'Beskeder kan slettes'; - $messages['deleting'] = 'Slette rettigheder...'; $messages['saving'] = 'Gemme rettigheder...'; $messages['updatesuccess'] = 'Tilgangsrettighederne blev ændret'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Kunne ikke tilføje tilgangsrettigheder'; $messages['deleteconfirm'] = 'Er du sikker på, at du vil slette tilgangsrettigheder fra de(n) valgte bruger(e)?'; $messages['norights'] = 'Der er ikke specificeret nogle rettigheder!'; $messages['nouser'] = 'Der er ikke angiver et brugernavn!'; - ?> diff --git a/plugins/acl/localization/de_CH.inc b/plugins/acl/localization/de_CH.inc index 4f596678c..872baa5a4 100644 --- a/plugins/acl/localization/de_CH.inc +++ b/plugins/acl/localization/de_CH.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Zugriffsrechte Aktionen...'; $labels['anyone'] = 'Alle Benutzer (anyone)'; $labels['anonymous'] = 'Gäste (anonymous)'; $labels['identifier'] = 'Bezeichnung'; - $labels['acll'] = 'Sichtbar'; $labels['aclr'] = 'Nachrichten lesen'; $labels['acls'] = 'Lesestatus ändern'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Nachrichten als gelöscht markieren'; $labels['acle'] = 'Endgültig löschen'; $labels['aclx'] = 'Ordner löschen'; $labels['acla'] = 'Verwalten'; - $labels['aclfull'] = 'Vollzugriff'; $labels['aclother'] = 'Andere'; $labels['aclread'] = 'Lesen'; $labels['aclwrite'] = 'Schreiben'; $labels['acldelete'] = 'Löschen'; - $labels['shortacll'] = 'Sichtbar'; $labels['shortaclr'] = 'Lesen'; $labels['shortacls'] = 'Behalte'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Löschen'; $labels['shortacle'] = 'Endgültig löschen'; $labels['shortaclx'] = 'Ordner löschen'; $labels['shortacla'] = 'Verwalten'; - $labels['shortaclother'] = 'Andere'; $labels['shortaclread'] = 'Lesen'; $labels['shortaclwrite'] = 'Schreiben'; $labels['shortacldelete'] = 'Löschen'; - $labels['longacll'] = 'Der Ordner ist sichtbar und kann abonniert werden'; $labels['longaclr'] = 'Der Ordnerinhalt kann gelesen werden'; $labels['longacls'] = 'Der Lesestatus von Nachrichten kann geändert werden'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Der "gelöscht" Status von Nachrichten kann geändert wer $labels['longacle'] = 'Als "gelöscht" markierte Nachrichten können entfernt werden'; $labels['longaclx'] = 'Der Ordner kann gelöscht oder umbenannt werden'; $labels['longacla'] = 'Die Zugriffsrechte des Ordners können geändert werden'; - $labels['longaclfull'] = 'Vollzugriff inklusive Ordner-Verwaltung'; $labels['longaclread'] = 'Der Ordnerinhalt kann gelesen werden'; $labels['longaclwrite'] = 'Nachrichten können markiert, an den Ordner gesendet und in den Ordner kopiert oder verschoben werden'; $labels['longacldelete'] = 'Nachrichten können gelöscht werden'; - $messages['deleting'] = 'Zugriffsrechte werden entzogen...'; $messages['saving'] = 'Zugriffsrechte werden gespeichert...'; $messages['updatesuccess'] = 'Zugriffsrechte erfolgreich geändert'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Zugriffsrechte konnten nicht gewährt werden'; $messages['deleteconfirm'] = 'Sind Sie sicher, dass Sie die Zugriffsrechte den ausgewählten Benutzern entziehen möchten?'; $messages['norights'] = 'Es wurden keine Zugriffsrechte ausgewählt!'; $messages['nouser'] = 'Es wurde kein Benutzer ausgewählt!'; - ?> diff --git a/plugins/acl/localization/de_DE.inc b/plugins/acl/localization/de_DE.inc index de8c13a33..864dc7756 100644 --- a/plugins/acl/localization/de_DE.inc +++ b/plugins/acl/localization/de_DE.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Zugriffsrechte Aktionen...'; $labels['anyone'] = 'Alle Benutzer (anyone)'; $labels['anonymous'] = 'Gäste (anonymous)'; $labels['identifier'] = 'Bezeichnung'; - $labels['acll'] = 'Sichtbar'; $labels['aclr'] = 'Nachrichten lesen'; $labels['acls'] = 'Lesestatus ändern'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Nachrichten als gelöscht markieren'; $labels['acle'] = 'Endgültig löschen'; $labels['aclx'] = 'Ordner löschen'; $labels['acla'] = 'Verwalten'; - $labels['aclfull'] = 'Vollzugriff'; $labels['aclother'] = 'Andere'; $labels['aclread'] = 'Lesen'; $labels['aclwrite'] = 'Schreiben'; $labels['acldelete'] = 'Löschen'; - $labels['shortacll'] = 'Sichtbar'; $labels['shortaclr'] = 'Lesen'; $labels['shortacls'] = 'Lesestatus'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Löschen'; $labels['shortacle'] = 'Endgültig löschen'; $labels['shortaclx'] = 'Ordner löschen'; $labels['shortacla'] = 'Verwalten'; - $labels['shortaclother'] = 'Andere'; $labels['shortaclread'] = 'Lesen'; $labels['shortaclwrite'] = 'Schreiben'; $labels['shortacldelete'] = 'Löschen'; - $labels['longacll'] = 'Der Ordner ist sichtbar und kann abonniert werden'; $labels['longaclr'] = 'Der Ordnerinhalt kann gelesen werden'; $labels['longacls'] = 'Der Lesestatus von Nachrichten kann geändert werden'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Der "gelöscht" Status von Nachrichten kann geändert wer $labels['longacle'] = 'Als "gelöscht" markiert Nachrichten können gelöscht werden.'; $labels['longaclx'] = 'Der Ordner kann gelöscht oder umbenannt werden'; $labels['longacla'] = 'Die Zugriffsrechte des Ordners können geändert werden'; - $labels['longaclfull'] = 'Vollzugriff inklusive Ordner-Verwaltung'; $labels['longaclread'] = 'Der Ordnerinhalt kann gelesen werden'; $labels['longaclwrite'] = 'Nachrichten können markiert, an den Ordner gesendet und in den Ordner kopiert oder verschoben werden'; $labels['longacldelete'] = 'Nachrichten können gelöscht werden'; - $messages['deleting'] = 'Zugriffsrechte werden entzogen...'; $messages['saving'] = 'Zugriffsrechte werden gewährt...'; $messages['updatesuccess'] = 'Zugriffsrechte erfolgreich geändert'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Zugriffsrechte konnten nicht gewährt werden'; $messages['deleteconfirm'] = 'Sind Sie sicher, daß Sie die Zugriffsrechte den ausgewählten Benutzern entziehen möchten?'; $messages['norights'] = 'Es wurden keine Zugriffsrechte ausgewählt!'; $messages['nouser'] = 'Es wurde kein Benutzer ausgewählt!'; - ?> diff --git a/plugins/acl/localization/en_GB.inc b/plugins/acl/localization/en_GB.inc index e1b33fbfc..35bbf3fec 100644 --- a/plugins/acl/localization/en_GB.inc +++ b/plugins/acl/localization/en_GB.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Access right actions...'; $labels['anyone'] = 'All users (anyone)'; $labels['anonymous'] = 'Guests (anonymous)'; $labels['identifier'] = 'Identifier'; - $labels['acll'] = 'Look-up'; $labels['aclr'] = 'Read messages'; $labels['acls'] = 'Keep Seen state'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Delete messages'; $labels['acle'] = 'Expunge'; $labels['aclx'] = 'Delete folder'; $labels['acla'] = 'Administer'; - $labels['aclfull'] = 'Full control'; $labels['aclother'] = 'Other'; $labels['aclread'] = 'Read'; $labels['aclwrite'] = 'Write'; $labels['acldelete'] = 'Delete'; - $labels['shortacll'] = 'Look-up'; $labels['shortaclr'] = 'Read'; $labels['shortacls'] = 'Keep'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Delete'; $labels['shortacle'] = 'Expunge'; $labels['shortaclx'] = 'Folder delete'; $labels['shortacla'] = 'Administer'; - $labels['shortaclother'] = 'Other'; $labels['shortaclread'] = 'Read'; $labels['shortaclwrite'] = 'Write'; $labels['shortacldelete'] = 'Delete'; - $labels['longacll'] = 'The folder is visible on lists and can be subscribed to.'; $labels['longaclr'] = 'The folder can be opened for reading'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = 'Messages can be expunged'; $labels['longaclx'] = 'The folder can be deleted or renamed'; $labels['longacla'] = 'The folder access rights can be changed'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'The folder can be opened for reading'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messages can be deleted'; - $messages['deleting'] = 'Deleting access rights...'; $messages['saving'] = 'Saving access rights...'; $messages['updatesuccess'] = 'Successfully changed access rights'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Unable to add access rights'; $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; $messages['norights'] = 'No rights has been specified!'; $messages['nouser'] = 'No username has been specified!'; - ?> diff --git a/plugins/acl/localization/eo.inc b/plugins/acl/localization/eo.inc index ddfacd6f8..6471244c2 100644 --- a/plugins/acl/localization/eo.inc +++ b/plugins/acl/localization/eo.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Agoj de atingrajtoj...'; $labels['anyone'] = 'Ĉiuj uzantoj (iu ajn)'; $labels['anonymous'] = 'Gasto (sennome)'; $labels['identifier'] = 'Identigilo'; - $labels['acll'] = 'Elserĉo'; $labels['aclr'] = 'Legi mesaĝojn'; $labels['acls'] = 'Manteni legitan staton'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Forigi mesaĝojn'; $labels['acle'] = 'Expunge'; $labels['aclx'] = 'Forigi dosierujon'; $labels['acla'] = 'Administri'; - $labels['aclfull'] = 'Plena kontrolo'; $labels['aclother'] = 'Alia'; $labels['aclread'] = 'Legi'; $labels['aclwrite'] = 'Skribi'; $labels['acldelete'] = 'Forigi'; - $labels['shortacll'] = 'Elserĉo'; $labels['shortaclr'] = 'Legi'; $labels['shortacls'] = 'Manteni'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Forigi'; $labels['shortacle'] = 'Expunge'; $labels['shortaclx'] = 'Forigo de dosierujo'; $labels['shortacla'] = 'Administri'; - $labels['shortaclother'] = 'Alia'; $labels['shortaclread'] = 'Legi'; $labels['shortaclwrite'] = 'Skribi'; $labels['shortacldelete'] = 'Forigi'; - $labels['longacll'] = 'La dosierujo videblas en listoj kaj oni povas aboni al ĝi'; $labels['longaclr'] = 'La dosierujo malfermeblas por legado'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = 'Messages can be expunged'; $labels['longaclx'] = 'The folder can be deleted or renamed'; $labels['longacla'] = 'The folder access rights can be changed'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'La dosierujo malfermeblas por legado'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messages can be deleted'; - $messages['deleting'] = 'Deleting access rights...'; $messages['saving'] = 'Saving access rights...'; $messages['updatesuccess'] = 'Successfully changed access rights'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Unable to add access rights'; $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; $messages['norights'] = 'No rights has been specified!'; $messages['nouser'] = 'No username has been specified!'; - ?> diff --git a/plugins/acl/localization/es_ES.inc b/plugins/acl/localization/es_ES.inc index 62f89dcea..e578d5e6a 100644 --- a/plugins/acl/localization/es_ES.inc +++ b/plugins/acl/localization/es_ES.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Acciones sobre los permisos de acceso…'; $labels['anyone'] = 'Todos los usuarios (cualquiera)'; $labels['anonymous'] = 'Invitados (anónimo)'; $labels['identifier'] = 'Identificador'; - $labels['acll'] = 'Búsqueda'; $labels['aclr'] = 'Leer mensajes'; $labels['acls'] = 'Mantener como "Leído'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Borrar mensajes'; $labels['acle'] = 'Expurgar'; $labels['aclx'] = 'Borrar carpeta'; $labels['acla'] = 'Administrar'; - $labels['aclfull'] = 'Control total'; $labels['aclother'] = 'Otro'; $labels['aclread'] = 'Leer'; $labels['aclwrite'] = 'Escribir'; $labels['acldelete'] = 'Borrar'; - $labels['shortacll'] = 'Búsqueda'; $labels['shortaclr'] = 'Leer'; $labels['shortacls'] = 'Conservar'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Borrar'; $labels['shortacle'] = 'Expurgar'; $labels['shortaclx'] = 'Borrar carpeta'; $labels['shortacla'] = 'Administrar'; - $labels['shortaclother'] = 'Otro'; $labels['shortaclread'] = 'Leer'; $labels['shortaclwrite'] = 'Escribir'; $labels['shortacldelete'] = 'Borrar'; - $labels['longacll'] = 'La carpeta es visible en las listas y es posible suscribirse a ella'; $labels['longaclr'] = 'Se puede abrir la carpeta para leer'; $labels['longacls'] = 'Se pueden cambiar los mensajes con la etiqueta "Leído'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'No se pueden cambiar los mensajes etiquetados como "Borra $labels['longacle'] = 'No se pueden expurgar los mensajes'; $labels['longaclx'] = 'La carpeta se puede borrar o renombrar'; $labels['longacla'] = 'Se pueden cambiar los permisos de acceso'; - $labels['longaclfull'] = 'Control total, incluyendo la gestión de carpetas'; $labels['longaclread'] = 'Se puede abrir la carpeta para leer'; $labels['longaclwrite'] = 'Se pueden etiquetar, escribir o copiar mensajes a la carpeta'; $labels['longacldelete'] = 'Los mensajes se pueden borrar'; - $messages['deleting'] = 'Borrando permisos de acceso…'; $messages['saving'] = 'Guardando permisos de acceso…'; $messages['updatesuccess'] = 'Se han cambiado los permisos de acceso'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'No se han podido añadir los permisos de acceso'; $messages['deleteconfirm'] = '¿Seguro que quiere borrar los permisos de acceso del usuairo seleccionado?'; $messages['norights'] = 'No se han especificado los permisos de acceso'; $messages['nouser'] = 'No se ha especificado un nombre de usuario'; - ?> diff --git a/plugins/acl/localization/et_EE.inc b/plugins/acl/localization/et_EE.inc index ceec4cd0c..531d311cc 100644 --- a/plugins/acl/localization/et_EE.inc +++ b/plugins/acl/localization/et_EE.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Ligipääsuõiguste toimingud...'; $labels['anyone'] = 'Kõik kasutajad'; $labels['anonymous'] = 'Külalised (anonüümsed)'; $labels['identifier'] = 'Tuvastaja'; - $labels['acll'] = 'Lookup'; $labels['aclr'] = 'Lugeda kirju'; $labels['acls'] = 'Keep Seen state'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Kustutada kirju'; $labels['acle'] = 'Eemalda'; $labels['aclx'] = 'Kustutada kausta'; $labels['acla'] = 'Administreerida'; - $labels['aclfull'] = 'Täis kontroll'; $labels['aclother'] = 'Muu'; $labels['aclread'] = 'Loe'; $labels['aclwrite'] = 'Kirjuta'; $labels['acldelete'] = 'Kustuta'; - $labels['shortacll'] = 'Lookup'; $labels['shortaclr'] = 'Loe'; $labels['shortacls'] = 'Säilita'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Kustuta'; $labels['shortacle'] = 'Eemalda'; $labels['shortaclx'] = 'Kausta kustutamine'; $labels['shortacla'] = 'Administreerida'; - $labels['shortaclother'] = 'Muu'; $labels['shortaclread'] = 'Loe'; $labels['shortaclwrite'] = 'Kirjuta'; $labels['shortacldelete'] = 'Kustuta'; - $labels['longacll'] = 'See kaust on nimekirjas nähtav ja seda saab tellida'; $labels['longaclr'] = 'Kausta saab lugemiseks avada'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Kirja kustutamis lippu saab muuta'; $labels['longacle'] = 'Kirju saab eemaldada'; $labels['longaclx'] = 'Seda kausta ei saa kustutada ega ümber nimetada'; $labels['longacla'] = 'Selle kausta ligipääsuõigusi saab muuta'; - $labels['longaclfull'] = 'Täielik kontroll koos kaustade haldamisega'; $labels['longaclread'] = 'Kausta saab lugemiseks avada'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Kirju saab kustutada'; - $messages['deleting'] = 'Ligipääsuõiguste kustutamine...'; $messages['saving'] = 'Ligipääsuõiguste salvestamine...'; $messages['updatesuccess'] = 'Ligipääsuõigused on muudetud'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Ligipääsuõiguste andmine nurjus'; $messages['deleteconfirm'] = 'Oled sa kindel, et sa soovid valitudkasutaja(te) õiguseid kustutada?'; $messages['norights'] = 'Õigusi pole määratud!'; $messages['nouser'] = 'Kasutajanime pole määratud!'; - ?> diff --git a/plugins/acl/localization/fa_IR.inc b/plugins/acl/localization/fa_IR.inc index 2face4fba..e2859ebf2 100644 --- a/plugins/acl/localization/fa_IR.inc +++ b/plugins/acl/localization/fa_IR.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'فعالیت‌های مجوز دسترسی...'; $labels['anyone'] = 'همه‌ی کاربران (هر کسی)'; $labels['anonymous'] = 'مهمان‌ها (ناشناس)'; $labels['identifier'] = 'شناساگر'; - $labels['acll'] = 'یافتن'; $labels['aclr'] = 'پیغام‌های خوانده شده'; $labels['acls'] = 'نگه داشتن حالت بازدید'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'پاک کردن پیغام‌ها'; $labels['acle'] = 'پاک کردن'; $labels['aclx'] = 'حذف پوشه'; $labels['acla'] = 'مدیریت کردن'; - $labels['aclfull'] = 'کنترل کامل'; $labels['aclother'] = 'دیگر'; $labels['aclread'] = 'خواندن'; $labels['aclwrite'] = 'نوشتن'; $labels['acldelete'] = 'حذف'; - $labels['shortacll'] = 'یافتن'; $labels['shortaclr'] = 'خواندن'; $labels['shortacls'] = 'نگه داشتن'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'حذف'; $labels['shortacle'] = 'پاک کردن'; $labels['shortaclx'] = 'حذف کردن پوشه'; $labels['shortacla'] = 'مدیریت کردن'; - $labels['shortaclother'] = 'دیگر'; $labels['shortaclread'] = 'خواندن'; $labels['shortaclwrite'] = 'نوشتن'; $labels['shortacldelete'] = 'حذف'; - $labels['longacll'] = 'پوشه را می‌توان در فهرست‌ها دید و در آن مشترک شد'; $labels['longaclr'] = 'پوشه می‌تواند برای خوانده شدن باز شود'; $labels['longacls'] = 'پرچم بازدید پیغام‌ها می‌تواند تغییر داده شود'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'پرچم حذف پیغام‌ها می‌تواند تغ $labels['longacle'] = 'پیغام‌ها می‌توانند حذف شوند'; $labels['longaclx'] = 'پوشه می‌تواند حذف یا تغییر نام داده شود'; $labels['longacla'] = 'قوانین دسترسی پوشه می‌تواند تغییر داده شود'; - $labels['longaclfull'] = 'کنترل کامل شما مدیریت پوشه'; $labels['longaclread'] = 'پوشه می‌تواند برای خواندن باز شود'; $labels['longaclwrite'] = 'پیغام‌ها می‌توانند علامتگذاری، نوشته و یا کپی شوند در پوشه'; $labels['longacldelete'] = 'پیغام‌ها می‌توانند حذف شوند'; - $messages['deleting'] = 'حذف کردن قوانین دسترسی...'; $messages['saving'] = 'ذخیره قوانین دسترسی...'; $messages['updatesuccess'] = 'قوانین دسترسی با موفقیت تغییر کردند'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'ناتوانی در اضافه کردن قوانین $messages['deleteconfirm'] = 'آیا شما مطمئن هستید که می‌خواهید قوانین دسترسی را برای کاربر(ان) انتخاب شده حذف نمایید؟'; $messages['norights'] = 'هیچ قانونی مشخص نشده است!'; $messages['nouser'] = 'هیج نام‌کاربری‌ای مشخص نشده است!'; - ?> diff --git a/plugins/acl/localization/fi_FI.inc b/plugins/acl/localization/fi_FI.inc index e2b6899fa..9de9162ad 100644 --- a/plugins/acl/localization/fi_FI.inc +++ b/plugins/acl/localization/fi_FI.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Access right actions...'; $labels['anyone'] = 'Kaikki käyttäjät (kuka tahansa)'; $labels['anonymous'] = 'Vieraat (anonyymit)'; $labels['identifier'] = 'Identifier'; - $labels['acll'] = 'Lookup'; $labels['aclr'] = 'Read messages'; $labels['acls'] = 'Keep Seen state'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Delete messages'; $labels['acle'] = 'Expunge'; $labels['aclx'] = 'Delete folder'; $labels['acla'] = 'Administer'; - $labels['aclfull'] = 'Full control'; $labels['aclother'] = 'Other'; $labels['aclread'] = 'Read'; $labels['aclwrite'] = 'Write'; $labels['acldelete'] = 'Delete'; - $labels['shortacll'] = 'Lookup'; $labels['shortaclr'] = 'Read'; $labels['shortacls'] = 'Keep'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Poista'; $labels['shortacle'] = 'Expunge'; $labels['shortaclx'] = 'Folder delete'; $labels['shortacla'] = 'Administer'; - $labels['shortaclother'] = 'Muu'; $labels['shortaclread'] = 'Read'; $labels['shortaclwrite'] = 'Write'; $labels['shortacldelete'] = 'Delete'; - $labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; $labels['longaclr'] = 'The folder can be opened for reading'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = 'Messages can be expunged'; $labels['longaclx'] = 'The folder can be deleted or renamed'; $labels['longacla'] = 'The folder access rights can be changed'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'The folder can be opened for reading'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messages can be deleted'; - $messages['deleting'] = 'Deleting access rights...'; $messages['saving'] = 'Saving access rights...'; $messages['updatesuccess'] = 'Successfully changed access rights'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Unable to add access rights'; $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; $messages['norights'] = 'No rights has been specified!'; $messages['nouser'] = 'No username has been specified!'; - ?> diff --git a/plugins/acl/localization/fr_FR.inc b/plugins/acl/localization/fr_FR.inc index 4ac90b6d2..ed26e86ee 100644 --- a/plugins/acl/localization/fr_FR.inc +++ b/plugins/acl/localization/fr_FR.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Action sur les droits d\'accès...'; $labels['anyone'] = 'Tous les utilisateurs (tout le monde)'; $labels['anonymous'] = 'Invités (anonymes)'; $labels['identifier'] = 'Identifiant'; - $labels['acll'] = 'Consultation'; $labels['aclr'] = 'Lire les messages'; $labels['acls'] = 'Garder l\'état vu'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Supprimer des messages'; $labels['acle'] = 'Purger'; $labels['aclx'] = 'Supprimer un dossier'; $labels['acla'] = 'Administrer'; - $labels['aclfull'] = 'Contrôle total'; $labels['aclother'] = 'Autre'; $labels['aclread'] = 'Lecture'; $labels['aclwrite'] = 'Écriture'; $labels['acldelete'] = 'Translation can be either \'Supprimer\' or \'Effacer\' depends of the whole context.'; - $labels['shortacll'] = 'Consultation'; $labels['shortaclr'] = 'Lecture'; $labels['shortacls'] = 'Conserver'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Translation can be either \'Supprimer\' or \'Effacer\' $labels['shortacle'] = 'Purger'; $labels['shortaclx'] = 'Supprimer un dossier'; $labels['shortacla'] = 'Administrer'; - $labels['shortaclother'] = 'Autre'; $labels['shortaclread'] = 'Lecture'; $labels['shortaclwrite'] = 'Écriture'; $labels['shortacldelete'] = 'Translation can be either \'Supprimer\' or \'Effacer\' depends of the whole context.'; - $labels['longacll'] = 'Ce dossier est visible dans les listes et peut être souscrit'; $labels['longaclr'] = 'Le dossier peut-être ouvert pour lecture'; $labels['longacls'] = 'L\'étiquette Lu peut-être changée'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'L\'étiquette de suppression des messages peut-être modi $labels['longacle'] = 'Les messages peuvent-être purgés'; $labels['longaclx'] = 'Le dossier peut-être supprimé ou renommé'; $labels['longacla'] = 'Les droits d\'accès au dossier peuvent-être modifiés'; - $labels['longaclfull'] = 'Contrôle total, dossier d\'administration inclus'; $labels['longaclread'] = 'Le dossier peut-être ouvert pour lecture'; $labels['longaclwrite'] = 'Les messages peuvent-être marqué, écrit ou copié dans ce dossier'; $labels['longacldelete'] = 'Les messages peuvent-être supprimé'; - $messages['deleting'] = 'Suppression des droits d\'accès…'; $messages['saving'] = 'Sauvegarde des droits d\'accès…'; $messages['updatesuccess'] = 'Les droits d\'accès ont été changé avec succès'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Impossible d\'ajouter des droits d\'accès'; $messages['deleteconfirm'] = 'Êtes-vous sûr de vouloir retirer les droits d\'accès du/des utilisateur(s) sélectionné ?'; $messages['norights'] = 'Aucun droit n\'a été spécifié !'; $messages['nouser'] = 'Aucun nom d\'utilisateur n\'a été spécifié !'; - ?> diff --git a/plugins/acl/localization/gl_ES.inc b/plugins/acl/localization/gl_ES.inc index 2349975de..f2aee348d 100644 --- a/plugins/acl/localization/gl_ES.inc +++ b/plugins/acl/localization/gl_ES.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Accións sobre os dereitos de acceso...'; $labels['anyone'] = 'Tódolos usuarios (calquera)'; $labels['anonymous'] = 'Invitados (anónimo)'; $labels['identifier'] = 'Identificador'; - $labels['acll'] = 'Bloquear'; $labels['aclr'] = 'Ler mensaxes'; $labels['acls'] = 'Manter o estado coma visto'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Borrar mensaxes'; $labels['acle'] = 'Expurga'; $labels['aclx'] = 'Eliminar carpeta'; $labels['acla'] = 'Administrar'; - $labels['aclfull'] = 'Control total'; $labels['aclother'] = 'Outros'; $labels['aclread'] = 'Lectura'; $labels['aclwrite'] = 'Escritura'; $labels['acldelete'] = 'Borrado'; - $labels['shortacll'] = 'Busca'; $labels['shortaclr'] = 'Ler'; $labels['shortacls'] = 'Manter'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Borrar'; $labels['shortacle'] = 'Expurga'; $labels['shortaclx'] = 'Borrar cartafol'; $labels['shortacla'] = 'Administrar'; - $labels['shortaclother'] = 'Outros'; $labels['shortaclread'] = 'Lectura'; $labels['shortaclwrite'] = 'Escritura'; $labels['shortacldelete'] = 'Borrado'; - $labels['longacll'] = 'O cartafol é visible e pode ser suscrito'; $labels['longaclr'] = 'Pódese abrir o cartafol para lectura'; $labels['longacls'] = 'Pódese mudar o marcador de Mensaxes Enviadas'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Pódense mudar as mensaxes coa marca de Borrado'; $labels['longacle'] = 'Pódense eliminar as mensaxes'; $labels['longaclx'] = 'Pódese borrar ou renomear o cartafol'; $labels['longacla'] = 'Pódense mudar os dereitos de acceso ao cartafol'; - $labels['longaclfull'] = 'Control total inclúe administración de cartafois'; $labels['longaclread'] = 'Pódese abrir o cartafol para lectura'; $labels['longaclwrite'] = 'Pódense marcar, escribir ou copiar as mensaxes no cartafol'; $labels['longacldelete'] = 'Pódense borrar as mensaxes'; - $messages['deleting'] = 'Borrando dereitos de acceso...'; $messages['saving'] = 'Gardando dereitos de acceso...'; $messages['updatesuccess'] = 'Mudados con éxito os dereitos de acceso'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Non se poden engadir dereitos de acceso'; $messages['deleteconfirm'] = 'De certo quere eliminar os dereitos de acceso do usuario(s) escollido?'; $messages['norights'] = 'Non se especificaron permisos!'; $messages['nouser'] = 'Non se especificou o nome de usuario!'; - ?> diff --git a/plugins/acl/localization/he_IL.inc b/plugins/acl/localization/he_IL.inc index 9ca305d32..2314153b2 100644 --- a/plugins/acl/localization/he_IL.inc +++ b/plugins/acl/localization/he_IL.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'פעולות על זכויות גישה...'; $labels['anyone'] = 'כל המשתמשים (כל אחד)'; $labels['anonymous'] = 'אורחים (אנונימי)'; $labels['identifier'] = 'מזהה'; - $labels['acll'] = 'חיפוש'; $labels['aclr'] = 'קריאת הודעות'; $labels['acls'] = 'שמירה על סטטוס נראה'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'מחיקת הודעות'; $labels['acle'] = 'ניקוי רשומות שבוטלו'; $labels['aclx'] = 'מחיקת תיקיה'; $labels['acla'] = 'מנהל'; - $labels['aclfull'] = 'שליטה מלאה'; $labels['aclother'] = 'אחר'; $labels['aclread'] = 'קריאה'; $labels['aclwrite'] = 'כתיבה'; $labels['acldelete'] = 'מחיקה'; - $labels['shortacll'] = 'חיפוש'; $labels['shortaclr'] = 'קריאה'; $labels['shortacls'] = 'להשאיר'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'מחיקה'; $labels['shortacle'] = 'ניקוי רשומות שבוטלו'; $labels['shortaclx'] = 'מחיקת תיקיה'; $labels['shortacla'] = 'מנהל'; - $labels['shortaclother'] = 'אחר'; $labels['shortaclread'] = 'קריאה'; $labels['shortaclwrite'] = 'כתיבה'; $labels['shortacldelete'] = 'מחיקה'; - $labels['longacll'] = 'התיקיה תראה ברשימות וניתן יהיה להרשם אליה'; $labels['longaclr'] = 'ניתן לפתוח את התיקיה ולקרוא בה'; $labels['longacls'] = 'ניתן לשנות דגל נראה בהודעות'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'ניתן לשנות דגל נמחק של הודעות'; $labels['longacle'] = 'ניתן לנקות הודעות שסומנו כמבוטלות'; $labels['longaclx'] = 'ניתן למחוק תיקיה זו או לשנות שמה'; $labels['longacla'] = 'ניתן לשנות זכויות גישה של תיקיה זו'; - $labels['longaclfull'] = 'שליטה מלאה כולל ניהול התיקיה'; $labels['longaclread'] = 'ניתן לפתוח את התיקיה ולקרוא בה'; $labels['longaclwrite'] = 'ניתן לסמן, לכתוב או להעתיק הודעות לתיקיה זו'; $labels['longacldelete'] = 'ניתן למחוק הודעות'; - $messages['deleting'] = 'זכויות גישה נמחקות...'; $messages['saving'] = 'זכויות גישה נשמרות...'; $messages['updatesuccess'] = 'זכויות גישה שונו בהצלחה'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'לא ניתן להוסיף זכויות גישה'; $messages['deleteconfirm'] = 'האם ודאי שברצונך להסיר זכויות גישה של המשתמש(ים) שנבחרו?'; $messages['norights'] = 'לא צוינו זכויות גישה כלשהן !'; $messages['nouser'] = 'לא צוין שם משתמש כלשהו!'; - ?> diff --git a/plugins/acl/localization/hu_HU.inc b/plugins/acl/localization/hu_HU.inc index adc6ad8b3..d6905e714 100644 --- a/plugins/acl/localization/hu_HU.inc +++ b/plugins/acl/localization/hu_HU.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Hozzáférési jogok müveletei..'; $labels['anyone'] = 'Minden felhasználó (bárki)'; $labels['anonymous'] = 'Vendégek (névtelen)'; $labels['identifier'] = 'Azonosító'; - $labels['acll'] = 'Keresés'; $labels['aclr'] = 'Üzenetek olvasása'; $labels['acls'] = 'Olvasottsági állapot megtartása'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Üzenetek törlése'; $labels['acle'] = 'Törölt üzenetek eltávolítása'; $labels['aclx'] = 'Mappa törlés'; $labels['acla'] = 'Adminisztrátor'; - $labels['aclfull'] = 'Teljes hozzáférés'; $labels['aclother'] = 'Egyéb'; $labels['aclread'] = 'Olvasás'; $labels['aclwrite'] = 'Írás'; $labels['acldelete'] = 'Törlés'; - $labels['shortacll'] = 'Keresés'; $labels['shortaclr'] = 'Olvasás'; $labels['shortacls'] = 'Megtartás'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Törlés'; $labels['shortacle'] = 'Törölt üzenetek eltávolítása'; $labels['shortaclx'] = 'Mappa törlése'; $labels['shortacla'] = 'Adminisztrátor'; - $labels['shortaclother'] = 'Egyéb'; $labels['shortaclread'] = 'Olvasás'; $labels['shortaclwrite'] = 'Írás'; $labels['shortacldelete'] = 'Törlés'; - $labels['longacll'] = 'A mappa látható a listán és fel tudsz rá iratkozni.'; $labels['longaclr'] = 'A mappa olvasásra megnyitható'; $labels['longacls'] = 'Az üzenet megtekintési állapota módosítható'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Üzenet törölve jelző módositható.'; $labels['longacle'] = 'Az üzenetek véglegesen eltávolíthatóak'; $labels['longaclx'] = 'A mappa törölhető vagy átnevezhető'; $labels['longacla'] = 'A mappa hozzáférési jogai módosíthatóak'; - $labels['longaclfull'] = 'Teljes hozzáférés beleértve a mappák kezelését'; $labels['longaclread'] = 'A mappa olvasásra megnyitható'; $labels['longaclwrite'] = 'Az üzenetek megjelölhetök, irhatók és másolhatók ebbe a mappába'; $labels['longacldelete'] = 'Az üzenetek törölhetőek'; - $messages['deleting'] = 'Hozzáférési jogok törlése...'; $messages['saving'] = 'Hozzáférési jogok mentése...'; $messages['updatesuccess'] = 'A hozzáférési jogok sikeresen módosultak.'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Nem sikerült a hozzáférési jogok hozzáadása'; $messages['deleteconfirm'] = 'Biztosan eltávolítja a kiválasztott felhasználó(k) hozzáférési jogait?'; $messages['norights'] = 'Nincsennek jogok megadva.'; $messages['nouser'] = 'A felhasználónév nincs megadva.'; - ?> diff --git a/plugins/acl/localization/hy_AM.inc b/plugins/acl/localization/hy_AM.inc index d39c19a46..10fad0643 100644 --- a/plugins/acl/localization/hy_AM.inc +++ b/plugins/acl/localization/hy_AM.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Մուտքի իրավունքների գործողությ $labels['anyone'] = 'Բոլոր օգտվողները (ցանկացած)'; $labels['anonymous'] = 'Հյուրերը (անանուն)'; $labels['identifier'] = 'Նկարագրիչ'; - $labels['acll'] = 'Փնտրում'; $labels['aclr'] = 'Կարդալ հաղորդագրությունները'; $labels['acls'] = 'Պահպանել դիտման կարգավիճակը'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Ջնջել հաղորդագրությունները'; $labels['acle'] = 'Հեռացնել'; $labels['aclx'] = 'Ջնջել պանակը'; $labels['acla'] = 'Կառավարել'; - $labels['aclfull'] = 'Լրիվ վերահսկում'; $labels['aclother'] = 'Այլ'; $labels['aclread'] = 'Կարդալ'; $labels['aclwrite'] = 'Գրել'; $labels['acldelete'] = 'Ջնջել'; - $labels['shortacll'] = 'Փնտրում'; $labels['shortaclr'] = 'Կարդալ'; $labels['shortacls'] = 'Պահել'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Ջնջել'; $labels['shortacle'] = 'Հեռացնել'; $labels['shortaclx'] = 'Պանակի ջնջում'; $labels['shortacla'] = 'Կառավարել'; - $labels['shortaclother'] = 'Այլ'; $labels['shortaclread'] = 'Կարդալ'; $labels['shortaclwrite'] = 'Գրել'; $labels['shortacldelete'] = 'Ջնջել'; - $labels['longacll'] = 'Պանակը երևում է ցուցակներում և նրան հնարավոր է բաժանորդագրվել'; $labels['longaclr'] = 'Պանակը կարող է բացվել ընթերցման համար'; $labels['longacls'] = 'Տեսված հաղորդագրությունների նշումը կարող է փոփոխվել'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Հաղորդագրությունների Ջնջել նշ $labels['longacle'] = 'Հաղորդագրությունները կարող են հեռացվել'; $labels['longaclx'] = 'Պանակը կարող է ջնջվել կամ վերանվանվել'; $labels['longacla'] = 'Պանակի մուտքի իրավունքները կարող են փոփոխվել'; - $labels['longaclfull'] = 'Լրիվ վերահսկում ներառյալ պանակների կառավարումը'; $labels['longaclread'] = 'Պանակը կարող է բացվել ընթերցման համար'; $labels['longaclwrite'] = 'Հաղորդագրությունները կարող են նշվել, ստեղծվել և պատճենվել այս պանակում'; $labels['longacldelete'] = 'Հաղորդագրությունները կարող են ջնջվել'; - $messages['deleting'] = 'Ջնջվում են մուտքի իրավունքները…'; $messages['saving'] = 'Պահպանվում են մուտքի իրավունքները…'; $messages['updatesuccess'] = 'Մուտքի իրավունքները բարեհաջող փոփոխվեցին։'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Մուտքի իրավունքները ավելացո $messages['deleteconfirm'] = 'Դուք վստա՞հ էք, որ ցանկանում եք նշված օգտվողներին զրկել մուտքի իրավունքներից։'; $messages['norights'] = 'Ոչ մի իրավունք չի՛ նշվել։'; $messages['nouser'] = 'Օգտվողի անունը չի՛ նշվել։'; - ?> diff --git a/plugins/acl/localization/id_ID.inc b/plugins/acl/localization/id_ID.inc index 8e8afc0b8..a04a0943a 100644 --- a/plugins/acl/localization/id_ID.inc +++ b/plugins/acl/localization/id_ID.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Aksi hak akses...'; $labels['anyone'] = 'Semua pengguna (siapa saja)'; $labels['anonymous'] = 'Para tamu (anonim)'; $labels['identifier'] = 'Yang mengidentifikasi'; - $labels['acll'] = 'Cari'; $labels['aclr'] = 'Baca pesan'; $labels['acls'] = 'Jaga status terbaca'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Hapus pesan'; $labels['acle'] = 'Menghapus'; $labels['aclx'] = 'Hapus folder'; $labels['acla'] = 'Kelola'; - $labels['aclfull'] = 'Kendali penuh'; $labels['aclother'] = 'Lainnya'; $labels['aclread'] = 'Baca'; $labels['aclwrite'] = 'Tulis'; $labels['acldelete'] = 'Hapus'; - $labels['shortacll'] = 'Cari'; $labels['shortaclr'] = 'Baca'; $labels['shortacls'] = 'Simpan'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Hapus'; $labels['shortacle'] = 'Buang'; $labels['shortaclx'] = 'Hapus folder'; $labels['shortacla'] = 'Kelola'; - $labels['shortaclother'] = 'Lainnya'; $labels['shortaclread'] = 'Baca'; $labels['shortaclwrite'] = 'Tulis'; $labels['shortacldelete'] = 'Hapus'; - $labels['longacll'] = 'Folder terlihat di daftar dan dapat dijadikan langganan'; $labels['longaclr'] = 'Folder dapat dibuka untuk dibaca'; $labels['longacls'] = 'Tanda pesan terbaca dapat diubah'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Tanda hapus pesan dapat diubah'; $labels['longacle'] = 'Pesan dapat dibuang'; $labels['longaclx'] = 'Folder dapat dihapus atau diubah namanya'; $labels['longacla'] = 'Hak akses folder dapat diubah'; - $labels['longaclfull'] = 'Kendali penuh penuh termasuk administrasi'; $labels['longaclread'] = 'Folder dapat dibuka untuk dibaca'; $labels['longaclwrite'] = 'Pesan dapat ditandai, ditulis atau disalin kedalam folder'; $labels['longacldelete'] = 'Pesan dapat dihapus'; - $messages['deleting'] = 'Menghapus hak akses...'; $messages['saving'] = 'Menyimpan hak akses...'; $messages['updatesuccess'] = 'Hak akses berhasil diubah'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Tidak dapat menambah hak akses'; $messages['deleteconfirm'] = 'Apakah Anda yakin ingin menghapus hak akses dari user terpilih?'; $messages['norights'] = 'Hak belum ditentukan!'; $messages['nouser'] = 'Username belum ditentukan!'; - ?> diff --git a/plugins/acl/localization/it_IT.inc b/plugins/acl/localization/it_IT.inc index 11d905387..64756091a 100644 --- a/plugins/acl/localization/it_IT.inc +++ b/plugins/acl/localization/it_IT.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Azioni permessi d\'accesso...'; $labels['anyone'] = 'Tutti gli utenti'; $labels['anonymous'] = 'Osptiti (anonimi)'; $labels['identifier'] = 'Identificatore'; - $labels['acll'] = 'Ricerca'; $labels['aclr'] = 'Leggi messaggi'; $labels['acls'] = 'Mantieni lo stato Visto'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Elimina messaggi'; $labels['acle'] = 'Elimina'; $labels['aclx'] = 'Elimina cartella'; $labels['acla'] = 'Amministra'; - $labels['aclfull'] = 'Controllo completo'; $labels['aclother'] = 'Altro'; $labels['aclread'] = 'Lettura'; $labels['aclwrite'] = 'Scrittura'; $labels['acldelete'] = 'Elimina'; - $labels['shortacll'] = 'Ricerca'; $labels['shortaclr'] = 'Lettura'; $labels['shortacls'] = 'Mantieni'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Elimina'; $labels['shortacle'] = 'Elimina'; $labels['shortaclx'] = 'Elimina cartella'; $labels['shortacla'] = 'Amministra'; - $labels['shortaclother'] = 'Altro'; $labels['shortaclread'] = 'Lettura'; $labels['shortaclwrite'] = 'Scrittura'; $labels['shortacldelete'] = 'Elimina'; - $labels['longacll'] = 'La cartella è visibile sulle liste e può essere sottoscritta'; $labels['longaclr'] = 'Questa cartella può essere aperta in lettura'; $labels['longacls'] = 'Il flag Messaggio Visto può essere cambiato'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Il flag Messaggio Eliminato può essere cambiato'; $labels['longacle'] = 'I messaggi possono essere cancellati'; $labels['longaclx'] = 'La cartella può essere eliminata o rinominata'; $labels['longacla'] = 'I diritti di accesso della cartella possono essere cambiati'; - $labels['longaclfull'] = 'Controllo completo incluso cartella di amministrazione'; $labels['longaclread'] = 'Questa cartella può essere aperta in lettura'; $labels['longaclwrite'] = 'I messaggi possono essere marcati, scritti o copiati nella cartella'; $labels['longacldelete'] = 'I messaggi possono essere eliminati'; - $messages['deleting'] = 'Sto eliminando i diritti di accesso...'; $messages['saving'] = 'Sto salvando i diritti di accesso...'; $messages['updatesuccess'] = 'I diritti d\'accesso sono stati cambiati'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Impossibile aggiungere i diritti d\'accesso'; $messages['deleteconfirm'] = 'Sei sicuro, vuoi rimuovere i diritti d\'accesso degli utenti selezionati?'; $messages['norights'] = 'Nessun diritto specificato!'; $messages['nouser'] = 'Lo username non è stato specificato!'; - ?> diff --git a/plugins/acl/localization/ja_JP.inc b/plugins/acl/localization/ja_JP.inc index 29e96e6fe..35cfcc173 100644 --- a/plugins/acl/localization/ja_JP.inc +++ b/plugins/acl/localization/ja_JP.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'アクセス権の動作...'; $labels['anyone'] = '(誰でも)すべてのユーザー'; $labels['anonymous'] = 'ゲスト(匿名)'; $labels['identifier'] = '識別子'; - $labels['acll'] = '検索'; $labels['aclr'] = 'メッセージを読む'; $labels['acls'] = '既読の状態を保持'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'メッセージを削除'; $labels['acle'] = '抹消'; $labels['aclx'] = 'フォルダーを削除'; $labels['acla'] = '管理'; - $labels['aclfull'] = '完全な制御'; $labels['aclother'] = 'その他'; $labels['aclread'] = '読み込み'; $labels['aclwrite'] = '書き込み'; $labels['acldelete'] = '削除'; - $labels['shortacll'] = '検索'; $labels['shortaclr'] = '読み込み'; $labels['shortacls'] = '保持'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = '削除'; $labels['shortacle'] = '抹消'; $labels['shortaclx'] = 'フォルダーの削除'; $labels['shortacla'] = '管理'; - $labels['shortaclother'] = 'その他'; $labels['shortaclread'] = '読み込み'; $labels['shortaclwrite'] = '書き込み'; $labels['shortacldelete'] = '削除'; - $labels['longacll'] = 'フォルダーをリストに見えるようにして登録可能:'; $labels['longaclr'] = 'フォルダーを読むことを可能'; $labels['longacls'] = 'メッセージの既読のフラッグの変更を可能'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'メッセージの削除フラッグの変更を可能'; $labels['longacle'] = 'メッセージの抹消を可能'; $labels['longaclx'] = 'このフォルダーの削除や名前の変更を可能'; $labels['longacla'] = 'フォルダーのアクセス権の変更を可能'; - $labels['longaclfull'] = 'フォルダーの管理を含めた完全な制御を可能'; $labels['longaclread'] = 'フォルダーを読むことを可能'; $labels['longaclwrite'] = 'メッセージにマークの設定、書き込み、フォルダーに複製を可能'; $labels['longacldelete'] = 'メッセージの削除を可能'; - $messages['deleting'] = 'アクセス権を削除中...'; $messages['saving'] = 'アクセス権を保存中...'; $messages['updatesuccess'] = 'アクセス権を変更しました。'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'アクセス権を追加できません。'; $messages['deleteconfirm'] = '選択したユーザーのアクセス件を本当に削除したいですか?'; $messages['norights'] = '何の権限も指定されていません!'; $messages['nouser'] = 'ユーザー名を指定していません!'; - ?> diff --git a/plugins/acl/localization/ko_KR.inc b/plugins/acl/localization/ko_KR.inc index dcf57b4cf..dc22fa10c 100644 --- a/plugins/acl/localization/ko_KR.inc +++ b/plugins/acl/localization/ko_KR.inc @@ -25,7 +25,6 @@ $labels['actions'] = '접근 권한 동작...'; $labels['anyone'] = '모든 사용자 (아무나)'; $labels['anonymous'] = '방문자 (익명)'; $labels['identifier'] = '식별자'; - $labels['acll'] = '조회'; $labels['aclr'] = '읽은 메시지'; $labels['acls'] = '읽은 상태로 유지'; @@ -39,13 +38,11 @@ $labels['aclt'] = '메시지 삭제'; $labels['acle'] = '영구 제거'; $labels['aclx'] = '폴더 삭제'; $labels['acla'] = '관리자'; - $labels['aclfull'] = '전체 제어권'; $labels['aclother'] = '기타'; $labels['aclread'] = '읽기'; $labels['aclwrite'] = '쓰기'; $labels['acldelete'] = '삭제'; - $labels['shortacll'] = '조회'; $labels['shortaclr'] = '읽기'; $labels['shortacls'] = '보관'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = '삭제'; $labels['shortacle'] = '지움'; $labels['shortaclx'] = '폴더 삭제'; $labels['shortacla'] = '관리'; - $labels['shortaclother'] = '기타'; $labels['shortaclread'] = '읽기'; $labels['shortaclwrite'] = '쓱'; $labels['shortacldelete'] = '삭제'; - $labels['longacll'] = '폴더가 목록에 나타나고 다음 사용자가 구독할 수 있음:'; $labels['longaclr'] = '읽기 위해 폴더를 열 수 있음'; $labels['longacls'] = '읽은 메시지 깃발이 변경될 수 있음'; @@ -78,12 +73,10 @@ $labels['longaclt'] = '메시지 삭제 깃발이 변경될 수 있음'; $labels['longacle'] = '메시지가 영구 제거될 수 있음'; $labels['longaclx'] = '폴더를 삭제하거나 이름을 변경 할 수 있음'; $labels['longacla'] = '폴더의 접근 권한을 변경할 수 있음'; - $labels['longaclfull'] = '폴더 관리를 포함한 모든 제어권'; $labels['longaclread'] = '폴더를 열어 읽을 수 있음'; $labels['longaclwrite'] = '메시지에 표시하거나, 폴더로 이동하거나 복사할 수 있음'; $labels['longacldelete'] = '메시지를 삭제할 수 있음'; - $messages['deleting'] = '접근 권한을 삭제하는 중...'; $messages['saving'] = '접근 권한을 저장하는 중...'; $messages['updatesuccess'] = '접근 권한을 성공적으로 변경함.'; @@ -95,5 +88,4 @@ $messages['createerror'] = '접근 권한을 추가할 수 없음.'; $messages['deleteconfirm'] = '정말로 선택한 사용자의 접근 권한을 삭제하시겠습니까?'; $messages['norights'] = '지정된 권한이 없음!'; $messages['nouser'] = '지정된 사용자명이 없음!'; - ?> diff --git a/plugins/acl/localization/lb_LU.inc b/plugins/acl/localization/lb_LU.inc index b9891931c..31c013983 100644 --- a/plugins/acl/localization/lb_LU.inc +++ b/plugins/acl/localization/lb_LU.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Optioune fir d\'Zougrëffsrechter'; $labels['anyone'] = 'All d\'Benotzer (jiddwereen)'; $labels['anonymous'] = 'Gaascht (anonym)'; $labels['identifier'] = 'Identifiant'; - $labels['acll'] = 'Noschloen'; $labels['aclr'] = 'Messagë liesen'; $labels['acls'] = 'Lies-Status behalen'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Messagë läschen'; $labels['acle'] = 'Ausläschen'; $labels['aclx'] = 'Dossier läschen'; $labels['acla'] = 'Administréieren'; - $labels['aclfull'] = 'Voll Kontroll'; $labels['aclother'] = 'Aner'; $labels['aclread'] = 'Liesen'; $labels['aclwrite'] = 'Schreiwen'; $labels['acldelete'] = 'Läschen'; - $labels['shortacll'] = 'Noschloen'; $labels['shortaclr'] = 'Liesen'; $labels['shortacls'] = 'Halen'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Läschen'; $labels['shortacle'] = 'Ausläschen'; $labels['shortaclx'] = 'Dossier läschen'; $labels['shortacla'] = 'Administréieren'; - $labels['shortaclother'] = 'Aner'; $labels['shortaclread'] = 'Liesen'; $labels['shortaclwrite'] = 'Schreiwen'; $labels['shortacldelete'] = 'Läschen'; - $labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; $labels['longaclr'] = 'The folder can be opened for reading'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = 'Messages can be expunged'; $labels['longaclx'] = 'The folder can be deleted or renamed'; $labels['longacla'] = 'The folder access rights can be changed'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'The folder can be opened for reading'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messagë kënne geläscht ginn'; - $messages['deleting'] = 'Zougrëffsrechter gi geläscht...'; $messages['saving'] = 'Zougrëffsrechter gi gespäichert...'; $messages['updatesuccess'] = 'Rechter erfollegräich geännert'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Zougrëffsrechter kënnen net dobäigesat ginn'; $messages['deleteconfirm'] = 'Bass du dir sécher, dass du d\'Zougrëffsrechter fir déi ausgewielte Benotzer wëlls ewechhuelen?'; $messages['norights'] = 'Et goufe keng Rechter uginn! '; $messages['nouser'] = 'Et gouf kee Benotzernumm uginn!'; - ?> diff --git a/plugins/acl/localization/lt_LT.inc b/plugins/acl/localization/lt_LT.inc index 39a4d1be2..ad4ae9cb2 100644 --- a/plugins/acl/localization/lt_LT.inc +++ b/plugins/acl/localization/lt_LT.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Prieigos teisių veiksmai...'; $labels['anyone'] = 'Visi vartotojai (bet kas)'; $labels['anonymous'] = 'Svečias (anonimas)'; $labels['identifier'] = 'Identifikatorius'; - $labels['acll'] = 'Paieška'; $labels['aclr'] = 'Perskaityti pranešimus'; $labels['acls'] = 'Palikti būseną "Žiūrėtas"'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Ištrinti žinutes'; $labels['acle'] = 'Išbraukti'; $labels['aclx'] = 'Ištrinti aplanką'; $labels['acla'] = 'Valdyti'; - $labels['aclfull'] = 'Visiška kontrolė'; $labels['aclother'] = 'Kita'; $labels['aclread'] = 'Skaityti'; $labels['aclwrite'] = 'Įrašyti'; $labels['acldelete'] = 'Trinti'; - $labels['shortacll'] = 'Paieška'; $labels['shortaclr'] = 'Skaityti'; $labels['shortacls'] = 'Palikti'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Trinti'; $labels['shortacle'] = 'Išbraukti'; $labels['shortaclx'] = 'Ištrinti aplanką'; $labels['shortacla'] = 'Valdyti'; - $labels['shortaclother'] = 'Kita'; $labels['shortaclread'] = 'Skaityti'; $labels['shortaclwrite'] = 'Įrašyti'; $labels['shortacldelete'] = 'Trinti'; - $labels['longacll'] = 'Aplankas yra matomas sąrašuose ir gali būti prenumeruojamas'; $labels['longaclr'] = 'Aplanką galima peržiūrėti'; $labels['longacls'] = 'Pranešimų vėliavėlė "Matyta" gali būti pakeista'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Pranešimų vėliavėlė "Ištrintas" gali būti pakeista $labels['longacle'] = 'Pranešimai gali būti išbraukti'; $labels['longaclx'] = 'Aplankas gali būti pašalintas arba pervadintas'; $labels['longacla'] = 'Aplanko prieigos teisės gali būti pakeistos'; - $labels['longaclfull'] = 'Visiška kontrolė įskaitant aplanko administravimą'; $labels['longaclread'] = 'Aplanką galima peržiūrėti'; $labels['longaclwrite'] = 'Pranešimai gali būti pažymėti, įrašyti arba nukopijuoti į aplanką'; $labels['longacldelete'] = 'Pranešimai gali būti ištrinti'; - $messages['deleting'] = 'Panaikinamos prieigos teisės'; $messages['saving'] = 'Išsaugomos prieigos teisės'; $messages['updatesuccess'] = 'Prieigos teisės sėkmingai pakeistos'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Neišeina pridėti prieigos teises'; $messages['deleteconfirm'] = 'Ar jūs esate įsitikinę, jog norite panaikinti prieigos teises pažymėtiems vartotojams(-ui)?'; $messages['norights'] = 'Nenurodytos jokios teisės!'; $messages['nouser'] = 'Nenurodytas joks vartotojas!'; - ?> diff --git a/plugins/acl/localization/nb_NO.inc b/plugins/acl/localization/nb_NO.inc index 26171578b..7e78a4b31 100644 --- a/plugins/acl/localization/nb_NO.inc +++ b/plugins/acl/localization/nb_NO.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Valg for tilgangsrettigheter.'; $labels['anyone'] = 'Alle brukere (alle)'; $labels['anonymous'] = 'Gjester (anonyme)'; $labels['identifier'] = 'Identifikator'; - $labels['acll'] = 'Oppslag'; $labels['aclr'] = 'Les meldinger'; $labels['acls'] = 'Behold lesestatus'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Slett meldinger'; $labels['acle'] = 'Slett fullstendig'; $labels['aclx'] = 'Slett mappe'; $labels['acla'] = 'Administrer'; - $labels['aclfull'] = 'Full kontroll'; $labels['aclother'] = 'Annet'; $labels['aclread'] = 'Les'; $labels['aclwrite'] = 'Skriv'; $labels['acldelete'] = 'Slett'; - $labels['shortacll'] = 'Oppslag'; $labels['shortaclr'] = 'Les'; $labels['shortacls'] = 'Behold'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Slett'; $labels['shortacle'] = 'Slett fullstendig'; $labels['shortaclx'] = 'Slett mappe'; $labels['shortacla'] = 'Administrer'; - $labels['shortaclother'] = 'Annet'; $labels['shortaclread'] = 'Les'; $labels['shortaclwrite'] = 'Skriv'; $labels['shortacldelete'] = 'Slett'; - $labels['longacll'] = 'Mappen er synlig og kan abonneres på'; $labels['longaclr'] = 'Mappen kan åpnes for lesing'; $labels['longacls'] = 'Meldingenes lesestatusflagg kan endres'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Meldingenes flagg for sletting kan endres'; $labels['longacle'] = 'Meldingen kan slettes for godt'; $labels['longaclx'] = 'Mappen kan slettes eller gis nytt navn'; $labels['longacla'] = 'Mappens tilgangsrettigheter kan endres'; - $labels['longaclfull'] = 'Full kontroll, inkludert mappeadministrasjon'; $labels['longaclread'] = 'Mappen kan åpnes for lesing'; $labels['longaclwrite'] = 'Meldinger kan merkes, lagres i eller flyttes til mappen'; $labels['longacldelete'] = 'Meldingen kan slettes'; - $messages['deleting'] = 'Sletter tilgangsrettigheter'; $messages['saving'] = 'Lagrer tilgangsrettigheter'; $messages['updatesuccess'] = 'Tilgangsrettigheter ble endret'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Kunne ikke legge til tilgangsrettigheter'; $messages['deleteconfirm'] = 'Er du sikker på at du vil fjerne tilgangen til valgte brukere'; $messages['norights'] = 'Ingen rettigheter er spesifisert!'; $messages['nouser'] = 'Brukernavn er ikke spesifisert!'; - ?> diff --git a/plugins/acl/localization/nl_NL.inc b/plugins/acl/localization/nl_NL.inc index b5ca0c3d8..4a29f7629 100644 --- a/plugins/acl/localization/nl_NL.inc +++ b/plugins/acl/localization/nl_NL.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Toegangsrechtenopties...'; $labels['anyone'] = 'Alle gebruikers (iedereen)'; $labels['anonymous'] = 'Gasten (anoniem)'; $labels['identifier'] = 'Identificatie'; - $labels['acll'] = 'Opzoeken'; $labels['aclr'] = 'Berichten lezen'; $labels['acls'] = 'Onthoud gelezen-status'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Berichten verwijderen'; $labels['acle'] = 'Vernietigen'; $labels['aclx'] = 'Map verwijderen'; $labels['acla'] = 'Beheren'; - $labels['aclfull'] = 'Volledige toegang'; $labels['aclother'] = 'Overig'; $labels['aclread'] = 'Lezen'; $labels['aclwrite'] = 'Schrijven'; $labels['acldelete'] = 'Verwijderen'; - $labels['shortacll'] = 'Opzoeken'; $labels['shortaclr'] = 'Lezen'; $labels['shortacls'] = 'Behouden'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Verwijderen'; $labels['shortacle'] = 'Vernietigen'; $labels['shortaclx'] = 'Map verwijderen'; $labels['shortacla'] = 'Beheren'; - $labels['shortaclother'] = 'Overig'; $labels['shortaclread'] = 'Lezen'; $labels['shortaclwrite'] = 'Schrijven'; $labels['shortacldelete'] = 'Verwijderen'; - $labels['longacll'] = 'De map is zichtbaar in lijsten en het is mogelijk om te abonneren op deze map'; $labels['longaclr'] = 'De map kan geopend worden om te lezen'; $labels['longacls'] = 'De berichtmarkering \'Gelezen\' kan aangepast worden'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'De berichtmarkering \'Verwijderd\' kan aangepast worden'; $labels['longacle'] = 'Berichten kunnen vernietigd worden'; $labels['longaclx'] = 'De map kan verwijderd of hernoemd worden'; $labels['longacla'] = 'De toegangsrechten voor deze map kunnen veranderd worden'; - $labels['longaclfull'] = 'Volledige controle inclusief mappenbeheer'; $labels['longaclread'] = 'De map kan geopend worden om te lezen'; $labels['longaclwrite'] = 'Berichten kunnen gemarkeerd worden, opgesteld worden of gekopieerd worden naar deze map'; $labels['longacldelete'] = 'Berichten kunnen verwijderd worden'; - $messages['deleting'] = 'Toegangsrechten worden verwijderd...'; $messages['saving'] = 'Toegangsrechten worden opgeslagen...'; $messages['updatesuccess'] = 'Toegangsrechten succesvol veranderd'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Toegangsrechten kunnen niet toegevoegd worden'; $messages['deleteconfirm'] = 'Weet u zeker dat u de toegangsrechten van de geselecteerde gebruiker(s) wilt verwijderen?'; $messages['norights'] = 'Er zijn geen toegangsrechten opgegeven!'; $messages['nouser'] = 'Er is geen gebruikersnaam opgegeven!'; - ?> diff --git a/plugins/acl/localization/nn_NO.inc b/plugins/acl/localization/nn_NO.inc index 743d2c8b8..5bd0caf01 100644 --- a/plugins/acl/localization/nn_NO.inc +++ b/plugins/acl/localization/nn_NO.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Val for tilgangsrettar...'; $labels['anyone'] = 'Alle brukarar (alle)'; $labels['anonymous'] = 'Gjester (anonyme)'; $labels['identifier'] = 'Identifikator'; - $labels['acll'] = 'Oppslag'; $labels['aclr'] = 'Les meldingar'; $labels['acls'] = 'Behald lesestatus'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Slett meldingar'; $labels['acle'] = 'Slett fullstendig'; $labels['aclx'] = 'Slett mappe'; $labels['acla'] = 'Administrér'; - $labels['aclfull'] = 'Full kontroll'; $labels['aclother'] = 'Anna'; $labels['aclread'] = 'Les'; $labels['aclwrite'] = 'Skriv'; $labels['acldelete'] = 'Slett'; - $labels['shortacll'] = 'Oppslag'; $labels['shortaclr'] = 'Les'; $labels['shortacls'] = 'Behald'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Slett'; $labels['shortacle'] = 'Slett fullstendig'; $labels['shortaclx'] = 'Slett mappe'; $labels['shortacla'] = 'Administrér'; - $labels['shortaclother'] = 'Anna'; $labels['shortaclread'] = 'Les'; $labels['shortaclwrite'] = 'Skriv'; $labels['shortacldelete'] = 'Slett'; - $labels['longacll'] = 'Mappa er synleg og kan abonnerast på'; $labels['longaclr'] = 'Mappa kan opnast for lesing'; $labels['longacls'] = 'Meldingane sine lesestatusflagg kan endrast'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Meldingane sine flagg for sletting kan endrast'; $labels['longacle'] = 'Meldinga kan slettast for godt'; $labels['longaclx'] = 'Mappa kan slettast eller få nytt namn'; $labels['longacla'] = 'Mappa sine tilgangsrettar kan endrast'; - $labels['longaclfull'] = 'Full kontroll, inkludert mappeadministrasjon'; $labels['longaclread'] = 'Mappa kan opnast for lesing'; $labels['longaclwrite'] = 'Meldingar kan merkast, lagrast i eller flyttast til mappa'; $labels['longacldelete'] = 'Meldinga kan slettast'; - $messages['deleting'] = 'Slettar tilgangsrettar…'; $messages['saving'] = 'Lagrar tilgangsrettar…'; $messages['updatesuccess'] = 'Tilgangsrettiar vart endra'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Kunne ikkje leggje til tilgangsrettar'; $messages['deleteconfirm'] = 'Er du sikker på at du vil fjerne tilgangen til valde brukarar?'; $messages['norights'] = 'Ingen rettar er spesifisert!'; $messages['nouser'] = 'Brukarnamn er ikkje spesifisert!'; - ?> diff --git a/plugins/acl/localization/pl_PL.inc b/plugins/acl/localization/pl_PL.inc index 69a5e0c05..2e6e2cb7b 100644 --- a/plugins/acl/localization/pl_PL.inc +++ b/plugins/acl/localization/pl_PL.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Akcje na prawach...'; $labels['anyone'] = 'Wszyscy (anyone)'; $labels['anonymous'] = 'Goście (anonymous)'; $labels['identifier'] = 'Identyfikator'; - $labels['acll'] = 'Podgląd'; $labels['aclr'] = 'Odczyt (Read)'; $labels['acls'] = 'Zmiana stanu wiadomości (Keep)'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Usuwanie wiadomości (Delete)'; $labels['acle'] = 'Porządkowanie'; $labels['aclx'] = 'Usuwanie folderu (Delete)'; $labels['acla'] = 'Administracja'; - $labels['aclfull'] = 'Wszystkie'; $labels['aclother'] = 'Pozostałe'; $labels['aclread'] = 'Odczyt'; $labels['aclwrite'] = 'Zapis'; $labels['acldelete'] = 'Usuwanie'; - $labels['shortacll'] = 'Podgląd'; $labels['shortaclr'] = 'Odczyt'; $labels['shortacls'] = 'Zmiana'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Usuwanie'; $labels['shortacle'] = 'Porządkowanie'; $labels['shortaclx'] = 'Usuwanie folderu'; $labels['shortacla'] = 'Administracja'; - $labels['shortaclother'] = 'Pozostałe'; $labels['shortaclread'] = 'Odczyt'; $labels['shortaclwrite'] = 'Zapis'; $labels['shortacldelete'] = 'Usuwanie'; - $labels['longacll'] = 'Pozwala na subskrybowanie folderu i powoduje, że jest on widoczny na liście'; $labels['longaclr'] = 'Folder może być otwarty w trybie do odczytu'; $labels['longacls'] = 'Pozwala na zmienę stanu wiadomości'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Pozwala zmianiać flagę "Usunięto" wiadomości'; $labels['longacle'] = 'Pozwala na usuwanie wiadomości oznaczonych do usunięcia'; $labels['longaclx'] = 'Pozwala na zmianę nazwy lub usunięcie folderu'; $labels['longacla'] = 'Pozwala na zmiane praw dostępu do folderu'; - $labels['longaclfull'] = 'Pełna kontrola włącznie z administrowaniem folderem'; $labels['longaclread'] = 'Folder może być otwarty w trybie do odczytu'; $labels['longaclwrite'] = 'Wiadomości mogą być oznaczane, zapisywane i kopiowane do folderu'; $labels['longacldelete'] = 'Wiadomości mogą być usuwane'; - $messages['deleting'] = 'Usuwanie praw dostępu...'; $messages['saving'] = 'Zapisywanie praw dostępu...'; $messages['updatesuccess'] = 'Pomyślnie zmieniono prawa dostępu'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Nie udało się dodać praw dostępu'; $messages['deleteconfirm'] = 'Czy na pewno chcesz usunąć prawa wybranym użytkownikom?'; $messages['norights'] = 'Nie wybrano praw dostępu!'; $messages['nouser'] = 'Nie podano nazwy użytkownika!'; - ?> diff --git a/plugins/acl/localization/pt_BR.inc b/plugins/acl/localization/pt_BR.inc index eaf042110..044485409 100644 --- a/plugins/acl/localization/pt_BR.inc +++ b/plugins/acl/localization/pt_BR.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Ações de direito de acesso...'; $labels['anyone'] = 'Todos os usuários (qualquer um)'; $labels['anonymous'] = 'Convidados (anônimos)'; $labels['identifier'] = 'Identificador'; - $labels['acll'] = 'Pesquisar'; $labels['aclr'] = 'Ler mensagens'; $labels['acls'] = 'Manter estado de enviado'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Apagar mensagens'; $labels['acle'] = 'Expurgar'; $labels['aclx'] = 'Apagar pasta'; $labels['acla'] = 'Administrar'; - $labels['aclfull'] = 'Controle total'; $labels['aclother'] = 'Outro'; $labels['aclread'] = 'Ler'; $labels['aclwrite'] = 'Salvar'; $labels['acldelete'] = 'Excluir'; - $labels['shortacll'] = 'Pesquisar'; $labels['shortaclr'] = 'Ler'; $labels['shortacls'] = 'Manter'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Excluir'; $labels['shortacle'] = 'Expurgar'; $labels['shortaclx'] = 'Excluir pasta'; $labels['shortacla'] = 'Administrar'; - $labels['shortaclother'] = 'Outro'; $labels['shortaclread'] = 'Ler'; $labels['shortaclwrite'] = 'Salvar'; $labels['shortacldelete'] = 'Excluir'; - $labels['longacll'] = 'A pasta está visível nas listas e pode ser inscrita para'; $labels['longaclr'] = 'A pasta pode ser aberta para leitura'; $labels['longacls'] = 'Marcador de Mensagem Enviada pode ser modificadas'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'O marcador de Mensagens Excluídas podem ser modificadas' $labels['longacle'] = 'As mensagens podem ser expurgadas'; $labels['longaclx'] = 'A pasta pode ser apagada ou renomeada'; $labels['longacla'] = 'As permissões de acesso da pasta podem ser alteradas'; - $labels['longaclfull'] = 'Controle total incluindo a pasta de administração'; $labels['longaclread'] = 'A pasta pode ser aberta para leitura'; $labels['longaclwrite'] = 'As mensagens podem ser marcadas, salvas ou copiadas para a pasta'; $labels['longacldelete'] = 'Mensagens podem ser apagadas'; - $messages['deleting'] = 'Apagando permissões de acesso...'; $messages['saving'] = 'Salvando permissões de acesso...'; $messages['updatesuccess'] = 'Permissões de acesso alteradas com sucesso'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Não foi possível adicionar as permissões de acess $messages['deleteconfirm'] = 'Tem certeza que deseja remover as permissões de acesso do(s) usuário(s) delecionado(s)?'; $messages['norights'] = 'Não foram definidas permissões!'; $messages['nouser'] = 'Nome de usuário não especificado!'; - ?> diff --git a/plugins/acl/localization/pt_PT.inc b/plugins/acl/localization/pt_PT.inc index 9a2e9a320..5cc974f0a 100644 --- a/plugins/acl/localization/pt_PT.inc +++ b/plugins/acl/localization/pt_PT.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Acções de permissão de acesso...'; $labels['anyone'] = 'Todos os utilizadores (todos)'; $labels['anonymous'] = 'Convidado (anónimo)'; $labels['identifier'] = 'Identificador'; - $labels['acll'] = 'Pesquisar'; $labels['aclr'] = 'Ler mensagens'; $labels['acls'] = 'Manter estado de enviado'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Eliminar mensagens'; $labels['acle'] = 'Eliminar'; $labels['aclx'] = 'Eliminar pasta'; $labels['acla'] = 'Administrar'; - $labels['aclfull'] = 'Controlo total'; $labels['aclother'] = 'Outro'; $labels['aclread'] = 'Ler'; $labels['aclwrite'] = 'Guardar'; $labels['acldelete'] = 'Eliminar'; - $labels['shortacll'] = 'Pesquisar'; $labels['shortaclr'] = 'Ler'; $labels['shortacls'] = 'Manter'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Eliminar'; $labels['shortacle'] = 'Eliminar'; $labels['shortaclx'] = 'Eliminar pasta'; $labels['shortacla'] = 'Administrar'; - $labels['shortaclother'] = 'Outro'; $labels['shortaclread'] = 'Ler'; $labels['shortaclwrite'] = 'Guardar'; $labels['shortacldelete'] = 'Eliminar'; - $labels['longacll'] = 'A pasta está visível na lista e pode subscrita para'; $labels['longaclr'] = 'A pasta pode ser aberta para leitura'; $labels['longacls'] = 'O marcador de mensagem enviada pode ser alterado'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'O marcador de mensagens Eliminadas pode ser alterado'; $labels['longacle'] = 'As mensagens podem ser eliminadas'; $labels['longaclx'] = 'A pasta pode ser eliminada ou renomeada'; $labels['longacla'] = 'As permissões de acesso da pasta podem ser alteradas'; - $labels['longaclfull'] = 'Controlo total incluindo administração da pasta'; $labels['longaclread'] = 'A pasta pode ser aberta para leitura'; $labels['longaclwrite'] = 'As mensagens podem ser marcadas, guardadas ou copiadas para a pasta'; $labels['longacldelete'] = 'As mensagens podem ser eliminadas'; - $messages['deleting'] = 'A eliminar as permissões de acesso...'; $messages['saving'] = 'A guardar as permissões de acesso...'; $messages['updatesuccess'] = 'Permissões de acesso alteradas com sucesso'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Não foi possível adicionar as permissões de acess $messages['deleteconfirm'] = 'Tem a certeza que pretende remover as permissões de acesso do(s) utilizador(es) seleccionado(s)?'; $messages['norights'] = 'Não foram especificadas quaisquer permissões!'; $messages['nouser'] = 'Não foi especificado nenhum nome de utilizador!'; - ?> diff --git a/plugins/acl/localization/ro_RO.inc b/plugins/acl/localization/ro_RO.inc index e87524a6c..e069b06c8 100644 --- a/plugins/acl/localization/ro_RO.inc +++ b/plugins/acl/localization/ro_RO.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Acțiunea drepturilor de acces...'; $labels['anyone'] = 'Toți utilizatori (oricare)'; $labels['anonymous'] = 'Vizitator'; $labels['identifier'] = 'Identificator'; - $labels['acll'] = 'Caută'; $labels['aclr'] = 'Citire mesaje'; $labels['acls'] = 'Menține starea de Vâzut'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Ștergere mesaje'; $labels['acle'] = 'Elimină'; $labels['aclx'] = 'Ștergere dosar'; $labels['acla'] = 'Administrează'; - $labels['aclfull'] = 'Control complet'; $labels['aclother'] = 'Altul'; $labels['aclread'] = 'Citeşte'; $labels['aclwrite'] = 'Scrie'; $labels['acldelete'] = 'Șterge'; - $labels['shortacll'] = 'Caută'; $labels['shortaclr'] = 'Citeşte'; $labels['shortacls'] = 'Păstrează'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Șterge'; $labels['shortacle'] = 'Elimină'; $labels['shortaclx'] = 'Ștergere dosar'; $labels['shortacla'] = 'Administrează'; - $labels['shortaclother'] = 'Altul'; $labels['shortaclread'] = 'Citeşte'; $labels['shortaclwrite'] = 'Scrie'; $labels['shortacldelete'] = 'Șterge'; - $labels['longacll'] = 'Dosarul este vizibil pe liste și se poate înscrie pe el'; $labels['longaclr'] = 'Dosarul se poate deschide pentru citire'; $labels['longacls'] = 'Indicatorul de Văzut a fost schimbat'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Indicatorul de Șters al mesajelor se pot modifica'; $labels['longacle'] = 'Mesajele se pot elimina'; $labels['longaclx'] = 'Dosarul se poate șterge sau redenumi'; $labels['longacla'] = 'Drepturile de acces la dosar se pot schimba'; - $labels['longaclfull'] = 'Control complet include și administrare dosar'; $labels['longaclread'] = 'Dosarul se poate deschide pentru citire'; $labels['longaclwrite'] = 'Mesajul se poate marca, scrie sau copia într-un dosar'; $labels['longacldelete'] = 'Mesajul se poate șterge'; - $messages['deleting'] = 'Drepturile de acces la ștergere...'; $messages['saving'] = 'Drepturile de acces la salvare...'; $messages['updatesuccess'] = 'Drepturile de acces au fost schimbate cu succes'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Nu sau putut adăuga drepturi de acces'; $messages['deleteconfirm'] = 'Sunteți sigur că doriți să ștergeți drepturile de acces la utilizatorul(i) selectați?'; $messages['norights'] = 'Nu au fost specificate drepturi!'; $messages['nouser'] = 'Nu a fost specificat nume de utilizator!'; - ?> diff --git a/plugins/acl/localization/ru_RU.inc b/plugins/acl/localization/ru_RU.inc index 93eb9eff2..5688c841b 100644 --- a/plugins/acl/localization/ru_RU.inc +++ b/plugins/acl/localization/ru_RU.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Действия с правами доступа...'; $labels['anyone'] = 'Все пользователи (любые)'; $labels['anonymous'] = 'Гости (анонимные)'; $labels['identifier'] = 'Идентификатор'; - $labels['acll'] = 'Поиск'; $labels['aclr'] = 'Прочитать сообщения'; $labels['acls'] = 'Оставить состояние Увидено'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Удалить сообщения'; $labels['acle'] = 'Уничтожить сообщения'; $labels['aclx'] = 'Удалить папку'; $labels['acla'] = 'Администрировать'; - $labels['aclfull'] = 'Полный доступ'; $labels['aclother'] = 'Другое'; $labels['aclread'] = 'Чтение'; $labels['aclwrite'] = 'Запись'; $labels['acldelete'] = 'Удаление'; - $labels['shortacll'] = 'Поиск'; $labels['shortaclr'] = 'Чтение'; $labels['shortacls'] = 'Оставить'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Удаление'; $labels['shortacle'] = 'Уничтожить сообщения'; $labels['shortaclx'] = 'Удаление папки'; $labels['shortacla'] = 'Администрировать'; - $labels['shortaclother'] = 'Другое'; $labels['shortaclread'] = 'Чтение'; $labels['shortaclwrite'] = 'Запись'; $labels['shortacldelete'] = 'Удаление'; - $labels['longacll'] = 'Папка видима в списках и доступна для подписки'; $labels['longaclr'] = 'Эта папка может быть открыта для чтения'; $labels['longacls'] = 'Флаг Прочитано может быть изменен'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Флаг Удалено может быть измене $labels['longacle'] = 'Сообщения могут быть уничтожены'; $labels['longaclx'] = 'Эта папка может быть переименована или удалена'; $labels['longacla'] = 'Права доступа к папке могут быть изменены'; - $labels['longaclfull'] = 'Полный доступ, включая управление папкой'; $labels['longaclread'] = 'Эта папка может быть открыта для чтения'; $labels['longaclwrite'] = 'Сообщения можно помечать, записывать или копировать в папку'; $labels['longacldelete'] = 'Сообщения можно удалять'; - $messages['deleting'] = 'Удаление прав доступа...'; $messages['saving'] = 'Сохранение прав доступа...'; $messages['updatesuccess'] = 'Права доступа успешно изменены'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Невозможно добавить права д $messages['deleteconfirm'] = 'Вы уверены в том, что хотите удалить права доступа выбранных пользователей?'; $messages['norights'] = 'Права доступа не установлены!'; $messages['nouser'] = 'Не определено имя пользователя!'; - ?> diff --git a/plugins/acl/localization/sk_SK.inc b/plugins/acl/localization/sk_SK.inc index 0d9f47135..50fb85703 100644 --- a/plugins/acl/localization/sk_SK.inc +++ b/plugins/acl/localization/sk_SK.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Prístupové práva činností...'; $labels['anyone'] = 'Všetci užívatelia (ktokoľvek)'; $labels['anonymous'] = 'Hostia (anonymne)'; $labels['identifier'] = 'Identifikátor'; - $labels['acll'] = 'Vyhľadať'; $labels['aclr'] = 'Čítať správy'; $labels['acls'] = 'Ponechať ako prečítané'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Zmazať správy'; $labels['acle'] = 'Vyčistiť'; $labels['aclx'] = 'Zmazať priečinok'; $labels['acla'] = 'Spravovať'; - $labels['aclfull'] = 'Plný prístup'; $labels['aclother'] = 'Ostatné'; $labels['aclread'] = 'Čítanie'; $labels['aclwrite'] = 'Zápis'; $labels['acldelete'] = 'Odstrániť'; - $labels['shortacll'] = 'Vyhľadať'; $labels['shortaclr'] = 'Čítanie'; $labels['shortacls'] = 'Ponechať'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Odstrániť'; $labels['shortacle'] = 'Vyčistiť'; $labels['shortaclx'] = 'Odstrániť priečinok'; $labels['shortacla'] = 'Spravovať'; - $labels['shortaclother'] = 'Ostatné'; $labels['shortaclread'] = 'Čítanie'; $labels['shortaclwrite'] = 'Zápis'; $labels['shortacldelete'] = 'Odstrániť'; - $labels['longacll'] = 'Priečinok je v zoznamoch viditeľný a dá sa doň zapísať'; $labels['longaclr'] = 'Prečinok je možné otvoriť na čítanie'; $labels['longacls'] = 'Príznak "Prečítané" je možné zmeniť'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Príznak správ "Vymazané" je možné zmeniť'; $labels['longacle'] = 'Správy je možné vymazať'; $labels['longaclx'] = 'Priečinok je možné vymazať alebo premenovať'; $labels['longacla'] = 'Je možné zmeniť prístupové práva k priečinku'; - $labels['longaclfull'] = 'Úplný prístup, vrátane správy priečinka'; $labels['longaclread'] = 'Prečinok je možné otvoriť na čítanie'; $labels['longaclwrite'] = 'Správy je možné označiť, zapísať alebo skopírovať do prečinka'; $labels['longacldelete'] = 'Správy je možné vymazať'; - $messages['deleting'] = 'Odstraňovanie prístupových práv...'; $messages['saving'] = 'Ukladanie prístupových práv...'; $messages['updatesuccess'] = 'Prístupové práva boli úspešne zmenené'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Prístupové práva sa nepodarilo pridať'; $messages['deleteconfirm'] = 'Ste si istý, že chcete odstrániť prístupové práva vybranému používateľovi/používateľom?'; $messages['norights'] = 'Neboli určené žiadne práva!'; $messages['nouser'] = 'Nebolo určené žiadne meno používateľa!'; - ?> diff --git a/plugins/acl/localization/sl_SI.inc b/plugins/acl/localization/sl_SI.inc index 8c8a552a7..aff709832 100644 --- a/plugins/acl/localization/sl_SI.inc +++ b/plugins/acl/localization/sl_SI.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Nastavitve pravic dostopa'; $labels['anyone'] = 'Vsi uporabniki'; $labels['anonymous'] = 'Gosti'; $labels['identifier'] = 'Označevalnik'; - $labels['acll'] = 'Iskanje'; $labels['aclr'] = 'Prebrana sporočila'; $labels['acls'] = 'Ohrani status \'Prebrano\''; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Izbriši sporočila'; $labels['acle'] = 'Izbriši'; $labels['aclx'] = 'Izbriši mapo'; $labels['acla'] = 'Uredi'; - $labels['aclfull'] = 'Popolno upravljanje'; $labels['aclother'] = 'Ostalo'; $labels['aclread'] = 'Preberi'; $labels['aclwrite'] = 'Sestavi'; $labels['acldelete'] = 'Izbriši'; - $labels['shortacll'] = 'Iskanje'; $labels['shortaclr'] = 'Preberi'; $labels['shortacls'] = 'Ohrani'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Izbriši'; $labels['shortacle'] = 'Izbriši'; $labels['shortaclx'] = 'Izbriši mapo'; $labels['shortacla'] = 'Uredi'; - $labels['shortaclother'] = 'Ostalo'; $labels['shortaclread'] = 'Preberi'; $labels['shortaclwrite'] = 'Sestavi'; $labels['shortacldelete'] = 'Izbriši'; - $labels['longacll'] = 'Mapa je vidna na seznamih in jo lahko naročite'; $labels['longaclr'] = 'Mapa je na voljo za branje'; $labels['longacls'] = 'Oznaka \'Prebrano sporočilo\' je lahko spremenjena'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Oznako sporočila \'Izbrisano\' je mogoče spremeniti'; $labels['longacle'] = 'Sporočila so lahko izbrisana'; $labels['longaclx'] = 'Mapa je lahko izbrisana ali preimenovana'; $labels['longacla'] = 'Pravice na mapi so lahko spremenjene'; - $labels['longaclfull'] = 'Popolno upravljanje, vključno z urejanjem map'; $labels['longaclread'] = 'Mapa je na voljo za branje'; $labels['longaclwrite'] = 'Sporočila je mogoče označiti, sestaviti ali kopirati v mapo'; $labels['longacldelete'] = 'Sporočila so lahko izbrisana'; - $messages['deleting'] = 'Brisanje pravic'; $messages['saving'] = 'Shranjevanje pravic'; $messages['updatesuccess'] = 'Pravice so bile uspešno spremenjene'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Pravic ni bilo mogoče dodati'; $messages['deleteconfirm'] = 'Ste prepričani, da želite odstraniti pravice dostopa za izbrane uporabnike?'; $messages['norights'] = 'Pravic niste določili'; $messages['nouser'] = 'Niste določili uporabnišlega imena'; - ?> diff --git a/plugins/acl/localization/sr_CS.inc b/plugins/acl/localization/sr_CS.inc index 19f744066..523e93abd 100644 --- a/plugins/acl/localization/sr_CS.inc +++ b/plugins/acl/localization/sr_CS.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Access right actions...'; $labels['anyone'] = 'All users (anyone)'; $labels['anonymous'] = 'Guests (anonymous)'; $labels['identifier'] = 'Identifier'; - $labels['acll'] = 'Lookup'; $labels['aclr'] = 'Read messages'; $labels['acls'] = 'Keep Seen state'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Delete messages'; $labels['acle'] = 'Expunge'; $labels['aclx'] = 'Delete folder'; $labels['acla'] = 'Administer'; - $labels['aclfull'] = 'Full control'; $labels['aclother'] = 'Other'; $labels['aclread'] = 'Read'; $labels['aclwrite'] = 'Write'; $labels['acldelete'] = 'Delete'; - $labels['shortacll'] = 'Lookup'; $labels['shortaclr'] = 'Read'; $labels['shortacls'] = 'Keep'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Delete'; $labels['shortacle'] = 'Expunge'; $labels['shortaclx'] = 'Folder delete'; $labels['shortacla'] = 'Administer'; - $labels['shortaclother'] = 'Other'; $labels['shortaclread'] = 'Read'; $labels['shortaclwrite'] = 'Write'; $labels['shortacldelete'] = 'Delete'; - $labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; $labels['longaclr'] = 'The folder can be opened for reading'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = 'Messages can be expunged'; $labels['longaclx'] = 'The folder can be deleted or renamed'; $labels['longacla'] = 'The folder access rights can be changed'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'The folder can be opened for reading'; $labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messages can be deleted'; - $messages['deleting'] = 'Deleting access rights...'; $messages['saving'] = 'Saving access rights...'; $messages['updatesuccess'] = 'Successfully changed access rights'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Unable to add access rights'; $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; $messages['norights'] = 'No rights has been specified!'; $messages['nouser'] = 'No username has been specified!'; - ?> diff --git a/plugins/acl/localization/sv_SE.inc b/plugins/acl/localization/sv_SE.inc index 6c68080de..6c364623e 100644 --- a/plugins/acl/localization/sv_SE.inc +++ b/plugins/acl/localization/sv_SE.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Hantera åtkomsträttigheter...'; $labels['anyone'] = 'Alla användare (alla)'; $labels['anonymous'] = 'Gäster (anonyma)'; $labels['identifier'] = 'Identifikation'; - $labels['acll'] = 'Uppslagning'; $labels['aclr'] = 'Läs meddelanden'; $labels['acls'] = 'Behåll status Sett'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Ta bort meddelanden'; $labels['acle'] = 'Utplåna'; $labels['aclx'] = 'Ta bort katalog'; $labels['acla'] = 'Administrera'; - $labels['aclfull'] = 'Full kontroll'; $labels['aclother'] = 'Övrig'; $labels['aclread'] = 'Läs'; $labels['aclwrite'] = 'Skriv'; $labels['acldelete'] = 'Ta bort'; - $labels['shortacll'] = 'Uppslagning'; $labels['shortaclr'] = 'Läs'; $labels['shortacls'] = 'Behåll'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Ta bort'; $labels['shortacle'] = 'Utplåna'; $labels['shortaclx'] = 'Ta bort katalog'; $labels['shortacla'] = 'Administrera'; - $labels['shortaclother'] = 'Övrig'; $labels['shortaclread'] = 'Läs'; $labels['shortaclwrite'] = 'Skriv'; $labels['shortacldelete'] = 'Ta bort'; - $labels['longacll'] = 'Katalogen är synlig i listor och den kan prenumereras på'; $labels['longaclr'] = 'Katalogen kan öppnas för läsning'; $labels['longacls'] = 'Meddelandeflagga Sett kan ändras'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Meddelandeflagga Raderat kan ändras'; $labels['longacle'] = 'Meddelanden kan utplånas'; $labels['longaclx'] = 'Katalogen kan tas bort eller ges annat namn'; $labels['longacla'] = 'Katalogens åtkomsträttigheter kan ändras'; - $labels['longaclfull'] = 'Full kontroll inklusive katalogadministration'; $labels['longaclread'] = 'Katalogen kan öppnas för läsning'; $labels['longaclwrite'] = 'Meddelanden kan märkas, skrivas eller kopieras till katalogen'; $labels['longacldelete'] = 'Meddelanden kan tas bort'; - $messages['deleting'] = 'Tar bort åtkomsträttigheter...'; $messages['saving'] = 'Sparar åtkomsträttigheter...'; $messages['updatesuccess'] = 'Åtkomsträttigheterna är ändrade'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Åtkomsträttigheterna kunde inte läggas till'; $messages['deleteconfirm'] = 'Vill du verkligen ta bort åtkomsträttigheterna för markerade användare?'; $messages['norights'] = 'Inga åtkomsträttigheter angavs!'; $messages['nouser'] = 'Inget användarnamn angavs!'; - ?> diff --git a/plugins/acl/localization/tr_TR.inc b/plugins/acl/localization/tr_TR.inc index f3d60324b..499ed7861 100644 --- a/plugins/acl/localization/tr_TR.inc +++ b/plugins/acl/localization/tr_TR.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Erişim hakları aksiyonları...'; $labels['anyone'] = 'Tüm kullanıcılar(kim olursa)'; $labels['anonymous'] = 'Ziyaretçiler(anonim)'; $labels['identifier'] = 'Tanımlayıcı'; - $labels['acll'] = 'Arama'; $labels['aclr'] = 'Mesajları oku'; $labels['acls'] = 'Göründü durumunu muhafaza et'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Mesajları sil'; $labels['acle'] = 'Sil'; $labels['aclx'] = 'Dizini sil'; $labels['acla'] = 'Yönet'; - $labels['aclfull'] = 'Tam kontrol'; $labels['aclother'] = 'Diğer'; $labels['aclread'] = 'Oku'; $labels['aclwrite'] = 'Yaz'; $labels['acldelete'] = 'Sil'; - $labels['shortacll'] = 'Arama'; $labels['shortaclr'] = 'Oku'; $labels['shortacls'] = 'Koru'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Sil'; $labels['shortacle'] = 'Sil'; $labels['shortaclx'] = 'Dizin sil'; $labels['shortacla'] = 'Yönet'; - $labels['shortaclother'] = 'Diğer'; $labels['shortaclread'] = 'Oku'; $labels['shortaclwrite'] = 'Yaz'; $labels['shortacldelete'] = 'Sil'; - $labels['longacll'] = 'Klasör listesinde görülebilir ve abone olunabilir'; $labels['longaclr'] = 'Dizin yazma için okunabilir'; $labels['longacls'] = 'Mesajların göründü bayrağı değiştirilebilir'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'mesajları sil bayrakları değiştirilebilir'; $labels['longacle'] = 'Mesajlar silinebilir'; $labels['longaclx'] = 'Klasörü silinebilir veya yeniden adlandırılabilir'; $labels['longacla'] = 'Dizin erişim hakları değiştirilebilir'; - $labels['longaclfull'] = 'Dizin yönetimi de dahil olmak üzere tam kontrol'; $labels['longaclread'] = 'Dizin yazma için okunabilir'; $labels['longaclwrite'] = 'Dizin yönetimi de dahil olmak üzere tam kontrol'; $labels['longacldelete'] = 'Mesajlar silinebilir'; - $messages['deleting'] = 'Erişim hakları siliniyor...'; $messages['saving'] = 'Erişim hakları saklanıyor...'; $messages['updatesuccess'] = 'Erişim hakları başarıyla değiştirildi'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Erişim hakları eklenemedi'; $messages['deleteconfirm'] = 'Seçilen kullanıcılar için erişim haklarını silmek istediğinizden emin misiniz?'; $messages['norights'] = 'Hiçbir hak belirtilmemiş!'; $messages['nouser'] = 'Hiçbir kullanıcı belirtilmemiş!'; - ?> diff --git a/plugins/acl/localization/vi_VN.inc b/plugins/acl/localization/vi_VN.inc index 1a6ea58e7..cde9ec9dc 100644 --- a/plugins/acl/localization/vi_VN.inc +++ b/plugins/acl/localization/vi_VN.inc @@ -25,7 +25,6 @@ $labels['actions'] = 'Cách ứng xử quyền truy cập'; $labels['anyone'] = 'Tất cả người dùng (bất kỳ ai)'; $labels['anonymous'] = 'Khách (nặc danh)'; $labels['identifier'] = 'Định danh'; - $labels['acll'] = 'Tìm kiếm'; $labels['aclr'] = 'Đọc thư'; $labels['acls'] = 'Giữ trạng thái đã xem qua'; @@ -39,13 +38,11 @@ $labels['aclt'] = 'Xóa thư'; $labels['acle'] = 'Thải bỏ'; $labels['aclx'] = 'Xóa giữ liệu'; $labels['acla'] = 'Quản lý'; - $labels['aclfull'] = 'Quản lý toàn bộ'; $labels['aclother'] = 'Loại khác'; $labels['aclread'] = 'Đọc'; $labels['aclwrite'] = 'Viết'; $labels['acldelete'] = 'Xoá'; - $labels['shortacll'] = 'Tìm kiếm'; $labels['shortaclr'] = 'Đọc'; $labels['shortacls'] = 'Giữ'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = 'Xoá'; $labels['shortacle'] = 'Thải bỏ'; $labels['shortaclx'] = 'Giữ liệu được xóa'; $labels['shortacla'] = 'Quản lý'; - $labels['shortaclother'] = 'Loại khác'; $labels['shortaclread'] = 'Đọc'; $labels['shortaclwrite'] = 'Viết'; $labels['shortacldelete'] = 'Xoá'; - $labels['longacll'] = 'Giữ liệu đã được liệt kê và có thể đóng góp'; $labels['longaclr'] = 'Giữ liệu có thể được mở để đọc'; $labels['longacls'] = 'Cờ đánh dấu thư đã xem qua có thể thay đổi'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Cờ đánh dấu thư xóa có thể thay đổi'; $labels['longacle'] = 'Thư có thể thải bỏ'; $labels['longaclx'] = 'Giữ liệu có thể xóa được hoặc đặt lại tên'; $labels['longacla'] = 'Quyên truy cập giữ liệu có thể thay đổi'; - $labels['longaclfull'] = 'Quản lý toàn bộ bao gồm cả sự thi hành giữ liệu'; $labels['longaclread'] = 'Giữ liệu có thể được mở để đọc'; $labels['longaclwrite'] = 'Thư có thể được đánh dấu, ghi hoăc sao chép vào giữ liệu'; $labels['longacldelete'] = 'Thư có thể bị xóa'; - $messages['deleting'] = 'Xóa quyền truy cập...'; $messages['saving'] = 'Lưu quyền truy cập...'; $messages['updatesuccess'] = 'Thay đổi quyền truy cập thành công...'; @@ -95,5 +88,4 @@ $messages['createerror'] = 'Không thể thêm quyền truy cập'; $messages['deleteconfirm'] = 'Bạn có chắc là muốn xóa bỏ quyền truy cập của người dùng được chọn?'; $messages['norights'] = 'Chưa có quyền nào được chỉ định!'; $messages['nouser'] = 'Chưa có tên truy nhập được chỉ định!'; - ?> diff --git a/plugins/acl/localization/zh_CN.inc b/plugins/acl/localization/zh_CN.inc index ebf314043..55bd7dc4e 100644 --- a/plugins/acl/localization/zh_CN.inc +++ b/plugins/acl/localization/zh_CN.inc @@ -25,7 +25,6 @@ $labels['actions'] = '权限设置...'; $labels['anyone'] = '所有用户(任何人)'; $labels['anonymous'] = '来宾(匿名)'; $labels['identifier'] = '标识符'; - $labels['acll'] = '查找'; $labels['aclr'] = '读取消息'; $labels['acls'] = '保存已读状态'; @@ -39,13 +38,11 @@ $labels['aclt'] = '删除消息'; $labels['acle'] = '清除'; $labels['aclx'] = '删除文件夹'; $labels['acla'] = '管理'; - $labels['aclfull'] = '全部控制'; $labels['aclother'] = '其它'; $labels['aclread'] = '读取'; $labels['aclwrite'] = '写入'; $labels['acldelete'] = '删除'; - $labels['shortacll'] = '查找'; $labels['shortaclr'] = '读取'; $labels['shortacls'] = '保存'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = '删除'; $labels['shortacle'] = '清除'; $labels['shortaclx'] = '删除文件夹'; $labels['shortacla'] = '管理'; - $labels['shortaclother'] = '其他'; $labels['shortaclread'] = '读取'; $labels['shortaclwrite'] = '写入'; $labels['shortacldelete'] = '删除'; - $labels['longacll'] = '该文件夹在列表上可见且可被订阅'; $labels['longaclr'] = '该文件夹可被打开阅读'; $labels['longacls'] = 'Messages Seen flag can be changed'; @@ -78,12 +73,10 @@ $labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = '消息可被清除'; $labels['longaclx'] = '该文件夹可被删除或重命名'; $labels['longacla'] = '文件夹访问权限可被修改'; - $labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = '该文件夹可被打开阅读'; $labels['longaclwrite'] = '消息可被标记,撰写或复制至文件夹中'; $labels['longacldelete'] = '信息可被删除'; - $messages['deleting'] = '删除访问权限中…'; $messages['saving'] = '保存访问权限中…'; $messages['updatesuccess'] = '成功修改访问权限'; @@ -95,5 +88,4 @@ $messages['createerror'] = '无法添加访问权限'; $messages['deleteconfirm'] = '您确定要移除选中用户的访问权限吗?'; $messages['norights'] = '没有已指定的权限!'; $messages['nouser'] = '没有已指定的用户名!'; - ?> diff --git a/plugins/acl/localization/zh_TW.inc b/plugins/acl/localization/zh_TW.inc index 821f7b321..92d633ec9 100644 --- a/plugins/acl/localization/zh_TW.inc +++ b/plugins/acl/localization/zh_TW.inc @@ -25,7 +25,6 @@ $labels['actions'] = '權限設定'; $labels['anyone'] = '所有使用者 (anyone)'; $labels['anonymous'] = '訪客 (anonymous)'; $labels['identifier'] = '識別'; - $labels['acll'] = '尋找'; $labels['aclr'] = '讀取訊息'; $labels['acls'] = '保持上線狀態'; @@ -39,13 +38,11 @@ $labels['aclt'] = '刪除訊息'; $labels['acle'] = '刪去'; $labels['aclx'] = '刪除資料夾'; $labels['acla'] = '管理者'; - $labels['aclfull'] = '完全控制'; $labels['aclother'] = '其它'; $labels['aclread'] = '讀取'; $labels['aclwrite'] = '寫入'; $labels['acldelete'] = '刪除'; - $labels['shortacll'] = '尋找'; $labels['shortaclr'] = '讀取'; $labels['shortacls'] = '保存'; @@ -59,12 +56,10 @@ $labels['shortaclt'] = '刪除'; $labels['shortacle'] = '刪去'; $labels['shortaclx'] = '資料夾刪除'; $labels['shortacla'] = '管理者'; - $labels['shortaclother'] = '其它'; $labels['shortaclread'] = '讀取'; $labels['shortaclwrite'] = '寫入'; $labels['shortacldelete'] = '刪除'; - $labels['longacll'] = '此資料夾權限可以訂閱和瀏覽'; $labels['longaclr'] = '資料夾能被打開與讀取'; $labels['longacls'] = '能修改訊息標幟'; @@ -78,12 +73,10 @@ $labels['longaclt'] = '能修改訊息刪除標幟'; $labels['longacle'] = '能抹除訊息'; $labels['longaclx'] = '資料夾能被刪除或重新命名'; $labels['longacla'] = '能變更資料夾權限'; - $labels['longaclfull'] = '完全控制包含資料夾管理'; $labels['longaclread'] = '資料夾能被打開與讀取'; $labels['longaclwrite'] = '信件可以被標記、編寫或複製到資料夾'; $labels['longacldelete'] = '訊息能被刪除'; - $messages['deleting'] = '刪除權限...'; $messages['saving'] = '儲存權限...'; $messages['updatesuccess'] = '權限變更完成'; @@ -95,5 +88,4 @@ $messages['createerror'] = '無法新增權限'; $messages['deleteconfirm'] = '您確定要刪除所選取使用者的權限嗎?'; $messages['norights'] = '沒有指定任何權限'; $messages['nouser'] = '沒有指定用戶名稱'; - ?> diff --git a/plugins/archive/localization/ar.inc b/plugins/archive/localization/ar.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/ar.inc +++ b/plugins/archive/localization/ar.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/ar_SA.inc b/plugins/archive/localization/ar_SA.inc index e7263c084..bc237debd 100644 --- a/plugins/archive/localization/ar_SA.inc +++ b/plugins/archive/localization/ar_SA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'الأرشيف'; $labels['buttontitle'] = 'أرشف هذه الرسالة'; $labels['archived'] = 'أُرشفت بنجاح'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'الشهر (مثال. الارشيف/2012/06)'; $labels['archivetypefolder'] = 'المجلد الاصلي'; $labels['archivetypesender'] = 'ايميل المرسل'; $labels['unkownsender'] = 'مجهول'; - ?> diff --git a/plugins/archive/localization/ast.inc b/plugins/archive/localization/ast.inc index 9d88fd7fe..1c16f697e 100644 --- a/plugins/archive/localization/ast.inc +++ b/plugins/archive/localization/ast.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivu'; $labels['buttontitle'] = 'Archivar esti mensaxe'; $labels['archived'] = 'Mensaxe archiváu'; diff --git a/plugins/archive/localization/az_AZ.inc b/plugins/archive/localization/az_AZ.inc index 19a409d41..24887f2d6 100644 --- a/plugins/archive/localization/az_AZ.inc +++ b/plugins/archive/localization/az_AZ.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arxiv'; $labels['buttontitle'] = 'Mesajı arxivə göndər'; $labels['archived'] = 'Arxivə göndərildi'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Ay (məs. Arxiv/2012/06)'; $labels['archivetypefolder'] = 'Orijinal qovluq'; $labels['archivetypesender'] = 'Göndərənin E-Poçtu'; $labels['unkownsender'] = 'naməlum'; - ?> diff --git a/plugins/archive/localization/be_BE.inc b/plugins/archive/localization/be_BE.inc index 1a34a426d..b1758eadd 100644 --- a/plugins/archive/localization/be_BE.inc +++ b/plugins/archive/localization/be_BE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Архіў'; $labels['buttontitle'] = 'Перанесці ў Архіў'; $labels['archived'] = 'Паспяхова перанесены ў Архіў'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'месяца (прыкладам, Архіў/2012 $labels['archivetypefolder'] = 'Арыгінальная папка'; $labels['archivetypesender'] = 'Эл. пошта адпраўніка'; $labels['unkownsender'] = 'невядомы'; - ?> diff --git a/plugins/archive/localization/bg_BG.inc b/plugins/archive/localization/bg_BG.inc index 3814b8698..65323b71e 100644 --- a/plugins/archive/localization/bg_BG.inc +++ b/plugins/archive/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Архивирай'; $labels['buttontitle'] = 'Архивиране на писмото'; $labels['archived'] = 'Архивирането премина успешно'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Месец (пр. Архив/2012/06)'; $labels['archivetypefolder'] = 'Оригинална папка'; $labels['archivetypesender'] = 'E-mail адрес на подател'; $labels['unkownsender'] = 'неизвестно'; - ?> diff --git a/plugins/archive/localization/bn_BD.inc b/plugins/archive/localization/bn_BD.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/bn_BD.inc +++ b/plugins/archive/localization/bn_BD.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/br.inc b/plugins/archive/localization/br.inc index 6b7859936..08ff1cda0 100644 --- a/plugins/archive/localization/br.inc +++ b/plugins/archive/localization/br.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Diell'; $labels['buttontitle'] = 'Dielliñ ar gemenadenn-mañ'; $labels['archived'] = 'Diellet gant berzh'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/bs_BA.inc b/plugins/archive/localization/bs_BA.inc index 06a5999a0..b9d109299 100644 --- a/plugins/archive/localization/bs_BA.inc +++ b/plugins/archive/localization/bs_BA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhiviraj ovu poruku'; $labels['archived'] = 'Arhiviranje uspješno'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mjesecima (npr Arhiva/2012/06)'; $labels['archivetypefolder'] = 'Originalni folder'; $labels['archivetypesender'] = 'Email pošiljaoca'; $labels['unkownsender'] = 'nepoznato'; - ?> diff --git a/plugins/archive/localization/ca_ES.inc b/plugins/archive/localization/ca_ES.inc index 04ade1dbf..d012156db 100644 --- a/plugins/archive/localization/ca_ES.inc +++ b/plugins/archive/localization/ca_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arxiva'; $labels['buttontitle'] = 'Arxiva aquest missatge'; $labels['archived'] = 'Arxivat correctament'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mes (p.ex. Arxiu/2012/06)'; $labels['archivetypefolder'] = 'Carpeta original'; $labels['archivetypesender'] = 'Adreça del remitent'; $labels['unkownsender'] = 'desconegut'; - ?> diff --git a/plugins/archive/localization/cs_CZ.inc b/plugins/archive/localization/cs_CZ.inc index e71aa5fa6..988a026db 100644 --- a/plugins/archive/localization/cs_CZ.inc +++ b/plugins/archive/localization/cs_CZ.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Archivovat zprávu'; $labels['archived'] = 'Úspěšně vloženo do archivu'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Měsíc (např. Archiv/2012/06)'; $labels['archivetypefolder'] = 'Původní složka'; $labels['archivetypesender'] = 'E-mail odesílatele'; $labels['unkownsender'] = 'neznámý'; - ?> diff --git a/plugins/archive/localization/cy_GB.inc b/plugins/archive/localization/cy_GB.inc index 454c26da5..7f91c5ffc 100644 --- a/plugins/archive/localization/cy_GB.inc +++ b/plugins/archive/localization/cy_GB.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archif'; $labels['buttontitle'] = 'Archifo\'r neges hwn'; $labels['archived'] = 'Archifwyd yn llwyddiannus'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mis (e.g. Archif/2012/06)'; $labels['archivetypefolder'] = 'Ffolder gwreiddiol'; $labels['archivetypesender'] = 'Ebost anfonwr'; $labels['unkownsender'] = 'anhysbys'; - ?> diff --git a/plugins/archive/localization/da_DK.inc b/plugins/archive/localization/da_DK.inc index ac67700a4..69ead1dce 100644 --- a/plugins/archive/localization/da_DK.inc +++ b/plugins/archive/localization/da_DK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkiv'; $labels['buttontitle'] = 'Arkivér denne besked'; $labels['archived'] = 'Succesfuldt arkiveret.'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Måned (f.eks. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Original mappe'; $labels['archivetypesender'] = 'Afsenders email'; $labels['unkownsender'] = 'ukendt'; - ?> diff --git a/plugins/archive/localization/de_CH.inc b/plugins/archive/localization/de_CH.inc index 65cf6efe0..72795bde3 100644 --- a/plugins/archive/localization/de_CH.inc +++ b/plugins/archive/localization/de_CH.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Nachricht(en) archivieren'; $labels['archived'] = 'Nachricht(en) erfolgreich archiviert'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Monat (z.B. Archiv/2012/06)'; $labels['archivetypefolder'] = 'Originalordner'; $labels['archivetypesender'] = 'Absender'; $labels['unkownsender'] = 'unbekannt'; - ?> diff --git a/plugins/archive/localization/de_DE.inc b/plugins/archive/localization/de_DE.inc index 8d4f9e39f..0aff17703 100644 --- a/plugins/archive/localization/de_DE.inc +++ b/plugins/archive/localization/de_DE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Nachricht archivieren'; $labels['archived'] = 'Nachricht erfolgreich archiviert'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Monat (z.B. Archiv/2012/06)'; $labels['archivetypefolder'] = 'Originalordner'; $labels['archivetypesender'] = 'Absender E-Mail'; $labels['unkownsender'] = 'unbekannt'; - ?> diff --git a/plugins/archive/localization/el_GR.inc b/plugins/archive/localization/el_GR.inc index 6da9f7dbf..1a582b35e 100644 --- a/plugins/archive/localization/el_GR.inc +++ b/plugins/archive/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Αρχειοθέτηση'; $labels['buttontitle'] = 'Αρχειοθέτηση μηνύματος'; $labels['archived'] = 'Αρχειοθετήθηκε με επιτυχία'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Μηνας (π.χ. Αρχειο/2012/06)'; $labels['archivetypefolder'] = 'Αυθεντικος φακελος'; $labels['archivetypesender'] = 'Αποστολέας email'; $labels['unkownsender'] = 'άγνωστο'; - ?> diff --git a/plugins/archive/localization/en_GB.inc b/plugins/archive/localization/en_GB.inc index d3714c118..b90958c74 100644 --- a/plugins/archive/localization/en_GB.inc +++ b/plugins/archive/localization/en_GB.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archive'; $labels['buttontitle'] = 'Archive this message'; $labels['archived'] = 'Successfully archived'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/eo.inc b/plugins/archive/localization/eo.inc index fa323effd..e0973af75 100644 --- a/plugins/archive/localization/eo.inc +++ b/plugins/archive/localization/eo.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkivigi'; $labels['buttontitle'] = 'Arkivigi ĉi tiun mesaĝon'; $labels['archived'] = 'Sukcese arkivigita'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/es_AR.inc b/plugins/archive/localization/es_AR.inc index 5fb082497..5e4ad3776 100644 --- a/plugins/archive/localization/es_AR.inc +++ b/plugins/archive/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivo'; $labels['buttontitle'] = 'Archivar este mensaje'; $labels['archived'] = 'Mensaje Archivado'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mes (ej. Archivo/2012/06)'; $labels['archivetypefolder'] = 'Carpeta original'; $labels['archivetypesender'] = 'Remitente del correo'; $labels['unkownsender'] = 'desconocido'; - ?> diff --git a/plugins/archive/localization/es_ES.inc b/plugins/archive/localization/es_ES.inc index 44b27691b..4555f0efe 100644 --- a/plugins/archive/localization/es_ES.inc +++ b/plugins/archive/localization/es_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivo'; $labels['buttontitle'] = 'Archivar este mensaje'; $labels['archived'] = 'Mensaje Archivado'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mes (p.ej. Archivo/2012/06)'; $labels['archivetypefolder'] = 'Bandeja original'; $labels['archivetypesender'] = 'Email del remitente'; $labels['unkownsender'] = 'desconocido'; - ?> diff --git a/plugins/archive/localization/et_EE.inc b/plugins/archive/localization/et_EE.inc index 55cdbc934..acf6bd977 100644 --- a/plugins/archive/localization/et_EE.inc +++ b/plugins/archive/localization/et_EE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhiveeri'; $labels['buttontitle'] = 'Arhiveeri see kiri'; $labels['archived'] = 'Edukalt arhiveeritud'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Kuu (nt. Arhiiv/2012/06)'; $labels['archivetypefolder'] = 'Esialgne kaust'; $labels['archivetypesender'] = 'Saatja e-post'; $labels['unkownsender'] = 'teadmata'; - ?> diff --git a/plugins/archive/localization/eu_ES.inc b/plugins/archive/localization/eu_ES.inc index d962ebd5e..5aa91ee84 100644 --- a/plugins/archive/localization/eu_ES.inc +++ b/plugins/archive/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Gorde'; $labels['buttontitle'] = 'Gorde mezu hau'; $labels['archived'] = 'Ongi gorde da'; diff --git a/plugins/archive/localization/fa_AF.inc b/plugins/archive/localization/fa_AF.inc index 498cd94e1..4bdc671aa 100644 --- a/plugins/archive/localization/fa_AF.inc +++ b/plugins/archive/localization/fa_AF.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'ارشیو'; $labels['buttontitle'] = 'ارشیو این پیام'; $labels['archived'] = 'با موفقیت ارشیو شد'; diff --git a/plugins/archive/localization/fa_IR.inc b/plugins/archive/localization/fa_IR.inc index 03bf6d8bd..e707efda9 100644 --- a/plugins/archive/localization/fa_IR.inc +++ b/plugins/archive/localization/fa_IR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'بایگانی'; $labels['buttontitle'] = 'بایگانی این پیغام'; $labels['archived'] = 'با موفقیت بایگانی شد'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'ماه (به عنوان مثال بایگانی/ $labels['archivetypefolder'] = 'پوشه اصلی'; $labels['archivetypesender'] = 'ایمیل فرستنده'; $labels['unkownsender'] = 'ناشناخته'; - ?> diff --git a/plugins/archive/localization/fi_FI.inc b/plugins/archive/localization/fi_FI.inc index 261bc19ec..f67173916 100644 --- a/plugins/archive/localization/fi_FI.inc +++ b/plugins/archive/localization/fi_FI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkistoi'; $labels['buttontitle'] = 'Arkistoi viesti'; $labels['archived'] = 'Arkistoitu onnistuneesti'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/fr_FR.inc b/plugins/archive/localization/fr_FR.inc index fbed8725b..8cea65be7 100644 --- a/plugins/archive/localization/fr_FR.inc +++ b/plugins/archive/localization/fr_FR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archive'; $labels['buttontitle'] = 'Archiver ce message'; $labels['archived'] = 'Message archivé avec success'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mois (ex Archives/2012/06)'; $labels['archivetypefolder'] = 'Dossier original'; $labels['archivetypesender'] = 'Email de l\'émetteur'; $labels['unkownsender'] = 'inconnu'; - ?> diff --git a/plugins/archive/localization/gl_ES.inc b/plugins/archive/localization/gl_ES.inc index 55180fefe..a4eb6a0f5 100644 --- a/plugins/archive/localization/gl_ES.inc +++ b/plugins/archive/localization/gl_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensaxe'; $labels['archived'] = 'Aquivouse a mensaxe'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mes (p.ex. Arquivo/2012/06)'; $labels['archivetypefolder'] = 'Cartafol orixe'; $labels['archivetypesender'] = 'Enderezo do remitente'; $labels['unkownsender'] = 'descoñecido'; - ?> diff --git a/plugins/archive/localization/he_IL.inc b/plugins/archive/localization/he_IL.inc index 37bcaaa3f..609e19ab9 100644 --- a/plugins/archive/localization/he_IL.inc +++ b/plugins/archive/localization/he_IL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'ארכיון'; $labels['buttontitle'] = 'משלוח ההודעה לארכיב'; $labels['archived'] = 'עדכון הארכיון הצליח'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'חודש ( לדוגמה, ארכיב/2012/96 )'; $labels['archivetypefolder'] = 'תיקיה מקורית'; $labels['archivetypesender'] = 'שולח ההודעה'; $labels['unkownsender'] = 'לא ידוע'; - ?> diff --git a/plugins/archive/localization/hi_IN.inc b/plugins/archive/localization/hi_IN.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/hi_IN.inc +++ b/plugins/archive/localization/hi_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/hr_HR.inc b/plugins/archive/localization/hr_HR.inc index 86ef2a98f..9bf75d0d1 100644 --- a/plugins/archive/localization/hr_HR.inc +++ b/plugins/archive/localization/hr_HR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhiviraj poruku'; $labels['archived'] = 'Uspješno arhivirana'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/hu_HU.inc b/plugins/archive/localization/hu_HU.inc index 970a24184..6c570487c 100644 --- a/plugins/archive/localization/hu_HU.inc +++ b/plugins/archive/localization/hu_HU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archiválás'; $labels['buttontitle'] = 'Üzenet archiválása'; $labels['archived'] = 'Sikeres archiválás'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Honap ( pl Arhívum/2012/06)'; $labels['archivetypefolder'] = 'Eredeti mappa'; $labels['archivetypesender'] = 'Feladó'; $labels['unkownsender'] = 'ismeretlen'; - ?> diff --git a/plugins/archive/localization/hy_AM.inc b/plugins/archive/localization/hy_AM.inc index d807ae507..6ce968666 100644 --- a/plugins/archive/localization/hy_AM.inc +++ b/plugins/archive/localization/hy_AM.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Արխիվ'; $labels['buttontitle'] = 'Արխիվացնել այս հաղորդագրությունը'; $labels['archived'] = 'Բարեհաջող արխիվացվեց'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/ia.inc b/plugins/archive/localization/ia.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/ia.inc +++ b/plugins/archive/localization/ia.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/id_ID.inc b/plugins/archive/localization/id_ID.inc index 09b5ed547..1601b545b 100644 --- a/plugins/archive/localization/id_ID.inc +++ b/plugins/archive/localization/id_ID.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arsip'; $labels['buttontitle'] = 'Arsipkan pesan ini'; $labels['archived'] = 'Berhasil mengarsipkan'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Bulan (contoh: Arsip/2012/06)'; $labels['archivetypefolder'] = 'Folder asli'; $labels['archivetypesender'] = 'Email pengirim'; $labels['unkownsender'] = 'Tidak dikenal'; - ?> diff --git a/plugins/archive/localization/it_IT.inc b/plugins/archive/localization/it_IT.inc index 66092f8ae..bd0f66f9c 100644 --- a/plugins/archive/localization/it_IT.inc +++ b/plugins/archive/localization/it_IT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivio'; $labels['buttontitle'] = 'Archivia questo messaggio'; $labels['archived'] = 'Archiviato correttamente'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mese (es. Archivio/2012/06)'; $labels['archivetypefolder'] = 'Cartella originale'; $labels['archivetypesender'] = 'Mittente email'; $labels['unkownsender'] = 'sconosciuto'; - ?> diff --git a/plugins/archive/localization/ja_JP.inc b/plugins/archive/localization/ja_JP.inc index b260e2458..971839abd 100644 --- a/plugins/archive/localization/ja_JP.inc +++ b/plugins/archive/localization/ja_JP.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'アーカイブ'; $labels['buttontitle'] = 'このメッセージをアーカイブ'; $labels['archived'] = 'アーカイブしました。'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = '月 (e.g. アーカイブ/2012/06)'; $labels['archivetypefolder'] = '元のフォルダー'; $labels['archivetypesender'] = '電子メールの送信者'; $labels['unkownsender'] = '不明'; - ?> diff --git a/plugins/archive/localization/km_KH.inc b/plugins/archive/localization/km_KH.inc index 6872026ec..d8b07ed2f 100644 --- a/plugins/archive/localization/km_KH.inc +++ b/plugins/archive/localization/km_KH.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'ប័ណ្ណសារ'; $labels['buttontitle'] = 'ប័ណ្ណសារ សារលិខិត នេះ'; $labels['archived'] = 'ប័ណ្ណសារ បានសំរេច'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/ko_KR.inc b/plugins/archive/localization/ko_KR.inc index 4226420a0..21b635b07 100644 --- a/plugins/archive/localization/ko_KR.inc +++ b/plugins/archive/localization/ko_KR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = '보관'; $labels['buttontitle'] = '이 메시지를 보관'; $labels['archived'] = '성공적으로 보관됨'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = '월 (예: 보관 편지함/2012/06)'; $labels['archivetypefolder'] = '원본 폴더'; $labels['archivetypesender'] = '발신인 이메일'; $labels['unkownsender'] = '알 수 없음'; - ?> diff --git a/plugins/archive/localization/ku.inc b/plugins/archive/localization/ku.inc index 15a7c61b1..3b5e8ccfd 100644 --- a/plugins/archive/localization/ku.inc +++ b/plugins/archive/localization/ku.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arşîv'; $labels['buttontitle'] = 'am masaja bxa arşiv'; $labels['archived'] = 'ba gşti Arşiv kra'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/lb_LU.inc b/plugins/archive/localization/lb_LU.inc index 6e9e6db22..ec33f69d5 100644 --- a/plugins/archive/localization/lb_LU.inc +++ b/plugins/archive/localization/lb_LU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivéieren'; $labels['buttontitle'] = 'Dëse Message archivéieren'; $labels['archived'] = 'Erfollegräich archivéiert'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mount (z.B. Archiv/2013/06)'; $labels['archivetypefolder'] = 'Original-Dossier'; $labels['archivetypesender'] = 'Sender-E-Mail'; $labels['unkownsender'] = 'onbekannt'; - ?> diff --git a/plugins/archive/localization/lt_LT.inc b/plugins/archive/localization/lt_LT.inc index 069a65665..414c01daa 100644 --- a/plugins/archive/localization/lt_LT.inc +++ b/plugins/archive/localization/lt_LT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archyvuoti'; $labels['buttontitle'] = 'Perkelti šį laišką į archyvą'; $labels['archived'] = 'Laiškas sėkmingai perkeltas į archyvą'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mėnesis (pvz. Archyvas/2012/06)'; $labels['archivetypefolder'] = 'Tikrasis aplankas'; $labels['archivetypesender'] = 'Siuntėjo el. pašto adresas'; $labels['unkownsender'] = 'nežinomas'; - ?> diff --git a/plugins/archive/localization/lv_LV.inc b/plugins/archive/localization/lv_LV.inc index d4c892705..0f22ac98c 100644 --- a/plugins/archive/localization/lv_LV.inc +++ b/plugins/archive/localization/lv_LV.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhīvs'; $labels['buttontitle'] = 'Arhivēt šo vēstuli'; $labels['archived'] = 'Vēstule veiksmīgi arhivēta'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mēnešiem (piem. Arhīvs/2012/06)'; $labels['archivetypefolder'] = 'Sākotnējā mape'; $labels['archivetypesender'] = 'Sūtītāja e-pasts'; $labels['unkownsender'] = 'nezināms'; - ?> diff --git a/plugins/archive/localization/ml_IN.inc b/plugins/archive/localization/ml_IN.inc index 097ea14b9..3b06330cc 100644 --- a/plugins/archive/localization/ml_IN.inc +++ b/plugins/archive/localization/ml_IN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'ശേഖരം'; $labels['buttontitle'] = 'ഈ മെസ്സേജ് ശേഖരിക്കുക'; $labels['archived'] = 'വിജയകരമായി ശേഖരിച്ചു'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/mn_MN.inc b/plugins/archive/localization/mn_MN.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/mn_MN.inc +++ b/plugins/archive/localization/mn_MN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/mr_IN.inc b/plugins/archive/localization/mr_IN.inc index 8b2397937..46ae7b959 100644 --- a/plugins/archive/localization/mr_IN.inc +++ b/plugins/archive/localization/mr_IN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'जतन केलेला'; $labels['buttontitle'] = 'हा संदेश जतन करा'; $labels['archived'] = 'यशस्वीरीत्या जतन केला'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/ms_MY.inc b/plugins/archive/localization/ms_MY.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/ms_MY.inc +++ b/plugins/archive/localization/ms_MY.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/my_MM.inc b/plugins/archive/localization/my_MM.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/my_MM.inc +++ b/plugins/archive/localization/my_MM.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/nb_NO.inc b/plugins/archive/localization/nb_NO.inc index 62ea381ca..6b85b8286 100644 --- a/plugins/archive/localization/nb_NO.inc +++ b/plugins/archive/localization/nb_NO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkiv'; $labels['buttontitle'] = 'Arkiver meldingen'; $labels['archived'] = 'Arkivert'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Måned (f.eks. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Opprinnelig mappe'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'ukjent'; - ?> diff --git a/plugins/archive/localization/nl_BE.inc b/plugins/archive/localization/nl_BE.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/nl_BE.inc +++ b/plugins/archive/localization/nl_BE.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/nl_NL.inc b/plugins/archive/localization/nl_NL.inc index 263874236..a89b1ba6e 100644 --- a/plugins/archive/localization/nl_NL.inc +++ b/plugins/archive/localization/nl_NL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archief'; $labels['buttontitle'] = 'Archiveer dit bericht'; $labels['archived'] = 'Succesvol gearchiveerd'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Maand (bijv. Archief/2012/06)'; $labels['archivetypefolder'] = 'Originele map'; $labels['archivetypesender'] = 'Afzender e-mail'; $labels['unkownsender'] = 'onbekend'; - ?> diff --git a/plugins/archive/localization/nn_NO.inc b/plugins/archive/localization/nn_NO.inc index 01effaa62..4934b0b7a 100644 --- a/plugins/archive/localization/nn_NO.inc +++ b/plugins/archive/localization/nn_NO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkiver'; $labels['buttontitle'] = 'Arkiver meldinga'; $labels['archived'] = 'Arkivert'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Månad (f.eks. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Opprinneleg mappe'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'ukjent'; - ?> diff --git a/plugins/archive/localization/nqo.inc b/plugins/archive/localization/nqo.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/nqo.inc +++ b/plugins/archive/localization/nqo.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/om.inc b/plugins/archive/localization/om.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/om.inc +++ b/plugins/archive/localization/om.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/pl_PL.inc b/plugins/archive/localization/pl_PL.inc index 316ca702d..1320b53a6 100644 --- a/plugins/archive/localization/pl_PL.inc +++ b/plugins/archive/localization/pl_PL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archiwum'; $labels['buttontitle'] = 'Przenieś do archiwum'; $labels['archived'] = 'Pomyślnie zarchiwizowano'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Miesiąca (np. Archiwum/2012/06)'; $labels['archivetypefolder'] = 'Oryginalny folder'; $labels['archivetypesender'] = 'E-mail nadawcy'; $labels['unkownsender'] = 'nieznany'; - ?> diff --git a/plugins/archive/localization/pt_BR.inc b/plugins/archive/localization/pt_BR.inc index 05508e2e3..aa72d227f 100644 --- a/plugins/archive/localization/pt_BR.inc +++ b/plugins/archive/localization/pt_BR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensagem'; $labels['archived'] = 'Arquivada com sucesso'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/pt_PT.inc b/plugins/archive/localization/pt_PT.inc index b932022b5..95a24948d 100644 --- a/plugins/archive/localization/pt_PT.inc +++ b/plugins/archive/localization/pt_PT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensagem'; $labels['archived'] = 'Arquivada com sucesso'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mês (ex. Arquivo/2012/06)'; $labels['archivetypefolder'] = 'Pasta original'; $labels['archivetypesender'] = 'E-mail do remetente'; $labels['unkownsender'] = 'desconhecido'; - ?> diff --git a/plugins/archive/localization/ro_RO.inc b/plugins/archive/localization/ro_RO.inc index e88e918fa..64d1bd596 100644 --- a/plugins/archive/localization/ro_RO.inc +++ b/plugins/archive/localization/ro_RO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhivă'; $labels['buttontitle'] = 'Arhivează acest mesaj.'; $labels['archived'] = 'Arhivare reuşită.'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Luni (ex. Arhiva/2013/06)'; $labels['archivetypefolder'] = 'Dosar original'; $labels['archivetypesender'] = 'E-mail expeditor'; $labels['unkownsender'] = 'necunoscut'; - ?> diff --git a/plugins/archive/localization/ru_RU.inc b/plugins/archive/localization/ru_RU.inc index 9a18981d3..e33edc21f 100644 --- a/plugins/archive/localization/ru_RU.inc +++ b/plugins/archive/localization/ru_RU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Архив'; $labels['buttontitle'] = 'Переместить выбранное в архив'; $labels['archived'] = 'Перенесено в Архив'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Месяц (например, Архив/2012/06) $labels['archivetypefolder'] = 'Исходная папка'; $labels['archivetypesender'] = 'Адрес отправителя'; $labels['unkownsender'] = 'неизвестно'; - ?> diff --git a/plugins/archive/localization/si_LK.inc b/plugins/archive/localization/si_LK.inc index 91e47aee0..f8035605c 100644 --- a/plugins/archive/localization/si_LK.inc +++ b/plugins/archive/localization/si_LK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'සංරක්‍ෂණය'; $labels['buttontitle'] = 'මෙම පණිවිඩය සංරක්‍ෂණය කරන්න'; $labels['archived'] = 'සංරක්‍ෂණය සාර්ථකයි'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/sk_SK.inc b/plugins/archive/localization/sk_SK.inc index 7c68e238c..0bcdaee5b 100644 --- a/plugins/archive/localization/sk_SK.inc +++ b/plugins/archive/localization/sk_SK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Archivovať'; $labels['buttontitle'] = 'Archivovať túto správu'; $labels['archived'] = 'Úspešne archivované'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mesiac (napríklad Archív/2012/06)'; $labels['archivetypefolder'] = 'Pôvodný priečinok'; $labels['archivetypesender'] = 'E-mailová adresa odosielateľa'; $labels['unkownsender'] = 'neznámy'; - ?> diff --git a/plugins/archive/localization/sl_SI.inc b/plugins/archive/localization/sl_SI.inc index b49fe93ab..5dbd605b4 100644 --- a/plugins/archive/localization/sl_SI.inc +++ b/plugins/archive/localization/sl_SI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhiv'; $labels['buttontitle'] = 'Arhiviraj to sporočilo'; $labels['archived'] = 'Sporočilo je bilo uspešno arhivirano'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Mesec (npr. Arhiv/2012/06)'; $labels['archivetypefolder'] = 'Izvorna mapa'; $labels['archivetypesender'] = 'Naslov pošiljatelja'; $labels['unkownsender'] = 'neznan'; - ?> diff --git a/plugins/archive/localization/sr_CS.inc b/plugins/archive/localization/sr_CS.inc index 686038d4c..ca04f4ba0 100644 --- a/plugins/archive/localization/sr_CS.inc +++ b/plugins/archive/localization/sr_CS.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhivirati ovu poruku'; $labels['archived'] = 'Uspěšno arhivirano'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/sv_SE.inc b/plugins/archive/localization/sv_SE.inc index 49ab09300..82e1808f2 100644 --- a/plugins/archive/localization/sv_SE.inc +++ b/plugins/archive/localization/sv_SE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arkivera'; $labels['buttontitle'] = 'Arkivera meddelande'; $labels['archived'] = 'Meddelandet är arkiverat'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Månad (ex. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Ursprunglig katalog'; $labels['archivetypesender'] = 'Avsändaradress'; $labels['unkownsender'] = 'Okänd'; - ?> diff --git a/plugins/archive/localization/te_IN.inc b/plugins/archive/localization/te_IN.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/te_IN.inc +++ b/plugins/archive/localization/te_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/th_TH.inc b/plugins/archive/localization/th_TH.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/th_TH.inc +++ b/plugins/archive/localization/th_TH.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/ti.inc b/plugins/archive/localization/ti.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/ti.inc +++ b/plugins/archive/localization/ti.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/tr_TR.inc b/plugins/archive/localization/tr_TR.inc index b6960ea89..694643fba 100644 --- a/plugins/archive/localization/tr_TR.inc +++ b/plugins/archive/localization/tr_TR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Arşiv'; $labels['buttontitle'] = 'Bu postayı arşivle'; $labels['archived'] = 'Başarıyla arşivlendi'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Ay(Arşiv/2012/06)'; $labels['archivetypefolder'] = 'Özgün dosya'; $labels['archivetypesender'] = 'E-Posta Göndericisi'; $labels['unkownsender'] = 'bilinmeyen'; - ?> diff --git a/plugins/archive/localization/tzm.inc b/plugins/archive/localization/tzm.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/tzm.inc +++ b/plugins/archive/localization/tzm.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/uk_UA.inc b/plugins/archive/localization/uk_UA.inc index 777be6167..1fb84146c 100644 --- a/plugins/archive/localization/uk_UA.inc +++ b/plugins/archive/localization/uk_UA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Архів'; $labels['buttontitle'] = 'Архівувати це повідомлення'; $labels['archived'] = 'Перенесено в архів'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/ur_PK.inc b/plugins/archive/localization/ur_PK.inc index 1068fd4b6..ce13b2a85 100644 --- a/plugins/archive/localization/ur_PK.inc +++ b/plugins/archive/localization/ur_PK.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); ?> diff --git a/plugins/archive/localization/vi_VN.inc b/plugins/archive/localization/vi_VN.inc index fa2be9895..493b5491b 100644 --- a/plugins/archive/localization/vi_VN.inc +++ b/plugins/archive/localization/vi_VN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = 'Lưu trữ'; $labels['buttontitle'] = 'Lưu lại bức thư này'; $labels['archived'] = 'Lưu lại thành công'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/zh_CN.inc b/plugins/archive/localization/zh_CN.inc index 17af54cde..9fc6bd0b9 100644 --- a/plugins/archive/localization/zh_CN.inc +++ b/plugins/archive/localization/zh_CN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = '存档'; $labels['buttontitle'] = '将该信息存档'; $labels['archived'] = '存档成功'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; $labels['archivetypefolder'] = 'Original folder'; $labels['archivetypesender'] = 'Sender email'; $labels['unkownsender'] = 'unknown'; - ?> diff --git a/plugins/archive/localization/zh_TW.inc b/plugins/archive/localization/zh_TW.inc index 6eac3a391..30fec5563 100644 --- a/plugins/archive/localization/zh_TW.inc +++ b/plugins/archive/localization/zh_TW.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ -$labels = array(); $labels['buttontext'] = '封存'; $labels['buttontitle'] = '封存此信件'; $labels['archived'] = '已成功封存'; @@ -30,5 +29,4 @@ $labels['archivetypemonth'] = '月份(例如: 封存/2012/06)'; $labels['archivetypefolder'] = '原始資料夾'; $labels['archivetypesender'] = '寄件者電子信箱'; $labels['unkownsender'] = '未知'; - ?> diff --git a/plugins/attachment_reminder/localization/ar.inc b/plugins/attachment_reminder/localization/ar.inc index 1ca508296..5dce08f1d 100644 --- a/plugins/attachment_reminder/localization/ar.inc +++ b/plugins/attachment_reminder/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ar_SA.inc b/plugins/attachment_reminder/localization/ar_SA.inc index f41ecf971..12b1ffedb 100644 --- a/plugins/attachment_reminder/localization/ar_SA.inc +++ b/plugins/attachment_reminder/localization/ar_SA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "هل نسيت إرفاق ملف؟"; $messages['reminderoption'] = "تذكير حول المرفقات المنسية"; $messages['keywords'] = "المرفقات,الملف,ارفاق,مرفق,ارفاق,مضمون,CV,صفحة المغلف"; diff --git a/plugins/attachment_reminder/localization/az_AZ.inc b/plugins/attachment_reminder/localization/az_AZ.inc index df8190531..dccdf5dbe 100644 --- a/plugins/attachment_reminder/localization/az_AZ.inc +++ b/plugins/attachment_reminder/localization/az_AZ.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Faylı əlavə etməyi unutdunuz?"; $messages['reminderoption'] = "Unudulmuş qoşmalardan xəbərdar et"; $messages['keywords'] = "qoşmalar,fayl,qoşma,qoşulub,qoşulur,qapalı,CV,qoşma məktub"; diff --git a/plugins/attachment_reminder/localization/be_BE.inc b/plugins/attachment_reminder/localization/be_BE.inc index faf663b8d..25c05ad7e 100644 --- a/plugins/attachment_reminder/localization/be_BE.inc +++ b/plugins/attachment_reminder/localization/be_BE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Забыліся далучыць файл?"; $messages['reminderoption'] = "Напамінаць пра забытыя далучэнні"; $messages['keywords'] = "далучэнне,файл,далучыць,далучаны,далучаецца,укладзены,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bg_BG.inc b/plugins/attachment_reminder/localization/bg_BG.inc index 6dd474a7c..93d657106 100644 --- a/plugins/attachment_reminder/localization/bg_BG.inc +++ b/plugins/attachment_reminder/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Забравихте ли да прикрепите файл към съобщението?"; $messages['reminderoption'] = "Напомняне за забравени прикачени файлове"; $messages['keywords'] = "прикачен,прикрепен,прикачам,прикачвам,прикрепям,прикрепвам,файл,attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bn_BD.inc b/plugins/attachment_reminder/localization/bn_BD.inc index 1ca508296..5dce08f1d 100644 --- a/plugins/attachment_reminder/localization/bn_BD.inc +++ b/plugins/attachment_reminder/localization/bn_BD.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/bs_BA.inc b/plugins/attachment_reminder/localization/bs_BA.inc index 7a73bcaa1..388b36cfa 100644 --- a/plugins/attachment_reminder/localization/bs_BA.inc +++ b/plugins/attachment_reminder/localization/bs_BA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Da li ste zaboravili da dodate ovu datoteku?"; $messages['reminderoption'] = "Napomene o zaboravljenim prilozima"; $messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter,prilog,biografija,popratno pismo,prilogu,popratnom pismu,datoteka,fajl"; diff --git a/plugins/attachment_reminder/localization/ca_ES.inc b/plugins/attachment_reminder/localization/ca_ES.inc index 2a7f32276..285210aeb 100644 --- a/plugins/attachment_reminder/localization/ca_ES.inc +++ b/plugins/attachment_reminder/localization/ca_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Heu oblidat afegir un fitxer?"; $messages['reminderoption'] = "Avís de fitxers adjunts oblidats"; $messages['keywords'] = "adjunt,fitxer,adjuntar,adjuntat,adjuntant,CV,carta"; diff --git a/plugins/attachment_reminder/localization/cs_CZ.inc b/plugins/attachment_reminder/localization/cs_CZ.inc index dee1f77ad..975f2bd17 100644 --- a/plugins/attachment_reminder/localization/cs_CZ.inc +++ b/plugins/attachment_reminder/localization/cs_CZ.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Nezapomněli jste připojit přílohu?"; $messages['reminderoption'] = "Upozorňovat na zapomenuté přílohy"; $messages['keywords'] = "příloha,přílohy,příloze,přílohu,přiloženém,připojeném,CV,životopis"; diff --git a/plugins/attachment_reminder/localization/cy_GB.inc b/plugins/attachment_reminder/localization/cy_GB.inc index dffe10702..259000180 100644 --- a/plugins/attachment_reminder/localization/cy_GB.inc +++ b/plugins/attachment_reminder/localization/cy_GB.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Wedi anghofio atodi ffeil?"; $messages['reminderoption'] = "Atgoffa am atodiadau ar goll"; $messages['keywords'] = "atodiad,atodi,atodaf,atodwyd,atodir,amgaedig,dogfen,llythyr,ffeil,attachment,file,attach,attached,attaching,enclosed,CV,cover letter,"; diff --git a/plugins/attachment_reminder/localization/da_DK.inc b/plugins/attachment_reminder/localization/da_DK.inc index c7983cfc0..ac7e6ff89 100644 --- a/plugins/attachment_reminder/localization/da_DK.inc +++ b/plugins/attachment_reminder/localization/da_DK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Glemte du at vedhæfte en fil?"; $messages['reminderoption'] = "Påmind om glemt vedhæftning af filer"; $messages['keywords'] = "vedhæftet fil,fil,vedhæft,vedhæftet,vedhæfter,lukket,CV,følgebrev"; diff --git a/plugins/attachment_reminder/localization/de_CH.inc b/plugins/attachment_reminder/localization/de_CH.inc index ad9f8d4f4..a093e6c72 100644 --- a/plugins/attachment_reminder/localization/de_CH.inc +++ b/plugins/attachment_reminder/localization/de_CH.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ -$messages = array(); $messages['forgotattachment'] = "Haben Sie möglicherweise vergessen eine Datei anzuhängen?"; $messages['reminderoption'] = "Vor vergessenen Anhängen warnen"; $messages['keywords'] = "anbei,anhang,angehängt,angefügt,beigefügt,beliegend"; diff --git a/plugins/attachment_reminder/localization/de_DE.inc b/plugins/attachment_reminder/localization/de_DE.inc index 7de41d1fc..f59f66a86 100644 --- a/plugins/attachment_reminder/localization/de_DE.inc +++ b/plugins/attachment_reminder/localization/de_DE.inc @@ -1,6 +1,5 @@ diff --git a/plugins/enigma/localization/ru_RU.inc b/plugins/enigma/localization/ru_RU.inc index 3033d002c..09acd535a 100644 --- a/plugins/enigma/localization/ru_RU.inc +++ b/plugins/enigma/localization/ru_RU.inc @@ -17,7 +17,6 @@ */ -$labels = array(); $labels['enigmasettings'] = 'Enigma: Настройки'; $labels['enigmacerts'] = 'Enigma: Сертификаты (S/MIME)'; $labels['enigmakeys'] = 'Enigma: Ключи (PGP)'; @@ -34,7 +33,6 @@ $labels['typepublickey'] = 'Открытый ключ'; $labels['typekeypair'] = 'пара ключей'; $labels['keyattfound'] = 'Это сообщение содержит один или несколько ключей PGP.'; $labels['keyattimport'] = 'Импортировать ключи'; - $labels['createkeys'] = 'Создать новую пару ключей'; $labels['importkeys'] = 'Импортировать ключ(и)'; $labels['exportkeys'] = 'Экспортировать ключ(и)'; @@ -44,8 +42,6 @@ $labels['keydisable'] = 'Отключить ключ'; $labels['keyrevoke'] = 'Отозвать ключ'; $labels['keysend'] = 'Отправить публичный ключ в собщении'; $labels['keychpass'] = 'Изменить пароль'; - -$messages = array(); $messages['sigvalid'] = 'Проверенная подпись у $sender.'; $messages['siginvalid'] = 'Неверная подпись у $sender.'; $messages['signokey'] = 'Непроверяемая подпись. Открытый ключ не найден. Идентификатор ключа: $keyid.'; @@ -61,5 +57,4 @@ $messages['keysimportfailed'] = 'Невозможно импортировать $messages['keysimportsuccess'] = 'Ключи успешно импортированы. Импортировано: $new, без изменений: $old.'; $messages['keyconfirmdelete'] = 'Вы точно хотите удалить выбранные ключи?'; $messages['keyimporttext'] = 'Вы можете импортировать открытые и секретные ключи или сообщения об отзыве ключей в формате ASCII-Armor.'; - ?> diff --git a/plugins/help/localization/ar.inc b/plugins/help/localization/ar.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/ar.inc +++ b/plugins/help/localization/ar.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/ar_SA.inc b/plugins/help/localization/ar_SA.inc index c92f79fba..971d3c0f3 100644 --- a/plugins/help/localization/ar_SA.inc +++ b/plugins/help/localization/ar_SA.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'مساعدة'; $labels['about'] = 'حوْل'; $labels['license'] = 'الرخصة'; - ?> diff --git a/plugins/help/localization/ast.inc b/plugins/help/localization/ast.inc index 0b39726d3..1e3045a4a 100644 --- a/plugins/help/localization/ast.inc +++ b/plugins/help/localization/ast.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ayuda'; $labels['about'] = 'Tocante a'; $labels['license'] = 'Llicencia'; diff --git a/plugins/help/localization/az_AZ.inc b/plugins/help/localization/az_AZ.inc index 73fc3659e..60606fcdc 100644 --- a/plugins/help/localization/az_AZ.inc +++ b/plugins/help/localization/az_AZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Kömək'; $labels['about'] = 'Haqqında'; $labels['license'] = 'Lisenziya'; - ?> diff --git a/plugins/help/localization/be_BE.inc b/plugins/help/localization/be_BE.inc index d1505ec32..c14713bc8 100644 --- a/plugins/help/localization/be_BE.inc +++ b/plugins/help/localization/be_BE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Дапамога'; $labels['about'] = 'Апісанне'; $labels['license'] = 'Ліцэнзія'; diff --git a/plugins/help/localization/ber.inc b/plugins/help/localization/ber.inc index 12fe4442e..046e45733 100644 --- a/plugins/help/localization/ber.inc +++ b/plugins/help/localization/ber.inc @@ -13,5 +13,4 @@ +-----------------------------------------------------------------------+ */ -$labels = array(); diff --git a/plugins/help/localization/bg_BG.inc b/plugins/help/localization/bg_BG.inc index 335a31e61..7199513f9 100644 --- a/plugins/help/localization/bg_BG.inc +++ b/plugins/help/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Помощ'; $labels['about'] = 'Относно'; $labels['license'] = 'Лиценз'; diff --git a/plugins/help/localization/bn_BD.inc b/plugins/help/localization/bn_BD.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/bn_BD.inc +++ b/plugins/help/localization/bn_BD.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/br.inc b/plugins/help/localization/br.inc index 3ea6c029c..ae5d624c4 100644 --- a/plugins/help/localization/br.inc +++ b/plugins/help/localization/br.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Skoazell'; $labels['about'] = 'Diwar-benn'; $labels['license'] = 'Lañvaz'; - ?> diff --git a/plugins/help/localization/bs_BA.inc b/plugins/help/localization/bs_BA.inc index 2b502d182..6559879a8 100644 --- a/plugins/help/localization/bs_BA.inc +++ b/plugins/help/localization/bs_BA.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Pomoć'; $labels['about'] = 'O programu'; $labels['license'] = 'Licenca'; - ?> diff --git a/plugins/help/localization/ca_ES.inc b/plugins/help/localization/ca_ES.inc index f2630d81f..60c86f795 100644 --- a/plugins/help/localization/ca_ES.inc +++ b/plugins/help/localization/ca_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ajuda'; $labels['about'] = 'Quant a'; $labels['license'] = 'Llicència'; - ?> diff --git a/plugins/help/localization/cs_CZ.inc b/plugins/help/localization/cs_CZ.inc index 6147c0a7a..f207f014c 100644 --- a/plugins/help/localization/cs_CZ.inc +++ b/plugins/help/localization/cs_CZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Nápověda'; $labels['about'] = 'O aplikaci'; $labels['license'] = 'Licence'; - ?> diff --git a/plugins/help/localization/cy_GB.inc b/plugins/help/localization/cy_GB.inc index a2decbbf9..f5c34001f 100644 --- a/plugins/help/localization/cy_GB.inc +++ b/plugins/help/localization/cy_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Cymorth'; $labels['about'] = 'Amdan'; $labels['license'] = 'Trwydded'; - ?> diff --git a/plugins/help/localization/da_DK.inc b/plugins/help/localization/da_DK.inc index bbb3f61b3..43e30803f 100644 --- a/plugins/help/localization/da_DK.inc +++ b/plugins/help/localization/da_DK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hjælp'; $labels['about'] = 'Om'; $labels['license'] = 'Licens'; - ?> diff --git a/plugins/help/localization/de_CH.inc b/plugins/help/localization/de_CH.inc index 964723993..9df46d9c2 100644 --- a/plugins/help/localization/de_CH.inc +++ b/plugins/help/localization/de_CH.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hilfe'; $labels['about'] = 'Information'; $labels['license'] = 'Lizenz'; - ?> diff --git a/plugins/help/localization/de_DE.inc b/plugins/help/localization/de_DE.inc index 250657da6..308419a27 100644 --- a/plugins/help/localization/de_DE.inc +++ b/plugins/help/localization/de_DE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hilfe'; $labels['about'] = 'Über'; $labels['license'] = 'Lizenz'; - ?> diff --git a/plugins/help/localization/el_GR.inc b/plugins/help/localization/el_GR.inc index 8006587ee..3286f0e85 100644 --- a/plugins/help/localization/el_GR.inc +++ b/plugins/help/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Βοηθεια'; $labels['about'] = 'Σχετικά'; $labels['license'] = 'Άδεια χρήσης'; diff --git a/plugins/help/localization/en_GB.inc b/plugins/help/localization/en_GB.inc index df8bff280..b23cfb6ca 100644 --- a/plugins/help/localization/en_GB.inc +++ b/plugins/help/localization/en_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Help'; $labels['about'] = 'About'; $labels['license'] = 'Licence'; - ?> diff --git a/plugins/help/localization/eo.inc b/plugins/help/localization/eo.inc index c496c96cb..0f03dfc07 100644 --- a/plugins/help/localization/eo.inc +++ b/plugins/help/localization/eo.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Helpo'; $labels['about'] = 'Pri'; $labels['license'] = 'Permesilo'; - ?> diff --git a/plugins/help/localization/es_AR.inc b/plugins/help/localization/es_AR.inc index 469a5218d..ee0eee3a6 100644 --- a/plugins/help/localization/es_AR.inc +++ b/plugins/help/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ayuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licencia'; diff --git a/plugins/help/localization/es_ES.inc b/plugins/help/localization/es_ES.inc index 446172f47..ee0eee3a6 100644 --- a/plugins/help/localization/es_ES.inc +++ b/plugins/help/localization/es_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ayuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licencia'; - ?> diff --git a/plugins/help/localization/et_EE.inc b/plugins/help/localization/et_EE.inc index a55348ad9..633c5ebca 100644 --- a/plugins/help/localization/et_EE.inc +++ b/plugins/help/localization/et_EE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Abi'; $labels['about'] = 'Roundcube info'; $labels['license'] = 'Litsents'; - ?> diff --git a/plugins/help/localization/eu_ES.inc b/plugins/help/localization/eu_ES.inc index 9b0b36c98..f06d4f855 100644 --- a/plugins/help/localization/eu_ES.inc +++ b/plugins/help/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Laguntza'; $labels['about'] = 'Honi buruz'; $labels['license'] = 'Lizentzia'; diff --git a/plugins/help/localization/fa_AF.inc b/plugins/help/localization/fa_AF.inc index aaa6436d9..5e4ca7528 100644 --- a/plugins/help/localization/fa_AF.inc +++ b/plugins/help/localization/fa_AF.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'راهنما'; $labels['about'] = 'درباره نرم افزار'; $labels['license'] = 'حق نشر'; diff --git a/plugins/help/localization/fa_IR.inc b/plugins/help/localization/fa_IR.inc index 016d548ab..3285a26bc 100644 --- a/plugins/help/localization/fa_IR.inc +++ b/plugins/help/localization/fa_IR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'راهنما'; $labels['about'] = 'درباره'; $labels['license'] = 'گواهینامه'; - ?> diff --git a/plugins/help/localization/fi_FI.inc b/plugins/help/localization/fi_FI.inc index 1803a6c4d..46e062e98 100644 --- a/plugins/help/localization/fi_FI.inc +++ b/plugins/help/localization/fi_FI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ohje'; $labels['about'] = 'Tietoja'; $labels['license'] = 'Lisenssi'; - ?> diff --git a/plugins/help/localization/fr_FR.inc b/plugins/help/localization/fr_FR.inc index 16a33696b..f4b4cae9b 100644 --- a/plugins/help/localization/fr_FR.inc +++ b/plugins/help/localization/fr_FR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Aide'; $labels['about'] = 'A propos'; $labels['license'] = 'Licence'; - ?> diff --git a/plugins/help/localization/gl_ES.inc b/plugins/help/localization/gl_ES.inc index e3e9e36ca..146084f81 100644 --- a/plugins/help/localization/gl_ES.inc +++ b/plugins/help/localization/gl_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Axuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licenza'; - ?> diff --git a/plugins/help/localization/he_IL.inc b/plugins/help/localization/he_IL.inc index 3c56ca1fa..e3024d771 100644 --- a/plugins/help/localization/he_IL.inc +++ b/plugins/help/localization/he_IL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'עזרה'; $labels['about'] = 'אודות'; $labels['license'] = 'רשיון'; - ?> diff --git a/plugins/help/localization/hi_IN.inc b/plugins/help/localization/hi_IN.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/hi_IN.inc +++ b/plugins/help/localization/hi_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/hu_HU.inc b/plugins/help/localization/hu_HU.inc index 8ea50b620..e3f9499ef 100644 --- a/plugins/help/localization/hu_HU.inc +++ b/plugins/help/localization/hu_HU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Segítség'; $labels['about'] = 'Névjegy'; $labels['license'] = 'Licenc'; - ?> diff --git a/plugins/help/localization/hy_AM.inc b/plugins/help/localization/hy_AM.inc index daf891602..a034e0471 100644 --- a/plugins/help/localization/hy_AM.inc +++ b/plugins/help/localization/hy_AM.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Օգնություն'; $labels['about'] = 'Նկարագիր'; $labels['license'] = 'Արտոնագիր'; - ?> diff --git a/plugins/help/localization/ia.inc b/plugins/help/localization/ia.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/ia.inc +++ b/plugins/help/localization/ia.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/id_ID.inc b/plugins/help/localization/id_ID.inc index d4bc3d9a0..fab62a62a 100644 --- a/plugins/help/localization/id_ID.inc +++ b/plugins/help/localization/id_ID.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Bantuan'; $labels['about'] = 'Tentang'; $labels['license'] = 'Lisensi'; - ?> diff --git a/plugins/help/localization/it_IT.inc b/plugins/help/localization/it_IT.inc index 18e1cc9e1..73d9dd653 100644 --- a/plugins/help/localization/it_IT.inc +++ b/plugins/help/localization/it_IT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Aiuto'; $labels['about'] = 'Informazioni'; $labels['license'] = 'Licenza'; - ?> diff --git a/plugins/help/localization/ja_JP.inc b/plugins/help/localization/ja_JP.inc index 4b91c6d8d..44a8114ed 100644 --- a/plugins/help/localization/ja_JP.inc +++ b/plugins/help/localization/ja_JP.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'ヘルプ'; $labels['about'] = 'このプログラムについて'; $labels['license'] = 'ライセンス'; - ?> diff --git a/plugins/help/localization/km_KH.inc b/plugins/help/localization/km_KH.inc index 4cc29cab0..5b1da1e9f 100644 --- a/plugins/help/localization/km_KH.inc +++ b/plugins/help/localization/km_KH.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'ជំនួយ'; $labels['about'] = 'អំពី'; $labels['license'] = 'អាជ្ញាប័ណ្ណ'; - ?> diff --git a/plugins/help/localization/ko_KR.inc b/plugins/help/localization/ko_KR.inc index 836da6639..82aa50766 100644 --- a/plugins/help/localization/ko_KR.inc +++ b/plugins/help/localization/ko_KR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = '도움말'; $labels['about'] = '정보'; $labels['license'] = '라이선스'; - ?> diff --git a/plugins/help/localization/lb_LU.inc b/plugins/help/localization/lb_LU.inc index 0a7ec6eef..a86f55f76 100644 --- a/plugins/help/localization/lb_LU.inc +++ b/plugins/help/localization/lb_LU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hëllef'; $labels['about'] = 'Iwwert'; $labels['license'] = 'Lizenz'; - ?> diff --git a/plugins/help/localization/lt_LT.inc b/plugins/help/localization/lt_LT.inc index 6f615bd5a..b8716884e 100644 --- a/plugins/help/localization/lt_LT.inc +++ b/plugins/help/localization/lt_LT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Žinynas'; $labels['about'] = 'Apie'; $labels['license'] = 'Licencija'; - ?> diff --git a/plugins/help/localization/lv_LV.inc b/plugins/help/localization/lv_LV.inc index 5aaf30e52..95b55a217 100644 --- a/plugins/help/localization/lv_LV.inc +++ b/plugins/help/localization/lv_LV.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Palīdzība'; $labels['about'] = 'Par'; $labels['license'] = 'Licence'; diff --git a/plugins/help/localization/ml_IN.inc b/plugins/help/localization/ml_IN.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/ml_IN.inc +++ b/plugins/help/localization/ml_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/mn_MN.inc b/plugins/help/localization/mn_MN.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/mn_MN.inc +++ b/plugins/help/localization/mn_MN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/ms_MY.inc b/plugins/help/localization/ms_MY.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/ms_MY.inc +++ b/plugins/help/localization/ms_MY.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/my_MM.inc b/plugins/help/localization/my_MM.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/my_MM.inc +++ b/plugins/help/localization/my_MM.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/nb_NO.inc b/plugins/help/localization/nb_NO.inc index 702489483..13448caab 100644 --- a/plugins/help/localization/nb_NO.inc +++ b/plugins/help/localization/nb_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hjelp'; $labels['about'] = 'Om'; $labels['license'] = 'Lisensvilkår'; - ?> diff --git a/plugins/help/localization/nl_BE.inc b/plugins/help/localization/nl_BE.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/nl_BE.inc +++ b/plugins/help/localization/nl_BE.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/nl_NL.inc b/plugins/help/localization/nl_NL.inc index e0e7bcc56..a83dbaf62 100644 --- a/plugins/help/localization/nl_NL.inc +++ b/plugins/help/localization/nl_NL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Help'; $labels['about'] = 'Over'; $labels['license'] = 'Licentie'; - ?> diff --git a/plugins/help/localization/nn_NO.inc b/plugins/help/localization/nn_NO.inc index 17a694d80..9c31b3c5e 100644 --- a/plugins/help/localization/nn_NO.inc +++ b/plugins/help/localization/nn_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hjelp'; $labels['about'] = 'Om'; $labels['license'] = 'Lisens'; - ?> diff --git a/plugins/help/localization/nqo.inc b/plugins/help/localization/nqo.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/nqo.inc +++ b/plugins/help/localization/nqo.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/om.inc b/plugins/help/localization/om.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/om.inc +++ b/plugins/help/localization/om.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/pl_PL.inc b/plugins/help/localization/pl_PL.inc index 4884ac602..8961e9b27 100644 --- a/plugins/help/localization/pl_PL.inc +++ b/plugins/help/localization/pl_PL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Pomoc'; $labels['about'] = 'O programie'; $labels['license'] = 'Licencja'; - ?> diff --git a/plugins/help/localization/pt_BR.inc b/plugins/help/localization/pt_BR.inc index 79746bdc2..629b8749b 100644 --- a/plugins/help/localization/pt_BR.inc +++ b/plugins/help/localization/pt_BR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ajuda'; $labels['about'] = 'Sobre'; $labels['license'] = 'Licença'; - ?> diff --git a/plugins/help/localization/pt_PT.inc b/plugins/help/localization/pt_PT.inc index 657c33ac5..160abe25b 100644 --- a/plugins/help/localization/pt_PT.inc +++ b/plugins/help/localization/pt_PT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ajuda'; $labels['about'] = 'Sobre...'; $labels['license'] = 'Licença'; - ?> diff --git a/plugins/help/localization/ro_RO.inc b/plugins/help/localization/ro_RO.inc index 181c63a87..9944fc1f1 100644 --- a/plugins/help/localization/ro_RO.inc +++ b/plugins/help/localization/ro_RO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Ajutor'; $labels['about'] = 'Despre'; $labels['license'] = 'Licența'; diff --git a/plugins/help/localization/ru_RU.inc b/plugins/help/localization/ru_RU.inc index c1d2e071b..311efdf77 100644 --- a/plugins/help/localization/ru_RU.inc +++ b/plugins/help/localization/ru_RU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Помощь'; $labels['about'] = 'О программе'; $labels['license'] = 'Лицензия'; - ?> diff --git a/plugins/help/localization/sk_SK.inc b/plugins/help/localization/sk_SK.inc index 99d3082bd..9f65de374 100644 --- a/plugins/help/localization/sk_SK.inc +++ b/plugins/help/localization/sk_SK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Nápoveda'; $labels['about'] = 'O aplikácii'; $labels['license'] = 'Licencia'; - ?> diff --git a/plugins/help/localization/sl_SI.inc b/plugins/help/localization/sl_SI.inc index 9e84d4cda..dd5904dd0 100644 --- a/plugins/help/localization/sl_SI.inc +++ b/plugins/help/localization/sl_SI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Pomoč'; $labels['about'] = 'Vizitka'; $labels['license'] = 'Licenca'; - ?> diff --git a/plugins/help/localization/sr_CS.inc b/plugins/help/localization/sr_CS.inc index a514c1cfe..6c1a0be51 100644 --- a/plugins/help/localization/sr_CS.inc +++ b/plugins/help/localization/sr_CS.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Помоћ'; $labels['about'] = 'Info'; $labels['license'] = 'Licenca'; - ?> diff --git a/plugins/help/localization/sv_SE.inc b/plugins/help/localization/sv_SE.inc index ab23f8c69..3325b78bf 100644 --- a/plugins/help/localization/sv_SE.inc +++ b/plugins/help/localization/sv_SE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Hjälp'; $labels['about'] = 'Om'; $labels['license'] = 'Licens'; - ?> diff --git a/plugins/help/localization/te_IN.inc b/plugins/help/localization/te_IN.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/te_IN.inc +++ b/plugins/help/localization/te_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/th_TH.inc b/plugins/help/localization/th_TH.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/th_TH.inc +++ b/plugins/help/localization/th_TH.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/ti.inc b/plugins/help/localization/ti.inc index 48cb156df..0d402372a 100644 --- a/plugins/help/localization/ti.inc +++ b/plugins/help/localization/ti.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'መምሃሪ'; $labels['about'] = 'ብዛዕባ'; $labels['license'] = 'ፍቓድ'; diff --git a/plugins/help/localization/tr_TR.inc b/plugins/help/localization/tr_TR.inc index cad257409..a2c094146 100644 --- a/plugins/help/localization/tr_TR.inc +++ b/plugins/help/localization/tr_TR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Yardım'; $labels['about'] = 'Hakkında'; $labels['license'] = 'Lisans'; - ?> diff --git a/plugins/help/localization/tzm.inc b/plugins/help/localization/tzm.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/tzm.inc +++ b/plugins/help/localization/tzm.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/uk_UA.inc b/plugins/help/localization/uk_UA.inc index e263cdb20..0c26baed1 100644 --- a/plugins/help/localization/uk_UA.inc +++ b/plugins/help/localization/uk_UA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Допомога'; $labels['about'] = 'Про програму'; $labels['license'] = 'Ліцензія'; diff --git a/plugins/help/localization/ur_PK.inc b/plugins/help/localization/ur_PK.inc index 6ccba88a7..8ae66ab42 100644 --- a/plugins/help/localization/ur_PK.inc +++ b/plugins/help/localization/ur_PK.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); ?> diff --git a/plugins/help/localization/vi_VN.inc b/plugins/help/localization/vi_VN.inc index bd5fa57b6..6af4e448d 100644 --- a/plugins/help/localization/vi_VN.inc +++ b/plugins/help/localization/vi_VN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = 'Trợ giúp'; $labels['about'] = 'Giới thiệu'; $labels['license'] = 'Bản quyền'; - ?> diff --git a/plugins/help/localization/zh_CN.inc b/plugins/help/localization/zh_CN.inc index 5d6272eea..75c59eb0e 100644 --- a/plugins/help/localization/zh_CN.inc +++ b/plugins/help/localization/zh_CN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = '帮助'; $labels['about'] = '关于'; $labels['license'] = '许可协议'; - ?> diff --git a/plugins/help/localization/zh_TW.inc b/plugins/help/localization/zh_TW.inc index 9fc68e482..743216702 100644 --- a/plugins/help/localization/zh_TW.inc +++ b/plugins/help/localization/zh_TW.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ -$labels = array(); $labels['help'] = '說明'; $labels['about'] = '關於'; $labels['license'] = '許可證'; - ?> diff --git a/plugins/hide_blockquote/localization/ar.inc b/plugins/hide_blockquote/localization/ar.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ar.inc +++ b/plugins/hide_blockquote/localization/ar.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/ar_SA.inc b/plugins/hide_blockquote/localization/ar_SA.inc index bcb373ce0..647c43ab3 100644 --- a/plugins/hide_blockquote/localization/ar_SA.inc +++ b/plugins/hide_blockquote/localization/ar_SA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'إخفاء'; $labels['show'] = 'إظهار'; ?> diff --git a/plugins/hide_blockquote/localization/az_AZ.inc b/plugins/hide_blockquote/localization/az_AZ.inc index e0c60077a..e5318dfd2 100644 --- a/plugins/hide_blockquote/localization/az_AZ.inc +++ b/plugins/hide_blockquote/localization/az_AZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Gizlət'; $labels['show'] = 'Göstər'; $labels['quotelimit'] = 'Sətr saytı göstəriləndən çoxdursa sitatı gizlə:'; - ?> diff --git a/plugins/hide_blockquote/localization/be_BE.inc b/plugins/hide_blockquote/localization/be_BE.inc index 20d981246..313bb2fbc 100644 --- a/plugins/hide_blockquote/localization/be_BE.inc +++ b/plugins/hide_blockquote/localization/be_BE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Схаваць'; $labels['show'] = 'Паказаць'; $labels['quotelimit'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць'; diff --git a/plugins/hide_blockquote/localization/bg_BG.inc b/plugins/hide_blockquote/localization/bg_BG.inc index 8685f7e2d..33251995c 100644 --- a/plugins/hide_blockquote/localization/bg_BG.inc +++ b/plugins/hide_blockquote/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Скрий'; $labels['show'] = 'Покажи'; $labels['quotelimit'] = 'Скрива цитатите когато броя редове е по-голям от'; diff --git a/plugins/hide_blockquote/localization/bn_BD.inc b/plugins/hide_blockquote/localization/bn_BD.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/bn_BD.inc +++ b/plugins/hide_blockquote/localization/bn_BD.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/bs_BA.inc b/plugins/hide_blockquote/localization/bs_BA.inc index 0b8075b31..2d39e8dfd 100644 --- a/plugins/hide_blockquote/localization/bs_BA.inc +++ b/plugins/hide_blockquote/localization/bs_BA.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Sakrij'; $labels['show'] = 'Prikaži'; $labels['quotelimit'] = 'Sakrij citate kada je broj linija veći od'; - ?> diff --git a/plugins/hide_blockquote/localization/ca_ES.inc b/plugins/hide_blockquote/localization/ca_ES.inc index 9a0fc3cc4..035efe2b0 100644 --- a/plugins/hide_blockquote/localization/ca_ES.inc +++ b/plugins/hide_blockquote/localization/ca_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Amaga'; $labels['show'] = 'Mostra'; $labels['quotelimit'] = 'Amaga la cita quan el nombre de línies sigui més gran de'; - ?> diff --git a/plugins/hide_blockquote/localization/cs_CZ.inc b/plugins/hide_blockquote/localization/cs_CZ.inc index 5e3cd657c..d95758413 100644 --- a/plugins/hide_blockquote/localization/cs_CZ.inc +++ b/plugins/hide_blockquote/localization/cs_CZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Skrýt'; $labels['show'] = 'Zobrazit'; $labels['quotelimit'] = 'Skrýt citaci pokud je počet řádků větší než'; - ?> diff --git a/plugins/hide_blockquote/localization/cy_GB.inc b/plugins/hide_blockquote/localization/cy_GB.inc index f55fab41a..f7a864e8a 100644 --- a/plugins/hide_blockquote/localization/cy_GB.inc +++ b/plugins/hide_blockquote/localization/cy_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Cuddio'; $labels['show'] = 'Dangos'; $labels['quotelimit'] = 'Cuddio dyfynniad pan mae\'r nifer o linellau yn fwy na'; - ?> diff --git a/plugins/hide_blockquote/localization/da_DK.inc b/plugins/hide_blockquote/localization/da_DK.inc index a807cc34f..7ebe8792f 100644 --- a/plugins/hide_blockquote/localization/da_DK.inc +++ b/plugins/hide_blockquote/localization/da_DK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Skjul'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Skjul citat antallet af linjer er højere end'; - ?> diff --git a/plugins/hide_blockquote/localization/de_CH.inc b/plugins/hide_blockquote/localization/de_CH.inc index 66c9e4823..71f3c1de7 100644 --- a/plugins/hide_blockquote/localization/de_CH.inc +++ b/plugins/hide_blockquote/localization/de_CH.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'ausblenden'; $labels['show'] = 'einblenden'; $labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von'; - ?> diff --git a/plugins/hide_blockquote/localization/de_DE.inc b/plugins/hide_blockquote/localization/de_DE.inc index 66c9e4823..71f3c1de7 100644 --- a/plugins/hide_blockquote/localization/de_DE.inc +++ b/plugins/hide_blockquote/localization/de_DE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'ausblenden'; $labels['show'] = 'einblenden'; $labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von'; - ?> diff --git a/plugins/hide_blockquote/localization/el_GR.inc b/plugins/hide_blockquote/localization/el_GR.inc index 153de13a7..cc0f52b45 100644 --- a/plugins/hide_blockquote/localization/el_GR.inc +++ b/plugins/hide_blockquote/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Αποκρυψη'; $labels['show'] = 'Εμφάνιση'; $labels['quotelimit'] = 'Απόκρυψη παραπομπων όταν οι γραμμές μέτρησης είναι μεγαλύτερες από'; diff --git a/plugins/hide_blockquote/localization/en_GB.inc b/plugins/hide_blockquote/localization/en_GB.inc index 90dd28955..3f9d0ae39 100644 --- a/plugins/hide_blockquote/localization/en_GB.inc +++ b/plugins/hide_blockquote/localization/en_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Hide'; $labels['show'] = 'Show'; $labels['quotelimit'] = 'Hide citation when lines count is greater than'; - ?> diff --git a/plugins/hide_blockquote/localization/eo.inc b/plugins/hide_blockquote/localization/eo.inc index 5ffaaad56..979eed61e 100644 --- a/plugins/hide_blockquote/localization/eo.inc +++ b/plugins/hide_blockquote/localization/eo.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Kaŝi'; $labels['show'] = 'Montri'; $labels['quotelimit'] = 'Kaŝi citaĵon kiam la nombro de linioj estas pligranda ol'; - ?> diff --git a/plugins/hide_blockquote/localization/es_AR.inc b/plugins/hide_blockquote/localization/es_AR.inc index db0e8f7ae..36ee47fbd 100644 --- a/plugins/hide_blockquote/localization/es_AR.inc +++ b/plugins/hide_blockquote/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar el mail citado cuando el número de líneas sea mayor que'; diff --git a/plugins/hide_blockquote/localization/es_ES.inc b/plugins/hide_blockquote/localization/es_ES.inc index b59629413..bcea6e87a 100644 --- a/plugins/hide_blockquote/localization/es_ES.inc +++ b/plugins/hide_blockquote/localization/es_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar la cita cuando el número de lineas es mayor que'; - ?> diff --git a/plugins/hide_blockquote/localization/et_EE.inc b/plugins/hide_blockquote/localization/et_EE.inc index e49dbfb22..d64190591 100644 --- a/plugins/hide_blockquote/localization/et_EE.inc +++ b/plugins/hide_blockquote/localization/et_EE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Peida'; $labels['show'] = 'Näita'; $labels['quotelimit'] = 'Peida tsitaat kui ridade arv on suurem kui'; - ?> diff --git a/plugins/hide_blockquote/localization/eu_ES.inc b/plugins/hide_blockquote/localization/eu_ES.inc index bede314fa..9b9029b18 100644 --- a/plugins/hide_blockquote/localization/eu_ES.inc +++ b/plugins/hide_blockquote/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ezkutatu'; $labels['show'] = 'Erakutsi'; $labels['quotelimit'] = 'Ezkutatu aipamena lerroen kopurua hau baino handiagoa denean'; diff --git a/plugins/hide_blockquote/localization/fa_AF.inc b/plugins/hide_blockquote/localization/fa_AF.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/fa_AF.inc +++ b/plugins/hide_blockquote/localization/fa_AF.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/fa_IR.inc b/plugins/hide_blockquote/localization/fa_IR.inc index 8edc7aed7..7960190cb 100644 --- a/plugins/hide_blockquote/localization/fa_IR.inc +++ b/plugins/hide_blockquote/localization/fa_IR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'مخفی کردن'; $labels['show'] = 'نشان دادن'; $labels['quotelimit'] = 'مخفی کردن نقل‌قول وقتی تعداد خطوط بیشتر است از'; - ?> diff --git a/plugins/hide_blockquote/localization/fi_FI.inc b/plugins/hide_blockquote/localization/fi_FI.inc index cb7c8aaa4..5b513e864 100644 --- a/plugins/hide_blockquote/localization/fi_FI.inc +++ b/plugins/hide_blockquote/localization/fi_FI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Piilota'; $labels['show'] = 'Näytä'; $labels['quotelimit'] = 'Hide citation when lines count is greater than'; - ?> diff --git a/plugins/hide_blockquote/localization/fr_FR.inc b/plugins/hide_blockquote/localization/fr_FR.inc index e789fb842..2623306dc 100644 --- a/plugins/hide_blockquote/localization/fr_FR.inc +++ b/plugins/hide_blockquote/localization/fr_FR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Cacher'; $labels['show'] = 'Afficher'; $labels['quotelimit'] = 'Cacher la citation quand le nombre de lignes est plus grand que'; - ?> diff --git a/plugins/hide_blockquote/localization/gl_ES.inc b/plugins/hide_blockquote/localization/gl_ES.inc index 37a81e418..6a1db42a4 100644 --- a/plugins/hide_blockquote/localization/gl_ES.inc +++ b/plugins/hide_blockquote/localization/gl_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Agochar'; $labels['show'] = 'Amosar'; $labels['quotelimit'] = 'Agochar mencións cando haxa demasiadas liñas'; - ?> diff --git a/plugins/hide_blockquote/localization/he_IL.inc b/plugins/hide_blockquote/localization/he_IL.inc index edcba5040..5c49d057a 100644 --- a/plugins/hide_blockquote/localization/he_IL.inc +++ b/plugins/hide_blockquote/localization/he_IL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'הסתר'; $labels['show'] = 'הצג'; $labels['quotelimit'] = 'הסתר ציטוט כאשר מספר השורות גדול מ-'; - ?> diff --git a/plugins/hide_blockquote/localization/hi_IN.inc b/plugins/hide_blockquote/localization/hi_IN.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/hi_IN.inc +++ b/plugins/hide_blockquote/localization/hi_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/hu_HU.inc b/plugins/hide_blockquote/localization/hu_HU.inc index 964d1ae9d..d989b7555 100644 --- a/plugins/hide_blockquote/localization/hu_HU.inc +++ b/plugins/hide_blockquote/localization/hu_HU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Elrejtés'; $labels['show'] = 'Megjelenítés'; $labels['quotelimit'] = 'Idézet elrejtése ha a sorok száma több mint'; - ?> diff --git a/plugins/hide_blockquote/localization/hy_AM.inc b/plugins/hide_blockquote/localization/hy_AM.inc index 5ad32d861..f6a4d44ef 100644 --- a/plugins/hide_blockquote/localization/hy_AM.inc +++ b/plugins/hide_blockquote/localization/hy_AM.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Թաքցնել'; $labels['show'] = 'Ցուցադրել'; $labels['quotelimit'] = 'Թաքցնել ցիտումը երբ տողերի քանակը գերազանցում է'; - ?> diff --git a/plugins/hide_blockquote/localization/ia.inc b/plugins/hide_blockquote/localization/ia.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ia.inc +++ b/plugins/hide_blockquote/localization/ia.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/id_ID.inc b/plugins/hide_blockquote/localization/id_ID.inc index 5b3785d6a..2cdf673a5 100644 --- a/plugins/hide_blockquote/localization/id_ID.inc +++ b/plugins/hide_blockquote/localization/id_ID.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Sembunyi'; $labels['show'] = 'Tampil'; $labels['quotelimit'] = 'Sembunyikan kutipan ketika jumlah baris lebih besar dari'; - ?> diff --git a/plugins/hide_blockquote/localization/it_IT.inc b/plugins/hide_blockquote/localization/it_IT.inc index 40a93a9b0..4c6c10f03 100644 --- a/plugins/hide_blockquote/localization/it_IT.inc +++ b/plugins/hide_blockquote/localization/it_IT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Nascondi'; $labels['show'] = 'Mostra'; $labels['quotelimit'] = 'Nascondi la citazione quando il numero di righe è maggiore di'; - ?> diff --git a/plugins/hide_blockquote/localization/ja_JP.inc b/plugins/hide_blockquote/localization/ja_JP.inc index b3006999d..f67c47068 100644 --- a/plugins/hide_blockquote/localization/ja_JP.inc +++ b/plugins/hide_blockquote/localization/ja_JP.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = '隠す'; $labels['show'] = '表示'; $labels['quotelimit'] = '次の行数より多い引用を非表示'; - ?> diff --git a/plugins/hide_blockquote/localization/ko_KR.inc b/plugins/hide_blockquote/localization/ko_KR.inc index 73895d18d..79dc28ec0 100644 --- a/plugins/hide_blockquote/localization/ko_KR.inc +++ b/plugins/hide_blockquote/localization/ko_KR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = '숨기기'; $labels['show'] = '보이기'; $labels['quotelimit'] = '라인 개수가 정해진 개수보다 클 때 인용구 감추기'; - ?> diff --git a/plugins/hide_blockquote/localization/lb_LU.inc b/plugins/hide_blockquote/localization/lb_LU.inc index 98e0f6936..d0e037eff 100644 --- a/plugins/hide_blockquote/localization/lb_LU.inc +++ b/plugins/hide_blockquote/localization/lb_LU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Verstoppen'; $labels['show'] = 'Weisen'; $labels['quotelimit'] = 'Zitat verstoppe wann d\'Zeilenunzuel méi grouss ass ewéi'; - ?> diff --git a/plugins/hide_blockquote/localization/lt_LT.inc b/plugins/hide_blockquote/localization/lt_LT.inc index 931c2ee90..981487711 100644 --- a/plugins/hide_blockquote/localization/lt_LT.inc +++ b/plugins/hide_blockquote/localization/lt_LT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Paslėpti'; $labels['show'] = 'Parodyti'; $labels['quotelimit'] = 'Paslėpti citatą, kai joje eilučių daugiau negu'; - ?> diff --git a/plugins/hide_blockquote/localization/lv_LV.inc b/plugins/hide_blockquote/localization/lv_LV.inc index bbc77a759..e036ef7f5 100644 --- a/plugins/hide_blockquote/localization/lv_LV.inc +++ b/plugins/hide_blockquote/localization/lv_LV.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Slēpt'; $labels['show'] = 'Rādīt'; $labels['quotelimit'] = 'Slēpt citātu kad līniju skaits ir lielāks kā'; diff --git a/plugins/hide_blockquote/localization/ml_IN.inc b/plugins/hide_blockquote/localization/ml_IN.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ml_IN.inc +++ b/plugins/hide_blockquote/localization/ml_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/mn_MN.inc b/plugins/hide_blockquote/localization/mn_MN.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/mn_MN.inc +++ b/plugins/hide_blockquote/localization/mn_MN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/ms_MY.inc b/plugins/hide_blockquote/localization/ms_MY.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ms_MY.inc +++ b/plugins/hide_blockquote/localization/ms_MY.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/my_MM.inc b/plugins/hide_blockquote/localization/my_MM.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/my_MM.inc +++ b/plugins/hide_blockquote/localization/my_MM.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/nb_NO.inc b/plugins/hide_blockquote/localization/nb_NO.inc index 5dafd7f1c..403763ec8 100644 --- a/plugins/hide_blockquote/localization/nb_NO.inc +++ b/plugins/hide_blockquote/localization/nb_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Skjul'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Skjul sitat når antall linjer er flere enn'; - ?> diff --git a/plugins/hide_blockquote/localization/nl_BE.inc b/plugins/hide_blockquote/localization/nl_BE.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/nl_BE.inc +++ b/plugins/hide_blockquote/localization/nl_BE.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/nl_NL.inc b/plugins/hide_blockquote/localization/nl_NL.inc index a684b631b..48ec7a3ef 100644 --- a/plugins/hide_blockquote/localization/nl_NL.inc +++ b/plugins/hide_blockquote/localization/nl_NL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Verbergen'; $labels['show'] = 'Tonen'; $labels['quotelimit'] = 'Verberg citaat wanneer aantal regels groter is dan'; - ?> diff --git a/plugins/hide_blockquote/localization/nn_NO.inc b/plugins/hide_blockquote/localization/nn_NO.inc index fd7b49d63..243b63c74 100644 --- a/plugins/hide_blockquote/localization/nn_NO.inc +++ b/plugins/hide_blockquote/localization/nn_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Gøym'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Gøym sitat når talet på linjer er større enn'; - ?> diff --git a/plugins/hide_blockquote/localization/nqo.inc b/plugins/hide_blockquote/localization/nqo.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/nqo.inc +++ b/plugins/hide_blockquote/localization/nqo.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/om.inc b/plugins/hide_blockquote/localization/om.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/om.inc +++ b/plugins/hide_blockquote/localization/om.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/pl_PL.inc b/plugins/hide_blockquote/localization/pl_PL.inc index dbca969e4..73552ed88 100644 --- a/plugins/hide_blockquote/localization/pl_PL.inc +++ b/plugins/hide_blockquote/localization/pl_PL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ukryj'; $labels['show'] = 'Pokaż'; $labels['quotelimit'] = 'Ukryj blok cytatu gdy liczba linii jest większa od'; - ?> diff --git a/plugins/hide_blockquote/localization/pt_BR.inc b/plugins/hide_blockquote/localization/pt_BR.inc index 76c856a53..f4c8ca5e4 100644 --- a/plugins/hide_blockquote/localization/pt_BR.inc +++ b/plugins/hide_blockquote/localization/pt_BR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ocultar'; $labels['show'] = 'Exibir'; $labels['quotelimit'] = 'Ocultar a citação quando o número de linhas for maior do que'; - ?> diff --git a/plugins/hide_blockquote/localization/pt_PT.inc b/plugins/hide_blockquote/localization/pt_PT.inc index 0ccfbe52d..116acf64c 100644 --- a/plugins/hide_blockquote/localization/pt_PT.inc +++ b/plugins/hide_blockquote/localization/pt_PT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar citação quando o numero de linhas for maior que'; - ?> diff --git a/plugins/hide_blockquote/localization/ro_RO.inc b/plugins/hide_blockquote/localization/ro_RO.inc index a170c3297..d02c855df 100644 --- a/plugins/hide_blockquote/localization/ro_RO.inc +++ b/plugins/hide_blockquote/localization/ro_RO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ascunde'; $labels['show'] = 'Afișează'; $labels['quotelimit'] = 'Ascunde citațiile dacă numărul de linii este mai mare ca'; diff --git a/plugins/hide_blockquote/localization/ru_RU.inc b/plugins/hide_blockquote/localization/ru_RU.inc index 657548a5e..a2131cf4e 100644 --- a/plugins/hide_blockquote/localization/ru_RU.inc +++ b/plugins/hide_blockquote/localization/ru_RU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Скрыть'; $labels['show'] = 'Показать'; $labels['quotelimit'] = 'Скрыть цитату, если число строк более чем'; - ?> diff --git a/plugins/hide_blockquote/localization/sk_SK.inc b/plugins/hide_blockquote/localization/sk_SK.inc index 9a008369a..878ea1cdb 100644 --- a/plugins/hide_blockquote/localization/sk_SK.inc +++ b/plugins/hide_blockquote/localization/sk_SK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Skryť'; $labels['show'] = 'Zobraziť'; $labels['quotelimit'] = 'Skryť citáciu pokiaľ je počet riadkov väčší než'; - ?> diff --git a/plugins/hide_blockquote/localization/sl_SI.inc b/plugins/hide_blockquote/localization/sl_SI.inc index 66e4b4e9b..298d7e922 100644 --- a/plugins/hide_blockquote/localization/sl_SI.inc +++ b/plugins/hide_blockquote/localization/sl_SI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Skrij'; $labels['show'] = 'Prikaži'; $labels['quotelimit'] = 'Skrij citiran tekst, ko je število vrstic večje od'; - ?> diff --git a/plugins/hide_blockquote/localization/sr_CS.inc b/plugins/hide_blockquote/localization/sr_CS.inc index 5df13d3b1..049ad1d9c 100644 --- a/plugins/hide_blockquote/localization/sr_CS.inc +++ b/plugins/hide_blockquote/localization/sr_CS.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Сакриј'; $labels['show'] = 'Прикажи'; $labels['quotelimit'] = 'Сакриј цитат када је број редова већи од'; - ?> diff --git a/plugins/hide_blockquote/localization/sv_SE.inc b/plugins/hide_blockquote/localization/sv_SE.inc index a6e43f6ad..00a5ce892 100644 --- a/plugins/hide_blockquote/localization/sv_SE.inc +++ b/plugins/hide_blockquote/localization/sv_SE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Dölj'; $labels['show'] = 'Visa'; $labels['quotelimit'] = 'Dölj citat när antalet rader överstiger'; - ?> diff --git a/plugins/hide_blockquote/localization/te_IN.inc b/plugins/hide_blockquote/localization/te_IN.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/te_IN.inc +++ b/plugins/hide_blockquote/localization/te_IN.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/th_TH.inc b/plugins/hide_blockquote/localization/th_TH.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/th_TH.inc +++ b/plugins/hide_blockquote/localization/th_TH.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/ti.inc b/plugins/hide_blockquote/localization/ti.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ti.inc +++ b/plugins/hide_blockquote/localization/ti.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/tr_TR.inc b/plugins/hide_blockquote/localization/tr_TR.inc index 350ccb238..56a05eea5 100644 --- a/plugins/hide_blockquote/localization/tr_TR.inc +++ b/plugins/hide_blockquote/localization/tr_TR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Gizle'; $labels['show'] = 'Göster'; $labels['quotelimit'] = 'Satır sayısı şu satır sayısındna fazla ile alıntıları gizle:'; - ?> diff --git a/plugins/hide_blockquote/localization/tzm.inc b/plugins/hide_blockquote/localization/tzm.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/tzm.inc +++ b/plugins/hide_blockquote/localization/tzm.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/uk_UA.inc b/plugins/hide_blockquote/localization/uk_UA.inc index 5d1be362e..8ad5e4fba 100644 --- a/plugins/hide_blockquote/localization/uk_UA.inc +++ b/plugins/hide_blockquote/localization/uk_UA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Приховати'; $labels['show'] = 'Показати'; ?> diff --git a/plugins/hide_blockquote/localization/ur_PK.inc b/plugins/hide_blockquote/localization/ur_PK.inc index 0457efa17..b2afd3bc7 100644 --- a/plugins/hide_blockquote/localization/ur_PK.inc +++ b/plugins/hide_blockquote/localization/ur_PK.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); ?> diff --git a/plugins/hide_blockquote/localization/vi_VN.inc b/plugins/hide_blockquote/localization/vi_VN.inc index 9d467374f..705b90449 100644 --- a/plugins/hide_blockquote/localization/vi_VN.inc +++ b/plugins/hide_blockquote/localization/vi_VN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = 'Ẩn'; $labels['show'] = 'Hiển thị'; $labels['quotelimit'] = 'Ẩn trích dẫn khi tổng số dòng lớn hơn'; - ?> diff --git a/plugins/hide_blockquote/localization/zh_CN.inc b/plugins/hide_blockquote/localization/zh_CN.inc index 1450dd6dc..78aa89c92 100644 --- a/plugins/hide_blockquote/localization/zh_CN.inc +++ b/plugins/hide_blockquote/localization/zh_CN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = '隐藏'; $labels['show'] = '显示'; $labels['quotelimit'] = '隐藏引用当行数大于'; - ?> diff --git a/plugins/hide_blockquote/localization/zh_TW.inc b/plugins/hide_blockquote/localization/zh_TW.inc index 22ea645b4..b5ad96122 100644 --- a/plugins/hide_blockquote/localization/zh_TW.inc +++ b/plugins/hide_blockquote/localization/zh_TW.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ -$labels = array(); $labels['hide'] = '隱藏'; $labels['show'] = '顯示'; $labels['quotelimit'] = '隱藏引文當行數大於'; - ?> diff --git a/plugins/managesieve/localization/ar_SA.inc b/plugins/managesieve/localization/ar_SA.inc index 83136cec4..70cd2c282 100644 --- a/plugins/managesieve/localization/ar_SA.inc +++ b/plugins/managesieve/localization/ar_SA.inc @@ -32,5 +32,4 @@ $labels['advancedopts'] = 'خيارات متقدّمة'; $labels['address'] = 'العنوان'; $labels['allparts'] = 'الكل'; $labels['domain'] = 'المجال'; -$messages = array(); ?> diff --git a/plugins/managesieve/localization/az_AZ.inc b/plugins/managesieve/localization/az_AZ.inc index 1e09b4fbb..88d7d404d 100644 --- a/plugins/managesieve/localization/az_AZ.inc +++ b/plugins/managesieve/localization/az_AZ.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'qeydiyyat üzrə müstəqil (ascii-casemap)'; $labels['asciinumeric'] = 'ədədi (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Serverin naməlum xətası.'; $messages['filterconnerror'] = 'Serverə qoşulmaq alınmır'; $messages['filterdeleteerror'] = 'Süzgəci silmək mümkün deyil. Server xətası.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezerv edilmiş ad.'; $messages['setexist'] = 'Dəst artıq mövcuddur.'; $messages['nodata'] = 'Heç olmasa bir mövqe tutmaq lazımdır!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/be_BE.inc b/plugins/managesieve/localization/be_BE.inc index aad2861a4..b9b4591cf 100644 --- a/plugins/managesieve/localization/be_BE.inc +++ b/plugins/managesieve/localization/be_BE.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'індэкс:'; $labels['indexlast'] = 'назад'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Зарэзерваваная назва.'; $messages['setexist'] = 'Набор ужо існуе.'; $messages['nodata'] = 'Мінімум адна пазіцыя павінна быць вылучана!'; $messages['invaliddateformat'] = 'Няслушная дата альбо фармат даты'; - ?> diff --git a/plugins/managesieve/localization/bg_BG.inc b/plugins/managesieve/localization/bg_BG.inc index 25a3e60cb..6887b30d9 100644 --- a/plugins/managesieve/localization/bg_BG.inc +++ b/plugins/managesieve/localization/bg_BG.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'без значение малки/големи бу $labels['asciinumeric'] = 'цифрово'; $labels['index'] = 'индекс:'; $labels['indexlast'] = 'наобратно'; - -$messages = array(); $messages['filterunknownerror'] = 'Неизвестна сървърна грешка.'; $messages['filterconnerror'] = 'Неуспешно свързване с managesieve сървъра.'; $messages['filterdeleteerror'] = 'Невъзможно изтриване на филтъра. Възникна сървърна грешка.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Резервирано име.'; $messages['setexist'] = 'Вече има такъв набор филтри.'; $messages['nodata'] = 'Поне една позиция трябва да е избрана!'; $messages['invaliddateformat'] = 'невалидна дата или формат на част от дата'; - ?> diff --git a/plugins/managesieve/localization/bs_BA.inc b/plugins/managesieve/localization/bs_BA.inc index 3a59fd136..d66e30117 100644 --- a/plugins/managesieve/localization/bs_BA.inc +++ b/plugins/managesieve/localization/bs_BA.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'osjetljivo na velika/mala slova (ascii-casemap)'; $labels['asciinumeric'] = 'numerički (ascii-numeric)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'unazad'; - -$messages = array(); $messages['filterunknownerror'] = 'Nepoznata serverska greška.'; $messages['filterconnerror'] = 'Nije se moguće povezati na server.'; $messages['filterdeleteerror'] = 'Nije moguće obrisati filter. Desila se serverska greška.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Ime je rezervisano.'; $messages['setexist'] = 'Set već postoji.'; $messages['nodata'] = 'Morate označiti barem jednu poziciju!'; $messages['invaliddateformat'] = 'Netačan datum ili dio formata datuma'; - ?> diff --git a/plugins/managesieve/localization/ca_ES.inc b/plugins/managesieve/localization/ca_ES.inc index 618c1fcea..66630fad7 100644 --- a/plugins/managesieve/localization/ca_ES.inc +++ b/plugins/managesieve/localization/ca_ES.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'No distingeix entre majúscules i minúscules (ascii $labels['asciinumeric'] = 'numèric (ascii-numeric)'; $labels['index'] = 'índex:'; $labels['indexlast'] = 'cap enrere'; - -$messages = array(); $messages['filterunknownerror'] = 'Error desconegut al servidor.'; $messages['filterconnerror'] = 'No s\'ha pogut connectar al servidor.'; $messages['filterdeleteerror'] = 'No s\'ha pogut suprimir el filtre. Hi ha hagut un error al servidor.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nom reservat.'; $messages['setexist'] = 'El conjunt ja existeix.'; $messages['nodata'] = 'S\'ha de seleccionar com a mínim una posició!'; $messages['invaliddateformat'] = 'data no vàlida o format no vàlid'; - ?> diff --git a/plugins/managesieve/localization/cs_CZ.inc b/plugins/managesieve/localization/cs_CZ.inc index 079ea6600..bbaf35375 100644 --- a/plugins/managesieve/localization/cs_CZ.inc +++ b/plugins/managesieve/localization/cs_CZ.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'necitlivé na velikost písmen (ascii-casemap)'; $labels['asciinumeric'] = 'číslené (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'pozpátku'; - -$messages = array(); $messages['filterunknownerror'] = 'Neznámá chyba serveru'; $messages['filterconnerror'] = 'Nebylo možné se připojit k sieve serveru'; $messages['filterdeleteerror'] = 'Nebylo možné smazat filtr. Server nahlásil chybu'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Vyhrazený název.'; $messages['setexist'] = 'Sada již existuje.'; $messages['nodata'] = 'Musí být vybrána minimálně jedna pozice!'; $messages['invaliddateformat'] = 'Neplatné datum nebo část data'; - ?> diff --git a/plugins/managesieve/localization/cy_GB.inc b/plugins/managesieve/localization/cy_GB.inc index 57f97d77a..fceca341f 100644 --- a/plugins/managesieve/localization/cy_GB.inc +++ b/plugins/managesieve/localization/cy_GB.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'maint llythrennau (ascii-casemap)'; $labels['asciinumeric'] = 'rhifau (ascii-numeric)'; $labels['index'] = 'mynegai:'; $labels['indexlast'] = 'o chwith'; - -$messages = array(); $messages['filterunknownerror'] = 'Gwall gweinydd anhysbys.'; $messages['filterconnerror'] = 'Methwyd cysylltu a\'r gweinydd.'; $messages['filterdeleteerror'] = 'Methwyd dileu hidlydd. Cafwydd gwall gweinydd.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Enw neilltuedig.'; $messages['setexist'] = 'Mae\'r set yn bodoli\'n barod.'; $messages['nodata'] = 'Rhaid dewis o leia un safle!'; $messages['invaliddateformat'] = 'Dyddiad neu fformat dyddiad annilys'; - ?> diff --git a/plugins/managesieve/localization/da_DK.inc b/plugins/managesieve/localization/da_DK.inc index 9e5bd7699..2d3c37333 100644 --- a/plugins/managesieve/localization/da_DK.inc +++ b/plugins/managesieve/localization/da_DK.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'store og små bogstaver (ascii-bogstaver)'; $labels['asciinumeric'] = 'numerisk (ascii-numerisk)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'baglends'; - -$messages = array(); $messages['filterunknownerror'] = 'Ukendt server fejl.'; $messages['filterconnerror'] = 'Kan ikke forbinde til server.'; $messages['filterdeleteerror'] = 'Kan ikke slette filter. Server fejl.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserveret navn.'; $messages['setexist'] = 'Filterv sæt eksisterer allerede'; $messages['nodata'] = 'Mindst en position skal vælges!'; $messages['invaliddateformat'] = 'Ugyldigt dato- eller tidsformat'; - ?> diff --git a/plugins/managesieve/localization/de_CH.inc b/plugins/managesieve/localization/de_CH.inc index 482085d70..6eb58f752 100644 --- a/plugins/managesieve/localization/de_CH.inc +++ b/plugins/managesieve/localization/de_CH.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'Gross-/Kleinschreibung ignorieren'; $labels['asciinumeric'] = 'numerisch (ascii-numeric)'; $labels['index'] = 'Index:'; $labels['indexlast'] = 'rückwärts'; - -$messages = array(); $messages['filterunknownerror'] = 'Unbekannter Serverfehler'; $messages['filterconnerror'] = 'Kann nicht zum Sieve-Server verbinden'; $messages['filterdeleteerror'] = 'Fehler beim des löschen Filters. Serverfehler'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reservierter Name.'; $messages['setexist'] = 'Filtersatz existiert bereits.'; $messages['nodata'] = 'Mindestens eine Position muss ausgewählt werden!'; $messages['invaliddateformat'] = 'Ungültiges Datumsformat'; - ?> diff --git a/plugins/managesieve/localization/de_DE.inc b/plugins/managesieve/localization/de_DE.inc index 63fe66ca8..b14df434f 100644 --- a/plugins/managesieve/localization/de_DE.inc +++ b/plugins/managesieve/localization/de_DE.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'Groß-/Kleinschreibung ignorieren'; $labels['asciinumeric'] = 'numerisch (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'rückwärts'; - -$messages = array(); $messages['filterunknownerror'] = 'Unbekannter Serverfehler'; $messages['filterconnerror'] = 'Kann keine Verbindung mit Managesieve-Server herstellen'; $messages['filterdeleteerror'] = 'Fehler beim Löschen des Filters. Serverfehler'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reservierter Name.'; $messages['setexist'] = 'Filtersatz existiert bereits.'; $messages['nodata'] = 'Mindestens eine Position muss ausgewählt werden!'; $messages['invaliddateformat'] = 'Ungültiges Datum oder Teil-Format'; - ?> diff --git a/plugins/managesieve/localization/el_GR.inc b/plugins/managesieve/localization/el_GR.inc index 23f076f80..deba507fe 100644 --- a/plugins/managesieve/localization/el_GR.inc +++ b/plugins/managesieve/localization/el_GR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'πεζά ή κεφαλαία (ascii-casemap)'; $labels['asciinumeric'] = 'αριθμητικό (ascii-αριθμητικο)'; $labels['index'] = 'ευρετήριο:'; $labels['indexlast'] = 'προς τα πίσω'; - -$messages = array(); $messages['filterunknownerror'] = 'Άγνωστο σφάλμα διακομιστή'; $messages['filterconnerror'] = 'Αδυναμία σύνδεσης στον διακομιστή managesieve'; $messages['filterdeleteerror'] = 'Αδυναμία διαγραφής φίλτρου. Προέκυψε σφάλμα στον διακομιστή'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Δεσμευμένο όνομα. '; $messages['setexist'] = 'Set υπάρχει ήδη. '; $messages['nodata'] = 'Τουλάχιστον μία θέση πρέπει να επιλεγεί!'; $messages['invaliddateformat'] = 'Μη έγκυρη ημερομηνία ή η ημερομηνία μορφής τμήμα'; - ?> diff --git a/plugins/managesieve/localization/en_GB.inc b/plugins/managesieve/localization/en_GB.inc index a1f9a5e3b..8eff950b3 100644 --- a/plugins/managesieve/localization/en_GB.inc +++ b/plugins/managesieve/localization/en_GB.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error'; $messages['filterconnerror'] = 'Unable to connect to managesieve server'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/eo.inc b/plugins/managesieve/localization/eo.inc index 7dc244bcb..2174d34be 100644 --- a/plugins/managesieve/localization/eo.inc +++ b/plugins/managesieve/localization/eo.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/es_AR.inc b/plugins/managesieve/localization/es_AR.inc index 9c9b5d945..a11d45c99 100644 --- a/plugins/managesieve/localization/es_AR.inc +++ b/plugins/managesieve/localization/es_AR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Error desconocido de servidor'; $messages['filterconnerror'] = 'Imposible conectar con el servidor managesieve'; $messages['filterdeleteerror'] = 'Imposible borrar filtro. Ha ocurrido un error en el servidor'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/es_ES.inc b/plugins/managesieve/localization/es_ES.inc index 12ec135e3..a79763ae9 100644 --- a/plugins/managesieve/localization/es_ES.inc +++ b/plugins/managesieve/localization/es_ES.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'no sensible a mayúsculas (ascii-casemap)'; $labels['asciinumeric'] = 'numerico (ascii-numeric)'; $labels['index'] = 'índice:'; $labels['indexlast'] = 'hacia atrás'; - -$messages = array(); $messages['filterunknownerror'] = 'Error desconocido de servidor.'; $messages['filterconnerror'] = 'Imposible conectar con el servidor managesieve.'; $messages['filterdeleteerror'] = 'Imposible borrar filtro. Ha ocurrido un error en el servidor.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nombre reservado.'; $messages['setexist'] = 'El conjunto ya existe.'; $messages['nodata'] = '¡Al menos una posición debe ser seleccionada!'; $messages['invaliddateformat'] = 'Fecha o formato de parte de la fecha no válido'; - ?> diff --git a/plugins/managesieve/localization/et_EE.inc b/plugins/managesieve/localization/et_EE.inc index cbfdbbd4d..7af0e071c 100644 --- a/plugins/managesieve/localization/et_EE.inc +++ b/plugins/managesieve/localization/et_EE.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'tõstutundetu (ascii-casemap)'; $labels['asciinumeric'] = 'numbriline (ascii-numeric)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'tagasisuunas'; - -$messages = array(); $messages['filterunknownerror'] = 'Tundmatu serveri tõrge'; $messages['filterconnerror'] = 'Managesieve serveriga ühendumine nurjus'; $messages['filterdeleteerror'] = 'Filtri kustutamine nurjus. Ilmnes serveri tõrge.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nimi on reserveeritud.'; $messages['setexist'] = 'Kogum on juba olemas.'; $messages['nodata'] = 'Valitud peab olema vähemalt üks asukoht!'; $messages['invaliddateformat'] = 'Vigane kuupäev või kuupäeva formaat'; - ?> diff --git a/plugins/managesieve/localization/eu_ES.inc b/plugins/managesieve/localization/eu_ES.inc index b999814f6..c7846e6f6 100644 --- a/plugins/managesieve/localization/eu_ES.inc +++ b/plugins/managesieve/localization/eu_ES.inc @@ -157,7 +157,6 @@ $labels['asciicasemap'] = 'minuskulak eta maiuskulak (ascii-casemap)'; $labels['asciinumeric'] = 'numerikoa (ascii-numeric)'; $labels['index'] = 'indexatu:'; $labels['indexlast'] = 'atzeraka'; -$messages = array(); $messages['filterunknownerror'] = 'Zerbitzari ezezaguna errorea'; $messages['filterconnerror'] = 'Ezin da konektatu zerbitzariarekin.'; $messages['filterdeleted'] = 'Iragazkia ongi ezabatu da.'; diff --git a/plugins/managesieve/localization/fa_IR.inc b/plugins/managesieve/localization/fa_IR.inc index 28d8762f1..5d3cdcd7f 100644 --- a/plugins/managesieve/localization/fa_IR.inc +++ b/plugins/managesieve/localization/fa_IR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'حساس به حروه کوچک و بزرگ (ascii-ca $labels['asciinumeric'] = 'عددی (ascii-numeric)'; $labels['index'] = 'فهرست:'; $labels['indexlast'] = 'به عقب'; - -$messages = array(); $messages['filterunknownerror'] = 'خطای سرور نامعلوم.'; $messages['filterconnerror'] = 'ناتوانی در اتصال به سرور.'; $messages['filterdeleteerror'] = 'ناتوانی در حذف صافی. خطای سرور رخ داد.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'نام رزرو شده.'; $messages['setexist'] = 'مجموعه در حال حاضر موجود است.'; $messages['nodata'] = 'حداقل باید یک موقعیت باید انتخاب شود.'; $messages['invaliddateformat'] = 'قالب تاریخ اشتباه'; - ?> diff --git a/plugins/managesieve/localization/fi_FI.inc b/plugins/managesieve/localization/fi_FI.inc index 4e0c59150..8108165b1 100644 --- a/plugins/managesieve/localization/fi_FI.inc +++ b/plugins/managesieve/localization/fi_FI.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Tuntematon palvelinvirhe.'; $messages['filterconnerror'] = 'Yhteys palvelimeen epäonnistui.'; $messages['filterdeleteerror'] = 'Suodattimen poisto epäonnistui palvelinvirheen vuoksi.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/fr_FR.inc b/plugins/managesieve/localization/fr_FR.inc index 221d8e858..88960232d 100644 --- a/plugins/managesieve/localization/fr_FR.inc +++ b/plugins/managesieve/localization/fr_FR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'insensible à la casse (ascii-casemap)'; $labels['asciinumeric'] = 'numérique (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'retour arrière'; - -$messages = array(); $messages['filterunknownerror'] = 'Erreur du serveur inconnue'; $messages['filterconnerror'] = 'Connexion au serveur Managesieve impossible'; $messages['filterdeleteerror'] = 'Suppression du filtre impossible. Le serveur à produit une erreur'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nom réservé.'; $messages['setexist'] = 'Ce groupe existe déjà.'; $messages['nodata'] = 'Au moins un élément doit être selectionné !'; $messages['invaliddateformat'] = 'Date non valide ou format d\'une partie de la date'; - ?> diff --git a/plugins/managesieve/localization/gl_ES.inc b/plugins/managesieve/localization/gl_ES.inc index b937cbd3e..7fc4028ae 100644 --- a/plugins/managesieve/localization/gl_ES.inc +++ b/plugins/managesieve/localization/gl_ES.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'non sensible a maiúsculas/minúsculas (ascii-casemap $labels['asciinumeric'] = 'numérico (ascii-numerico)'; $labels['index'] = 'índice:'; $labels['indexlast'] = 'cara atrás'; - -$messages = array(); $messages['filterunknownerror'] = 'Erro descoñecido servidor'; $messages['filterconnerror'] = 'Imposible conectar co servidor managesieve'; $messages['filterdeleteerror'] = 'Imposible eliminar filtro. Ocurriu un erro no servidor'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nome reservado'; $messages['setexist'] = 'Xa existe o conxunto'; $messages['nodata'] = 'É preciso seleccionar polo menos unha posición!'; $messages['invaliddateformat'] = 'Formato de data ou parte dos datos inválidos'; - ?> diff --git a/plugins/managesieve/localization/he_IL.inc b/plugins/managesieve/localization/he_IL.inc index 4227da242..ca015b6db 100644 --- a/plugins/managesieve/localization/he_IL.inc +++ b/plugins/managesieve/localization/he_IL.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'אינדקס:'; $labels['indexlast'] = 'בחזרה'; - -$messages = array(); $messages['filterunknownerror'] = 'שגיאת שרת בלתי מוכרת.'; $messages['filterconnerror'] = 'לא ניתן להתחבר לשרת.'; $messages['filterdeleteerror'] = 'לא ניתן למחוק את המסנן. אירעה שגיאה בצד השרת.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'השם הזה שמור.'; $messages['setexist'] = 'הערכה כבר קיימת.'; $messages['nodata'] = 'חובה לבחור במיקום אחד לפחות!'; $messages['invaliddateformat'] = 'תאריך לא חוקי אן פורמט לא תקין'; - ?> diff --git a/plugins/managesieve/localization/hr_HR.inc b/plugins/managesieve/localization/hr_HR.inc index b4c616c54..4e07a3f92 100644 --- a/plugins/managesieve/localization/hr_HR.inc +++ b/plugins/managesieve/localization/hr_HR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'neosjetljivo na veličinu slova (ascii-casemap)'; $labels['asciinumeric'] = 'numerički (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Nepoznata greška na poslužitelju'; $messages['filterconnerror'] = 'Nemoguće spajanje na poslužitelj (managesieve)'; $messages['filterdeleteerror'] = 'Nemoguće brisanje filtera. Greška na poslužitelju'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezervirano ime.'; $messages['setexist'] = 'Skup već postoji.'; $messages['nodata'] = 'Barem jedan pozicija mora biti odabrana!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/hu_HU.inc b/plugins/managesieve/localization/hu_HU.inc index a2b28b659..ffc665212 100644 --- a/plugins/managesieve/localization/hu_HU.inc +++ b/plugins/managesieve/localization/hu_HU.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'kis-nagybetüre nem érzékeny (ascii-casemap)'; $labels['asciinumeric'] = 'számszerü (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'visszafelé'; - -$messages = array(); $messages['filterunknownerror'] = 'Ismeretlen szerverhiba'; $messages['filterconnerror'] = 'Nem tudok a szűrőszerverhez kapcsolódni'; $messages['filterdeleteerror'] = 'A szűrőt nem lehet törölni, szerverhiba történt'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nem használható (foglalt) név-'; $messages['setexist'] = 'A készlet már létezik.'; $messages['nodata'] = 'Legalább egyet ki kell választani.'; $messages['invaliddateformat'] = 'hibás dátum formátum'; - ?> diff --git a/plugins/managesieve/localization/hy_AM.inc b/plugins/managesieve/localization/hy_AM.inc index c91478768..e16df4423 100644 --- a/plugins/managesieve/localization/hy_AM.inc +++ b/plugins/managesieve/localization/hy_AM.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Սերվերի անհայտ սխալ'; $messages['filterconnerror'] = 'Սերվերի հետ կապի խնդիր։'; $messages['filterdeleteerror'] = 'Սերվերի սխալ, զտիչի ջնջումն ձախողվեց։'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Անթույլատրելի անուն։'; $messages['setexist'] = 'Համալիրը արդեն գոյություն ունի։'; $messages['nodata'] = 'Պահանջվում է նշել գոնե մեկ դիրք։'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/ia.inc b/plugins/managesieve/localization/ia.inc index 8ae03afa1..ae1ba6e26 100644 --- a/plugins/managesieve/localization/ia.inc +++ b/plugins/managesieve/localization/ia.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/id_ID.inc b/plugins/managesieve/localization/id_ID.inc index 5b8da6a1d..e1c30ee6a 100644 --- a/plugins/managesieve/localization/id_ID.inc +++ b/plugins/managesieve/localization/id_ID.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Error pada server tak dikenali.'; $messages['filterconnerror'] = 'Tidak dapat menyambung ke server.'; $messages['filterdeleteerror'] = 'Tidak bisa menghapus penyaringan. Terjadi error pada server.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nama sudah terpesan.'; $messages['setexist'] = 'Kumpulan sudah ada.'; $messages['nodata'] = 'Setidaknya satu posisi harus dipilih!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/it_IT.inc b/plugins/managesieve/localization/it_IT.inc index 9fc7dc570..6042bf8e0 100644 --- a/plugins/managesieve/localization/it_IT.inc +++ b/plugins/managesieve/localization/it_IT.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'non differenziare maiuscole/minuscole (ascii-casemap) $labels['asciinumeric'] = 'numerico'; $labels['index'] = 'indice:'; $labels['indexlast'] = 'indietro'; - -$messages = array(); $messages['filterunknownerror'] = 'Errore sconosciuto del server'; $messages['filterconnerror'] = 'Collegamento al server managesieve fallito'; $messages['filterdeleteerror'] = 'Eliminazione del filtro fallita. Si è verificato un errore nel server'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'nome riservato'; $messages['setexist'] = 'Il gruppo esiste già'; $messages['nodata'] = 'selezionare almeno una posizione'; $messages['invaliddateformat'] = 'Formato della data non valido'; - ?> diff --git a/plugins/managesieve/localization/ja_JP.inc b/plugins/managesieve/localization/ja_JP.inc index 1c8628847..52cb89ac7 100644 --- a/plugins/managesieve/localization/ja_JP.inc +++ b/plugins/managesieve/localization/ja_JP.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = '大文字小文字を区別しない(ascii-casemap)'; $labels['asciinumeric'] = '数値(ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = '不明なサーバーのエラーです。'; $messages['filterconnerror'] = 'サーバに接続できません。'; $messages['filterdeleteerror'] = 'フィルターを削除できませんでした。サーバーでエラーが発生しました。'; @@ -193,5 +191,4 @@ $messages['namereserved'] = '予約されている名前です。'; $messages['setexist'] = 'フィルターセットが既に存在します。'; $messages['nodata'] = '少なくとも1つの場所を選択しなければなりません!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/ko_KR.inc b/plugins/managesieve/localization/ko_KR.inc index 26606a2e5..332596d4e 100644 --- a/plugins/managesieve/localization/ko_KR.inc +++ b/plugins/managesieve/localization/ko_KR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = '대/소문자 구분 (ascii-casemap)'; $labels['asciinumeric'] = '숫자 (ascii-numeric)'; $labels['index'] = '색인:'; $labels['indexlast'] = '역방향'; - -$messages = array(); $messages['filterunknownerror'] = '알수 없는 서버 오류.'; $messages['filterconnerror'] = '서버에 연결할 수 없음.'; $messages['filterdeleteerror'] = '필터를 삭제할 수 없음. 서버 오류가 발생함.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = '예약된 이름.'; $messages['setexist'] = '세트가 이미 존재함.'; $messages['nodata'] = '최소 하나의 위치가 선택되어야 합니다!'; $messages['invaliddateformat'] = '유효하지 않은 날짜 또는 날짜 일부 형식'; - ?> diff --git a/plugins/managesieve/localization/lb_LU.inc b/plugins/managesieve/localization/lb_LU.inc index 8b6845d28..9977d1d0d 100644 --- a/plugins/managesieve/localization/lb_LU.inc +++ b/plugins/managesieve/localization/lb_LU.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/lt_LT.inc b/plugins/managesieve/localization/lt_LT.inc index cabcdb429..8a2dfa6ac 100644 --- a/plugins/managesieve/localization/lt_LT.inc +++ b/plugins/managesieve/localization/lt_LT.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'nepaisantis raidžių registro („ascii-casemap“)' $labels['asciinumeric'] = 'skaitinis („ascii-numeric“)'; $labels['index'] = 'turinys:'; $labels['indexlast'] = 'atbulai'; - -$messages = array(); $messages['filterunknownerror'] = 'Nežinoma serverio klaida.'; $messages['filterconnerror'] = 'Neįmanoma užmegzti ryšio su serveriu.'; $messages['filterdeleteerror'] = 'Filtro panaikinti neįmanoma. Įvyko serverio klaida.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezervuotas vardas.'; $messages['setexist'] = 'Rinkinys jau yra sukurtas.'; $messages['nodata'] = 'Būtina pasirinkti bent vieną poziciją!'; $messages['invaliddateformat'] = 'Neteisingas datos ar jos dalies formatas'; - ?> diff --git a/plugins/managesieve/localization/lv_LV.inc b/plugins/managesieve/localization/lv_LV.inc index 98ebe5410..c577e7c50 100644 --- a/plugins/managesieve/localization/lv_LV.inc +++ b/plugins/managesieve/localization/lv_LV.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'reģistrnejutīgs (ascii tabula)'; $labels['asciinumeric'] = 'skaitļu (ascii skaitļu)'; $labels['index'] = 'indekss:'; $labels['indexlast'] = '"backwards"'; - -$messages = array(); $messages['filterunknownerror'] = 'Nezināma servera kļūda.'; $messages['filterconnerror'] = 'Neizdevās pieslēgties ManageSieve serverim.'; $messages['filterdeleteerror'] = 'Neizdevās izdzēst filtru - servera kļūda.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezervētais nosaukums.'; $messages['setexist'] = 'Kopa jau eksistē.'; $messages['nodata'] = 'Ir jābūt atzīmētai vismaz vienai pozīcijai!'; $messages['invaliddateformat'] = 'Nederīgs datums vai datuma formāts'; - ?> diff --git a/plugins/managesieve/localization/ml_IN.inc b/plugins/managesieve/localization/ml_IN.inc index e78adf799..bd4b6f8c1 100644 --- a/plugins/managesieve/localization/ml_IN.inc +++ b/plugins/managesieve/localization/ml_IN.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'വലിയ-ചെറിയക്ഷരങ്ങള $labels['asciinumeric'] = 'സംഖ്യകള്‍ (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'അജ്ഞാതമായ സെര്‍വ്വര്‍ പിശക്.'; $messages['filterconnerror'] = 'സെര്‍വ്വറുമായി ബന്ധപ്പെടാന്‍ സാധിക്കുന്നില്ല.'; $messages['filterdeleteerror'] = 'അരിപ്പ മായ്ക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'നീക്കിവെച്ച വാക്ക $messages['setexist'] = 'കൂട്ടം നേരത്തെ തന്നെ ഉണ്ട്.'; $messages['nodata'] = 'ഒരു സ്ഥാനമെങ്കിലും തെരഞ്ഞെടുക്കണം!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/mr_IN.inc b/plugins/managesieve/localization/mr_IN.inc index 1b1626c46..a8b046e63 100644 --- a/plugins/managesieve/localization/mr_IN.inc +++ b/plugins/managesieve/localization/mr_IN.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/nb_NO.inc b/plugins/managesieve/localization/nb_NO.inc index a1113201b..208ed985b 100644 --- a/plugins/managesieve/localization/nb_NO.inc +++ b/plugins/managesieve/localization/nb_NO.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'ikke skill store og små bokstaver (ascii-casemap)'; $labels['asciinumeric'] = 'numerisk (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'baklengs'; - -$messages = array(); $messages['filterunknownerror'] = 'Ukjent problem med tjener.'; $messages['filterconnerror'] = 'Kunne ikke koble til tjeneren.'; $messages['filterdeleteerror'] = 'Kunne ikke slette filter. Det dukket opp en feil på tjeneren.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Navnet er reservert.'; $messages['setexist'] = 'Settet eksisterer allerede.'; $messages['nodata'] = 'Du må velge minst én posisjon!'; $messages['invaliddateformat'] = 'Ugyldig dato eller datoformat'; - ?> diff --git a/plugins/managesieve/localization/nl_NL.inc b/plugins/managesieve/localization/nl_NL.inc index 5fa3b73ab..42bfd737f 100644 --- a/plugins/managesieve/localization/nl_NL.inc +++ b/plugins/managesieve/localization/nl_NL.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'hoofdletterongevoelig (ascii-casemap)'; $labels['asciinumeric'] = 'numeriek (ascii-numeriek)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'terugwaarts'; - -$messages = array(); $messages['filterunknownerror'] = 'Onbekende fout'; $messages['filterconnerror'] = 'Kan geen verbinding maken met de managesieve server'; $messages['filterdeleteerror'] = 'Kan filter niet verwijderen. Er is een fout opgetreden'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Gereserveerde naam.'; $messages['setexist'] = 'Set bestaat al.'; $messages['nodata'] = 'Tenminste één positie moet geselecteerd worden!'; $messages['invaliddateformat'] = 'Ongeldige datum of datumformaat'; - ?> diff --git a/plugins/managesieve/localization/nn_NO.inc b/plugins/managesieve/localization/nn_NO.inc index 2f7d19eee..c6b65c326 100644 --- a/plugins/managesieve/localization/nn_NO.inc +++ b/plugins/managesieve/localization/nn_NO.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'ikkje skil mellom store og små bokstavar (ascii-case $labels['asciinumeric'] = 'numerisk (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Ukjent problem med tenar.'; $messages['filterconnerror'] = 'Kunne ikkje kople til tenaren.'; $messages['filterdeleteerror'] = 'Kunne ikkje slette filter. Det oppstod ein feil på tenaren.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Namnet er reservert.'; $messages['setexist'] = 'Settet eksisterer alt.'; $messages['nodata'] = 'Du må velje minst éin posisjon!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/pl_PL.inc b/plugins/managesieve/localization/pl_PL.inc index 9b2623464..25882a655 100644 --- a/plugins/managesieve/localization/pl_PL.inc +++ b/plugins/managesieve/localization/pl_PL.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'nierozróżniający wielkości liter (ascii-casemap)' $labels['asciinumeric'] = 'numeryczny (ascii-numeric)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'wstecz'; - -$messages = array(); $messages['filterunknownerror'] = 'Nieznany błąd serwera.'; $messages['filterconnerror'] = 'Nie można nawiązać połączenia z serwerem.'; $messages['filterdeleteerror'] = 'Nie można usunąć filtra. Błąd serwera.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nazwa zarezerwowana.'; $messages['setexist'] = 'Zbiór już istnieje.'; $messages['nodata'] = 'Należy wybrać co najmniej jedną pozycję!'; $messages['invaliddateformat'] = 'Nieprawidłowy format daty lub fragmentu daty'; - ?> diff --git a/plugins/managesieve/localization/pt_BR.inc b/plugins/managesieve/localization/pt_BR.inc index c515ad24c..7835e1e1d 100644 --- a/plugins/managesieve/localization/pt_BR.inc +++ b/plugins/managesieve/localization/pt_BR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'caso insensível (mapa de caracteres ascii)'; $labels['asciinumeric'] = 'numérico (ascii-numeric)'; $labels['index'] = 'índice:'; $labels['indexlast'] = 'retroceder'; - -$messages = array(); $messages['filterunknownerror'] = 'Erro desconhecido de servidor'; $messages['filterconnerror'] = 'Não foi possível conectar ao servidor managesieve'; $messages['filterdeleteerror'] = 'Não foi possível excluir filtro. Occorreu um erro de servidor'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nome reservado.'; $messages['setexist'] = 'Conjunto já existe.'; $messages['nodata'] = 'Pelo menos uma posição precisa ser selecionada!'; $messages['invaliddateformat'] = 'Data inválida'; - ?> diff --git a/plugins/managesieve/localization/pt_PT.inc b/plugins/managesieve/localization/pt_PT.inc index fd61c1299..c028ebd05 100644 --- a/plugins/managesieve/localization/pt_PT.inc +++ b/plugins/managesieve/localization/pt_PT.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'não sensível a maiúsculas/minúsculas (caracteres $labels['asciinumeric'] = 'numérico (numérico ascii)'; $labels['index'] = 'índice:'; $labels['indexlast'] = 'retroceder'; - -$messages = array(); $messages['filterunknownerror'] = 'Erro de servidor desconhecido'; $messages['filterconnerror'] = 'Não é possível ligar ao servidor Sieve'; $messages['filterdeleteerror'] = 'Não foi possível eliminar o filtro. Erro no servidor'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nome invertido.'; $messages['setexist'] = 'O conjunto já existe.'; $messages['nodata'] = 'Deve selecionar pelo menos uma posição.'; $messages['invaliddateformat'] = 'Data ou formato de data inválido.'; - ?> diff --git a/plugins/managesieve/localization/ro_RO.inc b/plugins/managesieve/localization/ro_RO.inc index 641f33efe..894b78db8 100644 --- a/plugins/managesieve/localization/ro_RO.inc +++ b/plugins/managesieve/localization/ro_RO.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'ignoră majusculele (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'invers'; - -$messages = array(); $messages['filterunknownerror'] = 'Eroare necunoscută la server:'; $messages['filterconnerror'] = 'Nu mă pot conecta la server.'; $messages['filterdeleteerror'] = 'Nu pot şterge filtrul. S-a produs o eroare la server.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Nume rezervat.'; $messages['setexist'] = 'Setul există deja.'; $messages['nodata'] = 'Trebuie selectată cel putin o poziţie!'; $messages['invaliddateformat'] = 'Data sau parte din data in format invalid'; - ?> diff --git a/plugins/managesieve/localization/ru_RU.inc b/plugins/managesieve/localization/ru_RU.inc index 3adad0d85..7342fd177 100644 --- a/plugins/managesieve/localization/ru_RU.inc +++ b/plugins/managesieve/localization/ru_RU.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'Регистронезависимый (ascii-casemap $labels['asciinumeric'] = 'Числовой (ascii-numeric)'; $labels['index'] = 'индекс:'; $labels['indexlast'] = 'наоборот'; - -$messages = array(); $messages['filterunknownerror'] = 'Неизвестная ошибка сервера.'; $messages['filterconnerror'] = 'Невозможно подключиться к серверу.'; $messages['filterdeleteerror'] = 'Невозможно удалить фильтр. Ошибка сервера.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Зарезервированное имя.'; $messages['setexist'] = 'Набор уже существует.'; $messages['nodata'] = 'Нужно выбрать хотя бы одну позицию!'; $messages['invaliddateformat'] = 'Неверная дата или формат части даты'; - ?> diff --git a/plugins/managesieve/localization/si_LK.inc b/plugins/managesieve/localization/si_LK.inc index 7c7e50f43..05d7a79f0 100644 --- a/plugins/managesieve/localization/si_LK.inc +++ b/plugins/managesieve/localization/si_LK.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Unknown server error.'; $messages['filterconnerror'] = 'Unable to connect to server.'; $messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/sk_SK.inc b/plugins/managesieve/localization/sk_SK.inc index d3340ea61..0addfd438 100644 --- a/plugins/managesieve/localization/sk_SK.inc +++ b/plugins/managesieve/localization/sk_SK.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'nerozlišuje veľké a malé písmená (ascii tabuľk $labels['asciinumeric'] = 'numerické (ascii čísla)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'dozadu'; - -$messages = array(); $messages['filterunknownerror'] = 'Neznáma chyba serveru'; $messages['filterconnerror'] = 'Nepodarilo sa pripojiť k managesieve serveru'; $messages['filterdeleteerror'] = 'Nepodarilo sa zmazať filter, server ohlásil chybu'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezervovaný názov.'; $messages['setexist'] = 'Množina už existuje.'; $messages['nodata'] = 'Aspoň jedna pozícia musí byť zvolená.'; $messages['invaliddateformat'] = 'Neplatný formát dátumu alebo časti dátumu'; - ?> diff --git a/plugins/managesieve/localization/sl_SI.inc b/plugins/managesieve/localization/sl_SI.inc index f71e1ca84..ed727e950 100644 --- a/plugins/managesieve/localization/sl_SI.inc +++ b/plugins/managesieve/localization/sl_SI.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'ni občutljiv na velike/male črke (ascii-casemap)'; $labels['asciinumeric'] = 'numerično (ascii-numeric)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'obraten vrstni red'; - -$messages = array(); $messages['filterunknownerror'] = 'Prišlo je do neznane napake.'; $messages['filterconnerror'] = 'Povezave s strežnikom (managesieve) ni bilo mogoče vzpostaviti'; $messages['filterdeleteerror'] = 'Pravila ni bilo mogoče izbrisati. Prišlo je do napake.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Rezervirano ime.'; $messages['setexist'] = 'Nastavitev filtra že obstaja.'; $messages['nodata'] = 'Izbrana mora biti vsaj ena nastavitev!'; $messages['invaliddateformat'] = 'Neveljaven datum ali oblika zapisa datuma'; - ?> diff --git a/plugins/managesieve/localization/sv_SE.inc b/plugins/managesieve/localization/sv_SE.inc index 8425550a1..a7bed5e36 100644 --- a/plugins/managesieve/localization/sv_SE.inc +++ b/plugins/managesieve/localization/sv_SE.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'teckenlägesokänslig (ascii-casemap)'; $labels['asciinumeric'] = 'numerisk (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'omvänd'; - -$messages = array(); $messages['filterunknownerror'] = 'Okänt serverfel'; $messages['filterconnerror'] = 'Anslutning till serverns filtertjänst misslyckades'; $messages['filterdeleteerror'] = 'Filtret kunde inte tas bort på grund av serverfel'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserverat namn.'; $messages['setexist'] = 'Filtergrupp finns redan.'; $messages['nodata'] = 'Minst en position måste väljas!'; $messages['invaliddateformat'] = 'Ogiltigt datum eller del av datumformat'; - ?> diff --git a/plugins/managesieve/localization/th_TH.inc b/plugins/managesieve/localization/th_TH.inc index 65309f1b2..bf9125197 100644 --- a/plugins/managesieve/localization/th_TH.inc +++ b/plugins/managesieve/localization/th_TH.inc @@ -44,5 +44,4 @@ $labels['sender'] = 'ผู้ส่ง'; $labels['recipient'] = 'ผู้รับ'; $labels['vacationsubject'] = 'หัวเรื่องข้อความ:'; $labels['enable'] = 'เปิดใช้งาน/ปิดใช้งาน'; -$messages = array(); ?> diff --git a/plugins/managesieve/localization/tr_TR.inc b/plugins/managesieve/localization/tr_TR.inc index 51096751c..67c6d2c4e 100644 --- a/plugins/managesieve/localization/tr_TR.inc +++ b/plugins/managesieve/localization/tr_TR.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'büyük küçük harf duyarsız(ascii-casemap)'; $labels['asciinumeric'] = 'sayı (ascii-numeric)'; $labels['index'] = 'indeks:'; $labels['indexlast'] = 'geriye yönelik'; - -$messages = array(); $messages['filterunknownerror'] = 'Bilinmeyen sunucu hatası.'; $messages['filterconnerror'] = 'Sunucuya bağlanamıyor.'; $messages['filterdeleteerror'] = 'Filtre silinemedi. Sunucuda hata oluştu.'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'rezerve edilmiş isim.'; $messages['setexist'] = 'Set zaten var.'; $messages['nodata'] = 'En az bir pozisyon seçilmelidir.'; $messages['invaliddateformat'] = 'geçersiz tarih veya tarih biçimi'; - ?> diff --git a/plugins/managesieve/localization/uk_UA.inc b/plugins/managesieve/localization/uk_UA.inc index c6b58e245..033ac5659 100644 --- a/plugins/managesieve/localization/uk_UA.inc +++ b/plugins/managesieve/localization/uk_UA.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Невідома помилка сервера'; $messages['filterconnerror'] = 'Неможливо з\'єднатися з сервером'; $messages['filterdeleteerror'] = 'Неможливо видалити фільтр. Помилка сервера'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/vi_VN.inc b/plugins/managesieve/localization/vi_VN.inc index 93332f68f..d98c02280 100644 --- a/plugins/managesieve/localization/vi_VN.inc +++ b/plugins/managesieve/localization/vi_VN.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = 'Không phân biệt chữ hoa chữ thường'; $labels['asciinumeric'] = 'Bảng mã ASCII'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = 'Không tìm được lỗi máy chủ'; $messages['filterconnerror'] = 'Không kết nối được với máy chủ.'; $messages['filterdeleteerror'] = 'Không thể xóa bộ lọc. Xuất hiện lỗi ở máy chủ'; @@ -193,5 +191,4 @@ $messages['namereserved'] = 'Tên đã được bảo vệ'; $messages['setexist'] = 'Thiết lập đã tồn tại'; $messages['nodata'] = 'Ít nhất một vị trí phải được chọn'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/zh_CN.inc b/plugins/managesieve/localization/zh_CN.inc index c2f5f840f..fdff5fae9 100644 --- a/plugins/managesieve/localization/zh_CN.inc +++ b/plugins/managesieve/localization/zh_CN.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = '不区分大小写(ascii 字符)'; $labels['asciinumeric'] = '数字类型(ascii 数字)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = '未知的服务器错误'; $messages['filterconnerror'] = '无法连接至服务器'; $messages['filterdeleteerror'] = '无法删除过滤器。服务器发生错误'; @@ -193,5 +191,4 @@ $messages['namereserved'] = '保留名称。'; $messages['setexist'] = '设置已存在。'; $messages['nodata'] = '至少选择一个位置!'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/managesieve/localization/zh_TW.inc b/plugins/managesieve/localization/zh_TW.inc index 1cb0f8a4a..46b9ea957 100644 --- a/plugins/managesieve/localization/zh_TW.inc +++ b/plugins/managesieve/localization/zh_TW.inc @@ -159,8 +159,6 @@ $labels['asciicasemap'] = '不區分大小寫(採用ASCII-Casemap)'; $labels['asciinumeric'] = '數字類型(ascii-numeric)'; $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; - -$messages = array(); $messages['filterunknownerror'] = '未知的伺服器錯誤'; $messages['filterconnerror'] = '無法與伺服器連線'; $messages['filterdeleteerror'] = '無法刪除篩選器。發生伺服器錯誤'; @@ -193,5 +191,4 @@ $messages['namereserved'] = '保留名稱.'; $messages['setexist'] = '設定已存在'; $messages['nodata'] = '至少要選擇一個位置'; $messages['invaliddateformat'] = 'Invalid date or date part format'; - ?> diff --git a/plugins/markasjunk/localization/ar.inc b/plugins/markasjunk/localization/ar.inc index 3a8923058..335ea3126 100644 --- a/plugins/markasjunk/localization/ar.inc +++ b/plugins/markasjunk/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'غير المرغوب'; $labels['buttontitle'] = 'حدد كغير مرغوب'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/az_AZ.inc b/plugins/markasjunk/localization/az_AZ.inc index 420cd036a..abf6cdce3 100644 --- a/plugins/markasjunk/localization/az_AZ.inc +++ b/plugins/markasjunk/localization/az_AZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Spam qovluğuna köçür'; $labels['reportedasjunk'] = 'Spam qovluğuna köçürüldü'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/be_BE.inc b/plugins/markasjunk/localization/be_BE.inc index a24f8c1be..095c0d8b8 100644 --- a/plugins/markasjunk/localization/be_BE.inc +++ b/plugins/markasjunk/localization/be_BE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Непажаданыя'; $labels['buttontitle'] = 'Пазначыць як непажаданы'; $labels['reportedasjunk'] = 'Паспяхова пазначаны як напажаданы'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ber.inc b/plugins/markasjunk/localization/ber.inc index 12fe4442e..046e45733 100644 --- a/plugins/markasjunk/localization/ber.inc +++ b/plugins/markasjunk/localization/ber.inc @@ -13,5 +13,4 @@ +-----------------------------------------------------------------------+ */ -$labels = array(); diff --git a/plugins/markasjunk/localization/bg_BG.inc b/plugins/markasjunk/localization/bg_BG.inc index 83b4a0098..a672476bb 100644 --- a/plugins/markasjunk/localization/bg_BG.inc +++ b/plugins/markasjunk/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Спам'; $labels['buttontitle'] = 'Маркирай като спам'; $labels['reportedasjunk'] = 'Писмото е маркирано като спам успешно'; diff --git a/plugins/markasjunk/localization/br.inc b/plugins/markasjunk/localization/br.inc index 4ae4190be..febdfa9b1 100644 --- a/plugins/markasjunk/localization/br.inc +++ b/plugins/markasjunk/localization/br.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Lastez'; $labels['buttontitle'] = 'Merkañ evel lastez'; $labels['reportedasjunk'] = 'Danevellet evel lastez gant berzh'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/bs_BA.inc b/plugins/markasjunk/localization/bs_BA.inc index aaa093300..7eaaf8811 100644 --- a/plugins/markasjunk/localization/bs_BA.inc +++ b/plugins/markasjunk/localization/bs_BA.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označi kao spam'; $labels['reportedasjunk'] = 'Uspješno označeno kao spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ca_ES.inc b/plugins/markasjunk/localization/ca_ES.inc index 4b05d9248..f10aa7a67 100644 --- a/plugins/markasjunk/localization/ca_ES.inc +++ b/plugins/markasjunk/localization/ca_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Correu brossa'; $labels['buttontitle'] = 'Marca com a Spam'; $labels['reportedasjunk'] = 'S\'ha reportat correctament com a Spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/cs_CZ.inc b/plugins/markasjunk/localization/cs_CZ.inc index b56cb5c88..81ec3938e 100644 --- a/plugins/markasjunk/localization/cs_CZ.inc +++ b/plugins/markasjunk/localization/cs_CZ.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označit jako Spam'; $labels['reportedasjunk'] = 'Úspěšně nahlášeno jako Spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/cy_GB.inc b/plugins/markasjunk/localization/cy_GB.inc index 7b1b6e6d3..b0896256d 100644 --- a/plugins/markasjunk/localization/cy_GB.inc +++ b/plugins/markasjunk/localization/cy_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Sothach'; $labels['buttontitle'] = 'Nodi fel Sbwriel'; $labels['reportedasjunk'] = 'Adroddwyd yn llwyddiannus fel Sbwriel'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/da_DK.inc b/plugins/markasjunk/localization/da_DK.inc index bd76b6ba7..fec4cbb3e 100644 --- a/plugins/markasjunk/localization/da_DK.inc +++ b/plugins/markasjunk/localization/da_DK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marker som spam mail'; $labels['reportedasjunk'] = 'Successfuldt rapporteret som spam mail'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/de_CH.inc b/plugins/markasjunk/localization/de_CH.inc index 89b22b7b4..30ba40126 100644 --- a/plugins/markasjunk/localization/de_CH.inc +++ b/plugins/markasjunk/localization/de_CH.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Als SPAM markieren'; $labels['reportedasjunk'] = 'Erfolgreich als SPAM gemeldet'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/de_DE.inc b/plugins/markasjunk/localization/de_DE.inc index f158d78ac..0bab30013 100644 --- a/plugins/markasjunk/localization/de_DE.inc +++ b/plugins/markasjunk/localization/de_DE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'als SPAM markieren'; $labels['reportedasjunk'] = 'Erfolgreich als SPAM gemeldet'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/el_GR.inc b/plugins/markasjunk/localization/el_GR.inc index fb16a29ce..1c7498786 100644 --- a/plugins/markasjunk/localization/el_GR.inc +++ b/plugins/markasjunk/localization/el_GR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Ανεπιθύμητα'; $labels['buttontitle'] = 'Σήμανση ως Ανεπιθύμητου'; $labels['reportedasjunk'] = 'Αναφέρθηκε ως Ανεπιθήμητο'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/en_GB.inc b/plugins/markasjunk/localization/en_GB.inc index aaa3c91ac..d51efd461 100644 --- a/plugins/markasjunk/localization/en_GB.inc +++ b/plugins/markasjunk/localization/en_GB.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Mark as Junk'; $labels['reportedasjunk'] = 'Successfully reported as Junk'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/eo.inc b/plugins/markasjunk/localization/eo.inc index 220750a20..af42a32ce 100644 --- a/plugins/markasjunk/localization/eo.inc +++ b/plugins/markasjunk/localization/eo.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Rubaĵo'; $labels['buttontitle'] = 'Marki kiel rubaĵo'; $labels['reportedasjunk'] = 'Sukcese raportita kiel rubaĵo'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/es_AR.inc b/plugins/markasjunk/localization/es_AR.inc index 58e1f25b4..e2dbdc34d 100644 --- a/plugins/markasjunk/localization/es_AR.inc +++ b/plugins/markasjunk/localization/es_AR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Correo no deseado'; $labels['buttontitle'] = 'Marcar como SPAM'; $labels['reportedasjunk'] = 'Mensaje reportado como SPAM'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/es_ES.inc b/plugins/markasjunk/localization/es_ES.inc index 5bb75548b..fadf30492 100644 --- a/plugins/markasjunk/localization/es_ES.inc +++ b/plugins/markasjunk/localization/es_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'SPAM'; $labels['buttontitle'] = 'Marcar como SPAM'; $labels['reportedasjunk'] = 'Mensaje informado como SPAM'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/et_EE.inc b/plugins/markasjunk/localization/et_EE.inc index 2d90a4a8c..c582f3c65 100644 --- a/plugins/markasjunk/localization/et_EE.inc +++ b/plugins/markasjunk/localization/et_EE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Rämps'; $labels['buttontitle'] = 'Märgista Rämpsuks'; $labels['reportedasjunk'] = 'Edukalt Rämpsuks märgitud'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/eu_ES.inc b/plugins/markasjunk/localization/eu_ES.inc index cd27806a6..6101da51d 100644 --- a/plugins/markasjunk/localization/eu_ES.inc +++ b/plugins/markasjunk/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Zabor-mezua'; $labels['buttontitle'] = 'Markatu zabor-mezu bezala'; $labels['reportedasjunk'] = 'Zabor bezala markatu da'; diff --git a/plugins/markasjunk/localization/fa_IR.inc b/plugins/markasjunk/localization/fa_IR.inc index 2dc051890..50fbd41ef 100644 --- a/plugins/markasjunk/localization/fa_IR.inc +++ b/plugins/markasjunk/localization/fa_IR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'بنجل'; $labels['buttontitle'] = 'علامت گذاری به عنوان بنجل'; $labels['reportedasjunk'] = 'با موفقیت به عنوان بنجل گزارش شد'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/fi_FI.inc b/plugins/markasjunk/localization/fi_FI.inc index 4af075f33..e343116d4 100644 --- a/plugins/markasjunk/localization/fi_FI.inc +++ b/plugins/markasjunk/localization/fi_FI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Roskaposti'; $labels['buttontitle'] = 'Merkitse roskapostiksi'; $labels['reportedasjunk'] = 'Roskapostista on ilmoitettu onnistuneesti'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/fr_FR.inc b/plugins/markasjunk/localization/fr_FR.inc index ff96e6a1e..7054d0948 100644 --- a/plugins/markasjunk/localization/fr_FR.inc +++ b/plugins/markasjunk/localization/fr_FR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Indésirables'; $labels['buttontitle'] = 'Marquer comme indésirable'; $labels['reportedasjunk'] = 'Notification de message indésirable envoyée'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/gl_ES.inc b/plugins/markasjunk/localization/gl_ES.inc index d2a9e98b7..35fe0841d 100644 --- a/plugins/markasjunk/localization/gl_ES.inc +++ b/plugins/markasjunk/localization/gl_ES.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Correo lixo'; $labels['buttontitle'] = 'Marcar como correo lixo'; $labels['reportedasjunk'] = 'Mensaxe marcada como correo lixo'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/he_IL.inc b/plugins/markasjunk/localization/he_IL.inc index bb2cc266b..13f635078 100644 --- a/plugins/markasjunk/localization/he_IL.inc +++ b/plugins/markasjunk/localization/he_IL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'זבל'; $labels['buttontitle'] = 'סמן כדואר זבל'; $labels['reportedasjunk'] = 'דואר הזבל דווח בהצלחה'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/hr_HR.inc b/plugins/markasjunk/localization/hr_HR.inc index b1da8b128..4fe971893 100644 --- a/plugins/markasjunk/localization/hr_HR.inc +++ b/plugins/markasjunk/localization/hr_HR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Označi kao smeće (spam)'; $labels['reportedasjunk'] = 'Uspješno prijavljeno kao smeće (spam)'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/hu_HU.inc b/plugins/markasjunk/localization/hu_HU.inc index b5529f024..7d38610d1 100644 --- a/plugins/markasjunk/localization/hu_HU.inc +++ b/plugins/markasjunk/localization/hu_HU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Levélszemét'; $labels['buttontitle'] = 'Szemétnek jelölés'; $labels['reportedasjunk'] = 'Sikeresen szemétnek jelentve'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/hy_AM.inc b/plugins/markasjunk/localization/hy_AM.inc index f614b5814..b562e5c9f 100644 --- a/plugins/markasjunk/localization/hy_AM.inc +++ b/plugins/markasjunk/localization/hy_AM.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Թափոն'; $labels['buttontitle'] = 'Նշել որպես Թափոն'; $labels['reportedasjunk'] = 'Բարեհաջող հաղորդվեց որպես Թափոն'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/id_ID.inc b/plugins/markasjunk/localization/id_ID.inc index b5cf0e9de..7063bda7b 100644 --- a/plugins/markasjunk/localization/id_ID.inc +++ b/plugins/markasjunk/localization/id_ID.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Sampah'; $labels['buttontitle'] = 'Tandai sebagai sampah'; $labels['reportedasjunk'] = 'Berhasil dilaporkan sebagai sampah'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/it_IT.inc b/plugins/markasjunk/localization/it_IT.inc index 8ffa1eb23..b787536af 100644 --- a/plugins/markasjunk/localization/it_IT.inc +++ b/plugins/markasjunk/localization/it_IT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marca come Spam'; $labels['reportedasjunk'] = 'Messaggio marcato come Spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ja_JP.inc b/plugins/markasjunk/localization/ja_JP.inc index 52811505e..abd84d8e5 100644 --- a/plugins/markasjunk/localization/ja_JP.inc +++ b/plugins/markasjunk/localization/ja_JP.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = '迷惑メール'; $labels['buttontitle'] = '迷惑メールとして設定'; $labels['reportedasjunk'] = '迷惑メールとして報告しました。'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/km_KH.inc b/plugins/markasjunk/localization/km_KH.inc index 655af9cb8..a102c004a 100644 --- a/plugins/markasjunk/localization/km_KH.inc +++ b/plugins/markasjunk/localization/km_KH.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'សំបុត្រមិនល្អ'; $labels['buttontitle'] = 'ចាត់ជា សំបុត្រមិនល្អ'; $labels['reportedasjunk'] = 'រាយការណ៏ថាជា សំបុត្រមិនល្អ បានសំរេច'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ko_KR.inc b/plugins/markasjunk/localization/ko_KR.inc index dd2d1e798..2df78d4d2 100644 --- a/plugins/markasjunk/localization/ko_KR.inc +++ b/plugins/markasjunk/localization/ko_KR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = '정크메일'; $labels['buttontitle'] = '정크메일로 표시'; $labels['reportedasjunk'] = '성공적으로, 정크메일이라 보고 됨'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ku.inc b/plugins/markasjunk/localization/ku.inc index da3dda775..562147696 100644 --- a/plugins/markasjunk/localization/ku.inc +++ b/plugins/markasjunk/localization/ku.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'nawnişani bka ba şkaw'; $labels['reportedasjunk'] = 'ba gşti raport kra'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/lb_LU.inc b/plugins/markasjunk/localization/lb_LU.inc index eb211d66c..e4a4f7298 100644 --- a/plugins/markasjunk/localization/lb_LU.inc +++ b/plugins/markasjunk/localization/lb_LU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Als Spam markéieren'; $labels['reportedasjunk'] = 'Erfollegräich als Spam gemellt'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/lt_LT.inc b/plugins/markasjunk/localization/lt_LT.inc index b1973dee0..0d7144ddd 100644 --- a/plugins/markasjunk/localization/lt_LT.inc +++ b/plugins/markasjunk/localization/lt_LT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Brukalas'; $labels['buttontitle'] = 'Žymėti kaip brukalą'; $labels['reportedasjunk'] = 'Sėkmingai pranešta, jog laiškas yra brukalas'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/lv_LV.inc b/plugins/markasjunk/localization/lv_LV.inc index 5389ae399..d29e60d91 100644 --- a/plugins/markasjunk/localization/lv_LV.inc +++ b/plugins/markasjunk/localization/lv_LV.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Mēstules'; $labels['buttontitle'] = 'Atzīmēt kā mēstuli'; $labels['reportedasjunk'] = 'Sekmīgi iatzīmēta kā mēstule'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ml_IN.inc b/plugins/markasjunk/localization/ml_IN.inc index faeea49ed..c6654709e 100644 --- a/plugins/markasjunk/localization/ml_IN.inc +++ b/plugins/markasjunk/localization/ml_IN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'സ്പാം ആയി അടയാളപ്പെടുത്തുക'; $labels['reportedasjunk'] = 'സ്പാം ആയി അടയാളപ്പെടുത്തി'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/mr_IN.inc b/plugins/markasjunk/localization/mr_IN.inc index e5d4e89d3..7c4611bc0 100644 --- a/plugins/markasjunk/localization/mr_IN.inc +++ b/plugins/markasjunk/localization/mr_IN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'नको असलेला अशी खूण करा'; $labels['reportedasjunk'] = 'नको आहे असे यशस्वीरीत्या नक्की केले'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/nb_NO.inc b/plugins/markasjunk/localization/nb_NO.inc index 1c8058b23..155dbf85a 100644 --- a/plugins/markasjunk/localization/nb_NO.inc +++ b/plugins/markasjunk/localization/nb_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Useriøs e-post'; $labels['buttontitle'] = 'Marker som useriøs e-post'; $labels['reportedasjunk'] = 'Rapportering av useriøs e-post var vellykket'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/nl_NL.inc b/plugins/markasjunk/localization/nl_NL.inc index 235ad8e0f..49f40ec57 100644 --- a/plugins/markasjunk/localization/nl_NL.inc +++ b/plugins/markasjunk/localization/nl_NL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Markeer als spam'; $labels['reportedasjunk'] = 'Succesvol gemarkeerd als spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/nn_NO.inc b/plugins/markasjunk/localization/nn_NO.inc index 977f4bd01..9b08089ad 100644 --- a/plugins/markasjunk/localization/nn_NO.inc +++ b/plugins/markasjunk/localization/nn_NO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Useriøs e-post'; $labels['buttontitle'] = 'Marker som useriøs e-post'; $labels['reportedasjunk'] = 'Rapportering av useriøs e-post var vellykka'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/pl_PL.inc b/plugins/markasjunk/localization/pl_PL.inc index 3078967cc..b3d4b4534 100644 --- a/plugins/markasjunk/localization/pl_PL.inc +++ b/plugins/markasjunk/localization/pl_PL.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Oznacz jako SPAM'; $labels['reportedasjunk'] = 'Pomyślnie oznaczono jako SPAM'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/pt_BR.inc b/plugins/markasjunk/localization/pt_BR.inc index 578d1de1c..83252ab15 100644 --- a/plugins/markasjunk/localization/pt_BR.inc +++ b/plugins/markasjunk/localization/pt_BR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marcar como Spam'; $labels['reportedasjunk'] = 'Marcado como Spam com sucesso'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/pt_PT.inc b/plugins/markasjunk/localization/pt_PT.inc index 20cb00356..eabde40a5 100644 --- a/plugins/markasjunk/localization/pt_PT.inc +++ b/plugins/markasjunk/localization/pt_PT.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Lixo'; $labels['buttontitle'] = 'Marcar como Lixo'; $labels['reportedasjunk'] = 'Reportado como Lixo com sucesso'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ro_RO.inc b/plugins/markasjunk/localization/ro_RO.inc index 03e5824c2..199edddae 100644 --- a/plugins/markasjunk/localization/ro_RO.inc +++ b/plugins/markasjunk/localization/ro_RO.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Vechituri'; $labels['buttontitle'] = 'Marchează ca SPAM'; $labels['reportedasjunk'] = 'Raportat cu succes ca SPAM'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ru_RU.inc b/plugins/markasjunk/localization/ru_RU.inc index d2b6abd40..7efa50406 100644 --- a/plugins/markasjunk/localization/ru_RU.inc +++ b/plugins/markasjunk/localization/ru_RU.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'СПАМ'; $labels['buttontitle'] = 'Переместить в СПАМ'; $labels['reportedasjunk'] = 'Перемещено в СПАМ'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/si_LK.inc b/plugins/markasjunk/localization/si_LK.inc index 2a60675af..807eee56a 100644 --- a/plugins/markasjunk/localization/si_LK.inc +++ b/plugins/markasjunk/localization/si_LK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'සුන්බුන් ලෙස සලකුණු කරන්න'; $labels['reportedasjunk'] = 'සුන්බුන් ලෙස වාර්තා කිරීම සාර්ථකයි'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/sk_SK.inc b/plugins/markasjunk/localization/sk_SK.inc index 51b45b835..bfbc14fa6 100644 --- a/plugins/markasjunk/localization/sk_SK.inc +++ b/plugins/markasjunk/localization/sk_SK.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označiť ako Spam'; $labels['reportedasjunk'] = 'Úspešne nahlásené ako Spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/sl_SI.inc b/plugins/markasjunk/localization/sl_SI.inc index c9f585143..af2f41aaf 100644 --- a/plugins/markasjunk/localization/sl_SI.inc +++ b/plugins/markasjunk/localization/sl_SI.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Nezaželena sporočila'; $labels['buttontitle'] = 'Označi kot spam'; $labels['reportedasjunk'] = 'Uspešno označeno kot spam'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/sr_CS.inc b/plugins/markasjunk/localization/sr_CS.inc index d1d67c3d7..b8d468b64 100644 --- a/plugins/markasjunk/localization/sr_CS.inc +++ b/plugins/markasjunk/localization/sr_CS.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Смеће'; $labels['buttontitle'] = 'Означи као cмеће'; $labels['reportedasjunk'] = 'Успешно пријављени као cмеће'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/sv_SE.inc b/plugins/markasjunk/localization/sv_SE.inc index 5b8ddf559..6f4c583ed 100644 --- a/plugins/markasjunk/localization/sv_SE.inc +++ b/plugins/markasjunk/localization/sv_SE.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Skräp'; $labels['buttontitle'] = 'Märk som skräp'; $labels['reportedasjunk'] = 'Framgångsrikt rapporterat som skräp'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/tr_TR.inc b/plugins/markasjunk/localization/tr_TR.inc index 2b07e4dbc..85a5aed3e 100644 --- a/plugins/markasjunk/localization/tr_TR.inc +++ b/plugins/markasjunk/localization/tr_TR.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'İstenmeyen'; $labels['buttontitle'] = 'Çöp olarak işaretle'; $labels['reportedasjunk'] = 'Spam olarak rapor edildi'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/uk_UA.inc b/plugins/markasjunk/localization/uk_UA.inc index 17e90447c..0666d0807 100644 --- a/plugins/markasjunk/localization/uk_UA.inc +++ b/plugins/markasjunk/localization/uk_UA.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Перемістити в "Спам'; $labels['reportedasjunk'] = 'Переміщено до "Спаму'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/vi_VN.inc b/plugins/markasjunk/localization/vi_VN.inc index 5a97db7bc..8de71615e 100644 --- a/plugins/markasjunk/localization/vi_VN.inc +++ b/plugins/markasjunk/localization/vi_VN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = 'Thư rác'; $labels['buttontitle'] = 'Đánh dấu để được xem là thư rác'; $labels['reportedasjunk'] = 'Đánh dấu để được xem là thư rác thành công'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/zh_CN.inc b/plugins/markasjunk/localization/zh_CN.inc index 118e3a956..465643246 100644 --- a/plugins/markasjunk/localization/zh_CN.inc +++ b/plugins/markasjunk/localization/zh_CN.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = '垃圾邮件'; $labels['buttontitle'] = '标记为垃圾邮件'; $labels['reportedasjunk'] = '成功报告该邮件为垃圾邮件'; - ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/zh_TW.inc b/plugins/markasjunk/localization/zh_TW.inc index 3deb85caa..da0b57cba 100644 --- a/plugins/markasjunk/localization/zh_TW.inc +++ b/plugins/markasjunk/localization/zh_TW.inc @@ -16,9 +16,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ -$labels = array(); $labels['buttontext'] = '垃圾郵件'; $labels['buttontitle'] = '標示為垃圾信'; $labels['reportedasjunk'] = '成功回報垃圾信'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ar.inc b/plugins/new_user_dialog/localization/ar.inc index 195e05e2b..7016e5520 100644 --- a/plugins/new_user_dialog/localization/ar.inc +++ b/plugins/new_user_dialog/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'يرجى إكمال هوية المرسل'; $labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند تسجيل الدخول أول مرة .'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ar_SA.inc b/plugins/new_user_dialog/localization/ar_SA.inc index 37358049d..9bfd24976 100644 --- a/plugins/new_user_dialog/localization/ar_SA.inc +++ b/plugins/new_user_dialog/localization/ar_SA.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند أول الدخول'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ast.inc b/plugins/new_user_dialog/localization/ast.inc index 929a58322..1d4c9fc1c 100644 --- a/plugins/new_user_dialog/localization/ast.inc +++ b/plugins/new_user_dialog/localization/ast.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor, completa los tos datos personales'; $labels['identitydialoghint'] = 'Esti diálogu namái va apaecer la primer vegada que te coneutes al corréu.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/az_AZ.inc b/plugins/new_user_dialog/localization/az_AZ.inc index df576c6f6..d3c7f89f7 100644 --- a/plugins/new_user_dialog/localization/az_AZ.inc +++ b/plugins/new_user_dialog/localization/az_AZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Lütfən, adınızı yazın.'; $labels['identitydialoghint'] = 'Bu məlumat yalnız ilk girişdə göstərilir.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/be_BE.inc b/plugins/new_user_dialog/localization/be_BE.inc index 08881d8e6..390180634 100644 --- a/plugins/new_user_dialog/localization/be_BE.inc +++ b/plugins/new_user_dialog/localization/be_BE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Калі ласка, запоўніце асабістыя звесткі'; $labels['identitydialoghint'] = 'Гэтае вакно з\'яўляецца толькі аднойчы, у час першага ўваходу.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/bg_BG.inc b/plugins/new_user_dialog/localization/bg_BG.inc index a34458ecb..708f8f4ba 100644 --- a/plugins/new_user_dialog/localization/bg_BG.inc +++ b/plugins/new_user_dialog/localization/bg_BG.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Моля попълнете Вашите данни за идентичност на подател'; $labels['identitydialoghint'] = 'Този диалог се появява само при първоначално регистриране.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/bs_BA.inc b/plugins/new_user_dialog/localization/bs_BA.inc index 6b07e7cd5..f8cc93c1d 100644 --- a/plugins/new_user_dialog/localization/bs_BA.inc +++ b/plugins/new_user_dialog/localization/bs_BA.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Molimo vas da kompletirate vaš identitet pošiljaoca'; $labels['identitydialoghint'] = 'Ovaj okvir se pojavljuje samo jednom prilikom prve prijave.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ca_ES.inc b/plugins/new_user_dialog/localization/ca_ES.inc index 047042293..3675954ec 100644 --- a/plugins/new_user_dialog/localization/ca_ES.inc +++ b/plugins/new_user_dialog/localization/ca_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Si us plau, completeu la identitat del vostre remitent'; $labels['identitydialoghint'] = 'Aquest quadre només apareix un cop a la primera entrada.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/cs_CZ.inc b/plugins/new_user_dialog/localization/cs_CZ.inc index 90f84d0a1..7b4a25b38 100644 --- a/plugins/new_user_dialog/localization/cs_CZ.inc +++ b/plugins/new_user_dialog/localization/cs_CZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Prosím doplňte své jméno a e-mail'; $labels['identitydialoghint'] = 'Tento dialog se objeví pouze při prvním přihlášení.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/cy_GB.inc b/plugins/new_user_dialog/localization/cy_GB.inc index e9e42d166..7d935d0de 100644 --- a/plugins/new_user_dialog/localization/cy_GB.inc +++ b/plugins/new_user_dialog/localization/cy_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Cwblhewch eich enw danfonwr'; $labels['identitydialoghint'] = 'Mae\'r bocs hwn yn ymddangos unwaith ar eich mewngofnodiad cyntaf.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/da_DK.inc b/plugins/new_user_dialog/localization/da_DK.inc index c08c108ed..e5a69dd66 100644 --- a/plugins/new_user_dialog/localization/da_DK.inc +++ b/plugins/new_user_dialog/localization/da_DK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Udfyld din afsender identitet'; $labels['identitydialoghint'] = 'Denne boks vises kun én gang ved første login'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/de_CH.inc b/plugins/new_user_dialog/localization/de_CH.inc index 23a897d47..195fdc23d 100644 --- a/plugins/new_user_dialog/localization/de_CH.inc +++ b/plugins/new_user_dialog/localization/de_CH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Bitte vervollständigen Sie Ihre Absender-Informationen'; $labels['identitydialoghint'] = 'Dieser Dialog erscheint nur einmal beim ersten Login.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/de_DE.inc b/plugins/new_user_dialog/localization/de_DE.inc index 23a897d47..195fdc23d 100644 --- a/plugins/new_user_dialog/localization/de_DE.inc +++ b/plugins/new_user_dialog/localization/de_DE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Bitte vervollständigen Sie Ihre Absender-Informationen'; $labels['identitydialoghint'] = 'Dieser Dialog erscheint nur einmal beim ersten Login.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/el_GR.inc b/plugins/new_user_dialog/localization/el_GR.inc index b03d43c61..01028689d 100644 --- a/plugins/new_user_dialog/localization/el_GR.inc +++ b/plugins/new_user_dialog/localization/el_GR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Παρακαλώ συμπληρώστε την ταυτότητα του αποστολέα'; $labels['identitydialoghint'] = 'Αυτό το πλαίσιο εμφανίζεται μια φορά κατά την πρώτη σύνδεση'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/en_GB.inc b/plugins/new_user_dialog/localization/en_GB.inc index ead515db8..4c7b59301 100644 --- a/plugins/new_user_dialog/localization/en_GB.inc +++ b/plugins/new_user_dialog/localization/en_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Please complete your sender identity.'; $labels['identitydialoghint'] = 'This box only appears once at the first login.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/eo.inc b/plugins/new_user_dialog/localization/eo.inc index e8fd2e987..5ac957e0e 100644 --- a/plugins/new_user_dialog/localization/eo.inc +++ b/plugins/new_user_dialog/localization/eo.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Bonvole plenumu vian identon pri sendanto'; $labels['identitydialoghint'] = 'Ĉi tiu kesto aperas nur unufoje je la unua ensaluto.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/es_AR.inc b/plugins/new_user_dialog/localization/es_AR.inc index 1385da029..a1e42c992 100644 --- a/plugins/new_user_dialog/localization/es_AR.inc +++ b/plugins/new_user_dialog/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor, seleccione una identidad para los mensajes salientes'; $labels['identitydialoghint'] = 'Este diálogo aparecerá sólo una vez durante el primer ingreso'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/es_ES.inc b/plugins/new_user_dialog/localization/es_ES.inc index c44e3bbae..7f005f111 100644 --- a/plugins/new_user_dialog/localization/es_ES.inc +++ b/plugins/new_user_dialog/localization/es_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor, complete sus datos personales'; $labels['identitydialoghint'] = 'Este diálogo sólo aparecerá la primera vez que se conecte al correo.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/et_EE.inc b/plugins/new_user_dialog/localization/et_EE.inc index 610d496e5..295e57f9e 100644 --- a/plugins/new_user_dialog/localization/et_EE.inc +++ b/plugins/new_user_dialog/localization/et_EE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Palun täida oma saatja identiteet'; $labels['identitydialoghint'] = 'See kast ilmub ainult esimesel sisselogimisel.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/eu_ES.inc b/plugins/new_user_dialog/localization/eu_ES.inc index b6275df49..4e0f5ec76 100644 --- a/plugins/new_user_dialog/localization/eu_ES.inc +++ b/plugins/new_user_dialog/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Osatu zure bidaltzaile-identitatea'; $labels['identitydialoghint'] = 'Kutxa hau behin bakarri agertzen da lehenengoz sartzean.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fa_AF.inc b/plugins/new_user_dialog/localization/fa_AF.inc index 6a60e100a..23867ba3f 100644 --- a/plugins/new_user_dialog/localization/fa_AF.inc +++ b/plugins/new_user_dialog/localization/fa_AF.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'لطفا مشخصات فرستنده را کامل کنید'; $labels['identitydialoghint'] = 'این متن تنها هنگام اولین ورود نمایش داده خواهد شد'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fa_IR.inc b/plugins/new_user_dialog/localization/fa_IR.inc index 473ac7267..c75ac5909 100644 --- a/plugins/new_user_dialog/localization/fa_IR.inc +++ b/plugins/new_user_dialog/localization/fa_IR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'لطفا شناسنه ارسالی‌تان را کامل کنید'; $labels['identitydialoghint'] = 'این جعبه فقط یک بار در اولین ورود ظاهر می‌شود.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fi_FI.inc b/plugins/new_user_dialog/localization/fi_FI.inc index 22ca93c4e..974a62793 100644 --- a/plugins/new_user_dialog/localization/fi_FI.inc +++ b/plugins/new_user_dialog/localization/fi_FI.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Täydennä lähettäjätietosi'; $labels['identitydialoghint'] = 'Tämä kohta näkyy vain ensimmäisellä kirjautumiskerralla.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fr_FR.inc b/plugins/new_user_dialog/localization/fr_FR.inc index 58bc5f86c..10021dbe7 100644 --- a/plugins/new_user_dialog/localization/fr_FR.inc +++ b/plugins/new_user_dialog/localization/fr_FR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Veuillez saisir votre identité d\'expéditeur'; $labels['identitydialoghint'] = 'Cette fenêtre de dialogue ne s\'affiche qu\'une seule fois à la première connexion.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/gl_ES.inc b/plugins/new_user_dialog/localization/gl_ES.inc index c61299757..f829cf4c6 100644 --- a/plugins/new_user_dialog/localization/gl_ES.inc +++ b/plugins/new_user_dialog/localization/gl_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor, complete os seus datos persoais'; $labels['identitydialoghint'] = 'Este diálogo só aparecerá a primera vez que se conecte ao correo.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/he_IL.inc b/plugins/new_user_dialog/localization/he_IL.inc index 97991dfa4..470294939 100644 --- a/plugins/new_user_dialog/localization/he_IL.inc +++ b/plugins/new_user_dialog/localization/he_IL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'נא להשלים את פרטי זהותך'; $labels['identitydialoghint'] = 'תיבה זו מופיעה פעם אחת בזמן הכניסה הראשונה למערכת'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hr_HR.inc b/plugins/new_user_dialog/localization/hr_HR.inc index 33b11c339..6c3f11252 100644 --- a/plugins/new_user_dialog/localization/hr_HR.inc +++ b/plugins/new_user_dialog/localization/hr_HR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Molim dovršite vaš identitet za slanje poruka'; $labels['identitydialoghint'] = 'Ova poruka će se pojaviti samo kod prve prijave.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hu_HU.inc b/plugins/new_user_dialog/localization/hu_HU.inc index 7a636d97e..b07d9f13b 100644 --- a/plugins/new_user_dialog/localization/hu_HU.inc +++ b/plugins/new_user_dialog/localization/hu_HU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Kérem töltse ki a küldő azonosítóját'; $labels['identitydialoghint'] = 'Ez az ablak csak az első belépéskor jelenik meg.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hy_AM.inc b/plugins/new_user_dialog/localization/hy_AM.inc index 8d96de0da..f6e53ee4a 100644 --- a/plugins/new_user_dialog/localization/hy_AM.inc +++ b/plugins/new_user_dialog/localization/hy_AM.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Լրացրեք Ձեր ինքնությունը'; $labels['identitydialoghint'] = 'Այս նշումը երևում է միայն առաջին մուտքի ժամանակ մեկ անգամ'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/id_ID.inc b/plugins/new_user_dialog/localization/id_ID.inc index b2f7ace4b..c33958284 100644 --- a/plugins/new_user_dialog/localization/id_ID.inc +++ b/plugins/new_user_dialog/localization/id_ID.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Tolong lengkapi identitas pengirim Anda'; $labels['identitydialoghint'] = 'Kotak ini hanya muncul sekali saat masuk pertama kali.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/it_IT.inc b/plugins/new_user_dialog/localization/it_IT.inc index 0d1032d6c..16af9bce7 100644 --- a/plugins/new_user_dialog/localization/it_IT.inc +++ b/plugins/new_user_dialog/localization/it_IT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Per favore completa le informazioni riguardo la tua identità'; $labels['identitydialoghint'] = 'Questa finestra comparirà una volta sola al primo accesso'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ja_JP.inc b/plugins/new_user_dialog/localization/ja_JP.inc index fbf5b5b4c..98a0694b6 100644 --- a/plugins/new_user_dialog/localization/ja_JP.inc +++ b/plugins/new_user_dialog/localization/ja_JP.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = '送信者情報の入力を完了してください。'; $labels['identitydialoghint'] = 'このボックスは最初のログイン時に一度だけ表示されます。'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/km_KH.inc b/plugins/new_user_dialog/localization/km_KH.inc index 1752a10e7..970a19ac1 100644 --- a/plugins/new_user_dialog/localization/km_KH.inc +++ b/plugins/new_user_dialog/localization/km_KH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'សូមបំពេញអ្តសញ្ញាណអ្នកផ្ញើ'; $labels['identitydialoghint'] = 'ប្រអប់នេះបង្ហាញតែម្តងទេ ពេលចូលលើកទីមួយ'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ko_KR.inc b/plugins/new_user_dialog/localization/ko_KR.inc index d9b519475..e8f8e3b48 100644 --- a/plugins/new_user_dialog/localization/ko_KR.inc +++ b/plugins/new_user_dialog/localization/ko_KR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = '수신인의 신원을 완성하시기 바랍니다.'; $labels['identitydialoghint'] = '이 상자는 최초로 로그인할 때만 나타납니다.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ku.inc b/plugins/new_user_dialog/localization/ku.inc index fe0f8e55c..d151ed14f 100644 --- a/plugins/new_user_dialog/localization/ku.inc +++ b/plugins/new_user_dialog/localization/ku.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'tkaya nawnişani nenar ba tawawi bnwsa'; $labels['identitydialoghint'] = 'am qtwia wadiara yak jar la sarata krawatawa'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lb_LU.inc b/plugins/new_user_dialog/localization/lb_LU.inc index 36da96e5e..de6de2fc8 100644 --- a/plugins/new_user_dialog/localization/lb_LU.inc +++ b/plugins/new_user_dialog/localization/lb_LU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Vervollstänneg w.e.gl deng Sender-Identitéit'; $labels['identitydialoghint'] = 'Dës Këscht erschéngt just beim éischte Login.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lt_LT.inc b/plugins/new_user_dialog/localization/lt_LT.inc index f134bc486..5005cd570 100644 --- a/plugins/new_user_dialog/localization/lt_LT.inc +++ b/plugins/new_user_dialog/localization/lt_LT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Prašom užpildyti trūkstamą informaciją apie save'; $labels['identitydialoghint'] = 'Šis langas rodomas tik prisijungus pirmąjį kartą.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lv_LV.inc b/plugins/new_user_dialog/localization/lv_LV.inc index 0447d995a..513ab613e 100644 --- a/plugins/new_user_dialog/localization/lv_LV.inc +++ b/plugins/new_user_dialog/localization/lv_LV.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Lūdzu aizpildiet Jūsu, kā sūtītāja, identitātes informāciju'; $labels['identitydialoghint'] = 'Šis logs parādīsies tikai pirmajā autorizācijas reizē.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ml_IN.inc b/plugins/new_user_dialog/localization/ml_IN.inc index 74ce4285a..09471b089 100644 --- a/plugins/new_user_dialog/localization/ml_IN.inc +++ b/plugins/new_user_dialog/localization/ml_IN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'സ്വീകര്‍ത്താവിന്റെ വ്യക്തിത്വം പൂര്‍ത്തീകരിക്കുക'; $labels['identitydialoghint'] = 'ആദ്യത്തെ പ്രവേശനത്തില്‍ മാത്രമേ ഈ പെട്ടി വരികയുള്ളു'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/mr_IN.inc b/plugins/new_user_dialog/localization/mr_IN.inc index 2e684aaa9..535588ea5 100644 --- a/plugins/new_user_dialog/localization/mr_IN.inc +++ b/plugins/new_user_dialog/localization/mr_IN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'कृपया पाठवणा-याची ओळख पूर्ण करा'; $labels['identitydialoghint'] = 'हा चौकोन पहिल्यांदा लॉगिन करताना एकदाच दिसेल.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nb_NO.inc b/plugins/new_user_dialog/localization/nb_NO.inc index 18ddd9ce7..963fcc206 100644 --- a/plugins/new_user_dialog/localization/nb_NO.inc +++ b/plugins/new_user_dialog/localization/nb_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Vennligst fullfør din avvsender identitet.'; $labels['identitydialoghint'] = 'Denne boksen kommer kun ved første pålogging.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nl_NL.inc b/plugins/new_user_dialog/localization/nl_NL.inc index c5d392f98..f18a8775f 100644 --- a/plugins/new_user_dialog/localization/nl_NL.inc +++ b/plugins/new_user_dialog/localization/nl_NL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Vul alstublieft uw afzendergegevens in.'; $labels['identitydialoghint'] = 'Dit scherm verschijnt eenmalig bij uw eerste aanmelding.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nn_NO.inc b/plugins/new_user_dialog/localization/nn_NO.inc index a7fd7d650..fc4cda2e5 100644 --- a/plugins/new_user_dialog/localization/nn_NO.inc +++ b/plugins/new_user_dialog/localization/nn_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Fullfør avsendaridentiteten din.'; $labels['identitydialoghint'] = 'Denne boksen kjem berre fram ved første pålogging.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pl_PL.inc b/plugins/new_user_dialog/localization/pl_PL.inc index 034893b35..60c5da1cb 100644 --- a/plugins/new_user_dialog/localization/pl_PL.inc +++ b/plugins/new_user_dialog/localization/pl_PL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Uzupełnij tożsamość nadawcy'; $labels['identitydialoghint'] = 'To okno pojawia się tylko przy pierwszym logowaniu.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pt_BR.inc b/plugins/new_user_dialog/localization/pt_BR.inc index 7556b4d1a..b6babccbd 100644 --- a/plugins/new_user_dialog/localization/pt_BR.inc +++ b/plugins/new_user_dialog/localization/pt_BR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor complete a sua identidade'; $labels['identitydialoghint'] = 'Esta tela aparece somente no primeiro acesso.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pt_PT.inc b/plugins/new_user_dialog/localization/pt_PT.inc index 3e3922fca..cb7cdbc0a 100644 --- a/plugins/new_user_dialog/localization/pt_PT.inc +++ b/plugins/new_user_dialog/localization/pt_PT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Por favor, complete a sua identidade'; $labels['identitydialoghint'] = 'Esta caixa aparece apenas uma vez no primeiro acesso.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ro_RO.inc b/plugins/new_user_dialog/localization/ro_RO.inc index caa8f3257..d840908b0 100644 --- a/plugins/new_user_dialog/localization/ro_RO.inc +++ b/plugins/new_user_dialog/localization/ro_RO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Te rog completează identitatea de expeditor.'; $labels['identitydialoghint'] = 'Această căsuţă apare o data la prima autentificare.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ru_RU.inc b/plugins/new_user_dialog/localization/ru_RU.inc index 2c948781e..5fa87ab51 100644 --- a/plugins/new_user_dialog/localization/ru_RU.inc +++ b/plugins/new_user_dialog/localization/ru_RU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Пожалуйста, укажите Ваше имя.'; $labels['identitydialoghint'] = 'Данное сообщение отображается только при первом входе.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sk_SK.inc b/plugins/new_user_dialog/localization/sk_SK.inc index ca57463df..92e87b356 100644 --- a/plugins/new_user_dialog/localization/sk_SK.inc +++ b/plugins/new_user_dialog/localization/sk_SK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Doplňte prosím Vašu identifikáciu odosielateľa'; $labels['identitydialoghint'] = 'Toto okno sa objaví len pri prvom prihlásení.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sl_SI.inc b/plugins/new_user_dialog/localization/sl_SI.inc index 7d26b44bd..0bfea6143 100644 --- a/plugins/new_user_dialog/localization/sl_SI.inc +++ b/plugins/new_user_dialog/localization/sl_SI.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Izberite identiteto za pošiljanje'; $labels['identitydialoghint'] = 'To okno se prikaže le ob prvi prijavi v spletno pošto.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sr_CS.inc b/plugins/new_user_dialog/localization/sr_CS.inc index ee2999bab..9ae4811e2 100644 --- a/plugins/new_user_dialog/localization/sr_CS.inc +++ b/plugins/new_user_dialog/localization/sr_CS.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Молимо вас да попуните свој идентитет пошиљаоца'; $labels['identitydialoghint'] = 'Ово поље се појављује само једном у првом логовању'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sv_SE.inc b/plugins/new_user_dialog/localization/sv_SE.inc index 71ecfc7fe..08c70006a 100644 --- a/plugins/new_user_dialog/localization/sv_SE.inc +++ b/plugins/new_user_dialog/localization/sv_SE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Fyll i namn och avsändaradress under personliga inställningar'; $labels['identitydialoghint'] = 'Informationen visas endast vid första inloggningen.'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/tr_TR.inc b/plugins/new_user_dialog/localization/tr_TR.inc index 4d6c6d16e..ae560f9de 100644 --- a/plugins/new_user_dialog/localization/tr_TR.inc +++ b/plugins/new_user_dialog/localization/tr_TR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Lütfen gönderici kimliğinizi tamamlayın'; $labels['identitydialoghint'] = 'Bu ekran ilk girişte bir kereliğine gözükür'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/uk_UA.inc b/plugins/new_user_dialog/localization/uk_UA.inc index 0c4111d85..6d5349c11 100644 --- a/plugins/new_user_dialog/localization/uk_UA.inc +++ b/plugins/new_user_dialog/localization/uk_UA.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Будь ласка, вкажіть Ваше ім’я'; $labels['identitydialoghint'] = 'Це повідомлення відображається тільки під час першого заходу'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/vi_VN.inc b/plugins/new_user_dialog/localization/vi_VN.inc index 86d164124..1be657073 100644 --- a/plugins/new_user_dialog/localization/vi_VN.inc +++ b/plugins/new_user_dialog/localization/vi_VN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = 'Xin điền nhận diện người gửi của bạn'; $labels['identitydialoghint'] = 'Hộp này chỉ xuất hiện 1 lần khi đăng nhập lần đầu tiên'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/zh_CN.inc b/plugins/new_user_dialog/localization/zh_CN.inc index ca40173af..990670ebd 100644 --- a/plugins/new_user_dialog/localization/zh_CN.inc +++ b/plugins/new_user_dialog/localization/zh_CN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = '请填写发送人身份'; $labels['identitydialoghint'] = '本提示仅在第一次登录时显示。'; - ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/zh_TW.inc b/plugins/new_user_dialog/localization/zh_TW.inc index d9309fc12..52998eabc 100644 --- a/plugins/new_user_dialog/localization/zh_TW.inc +++ b/plugins/new_user_dialog/localization/zh_TW.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ -$labels = array(); $labels['identitydialogtitle'] = '請完成您的身份資訊'; $labels['identitydialoghint'] = '此視窗只會於第一次登入時出現。'; - ?> \ No newline at end of file diff --git a/plugins/newmail_notifier/localization/ar_SA.inc b/plugins/newmail_notifier/localization/ar_SA.inc index 484584900..4e04d4fd4 100644 --- a/plugins/newmail_notifier/localization/ar_SA.inc +++ b/plugins/newmail_notifier/localization/ar_SA.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'هذه رسالة تجربية'; $labels['desktopdisabled'] = 'رسائل التنبيه على سطح المكتب غير مفعلة فى متصفح الانترنت الخاص بك'; $labels['desktopunsupported'] = 'المتصفح الخاص بك لا يدعم رسائل سطح المكتب'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/az_AZ.inc b/plugins/newmail_notifier/localization/az_AZ.inc index d4c9263b6..16d9a2e51 100644 --- a/plugins/newmail_notifier/localization/az_AZ.inc +++ b/plugins/newmail_notifier/localization/az_AZ.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Bu sınaq bildirişidir'; $labels['desktopdisabled'] = 'Sizin brauzerdə iş masasında bildiriş söndürülüb'; $labels['desktopunsupported'] = 'Sizin brauzer iş masasında bildiriş funksiyasını dəstəkləmir'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/be_BE.inc b/plugins/newmail_notifier/localization/be_BE.inc index 9e7e53c12..b015470f5 100644 --- a/plugins/newmail_notifier/localization/be_BE.inc +++ b/plugins/newmail_notifier/localization/be_BE.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Гэта тэставае апавяшчэнне.'; $labels['desktopdisabled'] = 'Інфармаванне працоўнага стала адлкючана ў вашым азіральніку'; $labels['desktopunsupported'] = 'Ваш азіральнік не падтрымлівае інфармаванне працоўнага стала.'; $labels['desktoptimeout'] = 'Зачыніць апавяшчэнне на працоўным стале'; - ?> diff --git a/plugins/newmail_notifier/localization/br.inc b/plugins/newmail_notifier/localization/br.inc index 46f694de5..c4d447f0e 100644 --- a/plugins/newmail_notifier/localization/br.inc +++ b/plugins/newmail_notifier/localization/br.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'This is a test notification.'; $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/bs_BA.inc b/plugins/newmail_notifier/localization/bs_BA.inc index 59a30e39e..4089f24b1 100644 --- a/plugins/newmail_notifier/localization/bs_BA.inc +++ b/plugins/newmail_notifier/localization/bs_BA.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Ovo je testna obavijest.'; $labels['desktopdisabled'] = 'Desktop obavijesti su onemogućene u vašem pregledniku.'; $labels['desktopunsupported'] = 'Vaš preglednik ne podržava desktop obavijesti.'; $labels['desktoptimeout'] = 'Zatvori desktop obavijesti'; - ?> diff --git a/plugins/newmail_notifier/localization/ca_ES.inc b/plugins/newmail_notifier/localization/ca_ES.inc index 2ac886aab..bcafd4c48 100644 --- a/plugins/newmail_notifier/localization/ca_ES.inc +++ b/plugins/newmail_notifier/localization/ca_ES.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Això és una notificació de prova.'; $labels['desktopdisabled'] = 'Les notificacions d\'escriptori estan deshabilitades al vostre navegador.'; $labels['desktopunsupported'] = 'El vostre navegador no permet les notificacions d\'escriptori.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/cs_CZ.inc b/plugins/newmail_notifier/localization/cs_CZ.inc index 9da522e41..065363d84 100644 --- a/plugins/newmail_notifier/localization/cs_CZ.inc +++ b/plugins/newmail_notifier/localization/cs_CZ.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Toto je zkouška upozornění.'; $labels['desktopdisabled'] = 'Upozornění na ploše jsou ve vašem prohlížeči vypnuté.'; $labels['desktopunsupported'] = 'Váš prohlížeč nepodporuje upozornění na ploše.'; $labels['desktoptimeout'] = 'Zavřít upozornění na ploše'; - ?> diff --git a/plugins/newmail_notifier/localization/cy_GB.inc b/plugins/newmail_notifier/localization/cy_GB.inc index 5f16962f3..a9ea1a3d7 100644 --- a/plugins/newmail_notifier/localization/cy_GB.inc +++ b/plugins/newmail_notifier/localization/cy_GB.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Hysbysiad prawf yw hwn.'; $labels['desktopdisabled'] = 'Mae hysbysiadau penbwrdd wedi ei analluogi yn eich porwr'; $labels['desktopunsupported'] = 'Nid yw eich porwr yn cefnogi hysbysiadau penbwrdd.'; $labels['desktoptimeout'] = 'Cau hysbysiad penbwrdd'; - ?> diff --git a/plugins/newmail_notifier/localization/da_DK.inc b/plugins/newmail_notifier/localization/da_DK.inc index c47dec5e4..615aa9b32 100644 --- a/plugins/newmail_notifier/localization/da_DK.inc +++ b/plugins/newmail_notifier/localization/da_DK.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dette er en test meddelelse.'; $labels['desktopdisabled'] = 'Skrivebordsbeskeder er deaktiveret i din browser.'; $labels['desktopunsupported'] = 'Din browser understøtter ikke skrivebordsbeskeder.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/de_CH.inc b/plugins/newmail_notifier/localization/de_CH.inc index d6fb7c68e..b056306b3 100644 --- a/plugins/newmail_notifier/localization/de_CH.inc +++ b/plugins/newmail_notifier/localization/de_CH.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dies ist eine Testbenachrichtigung'; $labels['desktopdisabled'] = 'Desktop-Benachrichtigungen sind deaktiviert.'; $labels['desktopunsupported'] = 'Ihr Browser unterstützt keine Desktop-Benachrichtigungen.'; $labels['desktoptimeout'] = 'Anzeige im Browser schliessen'; - ?> diff --git a/plugins/newmail_notifier/localization/de_DE.inc b/plugins/newmail_notifier/localization/de_DE.inc index 6585b769a..20cd11e2a 100644 --- a/plugins/newmail_notifier/localization/de_DE.inc +++ b/plugins/newmail_notifier/localization/de_DE.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dies ist eine Testbenachrichtigung'; $labels['desktopdisabled'] = 'Desktop-Benachrichtigungen sind deaktiviert.'; $labels['desktopunsupported'] = 'Ihr Browser unterstützt keine Desktop-Benachrichtigungen.'; $labels['desktoptimeout'] = 'Desktop-Benachrichtigung geschlossen.'; - ?> diff --git a/plugins/newmail_notifier/localization/en_GB.inc b/plugins/newmail_notifier/localization/en_GB.inc index 12e3a6d86..c8ddabf52 100644 --- a/plugins/newmail_notifier/localization/en_GB.inc +++ b/plugins/newmail_notifier/localization/en_GB.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'This is a test notification.'; $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/eo.inc b/plugins/newmail_notifier/localization/eo.inc index 3de0b7bd0..f895246ba 100644 --- a/plugins/newmail_notifier/localization/eo.inc +++ b/plugins/newmail_notifier/localization/eo.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Tio estas testo pri atentigo.'; $labels['desktopdisabled'] = 'Atentigoj de komputilo estas malŝaltitaj en via retumilo.'; $labels['desktopunsupported'] = 'Via retumilo ne subtenas atentigojn de komputilo.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/es_ES.inc b/plugins/newmail_notifier/localization/es_ES.inc index d4afaeca0..e20743970 100644 --- a/plugins/newmail_notifier/localization/es_ES.inc +++ b/plugins/newmail_notifier/localization/es_ES.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Esta es una notificación de pruebas.'; $labels['desktopdisabled'] = 'Las notificaciones de escritorio están deshabilitadas en tu navegador.'; $labels['desktopunsupported'] = 'Tu navegador no soporta notificaciones de escritorio.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/et_EE.inc b/plugins/newmail_notifier/localization/et_EE.inc index 845525ea6..07bd0b6e8 100644 --- a/plugins/newmail_notifier/localization/et_EE.inc +++ b/plugins/newmail_notifier/localization/et_EE.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'See on teavituse proov.'; $labels['desktopdisabled'] = 'Töölaua märguanded on su veebilehitsejas keelatud.'; $labels['desktopunsupported'] = 'Sinu veebilehitseja ei toeta töölaua märguandeid.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/fa_IR.inc b/plugins/newmail_notifier/localization/fa_IR.inc index df7348e8e..4cc32dce6 100644 --- a/plugins/newmail_notifier/localization/fa_IR.inc +++ b/plugins/newmail_notifier/localization/fa_IR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'این یک تذکر آزمایشی است.'; $labels['desktopdisabled'] = 'تذکرهای رومیزی در مرورگر شما غیرفعال شده‌اند.'; $labels['desktopunsupported'] = 'مرورگر شما تذکرهای رومیزی را پشتیبانی نمی‌کند.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/fi_FI.inc b/plugins/newmail_notifier/localization/fi_FI.inc index 80dc09d8d..2488c7d19 100644 --- a/plugins/newmail_notifier/localization/fi_FI.inc +++ b/plugins/newmail_notifier/localization/fi_FI.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Tämä on testi-ilmoitus.'; $labels['desktopdisabled'] = 'Työpöytäilmoitukset on estetty selaimessa.'; $labels['desktopunsupported'] = 'Selaimesi ei tue työpöytäilmoituksia.'; $labels['desktoptimeout'] = 'Sulje työpöytäilmoitus'; - ?> diff --git a/plugins/newmail_notifier/localization/fr_FR.inc b/plugins/newmail_notifier/localization/fr_FR.inc index 526eed659..ff9d7ed7e 100644 --- a/plugins/newmail_notifier/localization/fr_FR.inc +++ b/plugins/newmail_notifier/localization/fr_FR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Test de notification'; $labels['desktopdisabled'] = 'Les notifications sur le bureau sont désactivées dans votre navigateur'; $labels['desktopunsupported'] = 'Votre navigateur ne supporte pas les notifications sur le bureau'; $labels['desktoptimeout'] = 'Fermer les notifications de bureau'; - ?> diff --git a/plugins/newmail_notifier/localization/gl_ES.inc b/plugins/newmail_notifier/localization/gl_ES.inc index 1dd91d577..a34eb2cf5 100644 --- a/plugins/newmail_notifier/localization/gl_ES.inc +++ b/plugins/newmail_notifier/localization/gl_ES.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Esta é unha notificación de proba'; $labels['desktopdisabled'] = 'As notificacións de escritorio están desactivadas no seu navegador'; $labels['desktopunsupported'] = 'O teu navegador non soporta notificacións de escritorio.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/he_IL.inc b/plugins/newmail_notifier/localization/he_IL.inc index 810c4400b..5d907d55a 100644 --- a/plugins/newmail_notifier/localization/he_IL.inc +++ b/plugins/newmail_notifier/localization/he_IL.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'זה איתות לנסיון'; $labels['desktopdisabled'] = 'איתותים משולחן העבודה אינם פעילים בדפדפן שלך'; $labels['desktopunsupported'] = 'הדפדפן שלך אינו תומך באיתותים משולחן העבודה'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/hr_HR.inc b/plugins/newmail_notifier/localization/hr_HR.inc index dd098c3c7..97eea8b4d 100644 --- a/plugins/newmail_notifier/localization/hr_HR.inc +++ b/plugins/newmail_notifier/localization/hr_HR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Ovo je probna dojava.'; $labels['desktopdisabled'] = 'Dojave na desktopu su onemogućene u vašem pregledniku.'; $labels['desktopunsupported'] = 'Vaš preglednik ne podržava dojave na desktopu.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/hu_HU.inc b/plugins/newmail_notifier/localization/hu_HU.inc index 6bf212f9b..7aa0329c6 100644 --- a/plugins/newmail_notifier/localization/hu_HU.inc +++ b/plugins/newmail_notifier/localization/hu_HU.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Ez egy teszt értesítés.'; $labels['desktopdisabled'] = 'Az asztali értesítés ki van kapcsolva a böngésződben.'; $labels['desktopunsupported'] = 'A böngésződ nem támogatja az asztali értesítéseket.'; $labels['desktoptimeout'] = 'Az asztali értesítés bezárása'; - ?> diff --git a/plugins/newmail_notifier/localization/hy_AM.inc b/plugins/newmail_notifier/localization/hy_AM.inc index 66f57a231..1254e4b49 100644 --- a/plugins/newmail_notifier/localization/hy_AM.inc +++ b/plugins/newmail_notifier/localization/hy_AM.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Սա փորձնական ծանուցում է'; $labels['desktopdisabled'] = 'Սեղանադրի ծանուցումները Ձեր զննարկչում անջատված են'; $labels['desktopunsupported'] = 'Ձեր զննարկիչը չունի սեղանադրի ծանուցումների հնարավորություն։'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/ia.inc b/plugins/newmail_notifier/localization/ia.inc index f442dcb26..f20670761 100644 --- a/plugins/newmail_notifier/localization/ia.inc +++ b/plugins/newmail_notifier/localization/ia.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Iste es un notification de prova.'; $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/id_ID.inc b/plugins/newmail_notifier/localization/id_ID.inc index 1624602df..7c0594dd7 100644 --- a/plugins/newmail_notifier/localization/id_ID.inc +++ b/plugins/newmail_notifier/localization/id_ID.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Ini adalah percobaan pemberitahuan.'; $labels['desktopdisabled'] = 'Pemberitahuan di desktop dimatikan pada peramban Anda.'; $labels['desktopunsupported'] = 'Peramban Anda tidak mendukung pemberitahuan pada desktop'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/it_IT.inc b/plugins/newmail_notifier/localization/it_IT.inc index 9a0d4b992..b51603886 100644 --- a/plugins/newmail_notifier/localization/it_IT.inc +++ b/plugins/newmail_notifier/localization/it_IT.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'notifica di prova'; $labels['desktopdisabled'] = 'le notifiche sul desktop sono disabilitate nel tuo browser'; $labels['desktopunsupported'] = 'il tuo browser non supporta le notifiche sul desktop'; $labels['desktoptimeout'] = 'Chiudi la notifica visualizzata sul desktop'; - ?> diff --git a/plugins/newmail_notifier/localization/ja_JP.inc b/plugins/newmail_notifier/localization/ja_JP.inc index 3e4b57e32..b8dda364a 100644 --- a/plugins/newmail_notifier/localization/ja_JP.inc +++ b/plugins/newmail_notifier/localization/ja_JP.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'これはテストの通知です。'; $labels['desktopdisabled'] = 'ブラウザーでデスクトップ通知が無効になっています。'; $labels['desktopunsupported'] = 'ブラウザーがデスクトップ通知をサポートしていません。'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/km_KH.inc b/plugins/newmail_notifier/localization/km_KH.inc index 3b6807508..00d5c0b68 100644 --- a/plugins/newmail_notifier/localization/km_KH.inc +++ b/plugins/newmail_notifier/localization/km_KH.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'នេះជាការសាក្បងដំណឹង $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/ko_KR.inc b/plugins/newmail_notifier/localization/ko_KR.inc index f3dc8e016..f38b0e612 100644 --- a/plugins/newmail_notifier/localization/ko_KR.inc +++ b/plugins/newmail_notifier/localization/ko_KR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = '이 것은 시험용 알림입니다.'; $labels['desktopdisabled'] = '당신의 브라우져에서는 데스크탑의 알림이 불가능하도록 되어있습니다.'; $labels['desktopunsupported'] = '당신의 브라우져에서는 데스크탑의 알림을 지원하지 않습니다.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/lb_LU.inc b/plugins/newmail_notifier/localization/lb_LU.inc index c4b014819..69d8fa5da 100644 --- a/plugins/newmail_notifier/localization/lb_LU.inc +++ b/plugins/newmail_notifier/localization/lb_LU.inc @@ -25,5 +25,4 @@ $labels['body'] = 'Du hues en neie Message kritt.'; $labels['testbody'] = 'Dëst ass eng Test-Benoorichtegung.'; $labels['desktopdisabled'] = 'Desktop-Notifikatioune sinn an dengem Browser ausgeschalt.'; $labels['desktopunsupported'] = 'Däi Browser ënnerstëtzt keng Desktop-Notifikatiounen.'; - ?> diff --git a/plugins/newmail_notifier/localization/lt_LT.inc b/plugins/newmail_notifier/localization/lt_LT.inc index 673236931..dcf3351d4 100644 --- a/plugins/newmail_notifier/localization/lt_LT.inc +++ b/plugins/newmail_notifier/localization/lt_LT.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Tai – bandomasis pranešimas.'; $labels['desktopdisabled'] = 'Jūsų naršyklėje sistemos pranešimai išjungti.'; $labels['desktopunsupported'] = 'Jūsų naršyklėje sistemos pranešimai nepalaikomi.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/lv_LV.inc b/plugins/newmail_notifier/localization/lv_LV.inc index da9603cd5..0c5a65eb6 100644 --- a/plugins/newmail_notifier/localization/lv_LV.inc +++ b/plugins/newmail_notifier/localization/lv_LV.inc @@ -25,5 +25,4 @@ $labels['body'] = 'Jūs esat saņēmis jaunu vēstuli.'; $labels['testbody'] = 'Šis ir testa paziņojums.'; $labels['desktopdisabled'] = 'Darbavirsmas paziņojumi Jūsu pārlūkprogrammā ir atslēgti.'; $labels['desktopunsupported'] = 'Jūsu pārlūkprogramma neatbalsta darbavirsmas paziņojumus.'; - ?> diff --git a/plugins/newmail_notifier/localization/ml_IN.inc b/plugins/newmail_notifier/localization/ml_IN.inc index c4084c183..f5dea26c1 100644 --- a/plugins/newmail_notifier/localization/ml_IN.inc +++ b/plugins/newmail_notifier/localization/ml_IN.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'ഇത് ഒരു പരീക്ഷണ അറിയി $labels['desktopdisabled'] = 'താങ്കളുടെ ബ്രൌസറില്‍ ഡെസ്ക്ക്ടോപ്പ് നോട്ടിഫിക്കേഷന്‍ പ്രവര്‍ത്തനരഹിതമാണ്.'; $labels['desktopunsupported'] = 'താങ്കളുടെ ബ്രൌസ്സര്‍ ഡെസ്ക്ടോപ്പ് അറിയിപ്പുകള്‍ പിന്‍തുണയ്ക്കുന്നില്ല.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/mr_IN.inc b/plugins/newmail_notifier/localization/mr_IN.inc index 5521ee2e3..80f6e09dc 100644 --- a/plugins/newmail_notifier/localization/mr_IN.inc +++ b/plugins/newmail_notifier/localization/mr_IN.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'हा एक चाचणी निर्देश आ $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/nb_NO.inc b/plugins/newmail_notifier/localization/nb_NO.inc index d507f139b..71dbc4225 100644 --- a/plugins/newmail_notifier/localization/nb_NO.inc +++ b/plugins/newmail_notifier/localization/nb_NO.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dette er et testvarsel.'; $labels['desktopdisabled'] = 'Skrivebordsvarsel er slått av i din nettleser.'; $labels['desktopunsupported'] = 'Din nettleser støtter ikke visning av varsel på skrivebordet.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/nl_NL.inc b/plugins/newmail_notifier/localization/nl_NL.inc index dd4d13928..b4c7998f8 100644 --- a/plugins/newmail_notifier/localization/nl_NL.inc +++ b/plugins/newmail_notifier/localization/nl_NL.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dit is een testmelding.'; $labels['desktopdisabled'] = 'Bureaubladmeldingen zijn uitgeschakeld in uw browser.'; $labels['desktopunsupported'] = 'Uw browser ondersteunt geen bureaubladmeldingen.'; $labels['desktoptimeout'] = 'Sluit bureaubladmelding'; - ?> diff --git a/plugins/newmail_notifier/localization/nn_NO.inc b/plugins/newmail_notifier/localization/nn_NO.inc index c2b75ef98..8e1d58f17 100644 --- a/plugins/newmail_notifier/localization/nn_NO.inc +++ b/plugins/newmail_notifier/localization/nn_NO.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Dette er eit testvarsel.'; $labels['desktopdisabled'] = 'Skrivebordsvarsel er slått av i din nettlesar.'; $labels['desktopunsupported'] = 'Din nettlesar støttar ikkje vising av varsel på skrivebordet.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/pl_PL.inc b/plugins/newmail_notifier/localization/pl_PL.inc index 7fdc14d00..ed44cc860 100644 --- a/plugins/newmail_notifier/localization/pl_PL.inc +++ b/plugins/newmail_notifier/localization/pl_PL.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'To jest testowe powiadomienie.'; $labels['desktopdisabled'] = 'Powiadomienia na pulpicie zostały zablokowane w twojej przeglądarce.'; $labels['desktopunsupported'] = 'Twoja przeglądarka nie obsługuje powiadomień na pulpicie.'; $labels['desktoptimeout'] = 'Zamknij powiadomienie pulpitu'; - ?> diff --git a/plugins/newmail_notifier/localization/pt_BR.inc b/plugins/newmail_notifier/localization/pt_BR.inc index e20ed2877..1ef45c658 100644 --- a/plugins/newmail_notifier/localization/pt_BR.inc +++ b/plugins/newmail_notifier/localization/pt_BR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Essa é uma notificação de teste.'; $labels['desktopdisabled'] = 'As notificações no desktop estão desabilitadas no seu navegador.'; $labels['desktopunsupported'] = 'Seu navegador não suporta notificações no desktop'; $labels['desktoptimeout'] = 'Fechar notificação'; - ?> diff --git a/plugins/newmail_notifier/localization/pt_PT.inc b/plugins/newmail_notifier/localization/pt_PT.inc index 449b71c31..c2c19dc46 100644 --- a/plugins/newmail_notifier/localization/pt_PT.inc +++ b/plugins/newmail_notifier/localization/pt_PT.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Isto é uma notificação de teste.'; $labels['desktopdisabled'] = 'As notificações no ambiente de trabalho estão desactivadas no seu navegador.'; $labels['desktopunsupported'] = 'O seu navegador não suporta notificações no ambiente de trabalho'; $labels['desktoptimeout'] = 'Fechar notificação no ambiente de trabalho'; - ?> diff --git a/plugins/newmail_notifier/localization/ro_RO.inc b/plugins/newmail_notifier/localization/ro_RO.inc index fc6419634..f17f65bf7 100644 --- a/plugins/newmail_notifier/localization/ro_RO.inc +++ b/plugins/newmail_notifier/localization/ro_RO.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Aceasta este o notificare de test.'; $labels['desktopdisabled'] = 'Notificările desktop sunt dezactivate în browser.'; $labels['desktopunsupported'] = 'Browser-ul dumneavoastră nu suportă notificări desktop.'; $labels['desktoptimeout'] = 'Închide notificarea de birou'; - ?> diff --git a/plugins/newmail_notifier/localization/ru_RU.inc b/plugins/newmail_notifier/localization/ru_RU.inc index 93ac18784..db8a8dc26 100644 --- a/plugins/newmail_notifier/localization/ru_RU.inc +++ b/plugins/newmail_notifier/localization/ru_RU.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Это тестовое уведомление.'; $labels['desktopdisabled'] = 'В Вашем браузере отключены уведомления на рабочем столе.'; $labels['desktopunsupported'] = 'Ваш браузер не поддерживает уведомления на рабочем столе.'; $labels['desktoptimeout'] = 'Закрыть уведомление на рабочем столе'; - ?> diff --git a/plugins/newmail_notifier/localization/si_LK.inc b/plugins/newmail_notifier/localization/si_LK.inc index f49ffa990..a16d83669 100644 --- a/plugins/newmail_notifier/localization/si_LK.inc +++ b/plugins/newmail_notifier/localization/si_LK.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'This is a test notification.'; $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/sk_SK.inc b/plugins/newmail_notifier/localization/sk_SK.inc index 84e700bef..97af9995a 100644 --- a/plugins/newmail_notifier/localization/sk_SK.inc +++ b/plugins/newmail_notifier/localization/sk_SK.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Toto je skúšobné upozornenie.'; $labels['desktopdisabled'] = 'Upozornenia na ploche sú vo vašom prehliadači vypnuté.'; $labels['desktopunsupported'] = 'Váč prehliadač nepodporuje upozornenia na ploche.'; $labels['desktoptimeout'] = 'Zatvoriť notifikáciu na ploche'; - ?> diff --git a/plugins/newmail_notifier/localization/sl_SI.inc b/plugins/newmail_notifier/localization/sl_SI.inc index eab67f3d1..23bd75177 100644 --- a/plugins/newmail_notifier/localization/sl_SI.inc +++ b/plugins/newmail_notifier/localization/sl_SI.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'To je testno obvestilo.'; $labels['desktopdisabled'] = 'Obvestila na namizju so v vašem brskalniku onemogočena.'; $labels['desktopunsupported'] = 'Vaš brskalnik ne podpira izpis obvestil na namizju.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/sr_CS.inc b/plugins/newmail_notifier/localization/sr_CS.inc index 7cbe7a30a..66df076fc 100644 --- a/plugins/newmail_notifier/localization/sr_CS.inc +++ b/plugins/newmail_notifier/localization/sr_CS.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Ово је пробно обавештење.'; $labels['desktopdisabled'] = 'Обавештења у систему су искључена у вашем прегледачу'; $labels['desktopunsupported'] = 'Ваш прегледач не подржава обавештења у систему.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/sv_SE.inc b/plugins/newmail_notifier/localization/sv_SE.inc index 13255defc..091118f59 100644 --- a/plugins/newmail_notifier/localization/sv_SE.inc +++ b/plugins/newmail_notifier/localization/sv_SE.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Denna avisering är ett prov.'; $labels['desktopdisabled'] = 'Avisering på skrivbordet är avstängt i webbläsaren.'; $labels['desktopunsupported'] = 'Avisering på skrivbordet stöds inte av webbläsaren.'; $labels['desktoptimeout'] = 'Stäng avisering på skrivbordet'; - ?> diff --git a/plugins/newmail_notifier/localization/tr_TR.inc b/plugins/newmail_notifier/localization/tr_TR.inc index 67a3b855a..23a366cf0 100644 --- a/plugins/newmail_notifier/localization/tr_TR.inc +++ b/plugins/newmail_notifier/localization/tr_TR.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Bu bir test bildirimidir.'; $labels['desktopdisabled'] = 'Web tarayıcınızda masa üstü bildirimi iptal edildi'; $labels['desktopunsupported'] = 'Web tarayıcınız masa üstü bildidrimleri desteklemiyor'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/uk_UA.inc b/plugins/newmail_notifier/localization/uk_UA.inc index c51a44dca..8bc08202d 100644 --- a/plugins/newmail_notifier/localization/uk_UA.inc +++ b/plugins/newmail_notifier/localization/uk_UA.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Це тестове сповіщення'; $labels['desktopdisabled'] = 'Повідомлення на робочому столі відключені у вашому браузері.'; $labels['desktopunsupported'] = 'Ваш браузер не підтримує повідомлення на робочому столі.'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/vi_VN.inc b/plugins/newmail_notifier/localization/vi_VN.inc index 1ac920c3c..bda752564 100644 --- a/plugins/newmail_notifier/localization/vi_VN.inc +++ b/plugins/newmail_notifier/localization/vi_VN.inc @@ -26,5 +26,4 @@ $labels['testbody'] = 'Đây là thông báo kiểm tra'; $labels['desktopdisabled'] = 'Thông báo máy tính bị tắt trên trình duyệt của bạn'; $labels['desktopunsupported'] = 'Trình duyệt của bạn không hỗ trợ thông báo trên máy tính'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/zh_CN.inc b/plugins/newmail_notifier/localization/zh_CN.inc index 7067a5e05..e1a869244 100644 --- a/plugins/newmail_notifier/localization/zh_CN.inc +++ b/plugins/newmail_notifier/localization/zh_CN.inc @@ -26,5 +26,4 @@ $labels['testbody'] = '这是一个提醒测试。'; $labels['desktopdisabled'] = '您的浏览器已禁止桌面提醒功能。'; $labels['desktopunsupported'] = '您的浏览器不支持桌面提醒功能。'; $labels['desktoptimeout'] = 'Close desktop notification'; - ?> diff --git a/plugins/newmail_notifier/localization/zh_TW.inc b/plugins/newmail_notifier/localization/zh_TW.inc index 095faac59..7dac7cc95 100644 --- a/plugins/newmail_notifier/localization/zh_TW.inc +++ b/plugins/newmail_notifier/localization/zh_TW.inc @@ -26,5 +26,4 @@ $labels['testbody'] = '這是測試通知'; $labels['desktopdisabled'] = '您的瀏覽器已停用桌面通知'; $labels['desktopunsupported'] = '您的瀏覽器不支援桌面通知功能'; $labels['desktoptimeout'] = '自動關閉桌面通知'; - ?> diff --git a/plugins/password/localization/ar.inc b/plugins/password/localization/ar.inc index d1d061856..1d4440ffa 100644 --- a/plugins/password/localization/ar.inc +++ b/plugins/password/localization/ar.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'تغيير كلمة المرور'; $labels['curpasswd'] = 'كلمة المرور الحالية:'; $labels['newpasswd'] = 'كلمة المرور الجديدة:'; $labels['confpasswd'] = 'تأكيد كلمة المرور الجديدة:'; -$messages = array(); $messages['nopassword'] = 'من فضلك أدخل كلمة المرور الجديدة.'; $messages['nocurpassword'] = 'من فضلك أدخل كلمة المرور الحالية.'; $messages['passwordincorrect'] = 'كلمة المرور الحالية غير صحيحة.'; diff --git a/plugins/password/localization/ar_SA.inc b/plugins/password/localization/ar_SA.inc index 68de461d7..236303b56 100644 --- a/plugins/password/localization/ar_SA.inc +++ b/plugins/password/localization/ar_SA.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'تغيير كلمة المرور'; $labels['curpasswd'] = 'كلمة المرور الحالية'; $labels['newpasswd'] = 'كلمة المرور الجديدة'; $labels['confpasswd'] = 'تأكيد كلمة المرور الجديدة'; -$messages = array(); $messages['nopassword'] = 'من فضلك أدخل كلمة مرور جديدة'; $messages['nocurpassword'] = 'من فضلك أدخل كلمة المرور الحالية'; $messages['passwordincorrect'] = 'كلمة المرور الحالية غير صحيحة'; diff --git a/plugins/password/localization/ast.inc b/plugins/password/localization/ast.inc index 55d88abc0..cce1021fe 100644 --- a/plugins/password/localization/ast.inc +++ b/plugins/password/localization/ast.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Camudar contraseña'; $labels['curpasswd'] = 'Contraseña actual:'; $labels['newpasswd'] = 'Contraseña nueva:'; $labels['confpasswd'] = 'Confirmar contraseña:'; -$messages = array(); $messages['nopassword'] = 'Por favor, introduz una contraseña nueva.'; $messages['nocurpassword'] = 'Por favor, introduz la contraseña actual.'; $messages['passwordincorrect'] = 'La contraseña actual ye incorreuta.'; diff --git a/plugins/password/localization/az_AZ.inc b/plugins/password/localization/az_AZ.inc index c99ab2ab3..20f337785 100644 --- a/plugins/password/localization/az_AZ.inc +++ b/plugins/password/localization/az_AZ.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Şifrəni dəyiş'; $labels['curpasswd'] = 'Hal-hazırki şifrə:'; $labels['newpasswd'] = 'Yeni şifrə:'; $labels['confpasswd'] = 'Yeni şifrə: (təkrar)'; - -$messages = array(); $messages['nopassword'] = 'Yeni şifrəni daxil edin.'; $messages['nocurpassword'] = 'Hal-hazırda istifadə etdiyiniz şifrəni daxil edin.'; $messages['passwordincorrect'] = 'Yalnış şifrə daxil etdiniz.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Yeni şifrənin saxlanılması mümkün olmadı.'; $messages['passwordshort'] = 'Yeni şifrə $length simvoldan uzun olmalıdır.'; $messages['passwordweak'] = 'Şifrədə heç olmasa minimum bir rəqəm və simvol olmalıdır.'; $messages['passwordforbidden'] = 'Şifrədə icazə verilməyən simvollar vardır.'; - ?> diff --git a/plugins/password/localization/be_BE.inc b/plugins/password/localization/be_BE.inc index f8c45ac7e..3ac8f19dd 100644 --- a/plugins/password/localization/be_BE.inc +++ b/plugins/password/localization/be_BE.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Змяніць пароль'; $labels['curpasswd'] = 'Бягучы пароль:'; $labels['newpasswd'] = 'Новы пароль:'; $labels['confpasswd'] = 'Паўтарыце новы пароль:'; -$messages = array(); $messages['nopassword'] = 'Увядзіце новы пароль.'; $messages['nocurpassword'] = 'Увядзіце бягучы пароль.'; $messages['passwordincorrect'] = 'Няслушны бягучы пароль.'; diff --git a/plugins/password/localization/ber.inc b/plugins/password/localization/ber.inc index 12fe4442e..046e45733 100644 --- a/plugins/password/localization/ber.inc +++ b/plugins/password/localization/ber.inc @@ -13,5 +13,4 @@ +-----------------------------------------------------------------------+ */ -$labels = array(); diff --git a/plugins/password/localization/bg_BG.inc b/plugins/password/localization/bg_BG.inc index 2823fbfde..ec695f45e 100644 --- a/plugins/password/localization/bg_BG.inc +++ b/plugins/password/localization/bg_BG.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Промяна на парола'; $labels['curpasswd'] = 'Текуща парола:'; $labels['newpasswd'] = 'Нова парола:'; $labels['confpasswd'] = 'Повторно нова парола:'; - -$messages = array(); $messages['nopassword'] = 'Моля въведете нова парола.'; $messages['nocurpassword'] = 'Моля въведете текущата парола.'; $messages['passwordincorrect'] = 'Невалидна текуща парола.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Паролата не може да бъде пр $messages['passwordshort'] = 'Паролата трябва да е дълга поне $length знака.'; $messages['passwordweak'] = 'Паролата трябва да включва поне един цифра и поне един знак за пунктуация.'; $messages['passwordforbidden'] = 'Паролата съдържа непозволени символи.'; - ?> diff --git a/plugins/password/localization/br.inc b/plugins/password/localization/br.inc index f07786b39..0e7f79904 100644 --- a/plugins/password/localization/br.inc +++ b/plugins/password/localization/br.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Kemmañ ar ger-tremen'; $labels['curpasswd'] = 'Ger-tremen red :'; $labels['newpasswd'] = 'Ger-tremen nevez :'; $labels['confpasswd'] = 'Kadarnaat ar ger-tremen :'; - -$messages = array(); $messages['nopassword'] = 'Roit ur ger-tremen nevez, mar plij.'; $messages['nocurpassword'] = 'Roit ar ger-tremen red, mar plij.'; $messages['passwordincorrect'] = 'Direizh eo ar ger-tremen red.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'N\'haller ket enrollañ ar ger-tremen nevez.'; $messages['passwordshort'] = 'Ret eo d\'ar ger-tremen bezañ hiroc\'h eget $length arouezenn.'; $messages['passwordweak'] = 'Password must include at least one number and one punctuation character.'; $messages['passwordforbidden'] = 'Arouezennoù difennet zo er ger-tremen.'; - ?> diff --git a/plugins/password/localization/bs_BA.inc b/plugins/password/localization/bs_BA.inc index c98a49d97..136d66657 100644 --- a/plugins/password/localization/bs_BA.inc +++ b/plugins/password/localization/bs_BA.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Promijeni šifru'; $labels['curpasswd'] = 'Trenutna šifra:'; $labels['newpasswd'] = 'Nova šifra:'; $labels['confpasswd'] = 'Potvrdite novu šifru:'; - -$messages = array(); $messages['nopassword'] = 'Molimo vas da upišete novu šifru.'; $messages['nocurpassword'] = 'Molimo vas da upišete trenutnu šifru.'; $messages['passwordincorrect'] = 'Trenutna šifra je netačna.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nije moguće sačuvati novu šifru.'; $messages['passwordshort'] = 'Šifra mora sadržavati barem $length znakova.'; $messages['passwordweak'] = 'Šifra mora imati barem jedan broj i jedan interpunkcijski znak.'; $messages['passwordforbidden'] = 'Šifra sadrži nedozvoljene znakove.'; - ?> diff --git a/plugins/password/localization/ca_ES.inc b/plugins/password/localization/ca_ES.inc index 95f5df833..694255d4a 100644 --- a/plugins/password/localization/ca_ES.inc +++ b/plugins/password/localization/ca_ES.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Canvia la contrasenya'; $labels['curpasswd'] = 'Contrasenya actual:'; $labels['newpasswd'] = 'Nova contrasenya:'; $labels['confpasswd'] = 'Confirmeu la nova contrasenya:'; - -$messages = array(); $messages['nopassword'] = 'Si us plau, introduïu la nova contrasenya.'; $messages['nocurpassword'] = 'Si us plau, introduïu la contrasenya actual.'; $messages['passwordincorrect'] = 'Contrasenya actual incorrecta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'No es pot desar la nova contrasenya.'; $messages['passwordshort'] = 'La nova contrasenya ha de tenir com a mínim $length caràcters de llarg.'; $messages['passwordweak'] = 'La nova contrasenya ha d\'incloure com a mínim un nombre i un caràcter de puntuació.'; $messages['passwordforbidden'] = 'La contrasenya conté caràcters no permesos.'; - ?> diff --git a/plugins/password/localization/cs_CZ.inc b/plugins/password/localization/cs_CZ.inc index 857961c61..2b88c22a7 100644 --- a/plugins/password/localization/cs_CZ.inc +++ b/plugins/password/localization/cs_CZ.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Změna hesla'; $labels['curpasswd'] = 'Aktuální heslo:'; $labels['newpasswd'] = 'Nové heslo:'; $labels['confpasswd'] = 'Nové heslo (pro kontrolu):'; - -$messages = array(); $messages['nopassword'] = 'Prosím zadejte nové heslo.'; $messages['nocurpassword'] = 'Prosím zadejte aktuální heslo.'; $messages['passwordincorrect'] = 'Zadané aktuální heslo není správné.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Heslo se nepodařilo uložit.'; $messages['passwordshort'] = 'Heslo musí mít alespoň $length znaků.'; $messages['passwordweak'] = 'Heslo musí obsahovat alespoň jedno číslo a jedno interpuknční znaménko.'; $messages['passwordforbidden'] = 'Heslo obsahuje nepovolené znaky.'; - ?> diff --git a/plugins/password/localization/cy_GB.inc b/plugins/password/localization/cy_GB.inc index c43b7473b..0fb249fad 100644 --- a/plugins/password/localization/cy_GB.inc +++ b/plugins/password/localization/cy_GB.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Newid Cyfrinair'; $labels['curpasswd'] = 'Cyfrinair Presennol:'; $labels['newpasswd'] = 'Cyfrinair Newydd:'; $labels['confpasswd'] = 'Cadarnhau Cyfrinair Newydd:'; - -$messages = array(); $messages['nopassword'] = 'Rhowch eich cyfrinair newydd.'; $messages['nocurpassword'] = 'Rhowch eich cyfrinair presennol.'; $messages['passwordincorrect'] = 'Roedd y cyfrinair presennol yn anghywir.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Methwyd cadw\'r cyfrinair newydd.'; $messages['passwordshort'] = 'Rhaid i\'r cyfrinair fod o leia $length llythyren o hyd.'; $messages['passwordweak'] = 'Rhaid i\'r cyfrinair gynnwys o leia un rhif a un cymeriad atalnodi.'; $messages['passwordforbidden'] = 'Mae\'r cyfrinair yn cynnwys llythrennau wedi gwahardd.'; - ?> diff --git a/plugins/password/localization/da_DK.inc b/plugins/password/localization/da_DK.inc index bc8fb26df..7b98e6e92 100644 --- a/plugins/password/localization/da_DK.inc +++ b/plugins/password/localization/da_DK.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Skift adgangskode'; $labels['curpasswd'] = 'Nuværende adgangskode:'; $labels['newpasswd'] = 'Ny adgangskode:'; $labels['confpasswd'] = 'Bekræft ny adgangskode:'; - -$messages = array(); $messages['nopassword'] = 'Indtast venligst en ny adgangskode.'; $messages['nocurpassword'] = 'Indtast venligst nuværende adgangskode.'; $messages['passwordincorrect'] = 'Nuværende adgangskode er forkert.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Kunne ikke gemme den nye adgangskode.'; $messages['passwordshort'] = 'Adgangskoden skal være mindst $length tegn lang.'; $messages['passwordweak'] = 'Adgangskoden skal indeholde mindst et tal og et tegnsætningstegn (-.,)'; $messages['passwordforbidden'] = 'Adgangskoden indeholder forbudte tegn.'; - ?> diff --git a/plugins/password/localization/de_CH.inc b/plugins/password/localization/de_CH.inc index 6016ffeac..29e5cf007 100644 --- a/plugins/password/localization/de_CH.inc +++ b/plugins/password/localization/de_CH.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Passwort ändern'; $labels['curpasswd'] = 'Aktuelles Passwort'; $labels['newpasswd'] = 'Neues Passwort'; $labels['confpasswd'] = 'Passwort Wiederholung'; - -$messages = array(); $messages['nopassword'] = 'Bitte geben Sie ein neues Passwort ein'; $messages['nocurpassword'] = 'Bitte geben Sie Ihr aktuelles Passwort an'; $messages['passwordincorrect'] = 'Das aktuelle Passwort ist nicht korrekt'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Neues Passwort nicht gespeichert'; $messages['passwordshort'] = 'Passwort muss mindestens $length Zeichen lang sein.'; $messages['passwordweak'] = 'Passwort muss mindestens eine Zahl und ein Sonderzeichen enthalten.'; $messages['passwordforbidden'] = 'Passwort enthält unzulässige Zeichen.'; - ?> diff --git a/plugins/password/localization/de_DE.inc b/plugins/password/localization/de_DE.inc index 2190fd39a..027fcadcc 100644 --- a/plugins/password/localization/de_DE.inc +++ b/plugins/password/localization/de_DE.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Kennwort ändern'; $labels['curpasswd'] = 'Aktuelles Kennwort:'; $labels['newpasswd'] = 'Neues Kennwort:'; $labels['confpasswd'] = 'Neues Kennwort bestätigen:'; - -$messages = array(); $messages['nopassword'] = 'Bitte geben Sie ein neues Kennwort ein.'; $messages['nocurpassword'] = 'Bitte geben Sie ihr aktuelles Kennwort ein.'; $messages['passwordincorrect'] = 'Das aktuelle Kennwort ist falsch.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Neues Passwort nicht gespeichert'; $messages['passwordshort'] = 'Passwort muss mindestens $length Zeichen lang sein.'; $messages['passwordweak'] = 'Passwort muss mindestens eine Zahl und ein Sonderzeichen enthalten.'; $messages['passwordforbidden'] = 'Passwort enthält unzulässige Zeichen.'; - ?> diff --git a/plugins/password/localization/el_GR.inc b/plugins/password/localization/el_GR.inc index 7437e793c..214126383 100644 --- a/plugins/password/localization/el_GR.inc +++ b/plugins/password/localization/el_GR.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Αλλαγη κωδικου προσβασης'; $labels['curpasswd'] = 'Τρεχων κωδικος προσβασης:'; $labels['newpasswd'] = 'Νεος κωδικος προσβασης:'; $labels['confpasswd'] = 'Επιβεβαιωση κωδικου προσβασης:'; -$messages = array(); $messages['nopassword'] = 'Εισαγετε εναν νεο κωδικο.'; $messages['nocurpassword'] = 'Εισαγετε τον τρεχων κωδικο.'; $messages['passwordincorrect'] = 'Ο τρεχων κωδικος ειναι λαθος.'; diff --git a/plugins/password/localization/en_GB.inc b/plugins/password/localization/en_GB.inc index d7d192280..66746a2b2 100644 --- a/plugins/password/localization/en_GB.inc +++ b/plugins/password/localization/en_GB.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Change Password'; $labels['curpasswd'] = 'Current Password:'; $labels['newpasswd'] = 'New Password:'; $labels['confpasswd'] = 'Confirm New Password:'; - -$messages = array(); $messages['nopassword'] = 'Please enter a new password.'; $messages['nocurpassword'] = 'Please enter the current password.'; $messages['passwordincorrect'] = 'Current password is incorrect.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'New password could not be saved.'; $messages['passwordshort'] = 'Password must be at least $length characters long.'; $messages['passwordweak'] = 'Password must include at least one number and one symbol.'; $messages['passwordforbidden'] = 'Password contains forbidden characters.'; - ?> diff --git a/plugins/password/localization/eo.inc b/plugins/password/localization/eo.inc index f99004c63..f9205bfc0 100644 --- a/plugins/password/localization/eo.inc +++ b/plugins/password/localization/eo.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Ŝanĝi pasvorton'; $labels['curpasswd'] = 'Nuna pasvorto:'; $labels['newpasswd'] = 'Nova pasvorto:'; $labels['confpasswd'] = 'Konfirmi novan pasvorton:'; - -$messages = array(); $messages['nopassword'] = 'Bonvole tajpu novan pasvorton.'; $messages['nocurpassword'] = 'Bonvole tajpu nunan pasvorton.'; $messages['passwordincorrect'] = 'Nuna pasvorto nekorekta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nova pasvorto ne konserveblas.'; $messages['passwordshort'] = 'Pasvorto longu almenaŭ $length signojn.'; $messages['passwordweak'] = 'La pasvorto enhavu almenaŭ unu ciferon kaj unu interpunktan signon.'; $messages['passwordforbidden'] = 'La pasvorto enhavas malpermesitajn signojn.'; - ?> diff --git a/plugins/password/localization/es_AR.inc b/plugins/password/localization/es_AR.inc index 8edc8feae..cb4e24969 100644 --- a/plugins/password/localization/es_AR.inc +++ b/plugins/password/localization/es_AR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Cambiar Contraseña'; $labels['curpasswd'] = 'Contraseña Actual:'; $labels['newpasswd'] = 'Contraseña Nueva:'; $labels['confpasswd'] = 'Confirmar Contraseña:'; - -$messages = array(); $messages['nopassword'] = 'Por favor introduce una nueva contraseña.'; $messages['nocurpassword'] = 'Por favor introduce la contraseña actual.'; $messages['passwordincorrect'] = 'Contraseña actual incorrecta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'No se pudo guardar la contraseña nueva.'; $messages['passwordshort'] = 'Tu contraseña debe tener una longitud mínima de $length.'; $messages['passwordweak'] = 'Tu nueva contraseña debe incluir al menos un número y un signo de puntuación.'; $messages['passwordforbidden'] = 'La contraseña contiene caracteres inválidos.'; - ?> diff --git a/plugins/password/localization/es_ES.inc b/plugins/password/localization/es_ES.inc index 336666eb5..7e89477d6 100644 --- a/plugins/password/localization/es_ES.inc +++ b/plugins/password/localization/es_ES.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Cambiar contraseña'; $labels['curpasswd'] = 'Contraseña actual:'; $labels['newpasswd'] = 'Contraseña nueva:'; $labels['confpasswd'] = 'Confirmar contraseña:'; - -$messages = array(); $messages['nopassword'] = 'Por favor introduzca una contraseña nueva.'; $messages['nocurpassword'] = 'Por favor introduzca la contraseña actual.'; $messages['passwordincorrect'] = 'La contraseña actual es incorrecta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'No se pudo guardar la contraseña nueva.'; $messages['passwordshort'] = 'La contraseña debe tener por lo menos $length caracteres.'; $messages['passwordweak'] = 'La contraseña debe incluir al menos un número y un signo de puntuación.'; $messages['passwordforbidden'] = 'La contraseña introducida contiene caracteres no permitidos.'; - ?> diff --git a/plugins/password/localization/et_EE.inc b/plugins/password/localization/et_EE.inc index b93d32540..a216e30d1 100644 --- a/plugins/password/localization/et_EE.inc +++ b/plugins/password/localization/et_EE.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Muuda parooli'; $labels['curpasswd'] = 'Vana parool:'; $labels['newpasswd'] = 'Uus parool:'; $labels['confpasswd'] = 'Uus parool uuesti:'; - -$messages = array(); $messages['nopassword'] = 'Palun sisesta uus parool.'; $messages['nocurpassword'] = 'Palun sisesta vana parool.'; $messages['passwordincorrect'] = 'Vana parool on vale.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Uue parooli andmebaasi salvestamine nurjus.'; $messages['passwordshort'] = 'Parool peab olema vähemalt $length märki pikk.'; $messages['passwordweak'] = 'Parool peab sisaldama vähemalt üht numbrit ja märki.'; $messages['passwordforbidden'] = 'Parool sisaldab keelatud märki.'; - ?> diff --git a/plugins/password/localization/eu_ES.inc b/plugins/password/localization/eu_ES.inc index 6ca7aa5da..f613cd281 100644 --- a/plugins/password/localization/eu_ES.inc +++ b/plugins/password/localization/eu_ES.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Pasahitza aldatu'; $labels['curpasswd'] = 'Oraingo pasahitza:'; $labels['newpasswd'] = 'Pasahitz berria:'; $labels['confpasswd'] = 'Konfirmatu pasahitz berria:'; -$messages = array(); $messages['nopassword'] = 'Sartu pasahitz berria.'; $messages['nocurpassword'] = 'Sartu oraingo pasahitza.'; $messages['passwordincorrect'] = 'Oraingo pasahitza ez da zuzena.'; diff --git a/plugins/password/localization/fa_AF.inc b/plugins/password/localization/fa_AF.inc index 0c954188e..6fe342753 100644 --- a/plugins/password/localization/fa_AF.inc +++ b/plugins/password/localization/fa_AF.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'تغییر رمز عبور'; $labels['curpasswd'] = 'رمز عبور کنونی'; $labels['newpasswd'] = 'رمز عبور جدید'; $labels['confpasswd'] = 'تایید رمز عبور جدید'; -$messages = array(); $messages['nopassword'] = 'لطفا رمز عبور جدیدی وارد کنید'; $messages['nocurpassword'] = 'لطفا رمز عبور کنونی را وارد کنید'; $messages['passwordincorrect'] = 'رمز عبور کنونی اشتباه است'; diff --git a/plugins/password/localization/fa_IR.inc b/plugins/password/localization/fa_IR.inc index 2cf126689..1cff47f45 100644 --- a/plugins/password/localization/fa_IR.inc +++ b/plugins/password/localization/fa_IR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'تغییر گذرواژه'; $labels['curpasswd'] = 'گذرواژه فعلی'; $labels['newpasswd'] = 'گذرواژه جدید'; $labels['confpasswd'] = 'تایید گذرواژه جدید'; - -$messages = array(); $messages['nopassword'] = 'گذرواژه جدید را وارد نمایید'; $messages['nocurpassword'] = 'گذرواژه فعلی را وارد نمایید'; $messages['passwordincorrect'] = 'گذرواژه فعلی اشتباه است'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'گذرواژه جدید ذخیره نشد'; $messages['passwordshort'] = 'گذرواژه باید حداقل $length کاراکتر طول داشته باشد.'; $messages['passwordweak'] = 'گذرواژه باید شامل حداقل یک عدد و یک کاراکتر نشانه‌ای باشد.'; $messages['passwordforbidden'] = 'گذرواژه شما کاراکترهای غیرمجاز است.'; - ?> diff --git a/plugins/password/localization/fi_FI.inc b/plugins/password/localization/fi_FI.inc index 2098cf6c3..7532eff03 100644 --- a/plugins/password/localization/fi_FI.inc +++ b/plugins/password/localization/fi_FI.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Vaihda salasana'; $labels['curpasswd'] = 'Nykyinen salasana:'; $labels['newpasswd'] = 'Uusi salasana:'; $labels['confpasswd'] = 'Vahvista uusi salasana:'; - -$messages = array(); $messages['nopassword'] = 'Syötä uusi salasana.'; $messages['nocurpassword'] = 'Syötä nykyinen salasana.'; $messages['passwordincorrect'] = 'Nykyinen salasana on väärin.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Uuden salasanan tallennus epäonnistui.'; $messages['passwordshort'] = 'Salasanassa täytyy olla vähintään $length merkkiä.'; $messages['passwordweak'] = 'Salasanan täytyy sisältää vähintään yksi numero ja yksi välimerkki.'; $messages['passwordforbidden'] = 'Salasana sisältää virheellisiä merkkejä.'; - ?> diff --git a/plugins/password/localization/fr_FR.inc b/plugins/password/localization/fr_FR.inc index 66b43784e..3807a51e2 100644 --- a/plugins/password/localization/fr_FR.inc +++ b/plugins/password/localization/fr_FR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Changer le mot de passe'; $labels['curpasswd'] = 'Mot de passe actuel:'; $labels['newpasswd'] = 'Nouveau mot de passe:'; $labels['confpasswd'] = 'Confirmez le nouveau mot de passe:'; - -$messages = array(); $messages['nopassword'] = 'Veuillez saisir le nouveau mot de passe.'; $messages['nocurpassword'] = 'Veuillez saisir le mot de passe actuel.'; $messages['passwordincorrect'] = 'Mot de passe actuel incorrect.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Impossible d\'enregistrer le nouveau mot de passe. $messages['passwordshort'] = 'Le mot de passe doit être composé d\'au moins $length caractères.'; $messages['passwordweak'] = 'Le mot de passe doit contenir au moins un chiffre et un signe de ponctuation.'; $messages['passwordforbidden'] = 'Le mot de passe contient des caractères interdits.'; - ?> diff --git a/plugins/password/localization/gl_ES.inc b/plugins/password/localization/gl_ES.inc index 93c505a6a..24a4da5af 100644 --- a/plugins/password/localization/gl_ES.inc +++ b/plugins/password/localization/gl_ES.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Cambiar contrasinal'; $labels['curpasswd'] = 'Contrasinal actual:'; $labels['newpasswd'] = 'Contrasinal novo:'; $labels['confpasswd'] = 'Confirmar contrasinal:'; - -$messages = array(); $messages['nopassword'] = 'Por favor, introduza un contrasinal novo.'; $messages['nocurpassword'] = 'Por favor, introduza o contrasinal actual.'; $messages['passwordincorrect'] = 'O contrasinal actual é incorrecto.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Non foi posible gardar o contrasinal novo.'; $messages['passwordshort'] = 'O contrasinal debe ter polo menos $length caracteres.'; $messages['passwordweak'] = 'O contrasinal debe incluir polo menos un número e un signo de puntuación.'; $messages['passwordforbidden'] = 'O contrasinal contén caracteres non permitidos.'; - ?> diff --git a/plugins/password/localization/he_IL.inc b/plugins/password/localization/he_IL.inc index 005a8e9d8..0b813e95e 100644 --- a/plugins/password/localization/he_IL.inc +++ b/plugins/password/localization/he_IL.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'שינוי סיסמה'; $labels['curpasswd'] = 'סיסמה נוכחית:'; $labels['newpasswd'] = 'סיסמה חדשה:'; $labels['confpasswd'] = 'אימות הסיסמה החדשה:'; - -$messages = array(); $messages['nopassword'] = 'נא להקליד סיסמה חדשה'; $messages['nocurpassword'] = 'נא להקיש הסיסמה הנוכחית'; $messages['passwordincorrect'] = 'הוקשה סיסמה נוכחית שגויה'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'לא ניתן לשמור על הסיסמה החד $messages['passwordshort'] = 'הסיסמה צריכה להיות לפחות בעלת $length תווים'; $messages['passwordweak'] = 'הסיסמה חייבת לכלול לפחות סיפרה אחת ולפחות סימן פיסוק אחד.'; $messages['passwordforbidden'] = 'הסיסמה מכילה תווים אסורים.'; - ?> diff --git a/plugins/password/localization/hr_HR.inc b/plugins/password/localization/hr_HR.inc index f97f5a44c..b66abaae7 100644 --- a/plugins/password/localization/hr_HR.inc +++ b/plugins/password/localization/hr_HR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Promijeni zaporku'; $labels['curpasswd'] = 'Važeća zaporka:'; $labels['newpasswd'] = 'Nova zaporka:'; $labels['confpasswd'] = 'Potvrda nove zaporke:'; - -$messages = array(); $messages['nopassword'] = 'Molimo unesite novu zaporku.'; $messages['nocurpassword'] = 'Molimo unesite trenutnu zaporku.'; $messages['passwordincorrect'] = 'Trenutna zaporka je nevažeća.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nemoguće promijeniti zaporku.'; $messages['passwordshort'] = 'Zaporka mora sadržavati barem $length znakova.'; $messages['passwordweak'] = 'Zaporka mora sadržavati barem jedanu znamenku i jedan interpunkcijski znak.'; $messages['passwordforbidden'] = 'Zaporka sadrži nedozvoljene znakove.'; - ?> diff --git a/plugins/password/localization/hu_HU.inc b/plugins/password/localization/hu_HU.inc index 6b6077115..987bdccc7 100644 --- a/plugins/password/localization/hu_HU.inc +++ b/plugins/password/localization/hu_HU.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Jelszó módosítás'; $labels['curpasswd'] = 'Jelenlegi jelszó:'; $labels['newpasswd'] = 'Új jelszó:'; $labels['confpasswd'] = 'Új jelszó mégegyszer:'; - -$messages = array(); $messages['nopassword'] = 'Kérjük adja meg az új jelszót.'; $messages['nocurpassword'] = 'Kérjük adja meg a jelenlegi jelszót.'; $messages['passwordincorrect'] = 'Érvénytelen a jelenlegi jelszó.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Hiba történt a kérés feldolgozása során.'; $messages['passwordshort'] = 'A jelszónak legalább $length karakter hosszunak kell lennie.'; $messages['passwordweak'] = 'A jelszónak mindenképpen kell tartalmaznia egy számot és egy írásjelet.'; $messages['passwordforbidden'] = 'A jelszó tiltott karaktert is tartalmaz.'; - ?> diff --git a/plugins/password/localization/hy_AM.inc b/plugins/password/localization/hy_AM.inc index b30f31894..b55e95531 100644 --- a/plugins/password/localization/hy_AM.inc +++ b/plugins/password/localization/hy_AM.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Գաղտնաբառի փոփոխում'; $labels['curpasswd'] = 'Առկա գաղտնաբառը`'; $labels['newpasswd'] = 'Նոր գաղտնաբառը`'; $labels['confpasswd'] = 'Կրկնեք նոր գաղտնաբառը`'; - -$messages = array(); $messages['nopassword'] = 'Ներմուցեք նոր գաղտնաբառը։'; $messages['nocurpassword'] = 'Ներմուցեք առկա գաղտնաբառը։'; $messages['passwordincorrect'] = 'Առկա գաղտնաբառը սխալ է։'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Նոր գաղտնաբառի պահպանումը $messages['passwordshort'] = 'Գաղտնաբառերը պետք է լինեն առնվազն $length նիշ երկարությամբ։'; $messages['passwordweak'] = 'Գաղտնաբառերը պետք է պարունակեն առնվազն մեկ թիվ և մեկ կետադրական նիշ։'; $messages['passwordforbidden'] = 'Գաղտնաբառը պարունակում է արգելված նիշ։'; - ?> diff --git a/plugins/password/localization/id_ID.inc b/plugins/password/localization/id_ID.inc index 5026de259..614aee4d6 100644 --- a/plugins/password/localization/id_ID.inc +++ b/plugins/password/localization/id_ID.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Ubah Sandi'; $labels['curpasswd'] = 'Sandi saat ini:'; $labels['newpasswd'] = 'Sandi Baru:'; $labels['confpasswd'] = 'Konfirmasi Sandi Baru:'; - -$messages = array(); $messages['nopassword'] = 'Masukkan sandi baru.'; $messages['nocurpassword'] = 'Masukkan sandi saat ini.'; $messages['passwordincorrect'] = 'Sandi saat ini salah.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Tidak dapat menyimpan sandi baru.'; $messages['passwordshort'] = 'Panjang password minimal $length karakter'; $messages['passwordweak'] = 'Sandi harus menyertakan setidaknya satu angka dan satu tanda baca.'; $messages['passwordforbidden'] = 'Sandi mengandung karakter terlarang.'; - ?> diff --git a/plugins/password/localization/it_IT.inc b/plugins/password/localization/it_IT.inc index 6ce2f7499..698b491c4 100644 --- a/plugins/password/localization/it_IT.inc +++ b/plugins/password/localization/it_IT.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Modifica la Password'; $labels['curpasswd'] = 'Password corrente:'; $labels['newpasswd'] = 'Nuova password:'; $labels['confpasswd'] = 'Conferma la nuova Password:'; - -$messages = array(); $messages['nopassword'] = 'Per favore inserire la nuova password.'; $messages['nocurpassword'] = 'Per favore inserire la password corrente.'; $messages['passwordincorrect'] = 'La password corrente non è corretta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Impossibile salvare la nuova password.'; $messages['passwordshort'] = 'La password deve essere lunga almeno $length caratteri.'; $messages['passwordweak'] = 'La password deve includere almeno una cifra decimale e un simbolo di punteggiatura.'; $messages['passwordforbidden'] = 'La password contiene caratteri proibiti.'; - ?> diff --git a/plugins/password/localization/ja_JP.inc b/plugins/password/localization/ja_JP.inc index 6abea5348..9b445f3cf 100644 --- a/plugins/password/localization/ja_JP.inc +++ b/plugins/password/localization/ja_JP.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'パスワードの変更'; $labels['curpasswd'] = '現在のパスワード:'; $labels['newpasswd'] = '新しいパスワード:'; $labels['confpasswd'] = '新しいパスワード (確認):'; - -$messages = array(); $messages['nopassword'] = '新しいパスワードを入力してください。'; $messages['nocurpassword'] = '現在のパスワードを入力してください。'; $messages['passwordincorrect'] = '現在のパスワードが間違っています。'; @@ -33,5 +30,4 @@ $messages['internalerror'] = '新しいパスワードを保存できません $messages['passwordshort'] = 'パスワードは少なくとも $length 文字の長さが必要です。'; $messages['passwordweak'] = 'パスワードは少なくとも数字の 1 文字と記号の 1 文字を含んでいなければなりません。'; $messages['passwordforbidden'] = 'パスワードに禁止された文字が含まれています。'; - ?> diff --git a/plugins/password/localization/ko_KR.inc b/plugins/password/localization/ko_KR.inc index ec346ee00..ba113b2b9 100644 --- a/plugins/password/localization/ko_KR.inc +++ b/plugins/password/localization/ko_KR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = '암호 변경'; $labels['curpasswd'] = '현재 암호:'; $labels['newpasswd'] = '새 암호:'; $labels['confpasswd'] = '새로운 비밀번호 확인 :'; - -$messages = array(); $messages['nopassword'] = '새 암호를 입력하시오.'; $messages['nocurpassword'] = '현재 사용중인 암호를 입력하세요.'; $messages['passwordincorrect'] = '현재 사용중인 암호가 올바르지 않습니다.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = '새로운 암호를 저장할 수 없습니다.'; $messages['passwordshort'] = '암호는 적어도 $length 글자 이상이어야 합니다.'; $messages['passwordweak'] = '암호는 적어도 숫자 하나와 특수 문자 하나를 포함하여야 합니다.'; $messages['passwordforbidden'] = '암호가 허락되지 않은 문자들을 포함하고 있습니다.'; - ?> diff --git a/plugins/password/localization/ku.inc b/plugins/password/localization/ku.inc index 3bee221b6..4ec48bf6f 100644 --- a/plugins/password/localization/ku.inc +++ b/plugins/password/localization/ku.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'گۆڕینی ووشەی نهێنی'; $labels['curpasswd'] = 'Current Password:'; $labels['newpasswd'] = 'New Password:'; $labels['confpasswd'] = 'Confirm New Password:'; - -$messages = array(); $messages['nopassword'] = 'Please input new password.'; $messages['nocurpassword'] = 'Please input current password.'; $messages['passwordincorrect'] = 'Current password incorrect.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Could not save new password.'; $messages['passwordshort'] = 'Password must be at least $length characters long.'; $messages['passwordweak'] = 'Password must include at least one number and one punctuation character.'; $messages['passwordforbidden'] = 'Password contains forbidden characters.'; - ?> diff --git a/plugins/password/localization/lb_LU.inc b/plugins/password/localization/lb_LU.inc index 9962aed28..6e8f8a097 100644 --- a/plugins/password/localization/lb_LU.inc +++ b/plugins/password/localization/lb_LU.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Passwuert änneren'; $labels['curpasswd'] = 'Aktuellt Passwuert:'; $labels['newpasswd'] = 'Neit Passwuert:'; $labels['confpasswd'] = 'Neit Passwuert bestätegen:'; - -$messages = array(); $messages['nopassword'] = 'Gëff wann ech gelift en neit Passwuert an.'; $messages['nocurpassword'] = 'Gëff wann ech gelift dat aktuellt Passwuert an.'; $messages['passwordincorrect'] = 'Aktuellt Passwuert net korrekt.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Neit Passwuert konnt net gespäichert ginn.'; $messages['passwordshort'] = 'D\'Passwuert muss mindestens $length Zeeche laang sinn.'; $messages['passwordweak'] = 'D\'Passwuert muss mindestens eng Zuel an ee Sazzeechen enthalen.'; $messages['passwordforbidden'] = 'D\'Passwuert enthält verbueden Zeechen.'; - ?> diff --git a/plugins/password/localization/lt_LT.inc b/plugins/password/localization/lt_LT.inc index fe512960a..470cff2f3 100644 --- a/plugins/password/localization/lt_LT.inc +++ b/plugins/password/localization/lt_LT.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Slaptažodžio keitimas'; $labels['curpasswd'] = 'Dabartinis slaptažodis:'; $labels['newpasswd'] = 'Naujasis slaptažodis:'; $labels['confpasswd'] = 'Pakartokite naująjį slaptažodį:'; - -$messages = array(); $messages['nopassword'] = 'Prašom įvesti naująjį slaptažodį.'; $messages['nocurpassword'] = 'Prašom įvesti dabartinį slaptažodį.'; $messages['passwordincorrect'] = 'Dabartinis slaptažodis neteisingas.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nepavyko įrašyti naujojo slaptažodžio.'; $messages['passwordshort'] = 'Slaptažodis turi būti sudarytas bent iš $length simbolių.'; $messages['passwordweak'] = 'Slaptažodyje turi būti bent vienas skaitmuo ir vienas skyrybos ženklas.'; $messages['passwordforbidden'] = 'Slaptažodyje rasta neleistinų simbolių.'; - ?> diff --git a/plugins/password/localization/lv_LV.inc b/plugins/password/localization/lv_LV.inc index ac0e5da79..cd743202c 100644 --- a/plugins/password/localization/lv_LV.inc +++ b/plugins/password/localization/lv_LV.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Nomainīt paroli'; $labels['curpasswd'] = 'Pašreizējā parole:'; $labels['newpasswd'] = 'Jaunā parole:'; $labels['confpasswd'] = 'Apstiprināt jauno paroli:'; - -$messages = array(); $messages['nopassword'] = 'Lūdzu ievadiet jauno paroli.'; $messages['nocurpassword'] = 'Lūdzu ievadiet pašreizējo paroli.'; $messages['passwordincorrect'] = 'Pašreizējā parole nav pareiza.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nevarēja saglabāt jauno paroli.'; $messages['passwordshort'] = 'Jaunajai parolei jābūt vismaz $length simbolu garai.'; $messages['passwordweak'] = 'Jaunajai parolei jāsatur vismaz viens cipars un speciālais simbols.'; $messages['passwordforbidden'] = 'Parole satur neatļautus simbolus.'; - ?> diff --git a/plugins/password/localization/nb_NO.inc b/plugins/password/localization/nb_NO.inc index 6d8440bf3..46ddf5bce 100644 --- a/plugins/password/localization/nb_NO.inc +++ b/plugins/password/localization/nb_NO.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Bytt passord'; $labels['curpasswd'] = 'Nåværende passord:'; $labels['newpasswd'] = 'Nytt passord:'; $labels['confpasswd'] = 'Bekreft nytt passord'; - -$messages = array(); $messages['nopassword'] = 'Vennligst skriv inn nytt passord'; $messages['nocurpassword'] = 'Vennligst skriv inn nåværende passord'; $messages['passwordincorrect'] = 'Nåværende passord er feil.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Kunne ikke lagre nytt passord'; $messages['passwordshort'] = 'Passordet må minimum inneholde $length tegn.'; $messages['passwordweak'] = 'Passordet må inneholde minst ett tall og ett tegnsettingssymbol.'; $messages['passwordforbidden'] = 'Passordet inneholder forbudte tegn.'; - ?> diff --git a/plugins/password/localization/nl_NL.inc b/plugins/password/localization/nl_NL.inc index e5b634602..c54508989 100644 --- a/plugins/password/localization/nl_NL.inc +++ b/plugins/password/localization/nl_NL.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Wachtwoord wijzigen'; $labels['curpasswd'] = 'Huidig wachtwoord:'; $labels['newpasswd'] = 'Nieuw wachtwoord:'; $labels['confpasswd'] = 'Bevestig nieuw wachtwoord:'; - -$messages = array(); $messages['nopassword'] = 'Vul uw nieuwe wachtwoord in.'; $messages['nocurpassword'] = 'Vul uw huidige wachtwoord in.'; $messages['passwordincorrect'] = 'Huidig wachtwoord is onjuist.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Uw nieuwe wachtwoord kan niet worden opgeslagen.'; $messages['passwordshort'] = 'Het wachtwoord moet minimaal $length tekens lang zijn.'; $messages['passwordweak'] = 'Het wachtwoord moet minimaal één cijfer en één leesteken bevatten.'; $messages['passwordforbidden'] = 'Het wachtwoord bevat tekens die niet toegestaan zijn.'; - ?> diff --git a/plugins/password/localization/nn_NO.inc b/plugins/password/localization/nn_NO.inc index dc7c8f390..0a56e0fb8 100644 --- a/plugins/password/localization/nn_NO.inc +++ b/plugins/password/localization/nn_NO.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Bytt passord'; $labels['curpasswd'] = 'Noverande passord:'; $labels['newpasswd'] = 'Nytt passord:'; $labels['confpasswd'] = 'Bekreft nytt passord'; - -$messages = array(); $messages['nopassword'] = 'Venlegast skriv inn nytt passord.'; $messages['nocurpassword'] = 'Venlegast skriv inn noverande passord.'; $messages['passwordincorrect'] = 'Noverande passord er feil.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Kunne ikkje lagre nytt passord.'; $messages['passwordshort'] = 'Passordet må minimum innehalde $length teikn.'; $messages['passwordweak'] = 'Passordet må innehalde minst eitt tal og eitt skilleteikn.'; $messages['passwordforbidden'] = 'Passordet inneheld forbodne teikn.'; - ?> diff --git a/plugins/password/localization/pl_PL.inc b/plugins/password/localization/pl_PL.inc index f4bce1792..975c40a80 100644 --- a/plugins/password/localization/pl_PL.inc +++ b/plugins/password/localization/pl_PL.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Zmiana hasła'; $labels['curpasswd'] = 'Aktualne hasło:'; $labels['newpasswd'] = 'Nowe hasło:'; $labels['confpasswd'] = 'Potwierdź hasło:'; - -$messages = array(); $messages['nopassword'] = 'Wprowadź nowe hasło.'; $messages['nocurpassword'] = 'Wprowadź aktualne hasło.'; $messages['passwordincorrect'] = 'Błędne aktualne hasło, spróbuj ponownie.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nie udało się zapisać nowego hasła.'; $messages['passwordshort'] = 'Hasło musi posiadać co najmniej $length znaków.'; $messages['passwordweak'] = 'Hasło musi zawierać co najmniej jedną cyfrę i znak interpunkcyjny.'; $messages['passwordforbidden'] = 'Hasło zawiera niedozwolone znaki.'; - ?> diff --git a/plugins/password/localization/pt_BR.inc b/plugins/password/localization/pt_BR.inc index f6f6ced01..0b2843715 100644 --- a/plugins/password/localization/pt_BR.inc +++ b/plugins/password/localization/pt_BR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Alterar senha'; $labels['curpasswd'] = 'Senha atual:'; $labels['newpasswd'] = 'Nova senha:'; $labels['confpasswd'] = 'Confirmar nova senha:'; - -$messages = array(); $messages['nopassword'] = 'Por favor, informe a nova senha.'; $messages['nocurpassword'] = 'Por favor, informe a senha atual.'; $messages['passwordincorrect'] = 'Senha atual incorreta.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Não foi possível gravar a nova senha.'; $messages['passwordshort'] = 'A senha precisa ter ao menos $length caracteres.'; $messages['passwordweak'] = 'A senha precisa conter ao menos um número e um caractere de pontuação.'; $messages['passwordforbidden'] = 'A senha contém caracteres proibidos.'; - ?> diff --git a/plugins/password/localization/pt_PT.inc b/plugins/password/localization/pt_PT.inc index faad112ea..13fe83c01 100644 --- a/plugins/password/localization/pt_PT.inc +++ b/plugins/password/localization/pt_PT.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Alterar password'; $labels['curpasswd'] = 'Password atual:'; $labels['newpasswd'] = 'Nova password:'; $labels['confpasswd'] = 'Confirmar password:'; - -$messages = array(); $messages['nopassword'] = 'Introduza a nova password.'; $messages['nocurpassword'] = 'Introduza a password actual.'; $messages['passwordincorrect'] = 'Password actual errada.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Não foi possível gravar a nova password.'; $messages['passwordshort'] = 'A palavra-passe deve ter pelo menos $length caracteres'; $messages['passwordweak'] = 'A palavra-passe deve incluir pelo menos um numero e um sinal de pontuação.'; $messages['passwordforbidden'] = 'A palavra-passe contém caracteres não suportados.'; - ?> diff --git a/plugins/password/localization/ro_RO.inc b/plugins/password/localization/ro_RO.inc index 7406efb9a..fcc048f3d 100644 --- a/plugins/password/localization/ro_RO.inc +++ b/plugins/password/localization/ro_RO.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Schimbați parola'; $labels['curpasswd'] = 'Parola curentă:'; $labels['newpasswd'] = 'Parola nouă:'; $labels['confpasswd'] = 'Confirmați parola nouă:'; - -$messages = array(); $messages['nopassword'] = 'Te rog să introduci noua parolă.'; $messages['nocurpassword'] = 'Te rog să introduci parola curentă'; $messages['passwordincorrect'] = 'Parola curentă este incorectă.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nu am reușit să salvez noua parolă.'; $messages['passwordshort'] = 'Parola trebuie să aibă $length caractere.'; $messages['passwordweak'] = 'Parola trebuie să conțina cel puțin un număr si un semn de punctuație'; $messages['passwordforbidden'] = 'Parola conține caractere nepermise.'; - ?> diff --git a/plugins/password/localization/ru_RU.inc b/plugins/password/localization/ru_RU.inc index 2517f922b..e07e52791 100644 --- a/plugins/password/localization/ru_RU.inc +++ b/plugins/password/localization/ru_RU.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Изменить пароль'; $labels['curpasswd'] = 'Текущий пароль:'; $labels['newpasswd'] = 'Новый пароль:'; $labels['confpasswd'] = 'Подтвердите новый пароль:'; - -$messages = array(); $messages['nopassword'] = 'Пожалуйста, введите новый пароль.'; $messages['nocurpassword'] = 'Пожалуйста, введите текущий пароль.'; $messages['passwordincorrect'] = 'Текущий пароль неверен.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Не могу сохранить новый пар $messages['passwordshort'] = 'Длина пароля должна быть как минимум $length символов.'; $messages['passwordweak'] = 'Пароль должен включать в себя как минимум одну цифру и один знак пунктуации.'; $messages['passwordforbidden'] = 'Пароль содержит недопустимые символы.'; - ?> diff --git a/plugins/password/localization/sk_SK.inc b/plugins/password/localization/sk_SK.inc index 4098cb685..eb7301fa2 100644 --- a/plugins/password/localization/sk_SK.inc +++ b/plugins/password/localization/sk_SK.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Zmeniť heslo'; $labels['curpasswd'] = 'Súčasné heslo:'; $labels['newpasswd'] = 'Nové heslo:'; $labels['confpasswd'] = 'Potvrď nové heslo:'; - -$messages = array(); $messages['nopassword'] = 'Prosím zadaj nové heslo.'; $messages['nocurpassword'] = 'Prosím zadaj súčasné heslo.'; $messages['passwordincorrect'] = 'Súčasné heslo je nesprávne.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Nemôžem uložiť nové heslo.'; $messages['passwordshort'] = 'Heslo musí mať najmenej $length znakov.'; $messages['passwordweak'] = 'Heslo musí obsahovať aspoň jedno číslo a jedno interpunkčné znamienko.'; $messages['passwordforbidden'] = 'Heslo obsahuje nepovolené znaky.'; - ?> diff --git a/plugins/password/localization/sl_SI.inc b/plugins/password/localization/sl_SI.inc index 27a094219..19980871e 100644 --- a/plugins/password/localization/sl_SI.inc +++ b/plugins/password/localization/sl_SI.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Spremeni geslo'; $labels['curpasswd'] = 'Obstoječe geslo:'; $labels['newpasswd'] = 'Novo geslo:'; $labels['confpasswd'] = 'Potrdi novo geslo:'; - -$messages = array(); $messages['nopassword'] = 'Vnesite novo geslo.'; $messages['nocurpassword'] = 'Vnesite obstoječe geslo.'; $messages['passwordincorrect'] = 'Obstoječe geslo ni veljavno.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Novega gesla ni bilo mogoče shraniti.'; $messages['passwordshort'] = 'Geslo mora vsebovati vsaj $length znakov'; $messages['passwordweak'] = 'Geslo mora vključevati vsaj eno številko in ločilo.'; $messages['passwordforbidden'] = 'Geslo vsebuje neveljavne znake.'; - ?> diff --git a/plugins/password/localization/sr_CS.inc b/plugins/password/localization/sr_CS.inc index 18361032d..d30b76e3e 100644 --- a/plugins/password/localization/sr_CS.inc +++ b/plugins/password/localization/sr_CS.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Промијени лозинку'; $labels['curpasswd'] = 'Тренутна лозинка:'; $labels['newpasswd'] = 'Нова лозинка:'; $labels['confpasswd'] = 'Поновите лозинку:'; - -$messages = array(); $messages['nopassword'] = 'Молимо унесите нову лозинку.'; $messages['nocurpassword'] = 'Молимо унесите тренутну лозинку.'; $messages['passwordincorrect'] = 'Тренутна лозинка је нетачна.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Није могуће сачувати нову л $messages['passwordshort'] = 'Лозинка мора имати најмање $lenght знакова.'; $messages['passwordweak'] = 'Лозинка мора да садржи најмање један број и један интерпункцијски знак.'; $messages['passwordforbidden'] = 'Лозинка садржи недозвољене знакове.'; - ?> diff --git a/plugins/password/localization/sv_SE.inc b/plugins/password/localization/sv_SE.inc index 90f7b9f58..fdef48660 100644 --- a/plugins/password/localization/sv_SE.inc +++ b/plugins/password/localization/sv_SE.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Ändra lösenord'; $labels['curpasswd'] = 'Nuvarande lösenord:'; $labels['newpasswd'] = 'Nytt lösenord:'; $labels['confpasswd'] = 'Bekräfta nytt lösenord:'; - -$messages = array(); $messages['nopassword'] = 'Ange nytt lösenord.'; $messages['nocurpassword'] = 'Ange nuvarande lösenord.'; $messages['passwordincorrect'] = 'Felaktigt nuvarande lösenord.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Lösenordet kunde inte ändras.'; $messages['passwordshort'] = 'Lösenordet måste vara minst $length tecken långt.'; $messages['passwordweak'] = 'Lösenordet måste innehålla minst en siffra och ett specialtecken.'; $messages['passwordforbidden'] = 'Lösenordet innehåller otillåtna tecken.'; - ?> diff --git a/plugins/password/localization/ti.inc b/plugins/password/localization/ti.inc index ef26bd436..cb8da480c 100644 --- a/plugins/password/localization/ti.inc +++ b/plugins/password/localization/ti.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'መሕለፊ ቃል ይለወጥ'; $labels['curpasswd'] = 'ህልው መሕለፊ ቃል:'; $labels['newpasswd'] = 'ሓዱሽ መሕለፊ ቃል:'; $labels['confpasswd'] = 'መረጋገፂ ሓዱሽ መሕለፊ ቃል :'; -$messages = array(); $messages['nopassword'] = 'ሓዱሽ መሕለፊ ቃል አብዚ ይእቶ::'; $messages['nocurpassword'] = 'ህልው መሕለፊ ቃል ኣብዚ ይእቶ::'; $messages['passwordincorrect'] = 'ህልው መሕለፊ ቃል ከምኡ ኣይኮነን::'; diff --git a/plugins/password/localization/tr_TR.inc b/plugins/password/localization/tr_TR.inc index 99133a158..3b0cfaf4a 100644 --- a/plugins/password/localization/tr_TR.inc +++ b/plugins/password/localization/tr_TR.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Parolayı Değiştir'; $labels['curpasswd'] = 'Şimdiki Parola:'; $labels['newpasswd'] = 'Yeni Parola:'; $labels['confpasswd'] = 'Yeni Parolayı Onaylayın:'; - -$messages = array(); $messages['nopassword'] = 'Lütfen yeni parolayı girin.'; $messages['nocurpassword'] = 'Lütfen şimdiki parolayı girin.'; $messages['passwordincorrect'] = 'Şimdiki parolayı yanlış girdiniz.'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Yeni parola kaydedilemedi.'; $messages['passwordshort'] = 'Parola en az $length karakterden oluşmalı.'; $messages['passwordweak'] = 'Parola en az bir sayı ve bir noktalama işareti içermeli.'; $messages['passwordforbidden'] = 'Parola uygunsuz karakter(ler) içeriyor.'; - ?> diff --git a/plugins/password/localization/uk_UA.inc b/plugins/password/localization/uk_UA.inc index 87a477b1b..b01c58d31 100644 --- a/plugins/password/localization/uk_UA.inc +++ b/plugins/password/localization/uk_UA.inc @@ -16,12 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Змінити пароль'; $labels['curpasswd'] = 'Поточний пароль:'; $labels['newpasswd'] = 'Новий пароль:'; $labels['confpasswd'] = 'Підтвердіть новий пароль:'; -$messages = array(); $messages['nopassword'] = 'Будь ласка, введіть новий пароль.'; $messages['nocurpassword'] = 'Будь ласка, введіть поточний пароль.'; $messages['passwordincorrect'] = 'Поточний пароль неправильний.'; diff --git a/plugins/password/localization/vi_VN.inc b/plugins/password/localization/vi_VN.inc index f21d65156..0c9a930ac 100644 --- a/plugins/password/localization/vi_VN.inc +++ b/plugins/password/localization/vi_VN.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = 'Thay đổi mật khẩu'; $labels['curpasswd'] = 'Mật khẩu hiện tại'; $labels['newpasswd'] = 'Mật khẩu mới:'; $labels['confpasswd'] = 'Xác nhận mật khẩu mới'; - -$messages = array(); $messages['nopassword'] = 'Mời nhập mật khẩu mới'; $messages['nocurpassword'] = 'Mời nhập mật khẩu hiện tại'; $messages['passwordincorrect'] = 'Mật khẩu hiện thời không đúng'; @@ -33,5 +30,4 @@ $messages['internalerror'] = 'Không thể lưu mật khẩu mới'; $messages['passwordshort'] = 'Mật khẩu phải dài ít nhất $ ký tự'; $messages['passwordweak'] = 'Mật khẩu phải bao gồm ít nhất 1 con số và 1 ký tự dấu câu'; $messages['passwordforbidden'] = 'Mật khẩu bao gồm ký tự không hợp lệ'; - ?> diff --git a/plugins/password/localization/zh_CN.inc b/plugins/password/localization/zh_CN.inc index 5d14926f2..22c14f25a 100644 --- a/plugins/password/localization/zh_CN.inc +++ b/plugins/password/localization/zh_CN.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = '修改密码'; $labels['curpasswd'] = '当前密码:'; $labels['newpasswd'] = '新密码:'; $labels['confpasswd'] = '确认新密码:'; - -$messages = array(); $messages['nopassword'] = '请输入新密码。'; $messages['nocurpassword'] = '请输入当前的密码。'; $messages['passwordincorrect'] = '当前密码不正确。'; @@ -33,5 +30,4 @@ $messages['internalerror'] = '无法保存新密码。'; $messages['passwordshort'] = '密码至少为 $length 位。'; $messages['passwordweak'] = '密码必须至少包含一个数字和一个标点符号。'; $messages['passwordforbidden'] = '密码包含禁止使用的字符。'; - ?> diff --git a/plugins/password/localization/zh_TW.inc b/plugins/password/localization/zh_TW.inc index b61e113c8..ea7abb759 100644 --- a/plugins/password/localization/zh_TW.inc +++ b/plugins/password/localization/zh_TW.inc @@ -16,13 +16,10 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ -$labels = array(); $labels['changepasswd'] = '更改密碼'; $labels['curpasswd'] = '目前的密碼'; $labels['newpasswd'] = '新密碼'; $labels['confpasswd'] = '確認新密碼'; - -$messages = array(); $messages['nopassword'] = '請輸入新密碼'; $messages['nocurpassword'] = '請輸入目前的密碼'; $messages['passwordincorrect'] = '目前的密碼錯誤'; @@ -33,5 +30,4 @@ $messages['internalerror'] = '無法更新密碼'; $messages['passwordshort'] = '您的密碼至少需 $length 個字元長'; $messages['passwordweak'] = '您的新密碼至少需含有一個數字與一個標點符號'; $messages['passwordforbidden'] = '您的密碼含有禁用字元'; - ?> diff --git a/plugins/subscriptions_option/localization/az_AZ.inc b/plugins/subscriptions_option/localization/az_AZ.inc index a091156dc..6a8cc1ec5 100644 --- a/plugins/subscriptions_option/localization/az_AZ.inc +++ b/plugins/subscriptions_option/localization/az_AZ.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP göndərişi istifadə et'; ?> diff --git a/plugins/subscriptions_option/localization/be_BE.inc b/plugins/subscriptions_option/localization/be_BE.inc index e2d00002c..7996f7518 100644 --- a/plugins/subscriptions_option/localization/be_BE.inc +++ b/plugins/subscriptions_option/localization/be_BE.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Выкарыстоўваць IMAP-падпіскі'; ?> diff --git a/plugins/subscriptions_option/localization/bg_BG.inc b/plugins/subscriptions_option/localization/bg_BG.inc index a408f9da5..520cf67ac 100644 --- a/plugins/subscriptions_option/localization/bg_BG.inc +++ b/plugins/subscriptions_option/localization/bg_BG.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Използвай IMAP абонаменти'; ?> diff --git a/plugins/subscriptions_option/localization/bs_BA.inc b/plugins/subscriptions_option/localization/bs_BA.inc index 404dd1dd2..63798c20e 100644 --- a/plugins/subscriptions_option/localization/bs_BA.inc +++ b/plugins/subscriptions_option/localization/bs_BA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Koristi IMAP pretplate'; ?> diff --git a/plugins/subscriptions_option/localization/ca_ES.inc b/plugins/subscriptions_option/localization/ca_ES.inc index 959134270..8cdb1d69b 100644 --- a/plugins/subscriptions_option/localization/ca_ES.inc +++ b/plugins/subscriptions_option/localization/ca_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Fes servir subscripcions IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/cs_CZ.inc b/plugins/subscriptions_option/localization/cs_CZ.inc index 052255fef..e24d110bf 100644 --- a/plugins/subscriptions_option/localization/cs_CZ.inc +++ b/plugins/subscriptions_option/localization/cs_CZ.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Používat odebírání IMAP složek'; ?> diff --git a/plugins/subscriptions_option/localization/cy_GB.inc b/plugins/subscriptions_option/localization/cy_GB.inc index 2c317de96..2fb980b2b 100644 --- a/plugins/subscriptions_option/localization/cy_GB.inc +++ b/plugins/subscriptions_option/localization/cy_GB.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Defnyddio tanysgrifiadau IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/da_DK.inc b/plugins/subscriptions_option/localization/da_DK.inc index 08cfdf45d..aee9d26ba 100644 --- a/plugins/subscriptions_option/localization/da_DK.inc +++ b/plugins/subscriptions_option/localization/da_DK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Brug IMAP abonnementer'; ?> diff --git a/plugins/subscriptions_option/localization/de_CH.inc b/plugins/subscriptions_option/localization/de_CH.inc index 8d48bb4c8..6433a98ec 100644 --- a/plugins/subscriptions_option/localization/de_CH.inc +++ b/plugins/subscriptions_option/localization/de_CH.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Nur abonnierte Ordner anzeigen'; ?> diff --git a/plugins/subscriptions_option/localization/de_DE.inc b/plugins/subscriptions_option/localization/de_DE.inc index 8d48bb4c8..6433a98ec 100644 --- a/plugins/subscriptions_option/localization/de_DE.inc +++ b/plugins/subscriptions_option/localization/de_DE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Nur abonnierte Ordner anzeigen'; ?> diff --git a/plugins/subscriptions_option/localization/el_GR.inc b/plugins/subscriptions_option/localization/el_GR.inc index 135122750..9eb90cb30 100644 --- a/plugins/subscriptions_option/localization/el_GR.inc +++ b/plugins/subscriptions_option/localization/el_GR.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Χρησιμοποιήστε IMAP Συνδρομές'; ?> diff --git a/plugins/subscriptions_option/localization/en_GB.inc b/plugins/subscriptions_option/localization/en_GB.inc index 3eb18fc1d..17a4861f9 100644 --- a/plugins/subscriptions_option/localization/en_GB.inc +++ b/plugins/subscriptions_option/localization/en_GB.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Use IMAP Subscriptions'; ?> diff --git a/plugins/subscriptions_option/localization/eo.inc b/plugins/subscriptions_option/localization/eo.inc index 9cba39b9e..d315c46dc 100644 --- a/plugins/subscriptions_option/localization/eo.inc +++ b/plugins/subscriptions_option/localization/eo.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Uzi IMAP-abonojn'; ?> diff --git a/plugins/subscriptions_option/localization/es_AR.inc b/plugins/subscriptions_option/localization/es_AR.inc index 10c515f6e..327e500b8 100644 --- a/plugins/subscriptions_option/localization/es_AR.inc +++ b/plugins/subscriptions_option/localization/es_AR.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Usar suscripción a carpetas IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/es_ES.inc b/plugins/subscriptions_option/localization/es_ES.inc index 699a60ab5..9acd159bf 100644 --- a/plugins/subscriptions_option/localization/es_ES.inc +++ b/plugins/subscriptions_option/localization/es_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Usar suscripciones IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/et_EE.inc b/plugins/subscriptions_option/localization/et_EE.inc index 916911bd6..9e3b15d87 100644 --- a/plugins/subscriptions_option/localization/et_EE.inc +++ b/plugins/subscriptions_option/localization/et_EE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Kasuta IMAP tellimusi'; ?> diff --git a/plugins/subscriptions_option/localization/eu_ES.inc b/plugins/subscriptions_option/localization/eu_ES.inc index 739e05973..bcbacf800 100644 --- a/plugins/subscriptions_option/localization/eu_ES.inc +++ b/plugins/subscriptions_option/localization/eu_ES.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Erabili IMAP harpidetzak'; ?> diff --git a/plugins/subscriptions_option/localization/fa_AF.inc b/plugins/subscriptions_option/localization/fa_AF.inc index 55d0dd377..a9e8c5bd3 100644 --- a/plugins/subscriptions_option/localization/fa_AF.inc +++ b/plugins/subscriptions_option/localization/fa_AF.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'از ثبت نام های IMAP استفاده کنید'; ?> diff --git a/plugins/subscriptions_option/localization/fa_IR.inc b/plugins/subscriptions_option/localization/fa_IR.inc index 5c7cbe401..f8cf5df27 100644 --- a/plugins/subscriptions_option/localization/fa_IR.inc +++ b/plugins/subscriptions_option/localization/fa_IR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'استفاده از عضویت IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/fi_FI.inc b/plugins/subscriptions_option/localization/fi_FI.inc index 54128fbcb..904d028c9 100644 --- a/plugins/subscriptions_option/localization/fi_FI.inc +++ b/plugins/subscriptions_option/localization/fi_FI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Käytä IMAP-tilauksia'; ?> diff --git a/plugins/subscriptions_option/localization/fr_FR.inc b/plugins/subscriptions_option/localization/fr_FR.inc index 2290ccfd8..0b2ea9f67 100644 --- a/plugins/subscriptions_option/localization/fr_FR.inc +++ b/plugins/subscriptions_option/localization/fr_FR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Utiliser les abonnements IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/gl_ES.inc b/plugins/subscriptions_option/localization/gl_ES.inc index a273777da..376b2d39b 100644 --- a/plugins/subscriptions_option/localization/gl_ES.inc +++ b/plugins/subscriptions_option/localization/gl_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Usar subscricións IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/he_IL.inc b/plugins/subscriptions_option/localization/he_IL.inc index 3149bb759..897bdd5d7 100644 --- a/plugins/subscriptions_option/localization/he_IL.inc +++ b/plugins/subscriptions_option/localization/he_IL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'שימוש ברישום לתיקיות IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/hu_HU.inc b/plugins/subscriptions_option/localization/hu_HU.inc index 9efa24559..368997b84 100644 --- a/plugins/subscriptions_option/localization/hu_HU.inc +++ b/plugins/subscriptions_option/localization/hu_HU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP előfizetések használata.'; ?> diff --git a/plugins/subscriptions_option/localization/hy_AM.inc b/plugins/subscriptions_option/localization/hy_AM.inc index 2c3fb5d63..1ecaa9af3 100644 --- a/plugins/subscriptions_option/localization/hy_AM.inc +++ b/plugins/subscriptions_option/localization/hy_AM.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Օգտագործել IMAP-ի բաժանորդագրությունները'; ?> diff --git a/plugins/subscriptions_option/localization/id_ID.inc b/plugins/subscriptions_option/localization/id_ID.inc index e2c2f5876..eda794ff1 100644 --- a/plugins/subscriptions_option/localization/id_ID.inc +++ b/plugins/subscriptions_option/localization/id_ID.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Gunakan Langganan IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/it_IT.inc b/plugins/subscriptions_option/localization/it_IT.inc index 38aa6fb5d..004311c6d 100644 --- a/plugins/subscriptions_option/localization/it_IT.inc +++ b/plugins/subscriptions_option/localization/it_IT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Usa sottoscrizioni IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/ja_JP.inc b/plugins/subscriptions_option/localization/ja_JP.inc index 7daf1c473..62592844e 100644 --- a/plugins/subscriptions_option/localization/ja_JP.inc +++ b/plugins/subscriptions_option/localization/ja_JP.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP 購読リストを使う'; ?> diff --git a/plugins/subscriptions_option/localization/ko_KR.inc b/plugins/subscriptions_option/localization/ko_KR.inc index d399915c2..ea539dc84 100644 --- a/plugins/subscriptions_option/localization/ko_KR.inc +++ b/plugins/subscriptions_option/localization/ko_KR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP 구독 사용'; ?> diff --git a/plugins/subscriptions_option/localization/lb_LU.inc b/plugins/subscriptions_option/localization/lb_LU.inc index d9432634b..100801ee9 100644 --- a/plugins/subscriptions_option/localization/lb_LU.inc +++ b/plugins/subscriptions_option/localization/lb_LU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP-Abonnementer benotzen'; ?> diff --git a/plugins/subscriptions_option/localization/lt_LT.inc b/plugins/subscriptions_option/localization/lt_LT.inc index 0612e4d63..b8fd0a1c2 100644 --- a/plugins/subscriptions_option/localization/lt_LT.inc +++ b/plugins/subscriptions_option/localization/lt_LT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Naudoti IMAP prenumeratas'; ?> diff --git a/plugins/subscriptions_option/localization/lv_LV.inc b/plugins/subscriptions_option/localization/lv_LV.inc index 38b2cd757..750707532 100644 --- a/plugins/subscriptions_option/localization/lv_LV.inc +++ b/plugins/subscriptions_option/localization/lv_LV.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Izmantot IMAP abonēšanas iestatījumus'; ?> diff --git a/plugins/subscriptions_option/localization/nb_NO.inc b/plugins/subscriptions_option/localization/nb_NO.inc index c65b5cad7..eaf0ff0bc 100644 --- a/plugins/subscriptions_option/localization/nb_NO.inc +++ b/plugins/subscriptions_option/localization/nb_NO.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Bruk IMAP-abonnementer'; ?> diff --git a/plugins/subscriptions_option/localization/nl_NL.inc b/plugins/subscriptions_option/localization/nl_NL.inc index 415d55531..79f09c4dc 100644 --- a/plugins/subscriptions_option/localization/nl_NL.inc +++ b/plugins/subscriptions_option/localization/nl_NL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Gebruik IMAP-abonneringen'; ?> diff --git a/plugins/subscriptions_option/localization/nn_NO.inc b/plugins/subscriptions_option/localization/nn_NO.inc index c203d9ee6..882a9ad3f 100644 --- a/plugins/subscriptions_option/localization/nn_NO.inc +++ b/plugins/subscriptions_option/localization/nn_NO.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Bruk IMAP-abonnement'; ?> diff --git a/plugins/subscriptions_option/localization/pl_PL.inc b/plugins/subscriptions_option/localization/pl_PL.inc index 01f377f5b..e6e740813 100644 --- a/plugins/subscriptions_option/localization/pl_PL.inc +++ b/plugins/subscriptions_option/localization/pl_PL.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Używaj subskrypcji IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/pt_BR.inc b/plugins/subscriptions_option/localization/pt_BR.inc index aa148a7fd..ee7da7d9b 100644 --- a/plugins/subscriptions_option/localization/pt_BR.inc +++ b/plugins/subscriptions_option/localization/pt_BR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Usar função de inscrição em pastas IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/pt_PT.inc b/plugins/subscriptions_option/localization/pt_PT.inc index d8035200f..abcfe329a 100644 --- a/plugins/subscriptions_option/localization/pt_PT.inc +++ b/plugins/subscriptions_option/localization/pt_PT.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Use subscrições IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/ro_RO.inc b/plugins/subscriptions_option/localization/ro_RO.inc index 7fec1e024..ccbcda358 100644 --- a/plugins/subscriptions_option/localization/ro_RO.inc +++ b/plugins/subscriptions_option/localization/ro_RO.inc @@ -16,6 +16,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Utilizare abonări IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/ru_RU.inc b/plugins/subscriptions_option/localization/ru_RU.inc index b332e24ba..3d898b2e4 100644 --- a/plugins/subscriptions_option/localization/ru_RU.inc +++ b/plugins/subscriptions_option/localization/ru_RU.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Использовать IMAP подписки'; ?> diff --git a/plugins/subscriptions_option/localization/sk_SK.inc b/plugins/subscriptions_option/localization/sk_SK.inc index 4507e26e8..fe5463ef8 100644 --- a/plugins/subscriptions_option/localization/sk_SK.inc +++ b/plugins/subscriptions_option/localization/sk_SK.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Použi IMAP nastavenia'; ?> diff --git a/plugins/subscriptions_option/localization/sl_SI.inc b/plugins/subscriptions_option/localization/sl_SI.inc index 8ef5f21e0..6e23f4103 100644 --- a/plugins/subscriptions_option/localization/sl_SI.inc +++ b/plugins/subscriptions_option/localization/sl_SI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Uporabi IMAP-naročnino'; ?> diff --git a/plugins/subscriptions_option/localization/sr_CS.inc b/plugins/subscriptions_option/localization/sr_CS.inc index ad84ed0e1..6d94cc281 100644 --- a/plugins/subscriptions_option/localization/sr_CS.inc +++ b/plugins/subscriptions_option/localization/sr_CS.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Користите ИМАП Уписивање'; ?> diff --git a/plugins/subscriptions_option/localization/sv_SE.inc b/plugins/subscriptions_option/localization/sv_SE.inc index 1a8eae123..9d2e3fbcd 100644 --- a/plugins/subscriptions_option/localization/sv_SE.inc +++ b/plugins/subscriptions_option/localization/sv_SE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Använd IMAP-prenumerationer'; ?> diff --git a/plugins/subscriptions_option/localization/tr_TR.inc b/plugins/subscriptions_option/localization/tr_TR.inc index 7d69e9c0c..4b2ca19c0 100644 --- a/plugins/subscriptions_option/localization/tr_TR.inc +++ b/plugins/subscriptions_option/localization/tr_TR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'IMAP Aboneliklerini kullan'; ?> diff --git a/plugins/subscriptions_option/localization/vi_VN.inc b/plugins/subscriptions_option/localization/vi_VN.inc index 52e4bd676..4dd6ef9cc 100644 --- a/plugins/subscriptions_option/localization/vi_VN.inc +++ b/plugins/subscriptions_option/localization/vi_VN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = 'Đăng ký dùng cách thức IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/zh_CN.inc b/plugins/subscriptions_option/localization/zh_CN.inc index 3b146d7b1..94b9172c5 100644 --- a/plugins/subscriptions_option/localization/zh_CN.inc +++ b/plugins/subscriptions_option/localization/zh_CN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = '使用 IMAP 订阅'; ?> diff --git a/plugins/subscriptions_option/localization/zh_TW.inc b/plugins/subscriptions_option/localization/zh_TW.inc index 226be8e07..9fd0f81a0 100644 --- a/plugins/subscriptions_option/localization/zh_TW.inc +++ b/plugins/subscriptions_option/localization/zh_TW.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ -$labels = array(); $labels['useimapsubscriptions'] = '使用IMAP訂閱'; ?> diff --git a/plugins/userinfo/localization/ar.inc b/plugins/userinfo/localization/ar.inc index b1960a0f2..680832a1a 100644 --- a/plugins/userinfo/localization/ar.inc +++ b/plugins/userinfo/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'معلومات المستخدم'; $labels['lastlogin'] = 'أخر تسجيل دخول'; $labels['defaultidentity'] = 'الهوية الافتراضية'; diff --git a/plugins/userinfo/localization/ar_SA.inc b/plugins/userinfo/localization/ar_SA.inc index adfa9a9a6..bd3399c31 100644 --- a/plugins/userinfo/localization/ar_SA.inc +++ b/plugins/userinfo/localization/ar_SA.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'معلومات المستخدم'; $labels['created'] = 'أُنشئ في'; $labels['lastlogin'] = 'آخر دخول'; $labels['defaultidentity'] = 'الهوية الافتراضية'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ast.inc b/plugins/userinfo/localization/ast.inc index ae6033596..a24deabe5 100644 --- a/plugins/userinfo/localization/ast.inc +++ b/plugins/userinfo/localization/ast.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Información d\'usuariu'; $labels['created'] = 'Creáu'; $labels['lastlogin'] = 'Cabera conexón'; diff --git a/plugins/userinfo/localization/az_AZ.inc b/plugins/userinfo/localization/az_AZ.inc index bd70cd128..10a5448fb 100644 --- a/plugins/userinfo/localization/az_AZ.inc +++ b/plugins/userinfo/localization/az_AZ.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Məlumat'; $labels['created'] = 'Yaradılma tarixi'; $labels['lastlogin'] = 'Sonuncu giriş'; $labels['defaultidentity'] = 'Default profil'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/be_BE.inc b/plugins/userinfo/localization/be_BE.inc index 858e7912e..4770d4837 100644 --- a/plugins/userinfo/localization/be_BE.inc +++ b/plugins/userinfo/localization/be_BE.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Асабістыя звесткі'; $labels['created'] = 'Створаны'; $labels['lastlogin'] = 'Апошні ўваход'; $labels['defaultidentity'] = 'Стандартныя асабістыя звесткі'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ber.inc b/plugins/userinfo/localization/ber.inc index 12fe4442e..046e45733 100644 --- a/plugins/userinfo/localization/ber.inc +++ b/plugins/userinfo/localization/ber.inc @@ -13,5 +13,4 @@ +-----------------------------------------------------------------------+ */ -$labels = array(); diff --git a/plugins/userinfo/localization/bg_BG.inc b/plugins/userinfo/localization/bg_BG.inc index 59689e061..aca1bba61 100644 --- a/plugins/userinfo/localization/bg_BG.inc +++ b/plugins/userinfo/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Потребителска информация'; $labels['created'] = 'Създаден'; $labels['lastlogin'] = 'Последен вход'; diff --git a/plugins/userinfo/localization/br.inc b/plugins/userinfo/localization/br.inc index 560e61788..8336ed5e0 100644 --- a/plugins/userinfo/localization/br.inc +++ b/plugins/userinfo/localization/br.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Titouroù an arveriad'; $labels['created'] = 'Krouet'; $labels['lastlogin'] = 'Kennask diwezhañ'; $labels['defaultidentity'] = 'Default Identity'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/bs_BA.inc b/plugins/userinfo/localization/bs_BA.inc index e7aff175f..c58752cf6 100644 --- a/plugins/userinfo/localization/bs_BA.inc +++ b/plugins/userinfo/localization/bs_BA.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Korisničke informacije'; $labels['created'] = 'Kreirano'; $labels['lastlogin'] = 'Zadnja prijava'; $labels['defaultidentity'] = 'Glavni identitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ca_ES.inc b/plugins/userinfo/localization/ca_ES.inc index 8a4837ec3..8b853ffa2 100644 --- a/plugins/userinfo/localization/ca_ES.inc +++ b/plugins/userinfo/localization/ca_ES.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informació de l\'usuari/a'; $labels['created'] = 'Creat'; $labels['lastlogin'] = 'Última connexió'; $labels['defaultidentity'] = 'Identitat per defecte'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/cs_CZ.inc b/plugins/userinfo/localization/cs_CZ.inc index ef8d5b02f..fc0ed0e3b 100644 --- a/plugins/userinfo/localization/cs_CZ.inc +++ b/plugins/userinfo/localization/cs_CZ.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Uživatel'; $labels['created'] = 'Vytvořen'; $labels['lastlogin'] = 'Naspoledy přihlášen'; $labels['defaultidentity'] = 'Výchozí identita'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/cy_GB.inc b/plugins/userinfo/localization/cy_GB.inc index 032e63462..cff92b844 100644 --- a/plugins/userinfo/localization/cy_GB.inc +++ b/plugins/userinfo/localization/cy_GB.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Gwybodaeth defnyddiwr'; $labels['created'] = 'Crëwyd'; $labels['lastlogin'] = 'Mewngofnodiad diwethaf'; $labels['defaultidentity'] = 'Personoliaeth arferol'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/da_DK.inc b/plugins/userinfo/localization/da_DK.inc index 7bcfebc3d..4b534d256 100644 --- a/plugins/userinfo/localization/da_DK.inc +++ b/plugins/userinfo/localization/da_DK.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Brugerinfo'; $labels['created'] = 'Oprettet'; $labels['lastlogin'] = 'Sidste login'; $labels['defaultidentity'] = 'Standardidentitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/de_CH.inc b/plugins/userinfo/localization/de_CH.inc index 7c20f52df..4501bcf62 100644 --- a/plugins/userinfo/localization/de_CH.inc +++ b/plugins/userinfo/localization/de_CH.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Benutzerinfo'; $labels['created'] = 'Erstellt'; $labels['lastlogin'] = 'Letztes Login'; $labels['defaultidentity'] = 'Standard-Absender'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/de_DE.inc b/plugins/userinfo/localization/de_DE.inc index 542fe49b0..df1f7c0de 100644 --- a/plugins/userinfo/localization/de_DE.inc +++ b/plugins/userinfo/localization/de_DE.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Benutzer-Information'; $labels['created'] = 'angelegt'; $labels['lastlogin'] = 'letzte Anmeldung'; $labels['defaultidentity'] = 'Standard-Identität'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/el_GR.inc b/plugins/userinfo/localization/el_GR.inc index 1da5e40ae..2ea902d36 100644 --- a/plugins/userinfo/localization/el_GR.inc +++ b/plugins/userinfo/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Πληροφορίες χρήστη '; $labels['created'] = 'Δημιουργηθηκε'; $labels['lastlogin'] = 'Τελευταια συνδεση'; diff --git a/plugins/userinfo/localization/en_GB.inc b/plugins/userinfo/localization/en_GB.inc index 01230de85..79a6a6591 100644 --- a/plugins/userinfo/localization/en_GB.inc +++ b/plugins/userinfo/localization/en_GB.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'User info'; $labels['created'] = 'Created'; $labels['lastlogin'] = 'Last Login'; $labels['defaultidentity'] = 'Default Identity'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/eo.inc b/plugins/userinfo/localization/eo.inc index db0ac37d3..06af2d831 100644 --- a/plugins/userinfo/localization/eo.inc +++ b/plugins/userinfo/localization/eo.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informoj pri uzanto'; $labels['created'] = 'Kreita'; $labels['lastlogin'] = 'Lasta ensaluto'; $labels['defaultidentity'] = 'Apriora idento'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/es_AR.inc b/plugins/userinfo/localization/es_AR.inc index 844f68291..74d6dc45b 100644 --- a/plugins/userinfo/localization/es_AR.inc +++ b/plugins/userinfo/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Información de usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Ultimo ingreso'; diff --git a/plugins/userinfo/localization/es_ES.inc b/plugins/userinfo/localization/es_ES.inc index a17c23a52..821a06917 100644 --- a/plugins/userinfo/localization/es_ES.inc +++ b/plugins/userinfo/localization/es_ES.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Información de usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Última conexión'; $labels['defaultidentity'] = 'Identidad predeterminada'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/et_EE.inc b/plugins/userinfo/localization/et_EE.inc index 878395857..913435815 100644 --- a/plugins/userinfo/localization/et_EE.inc +++ b/plugins/userinfo/localization/et_EE.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Kasutaja info'; $labels['created'] = 'Loodud'; $labels['lastlogin'] = 'Viimane logimine'; $labels['defaultidentity'] = 'Vaikeidentiteet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/eu_ES.inc b/plugins/userinfo/localization/eu_ES.inc index 02d73b396..e3172a5c9 100644 --- a/plugins/userinfo/localization/eu_ES.inc +++ b/plugins/userinfo/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Erabiltzailearen informazioa'; $labels['created'] = 'Sortua'; $labels['lastlogin'] = 'Azken saioa'; diff --git a/plugins/userinfo/localization/fa_AF.inc b/plugins/userinfo/localization/fa_AF.inc index 7353db90c..0d130e911 100644 --- a/plugins/userinfo/localization/fa_AF.inc +++ b/plugins/userinfo/localization/fa_AF.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'اطلاعات کاربر'; $labels['created'] = 'ایجاد شد'; $labels['lastlogin'] = 'آخرین ورود'; diff --git a/plugins/userinfo/localization/fa_IR.inc b/plugins/userinfo/localization/fa_IR.inc index 6efc285e5..3c39d7150 100644 --- a/plugins/userinfo/localization/fa_IR.inc +++ b/plugins/userinfo/localization/fa_IR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'اطلاعات کاربر'; $labels['created'] = 'ایجاد شده'; $labels['lastlogin'] = 'آخرین ورود'; $labels['defaultidentity'] = 'شناسه پیش‌فرض'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/fi_FI.inc b/plugins/userinfo/localization/fi_FI.inc index f5f538f91..b143d5512 100644 --- a/plugins/userinfo/localization/fi_FI.inc +++ b/plugins/userinfo/localization/fi_FI.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Käyttäjätiedot'; $labels['created'] = 'Luotu'; $labels['lastlogin'] = 'Viimeisin kirjautuminen'; $labels['defaultidentity'] = 'Oletushenkilöys'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/fr_FR.inc b/plugins/userinfo/localization/fr_FR.inc old mode 100755 new mode 100644 index c830c587d..448d081e9 --- a/plugins/userinfo/localization/fr_FR.inc +++ b/plugins/userinfo/localization/fr_FR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Info utilisateur'; $labels['created'] = 'Date de création'; $labels['lastlogin'] = 'Dernière connexion'; $labels['defaultidentity'] = 'Identité principale'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/gl_ES.inc b/plugins/userinfo/localization/gl_ES.inc index ba44e689f..c66371a9a 100644 --- a/plugins/userinfo/localization/gl_ES.inc +++ b/plugins/userinfo/localization/gl_ES.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Información do usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Última conexión'; $labels['defaultidentity'] = 'Identidade predeterminada'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/he_IL.inc b/plugins/userinfo/localization/he_IL.inc index e5b40c65e..ef7f60ae1 100644 --- a/plugins/userinfo/localization/he_IL.inc +++ b/plugins/userinfo/localization/he_IL.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'פרטי המשתמש'; $labels['created'] = 'נוצר'; $labels['lastlogin'] = 'הכמיסה האחרונה למערכת'; $labels['defaultidentity'] = 'זהות ברירת מחדל'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/hr_HR.inc b/plugins/userinfo/localization/hr_HR.inc index 8f3eb2030..dcd3657fe 100644 --- a/plugins/userinfo/localization/hr_HR.inc +++ b/plugins/userinfo/localization/hr_HR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informacije o korisniku'; $labels['created'] = 'Stvoreno'; $labels['lastlogin'] = 'Zadnja prijava (login)'; $labels['defaultidentity'] = 'Preddefinirani identitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/hu_HU.inc b/plugins/userinfo/localization/hu_HU.inc index f09f42eff..8854f081d 100644 --- a/plugins/userinfo/localization/hu_HU.inc +++ b/plugins/userinfo/localization/hu_HU.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Felhasználói információ'; $labels['created'] = 'Létrehozva'; $labels['lastlogin'] = 'Utolsó bejelentkezés'; $labels['defaultidentity'] = 'Alapértelmezett azonosító'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/hy_AM.inc b/plugins/userinfo/localization/hy_AM.inc index 2293329d8..ea3667ea0 100644 --- a/plugins/userinfo/localization/hy_AM.inc +++ b/plugins/userinfo/localization/hy_AM.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Օգտվողի տվյալներ'; $labels['created'] = 'Ստեղծված'; $labels['lastlogin'] = 'Վերջին մուտքը`'; $labels['defaultidentity'] = 'Լռելյալ ինքնությունն'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ia.inc b/plugins/userinfo/localization/ia.inc index bb53ba870..583ee6085 100644 --- a/plugins/userinfo/localization/ia.inc +++ b/plugins/userinfo/localization/ia.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Information de usator'; $labels['created'] = 'Create'; $labels['lastlogin'] = 'Ultime initio de session'; $labels['defaultidentity'] = 'Identitate predeterminate'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/id_ID.inc b/plugins/userinfo/localization/id_ID.inc index 59ab0d486..c726536af 100644 --- a/plugins/userinfo/localization/id_ID.inc +++ b/plugins/userinfo/localization/id_ID.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informasi pengguna'; $labels['created'] = 'Telah dibuat'; $labels['lastlogin'] = 'Masuk Terakhir'; $labels['defaultidentity'] = 'Identitas Standar'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/it_IT.inc b/plugins/userinfo/localization/it_IT.inc index 33b72114f..97cbaff25 100644 --- a/plugins/userinfo/localization/it_IT.inc +++ b/plugins/userinfo/localization/it_IT.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informazioni utente'; $labels['created'] = 'Creato'; $labels['lastlogin'] = 'Ultimo Login'; $labels['defaultidentity'] = 'Identità predefinita'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ja_JP.inc b/plugins/userinfo/localization/ja_JP.inc index bf8d0aab8..a9f11bd54 100644 --- a/plugins/userinfo/localization/ja_JP.inc +++ b/plugins/userinfo/localization/ja_JP.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'ユーザー情報'; $labels['created'] = '作成日時'; $labels['lastlogin'] = '最後のログイン'; $labels['defaultidentity'] = '既定の識別情報'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/km_KH.inc b/plugins/userinfo/localization/km_KH.inc index 554fe3773..bc9ca6034 100644 --- a/plugins/userinfo/localization/km_KH.inc +++ b/plugins/userinfo/localization/km_KH.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'ព័តមានអ្នកប្រើប្រាស់'; $labels['created'] = 'បាន​បង្កើត'; $labels['lastlogin'] = 'ចុះឈ្មោះចូលចុងក្រោយ'; $labels['defaultidentity'] = 'អត្តសញ្ញាណ​លំនាំដើម'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ko_KR.inc b/plugins/userinfo/localization/ko_KR.inc index ec8651263..781e030a1 100644 --- a/plugins/userinfo/localization/ko_KR.inc +++ b/plugins/userinfo/localization/ko_KR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = '사용자 정보'; $labels['created'] = '생성됨'; $labels['lastlogin'] = '마지막 로그인'; $labels['defaultidentity'] = '기본 신분증'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ku.inc b/plugins/userinfo/localization/ku.inc index 80b436632..c03a482eb 100644 --- a/plugins/userinfo/localization/ku.inc +++ b/plugins/userinfo/localization/ku.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'nawnişani bakar henar'; $labels['created'] = 'Hat afirandin'; $labels['lastlogin'] = 'axrin hatna jurawa'; $labels['defaultidentity'] = 'Nasnameya Pêşsalixbûyî'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/lb_LU.inc b/plugins/userinfo/localization/lb_LU.inc index d8394f6d8..a4e4368b7 100644 --- a/plugins/userinfo/localization/lb_LU.inc +++ b/plugins/userinfo/localization/lb_LU.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Benotzer-Info'; $labels['created'] = 'Erstallt'; $labels['lastlogin'] = 'Leschte Login'; $labels['defaultidentity'] = 'Standard-Identitéit'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/lt_LT.inc b/plugins/userinfo/localization/lt_LT.inc index 88ce427c0..f7651b33d 100644 --- a/plugins/userinfo/localization/lt_LT.inc +++ b/plugins/userinfo/localization/lt_LT.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informacija apie naudotoją'; $labels['created'] = 'Sukurtas'; $labels['lastlogin'] = 'Paskutinį kartą prisijungė'; $labels['defaultidentity'] = 'Numatytoji tapatybė'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/lv_LV.inc b/plugins/userinfo/localization/lv_LV.inc index 9d2a97cbd..e5c227ca7 100644 --- a/plugins/userinfo/localization/lv_LV.inc +++ b/plugins/userinfo/localization/lv_LV.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informācija par lietotāju'; $labels['created'] = 'Izveidots'; $labels['lastlogin'] = 'Pēdējā pieteikšanās'; $labels['defaultidentity'] = 'Noklusētā identitāte'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ml_IN.inc b/plugins/userinfo/localization/ml_IN.inc index 6b16e50ec..a9535121f 100644 --- a/plugins/userinfo/localization/ml_IN.inc +++ b/plugins/userinfo/localization/ml_IN.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'ഉപയോക്താവിന്റെ വിവരം'; $labels['created'] = 'നിര്‍മ്മിച്ചു'; $labels['lastlogin'] = 'അവസാന പ്രവേശനം'; $labels['defaultidentity'] = 'സാധാരണ വ്യക്തിത്വം'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/mr_IN.inc b/plugins/userinfo/localization/mr_IN.inc index 52bbde652..ba9943bd4 100644 --- a/plugins/userinfo/localization/mr_IN.inc +++ b/plugins/userinfo/localization/mr_IN.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'वापरकर्त्याची माहिती'; $labels['created'] = 'निर्माण केलेले'; $labels['lastlogin'] = 'Last Login'; $labels['defaultidentity'] = 'Default Identity'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/nb_NO.inc b/plugins/userinfo/localization/nb_NO.inc index f674375ef..15e14bc39 100644 --- a/plugins/userinfo/localization/nb_NO.inc +++ b/plugins/userinfo/localization/nb_NO.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Brukerinformasjon'; $labels['created'] = 'Opprettet'; $labels['lastlogin'] = 'Sist logget inn'; $labels['defaultidentity'] = 'Standard identitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/nl_NL.inc b/plugins/userinfo/localization/nl_NL.inc index 8c46ca6c4..46323d6aa 100644 --- a/plugins/userinfo/localization/nl_NL.inc +++ b/plugins/userinfo/localization/nl_NL.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Gebruikersinformatie'; $labels['created'] = 'Aangemaakt'; $labels['lastlogin'] = 'Laatste aanmelding'; $labels['defaultidentity'] = 'Standaardidentiteit'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/nn_NO.inc b/plugins/userinfo/localization/nn_NO.inc index 749935414..06f45266b 100644 --- a/plugins/userinfo/localization/nn_NO.inc +++ b/plugins/userinfo/localization/nn_NO.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Brukarinfo'; $labels['created'] = 'Laga'; $labels['lastlogin'] = 'Sist logga inn'; $labels['defaultidentity'] = 'Standardidentitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/pl_PL.inc b/plugins/userinfo/localization/pl_PL.inc index abdb043c7..6f2568791 100644 --- a/plugins/userinfo/localization/pl_PL.inc +++ b/plugins/userinfo/localization/pl_PL.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informacje'; $labels['created'] = 'Utworzony'; $labels['lastlogin'] = 'Ostatnie logowanie'; $labels['defaultidentity'] = 'Domyślna tożsamość'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/pt_BR.inc b/plugins/userinfo/localization/pt_BR.inc index fad85c18f..00dd6b8b2 100644 --- a/plugins/userinfo/localization/pt_BR.inc +++ b/plugins/userinfo/localization/pt_BR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informações do usuário'; $labels['created'] = 'Criado'; $labels['lastlogin'] = 'Último Login'; $labels['defaultidentity'] = 'Identidade Padrão'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/pt_PT.inc b/plugins/userinfo/localization/pt_PT.inc index 1ea1b5cbf..a24b9b741 100644 --- a/plugins/userinfo/localization/pt_PT.inc +++ b/plugins/userinfo/localization/pt_PT.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informação do utilizador'; $labels['created'] = 'Criado'; $labels['lastlogin'] = 'Último acesso'; $labels['defaultidentity'] = 'Identidade pré-definida'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ro_RO.inc b/plugins/userinfo/localization/ro_RO.inc old mode 100755 new mode 100644 index 25c4d1059..b067b1ae5 --- a/plugins/userinfo/localization/ro_RO.inc +++ b/plugins/userinfo/localization/ro_RO.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Informatii utilisator'; $labels['created'] = 'Data creatiei'; $labels['lastlogin'] = 'Ultima conectare'; $labels['defaultidentity'] = 'Identitate principala'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ru_RU.inc b/plugins/userinfo/localization/ru_RU.inc index cc9dd5a11..166349d12 100644 --- a/plugins/userinfo/localization/ru_RU.inc +++ b/plugins/userinfo/localization/ru_RU.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Информация'; $labels['created'] = 'Создан'; $labels['lastlogin'] = 'Последний вход'; $labels['defaultidentity'] = 'Профиль по умолчанию'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/sk_SK.inc b/plugins/userinfo/localization/sk_SK.inc index 16339871d..6a942e437 100644 --- a/plugins/userinfo/localization/sk_SK.inc +++ b/plugins/userinfo/localization/sk_SK.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Užívateľské informácie'; $labels['created'] = 'Vytvorené'; $labels['lastlogin'] = 'Posledné prihlásenie'; $labels['defaultidentity'] = 'Štandardná identita'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/sl_SI.inc b/plugins/userinfo/localization/sl_SI.inc index 2e384c82c..f4712cf9e 100644 --- a/plugins/userinfo/localization/sl_SI.inc +++ b/plugins/userinfo/localization/sl_SI.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Podatki o uporabniku'; $labels['created'] = 'Ustvarjen'; $labels['lastlogin'] = 'Zadnja prijava'; $labels['defaultidentity'] = 'Privzeta identiteta'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/sr_CS.inc b/plugins/userinfo/localization/sr_CS.inc index f4d869098..b2e585cbb 100644 --- a/plugins/userinfo/localization/sr_CS.inc +++ b/plugins/userinfo/localization/sr_CS.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Подаци о кориснику'; $labels['created'] = 'Направљено'; $labels['lastlogin'] = 'Последњи Логин'; $labels['defaultidentity'] = 'подразумевани идентитет'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/sv_SE.inc b/plugins/userinfo/localization/sv_SE.inc index 0b8d5fedd..9c9a4e3ad 100644 --- a/plugins/userinfo/localization/sv_SE.inc +++ b/plugins/userinfo/localization/sv_SE.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Användarinfo'; $labels['created'] = 'Skapad'; $labels['lastlogin'] = 'Senast inloggad'; $labels['defaultidentity'] = 'Standardidentitet'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ti.inc b/plugins/userinfo/localization/ti.inc index a1fa4f301..3775561eb 100644 --- a/plugins/userinfo/localization/ti.inc +++ b/plugins/userinfo/localization/ti.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'ሓብሬታ በዓል ዋና '; $labels['created'] = 'እዋን ፍጥረት'; $labels['lastlogin'] = 'እዋን እታው'; diff --git a/plugins/userinfo/localization/tr_TR.inc b/plugins/userinfo/localization/tr_TR.inc index 3d8a0d2da..ceddca16e 100644 --- a/plugins/userinfo/localization/tr_TR.inc +++ b/plugins/userinfo/localization/tr_TR.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Kullanıcı bilgisi'; $labels['created'] = 'Oluşturuldu'; $labels['lastlogin'] = 'Son Giriş'; $labels['defaultidentity'] = 'Öntanımlı kimlik'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/uk_UA.inc b/plugins/userinfo/localization/uk_UA.inc index fe2d54b27..2de8fc4a6 100644 --- a/plugins/userinfo/localization/uk_UA.inc +++ b/plugins/userinfo/localization/uk_UA.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Інформація'; $labels['created'] = 'Створено'; $labels['lastlogin'] = 'Останній захід'; $labels['defaultidentity'] = 'Профіль за замовчуванням'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/vi_VN.inc b/plugins/userinfo/localization/vi_VN.inc index 46553c76a..11e725264 100644 --- a/plugins/userinfo/localization/vi_VN.inc +++ b/plugins/userinfo/localization/vi_VN.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = 'Thông tin người dùng'; $labels['created'] = 'Được tạo'; $labels['lastlogin'] = 'Lần đăng nhập cuối'; $labels['defaultidentity'] = 'Nhận diện mặc định'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/zh_CN.inc b/plugins/userinfo/localization/zh_CN.inc index 2b06ab218..1445d30c1 100644 --- a/plugins/userinfo/localization/zh_CN.inc +++ b/plugins/userinfo/localization/zh_CN.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = '用户信息'; $labels['created'] = '创建于'; $labels['lastlogin'] = '最近登录'; $labels['defaultidentity'] = '默认身份'; - ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/zh_TW.inc b/plugins/userinfo/localization/zh_TW.inc index 05b996629..b9caef974 100644 --- a/plugins/userinfo/localization/zh_TW.inc +++ b/plugins/userinfo/localization/zh_TW.inc @@ -16,10 +16,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ -$labels = array(); $labels['userinfo'] = '使用者資訊'; $labels['created'] = '建立時間'; $labels['lastlogin'] = '上次登入'; $labels['defaultidentity'] = '預設身份'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ar.inc b/plugins/vcard_attachments/localization/ar.inc index 51cc620a3..b7f547399 100644 --- a/plugins/vcard_attachments/localization/ar.inc +++ b/plugins/vcard_attachments/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'إضافة vCard إلى دفتر العناوين'; $labels['vcardsavefailed'] = 'غير قادر على حفظ بصيغة vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ar_SA.inc b/plugins/vcard_attachments/localization/ar_SA.inc index 7dca8dfa1..0e126274d 100644 --- a/plugins/vcard_attachments/localization/ar_SA.inc +++ b/plugins/vcard_attachments/localization/ar_SA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'إضافة صيغة vCard إلى دفتر العناوين'; $labels['vcardsavefailed'] = 'غير قادر على الحفظ بصيغة vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/az_AZ.inc b/plugins/vcard_attachments/localization/az_AZ.inc index 85fbf7fa5..5d32d928b 100644 --- a/plugins/vcard_attachments/localization/az_AZ.inc +++ b/plugins/vcard_attachments/localization/az_AZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'vCard-ı kontakta daxil et'; $labels['vcardsavefailed'] = 'vCard-ı saxlamaq alınmadı'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/be_BE.inc b/plugins/vcard_attachments/localization/be_BE.inc index eb8208e74..1fb1416ea 100644 --- a/plugins/vcard_attachments/localization/be_BE.inc +++ b/plugins/vcard_attachments/localization/be_BE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Дадаць vCard у адрасную кнігу'; $labels['vcardsavefailed'] = 'Немагчыма захаваць vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/bg_BG.inc b/plugins/vcard_attachments/localization/bg_BG.inc index 4d92d55f4..2e5c78c6a 100644 --- a/plugins/vcard_attachments/localization/bg_BG.inc +++ b/plugins/vcard_attachments/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Добавяне на vCard към адресната книга'; $labels['vcardsavefailed'] = 'Невъзможен запис на vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/bs_BA.inc b/plugins/vcard_attachments/localization/bs_BA.inc index e13ccc739..2b15e3afc 100644 --- a/plugins/vcard_attachments/localization/bs_BA.inc +++ b/plugins/vcard_attachments/localization/bs_BA.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Dodaj vCard u adresar'; $labels['vcardsavefailed'] = 'Nije moguće sačuvati vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ca_ES.inc b/plugins/vcard_attachments/localization/ca_ES.inc index b0f36d95a..6ea53b879 100644 --- a/plugins/vcard_attachments/localization/ca_ES.inc +++ b/plugins/vcard_attachments/localization/ca_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Afegeix la vCard a la llibreta d\'adreces'; $labels['vcardsavefailed'] = 'No s\'ha pogut desar la vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/cs_CZ.inc b/plugins/vcard_attachments/localization/cs_CZ.inc index dc8e1f84c..c1b32bdbf 100644 --- a/plugins/vcard_attachments/localization/cs_CZ.inc +++ b/plugins/vcard_attachments/localization/cs_CZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Přidat vCard do adresáře'; $labels['vcardsavefailed'] = 'Nelze uložit vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/cy_GB.inc b/plugins/vcard_attachments/localization/cy_GB.inc index 24d32f48e..25030d89f 100644 --- a/plugins/vcard_attachments/localization/cy_GB.inc +++ b/plugins/vcard_attachments/localization/cy_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Ychwanegu vCard i\'r llyfr cyfeiriadau'; $labels['vcardsavefailed'] = 'Methwyd cadw\'r vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/da_DK.inc b/plugins/vcard_attachments/localization/da_DK.inc index bc9c2bef1..76f1c815a 100644 --- a/plugins/vcard_attachments/localization/da_DK.inc +++ b/plugins/vcard_attachments/localization/da_DK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Tilføj vCard til adressebogen'; $labels['vcardsavefailed'] = 'Kan ikke gemme dette vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/de_CH.inc b/plugins/vcard_attachments/localization/de_CH.inc index 577586994..a4e2904aa 100644 --- a/plugins/vcard_attachments/localization/de_CH.inc +++ b/plugins/vcard_attachments/localization/de_CH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Kontakt im Adressbuch speichern'; $labels['vcardsavefailed'] = 'Der Kontakt konnte nicht gespeichert werden'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/de_DE.inc b/plugins/vcard_attachments/localization/de_DE.inc index 577586994..a4e2904aa 100644 --- a/plugins/vcard_attachments/localization/de_DE.inc +++ b/plugins/vcard_attachments/localization/de_DE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Kontakt im Adressbuch speichern'; $labels['vcardsavefailed'] = 'Der Kontakt konnte nicht gespeichert werden'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/el_GR.inc b/plugins/vcard_attachments/localization/el_GR.inc index e0a6db69b..820523b4b 100644 --- a/plugins/vcard_attachments/localization/el_GR.inc +++ b/plugins/vcard_attachments/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Προσθήκη vCard στο βιβλίο διευθύνσεων'; $labels['vcardsavefailed'] = 'Δεν είναι δυνατή η αποθήκευση του vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/en_GB.inc b/plugins/vcard_attachments/localization/en_GB.inc index a52a93228..34c5eeb10 100644 --- a/plugins/vcard_attachments/localization/en_GB.inc +++ b/plugins/vcard_attachments/localization/en_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Add vCard to addressbook'; $labels['vcardsavefailed'] = 'Unable to save vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/eo.inc b/plugins/vcard_attachments/localization/eo.inc index e98ac1971..79f1aefcd 100644 --- a/plugins/vcard_attachments/localization/eo.inc +++ b/plugins/vcard_attachments/localization/eo.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Aldoni vCard al adresaro'; $labels['vcardsavefailed'] = 'vCard ne konserveblas'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/es_AR.inc b/plugins/vcard_attachments/localization/es_AR.inc index c60515f37..1c15d6516 100644 --- a/plugins/vcard_attachments/localization/es_AR.inc +++ b/plugins/vcard_attachments/localization/es_AR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Agregar vCard a la libreta de direcciones'; $labels['vcardsavefailed'] = 'Imposible guardar vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/es_ES.inc b/plugins/vcard_attachments/localization/es_ES.inc index 55ab6b6a1..8e92f81fb 100644 --- a/plugins/vcard_attachments/localization/es_ES.inc +++ b/plugins/vcard_attachments/localization/es_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Añadir la tarjeta a la libreta de direcciones'; $labels['vcardsavefailed'] = 'No ha sido posible guardar la tarjeta'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/et_EE.inc b/plugins/vcard_attachments/localization/et_EE.inc index dd74b8f66..a18c5687f 100644 --- a/plugins/vcard_attachments/localization/et_EE.inc +++ b/plugins/vcard_attachments/localization/et_EE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Lisa vCard aadressiraamatusse'; $labels['vcardsavefailed'] = 'vCard salvestamine nurjus'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/eu_ES.inc b/plugins/vcard_attachments/localization/eu_ES.inc index b3b82b751..ca9d22424 100644 --- a/plugins/vcard_attachments/localization/eu_ES.inc +++ b/plugins/vcard_attachments/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Gehitu vCard helbide-liburura'; $labels['vcardsavefailed'] = 'Ezin da vCard gorde'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fa_IR.inc b/plugins/vcard_attachments/localization/fa_IR.inc index 5b28d566f..061280299 100644 --- a/plugins/vcard_attachments/localization/fa_IR.inc +++ b/plugins/vcard_attachments/localization/fa_IR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'افزودن vCard به دفترچه آدرس'; $labels['vcardsavefailed'] = 'ناتوان در ذخیره vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fi_FI.inc b/plugins/vcard_attachments/localization/fi_FI.inc index 254745609..f063f1679 100644 --- a/plugins/vcard_attachments/localization/fi_FI.inc +++ b/plugins/vcard_attachments/localization/fi_FI.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Lisää vCard osoitekirjaan'; $labels['vcardsavefailed'] = 'vCardin tallennus epäonnistui'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fr_FR.inc b/plugins/vcard_attachments/localization/fr_FR.inc index 03274e2a9..3bbf7d3a5 100644 --- a/plugins/vcard_attachments/localization/fr_FR.inc +++ b/plugins/vcard_attachments/localization/fr_FR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Ajouter la vCard au carnet d\'adresses'; $labels['vcardsavefailed'] = 'Impossible d\'enregistrer la vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/gl_ES.inc b/plugins/vcard_attachments/localization/gl_ES.inc index 806f6bb7d..03b8de2c7 100644 --- a/plugins/vcard_attachments/localization/gl_ES.inc +++ b/plugins/vcard_attachments/localization/gl_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Engadir vCard ao caderno de enderezos'; $labels['vcardsavefailed'] = 'Non foi posible gardar a vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/he_IL.inc b/plugins/vcard_attachments/localization/he_IL.inc index 2e8716875..2f834be9f 100644 --- a/plugins/vcard_attachments/localization/he_IL.inc +++ b/plugins/vcard_attachments/localization/he_IL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'הוספת כרטיס ביקור בפורמט vCard לספר הכתובות'; $labels['vcardsavefailed'] = 'לא ניתן לשמור את כרטיס הביקור vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hr_HR.inc b/plugins/vcard_attachments/localization/hr_HR.inc index c22f93b5f..74319a53c 100644 --- a/plugins/vcard_attachments/localization/hr_HR.inc +++ b/plugins/vcard_attachments/localization/hr_HR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Dodaj vCard u imenik'; $labels['vcardsavefailed'] = 'Ne mogu pohraniti vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hu_HU.inc b/plugins/vcard_attachments/localization/hu_HU.inc index 4f166b025..ca0a37f78 100644 --- a/plugins/vcard_attachments/localization/hu_HU.inc +++ b/plugins/vcard_attachments/localization/hu_HU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'vCard hozzáadása a címjegyzékhez'; $labels['vcardsavefailed'] = 'Sikertelen a vCard mentése'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hy_AM.inc b/plugins/vcard_attachments/localization/hy_AM.inc index 7bd99aec3..878b11d41 100644 --- a/plugins/vcard_attachments/localization/hy_AM.inc +++ b/plugins/vcard_attachments/localization/hy_AM.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Ավելացնել vCard-ը հասցեագրքում'; $labels['vcardsavefailed'] = 'vCard-ի պահպանումը ձախողվեց'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/id_ID.inc b/plugins/vcard_attachments/localization/id_ID.inc index 8766e613d..b66c97565 100644 --- a/plugins/vcard_attachments/localization/id_ID.inc +++ b/plugins/vcard_attachments/localization/id_ID.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Tambahkan vCard ke buku alamat'; $labels['vcardsavefailed'] = 'Tidak dapat menyimpan vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/it_IT.inc b/plugins/vcard_attachments/localization/it_IT.inc index e91f9414c..f6c0590f3 100644 --- a/plugins/vcard_attachments/localization/it_IT.inc +++ b/plugins/vcard_attachments/localization/it_IT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Aggiungi vCard alla Agenda'; $labels['vcardsavefailed'] = 'Abilita a salvare vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ja_JP.inc b/plugins/vcard_attachments/localization/ja_JP.inc index 0daf160c4..ede254219 100644 --- a/plugins/vcard_attachments/localization/ja_JP.inc +++ b/plugins/vcard_attachments/localization/ja_JP.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'vCardをアドレス帳に追加'; $labels['vcardsavefailed'] = 'vCardを保存できませんでした。'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/km_KH.inc b/plugins/vcard_attachments/localization/km_KH.inc index 5720c0050..84d226b89 100644 --- a/plugins/vcard_attachments/localization/km_KH.inc +++ b/plugins/vcard_attachments/localization/km_KH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'បន្ថែម vCard ទៅសៀវភៅកត់ត្រា'; $labels['vcardsavefailed'] = 'មិនអាចរក្សាទុក vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ko_KR.inc b/plugins/vcard_attachments/localization/ko_KR.inc index 3e787f01b..68277d27b 100644 --- a/plugins/vcard_attachments/localization/ko_KR.inc +++ b/plugins/vcard_attachments/localization/ko_KR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = '주소록에 vCard를 추가'; $labels['vcardsavefailed'] = 'vCard 저장이 불가능함'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lb_LU.inc b/plugins/vcard_attachments/localization/lb_LU.inc index b9d23eaa5..e38111a89 100644 --- a/plugins/vcard_attachments/localization/lb_LU.inc +++ b/plugins/vcard_attachments/localization/lb_LU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'vCard an d\'Adressbuch setzen'; $labels['vcardsavefailed'] = 'vCard kann net gespäichert ginn'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lt_LT.inc b/plugins/vcard_attachments/localization/lt_LT.inc index ca40c90ec..8cbb1af8b 100644 --- a/plugins/vcard_attachments/localization/lt_LT.inc +++ b/plugins/vcard_attachments/localization/lt_LT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Įtraukti vizitinę kortelę į adresų knygą'; $labels['vcardsavefailed'] = 'Įrašyti vizitinės kortelės nepavyko'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lv_LV.inc b/plugins/vcard_attachments/localization/lv_LV.inc index b3e36ff15..5d5cc6d1e 100644 --- a/plugins/vcard_attachments/localization/lv_LV.inc +++ b/plugins/vcard_attachments/localization/lv_LV.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Pievienot vizītkarti adrešu grāmatai'; $labels['vcardsavefailed'] = 'Nevarēja saglabāt vizītkarti'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ml_IN.inc b/plugins/vcard_attachments/localization/ml_IN.inc index 3613eab1b..1e889eec8 100644 --- a/plugins/vcard_attachments/localization/ml_IN.inc +++ b/plugins/vcard_attachments/localization/ml_IN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'വിലാസപുസ്തകത്തിലേക്ക് വികാര്‍ഡ് ചേര്‍ക്കുക'; $labels['vcardsavefailed'] = 'വികാര്‍ഡ് ചേര്‍ക്കാന്‍ പറ്റിയില്ല'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/mr_IN.inc b/plugins/vcard_attachments/localization/mr_IN.inc index 17d1e3db9..c4c5bd424 100644 --- a/plugins/vcard_attachments/localization/mr_IN.inc +++ b/plugins/vcard_attachments/localization/mr_IN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'व्हीकार्ड पत्ते नोंदवहीत समाविष्ट करा'; $labels['vcardsavefailed'] = 'व्हीकार्ड जतन करण्यास असमर्थ'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nb_NO.inc b/plugins/vcard_attachments/localization/nb_NO.inc index c6e4fd4cd..8c531d0d3 100644 --- a/plugins/vcard_attachments/localization/nb_NO.inc +++ b/plugins/vcard_attachments/localization/nb_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Legg til vCard i adresseboken'; $labels['vcardsavefailed'] = 'Ikke i stand til å lagre vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nl_NL.inc b/plugins/vcard_attachments/localization/nl_NL.inc index bcba722b0..b7bdcaaec 100644 --- a/plugins/vcard_attachments/localization/nl_NL.inc +++ b/plugins/vcard_attachments/localization/nl_NL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Voeg vCard toe aan adresboek'; $labels['vcardsavefailed'] = 'Kan vCard niet opslaan'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nn_NO.inc b/plugins/vcard_attachments/localization/nn_NO.inc index 398e08bb4..e7723fbb1 100644 --- a/plugins/vcard_attachments/localization/nn_NO.inc +++ b/plugins/vcard_attachments/localization/nn_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Legg til vCard i adresseboka'; $labels['vcardsavefailed'] = 'Klarte ikkje lagra vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pl_PL.inc b/plugins/vcard_attachments/localization/pl_PL.inc index 036dec5a0..544766f99 100644 --- a/plugins/vcard_attachments/localization/pl_PL.inc +++ b/plugins/vcard_attachments/localization/pl_PL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Dodaj wizytówkę (vCard) do kontaktów'; $labels['vcardsavefailed'] = 'Nie można zapisać wizytówki (vCard)'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pt_BR.inc b/plugins/vcard_attachments/localization/pt_BR.inc index afcc08cbe..5741dde63 100644 --- a/plugins/vcard_attachments/localization/pt_BR.inc +++ b/plugins/vcard_attachments/localization/pt_BR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Adicionar o vCard ao Catálogo de Endereços'; $labels['vcardsavefailed'] = 'Impossível salvar o vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pt_PT.inc b/plugins/vcard_attachments/localization/pt_PT.inc index 5758c91df..15674b0e5 100644 --- a/plugins/vcard_attachments/localization/pt_PT.inc +++ b/plugins/vcard_attachments/localization/pt_PT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Adicionar o vCard ao Livro de Endereços'; $labels['vcardsavefailed'] = 'Não foi possível guardar o vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ro_RO.inc b/plugins/vcard_attachments/localization/ro_RO.inc index 98f68a18a..7bc02fbac 100644 --- a/plugins/vcard_attachments/localization/ro_RO.inc +++ b/plugins/vcard_attachments/localization/ro_RO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Adaugă vCard la agendă'; $labels['vcardsavefailed'] = 'Nu pot salva vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ru_RU.inc b/plugins/vcard_attachments/localization/ru_RU.inc index 851035b95..1c3d556a5 100644 --- a/plugins/vcard_attachments/localization/ru_RU.inc +++ b/plugins/vcard_attachments/localization/ru_RU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Добавить в контакты'; $labels['vcardsavefailed'] = 'Не удалось сохранить vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/si_LK.inc b/plugins/vcard_attachments/localization/si_LK.inc index 5231cc2ec..88ce60b33 100644 --- a/plugins/vcard_attachments/localization/si_LK.inc +++ b/plugins/vcard_attachments/localization/si_LK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'vCard පත ලිපින පොතට එක් කරන්න'; $labels['vcardsavefailed'] = 'vCard පත සුරැකීම අසාර්ථකයි'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sk_SK.inc b/plugins/vcard_attachments/localization/sk_SK.inc index 937ed3307..50697f190 100644 --- a/plugins/vcard_attachments/localization/sk_SK.inc +++ b/plugins/vcard_attachments/localization/sk_SK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Pridať vCard do adresára'; $labels['vcardsavefailed'] = 'Nemôžem uložiť vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sl_SI.inc b/plugins/vcard_attachments/localization/sl_SI.inc index 4335040b4..d6fc1b81d 100644 --- a/plugins/vcard_attachments/localization/sl_SI.inc +++ b/plugins/vcard_attachments/localization/sl_SI.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Dodaj vCard med Stike.'; $labels['vcardsavefailed'] = 'Stika vCard ni bilo mogoče shraniti.'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sr_CS.inc b/plugins/vcard_attachments/localization/sr_CS.inc index b11a48758..c873eb80f 100644 --- a/plugins/vcard_attachments/localization/sr_CS.inc +++ b/plugins/vcard_attachments/localization/sr_CS.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Додај вЦард у Адресар'; $labels['vcardsavefailed'] = 'немоћан сачувати вчард'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sv_SE.inc b/plugins/vcard_attachments/localization/sv_SE.inc index c0e925b8f..05620c700 100644 --- a/plugins/vcard_attachments/localization/sv_SE.inc +++ b/plugins/vcard_attachments/localization/sv_SE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Lägg till vCard i adressbok'; $labels['vcardsavefailed'] = 'Kunde inte spara vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/tr_TR.inc b/plugins/vcard_attachments/localization/tr_TR.inc index a0e0d44ef..ade7b4965 100644 --- a/plugins/vcard_attachments/localization/tr_TR.inc +++ b/plugins/vcard_attachments/localization/tr_TR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Vcard\'ı adres deferine ekle'; $labels['vcardsavefailed'] = 'vCard kaydedilemedi'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/uk_UA.inc b/plugins/vcard_attachments/localization/uk_UA.inc index ed8eab35f..a0190e64f 100644 --- a/plugins/vcard_attachments/localization/uk_UA.inc +++ b/plugins/vcard_attachments/localization/uk_UA.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Додати vCard до контактів'; $labels['vcardsavefailed'] = 'Не вдалось зберегти vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/vi_VN.inc b/plugins/vcard_attachments/localization/vi_VN.inc index 247d61eb9..19597a8d9 100644 --- a/plugins/vcard_attachments/localization/vi_VN.inc +++ b/plugins/vcard_attachments/localization/vi_VN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = 'Thêm vCard vào sổ địa chỉ'; $labels['vcardsavefailed'] = 'Không thể lưu vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/zh_CN.inc b/plugins/vcard_attachments/localization/zh_CN.inc index 5ff81a806..fb4876276 100644 --- a/plugins/vcard_attachments/localization/zh_CN.inc +++ b/plugins/vcard_attachments/localization/zh_CN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = '添加 vCard 至地址簿中'; $labels['vcardsavefailed'] = '无法保存 vCard'; - ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/zh_TW.inc b/plugins/vcard_attachments/localization/zh_TW.inc index 4ed21c2a7..18ef8e4bc 100644 --- a/plugins/vcard_attachments/localization/zh_TW.inc +++ b/plugins/vcard_attachments/localization/zh_TW.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ -$labels = array(); $labels['addvcardmsg'] = '加入 vCard 到通訊錄'; $labels['vcardsavefailed'] = '無法儲存 vCard'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar.inc b/plugins/zipdownload/localization/ar.inc index 5926d5db6..83c0bc037 100644 --- a/plugins/zipdownload/localization/ar.inc +++ b/plugins/zipdownload/localization/ar.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'تنزيل كل المرفقات'; $labels['downloadfolder'] = 'تنزيل المجلد'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar_SA.inc b/plugins/zipdownload/localization/ar_SA.inc index 8ac024c9f..11593d386 100644 --- a/plugins/zipdownload/localization/ar_SA.inc +++ b/plugins/zipdownload/localization/ar_SA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'تحميل جميع المرفقات'; $labels['downloadfolder'] = 'تحميل المجلد'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/az_AZ.inc b/plugins/zipdownload/localization/az_AZ.inc index e23eaa1f6..73de9b94d 100644 --- a/plugins/zipdownload/localization/az_AZ.inc +++ b/plugins/zipdownload/localization/az_AZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Bütün qoşmaları endir'; $labels['downloadfolder'] = 'Qovluğu endir'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/be_BE.inc b/plugins/zipdownload/localization/be_BE.inc index 27867439b..ee3e04a48 100644 --- a/plugins/zipdownload/localization/be_BE.inc +++ b/plugins/zipdownload/localization/be_BE.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Спампаваць усе далучэнні'; $labels['downloadfolder'] = 'Спампаваць папку'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/bg_BG.inc b/plugins/zipdownload/localization/bg_BG.inc index 9ff93d620..0e8d12c4a 100644 --- a/plugins/zipdownload/localization/bg_BG.inc +++ b/plugins/zipdownload/localization/bg_BG.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Изтегляне на всички прикачени файлове'; $labels['downloadfolder'] = 'Изтегляне на папка'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/br.inc b/plugins/zipdownload/localization/br.inc index 6e6cdb342..29d4d7a59 100644 --- a/plugins/zipdownload/localization/br.inc +++ b/plugins/zipdownload/localization/br.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Pellgargañ an holl stagadennoù'; $labels['downloadfolder'] = 'Pellgargañ an teuliad'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/bs_BA.inc b/plugins/zipdownload/localization/bs_BA.inc index 8c727987d..64fd83ae6 100644 --- a/plugins/zipdownload/localization/bs_BA.inc +++ b/plugins/zipdownload/localization/bs_BA.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Preuzmi sve priloge'; $labels['downloadfolder'] = 'Preuzmi folder'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ca_ES.inc b/plugins/zipdownload/localization/ca_ES.inc index 423dae2fd..c51efd08f 100644 --- a/plugins/zipdownload/localization/ca_ES.inc +++ b/plugins/zipdownload/localization/ca_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Descarregar tots els adjunts'; $labels['downloadfolder'] = 'Descarregar carpeta'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/cs_CZ.inc b/plugins/zipdownload/localization/cs_CZ.inc index 07f9676ac..4d7db470e 100644 --- a/plugins/zipdownload/localization/cs_CZ.inc +++ b/plugins/zipdownload/localization/cs_CZ.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Stáhnout všechny přílohy'; $labels['downloadfolder'] = 'Stáhnout složku'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/cy_GB.inc b/plugins/zipdownload/localization/cy_GB.inc index 412fd2261..89956eaba 100644 --- a/plugins/zipdownload/localization/cy_GB.inc +++ b/plugins/zipdownload/localization/cy_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Llwytho lawr holl atodiadau'; $labels['downloadfolder'] = 'Ffolder llwytho lawr'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/da_DK.inc b/plugins/zipdownload/localization/da_DK.inc index ced645ab2..bf927bccc 100644 --- a/plugins/zipdownload/localization/da_DK.inc +++ b/plugins/zipdownload/localization/da_DK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Download alle som .zip-fil'; $labels['downloadfolder'] = 'Download folder som .zip-fil'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/de_CH.inc b/plugins/zipdownload/localization/de_CH.inc index 6106c2c72..2d31a61bd 100644 --- a/plugins/zipdownload/localization/de_CH.inc +++ b/plugins/zipdownload/localization/de_CH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Alle Anhänge herunterladen'; $labels['downloadfolder'] = 'Ordner herunterladen'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/de_DE.inc b/plugins/zipdownload/localization/de_DE.inc index 6106c2c72..2d31a61bd 100644 --- a/plugins/zipdownload/localization/de_DE.inc +++ b/plugins/zipdownload/localization/de_DE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Alle Anhänge herunterladen'; $labels['downloadfolder'] = 'Ordner herunterladen'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/el_GR.inc b/plugins/zipdownload/localization/el_GR.inc index a71df8277..9ff390f06 100644 --- a/plugins/zipdownload/localization/el_GR.inc +++ b/plugins/zipdownload/localization/el_GR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Λυψη ολων των συννημενων'; $labels['downloadfolder'] = 'Λυψη φακελου'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/en_GB.inc b/plugins/zipdownload/localization/en_GB.inc index aee8a5e15..1a9a329be 100644 --- a/plugins/zipdownload/localization/en_GB.inc +++ b/plugins/zipdownload/localization/en_GB.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Download all attachments'; $labels['downloadfolder'] = 'Download folder'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eo.inc b/plugins/zipdownload/localization/eo.inc index 4a43669c7..b4571e4f8 100644 --- a/plugins/zipdownload/localization/eo.inc +++ b/plugins/zipdownload/localization/eo.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Elŝuti ĉiujn kunsendaĵojn'; $labels['downloadfolder'] = 'Elŝuti dosierujon'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/es_AR.inc b/plugins/zipdownload/localization/es_AR.inc index 6240e3bce..ee6a7eae0 100644 --- a/plugins/zipdownload/localization/es_AR.inc +++ b/plugins/zipdownload/localization/es_AR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Descargar Todo'; $labels['downloadfolder'] = 'Descargar carpeta'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/es_ES.inc b/plugins/zipdownload/localization/es_ES.inc index 315362f1c..53404d7f1 100644 --- a/plugins/zipdownload/localization/es_ES.inc +++ b/plugins/zipdownload/localization/es_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Descargar todos los adjuntos'; $labels['downloadfolder'] = 'Descargar carpeta'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/et_EE.inc b/plugins/zipdownload/localization/et_EE.inc index 6f03e33c0..9b4dd56ee 100644 --- a/plugins/zipdownload/localization/et_EE.inc +++ b/plugins/zipdownload/localization/et_EE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Laadi alla kõik manused'; $labels['downloadfolder'] = 'Allalaadimiste kaust'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eu_ES.inc b/plugins/zipdownload/localization/eu_ES.inc index 40ea484e2..8707197fd 100644 --- a/plugins/zipdownload/localization/eu_ES.inc +++ b/plugins/zipdownload/localization/eu_ES.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Deskargatu eranskin guztiak'; $labels['downloadfolder'] = 'Deskargatu karpeta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fa_AF.inc b/plugins/zipdownload/localization/fa_AF.inc index e903ccc3d..65405d5b8 100644 --- a/plugins/zipdownload/localization/fa_AF.inc +++ b/plugins/zipdownload/localization/fa_AF.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'بارگزاری همه ضمیمه ها'; $labels['downloadfolder'] = 'بارگزاری پوشه'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fa_IR.inc b/plugins/zipdownload/localization/fa_IR.inc index 41585688e..b9ff0cc27 100644 --- a/plugins/zipdownload/localization/fa_IR.inc +++ b/plugins/zipdownload/localization/fa_IR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'بارگیری همه پیوست‌ها'; $labels['downloadfolder'] = 'بارگیری پوشه'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fi_FI.inc b/plugins/zipdownload/localization/fi_FI.inc index e40aea9b3..82c766a08 100644 --- a/plugins/zipdownload/localization/fi_FI.inc +++ b/plugins/zipdownload/localization/fi_FI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Lataa kaikki liitteet'; $labels['downloadfolder'] = 'Lataa kansio'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fr_FR.inc b/plugins/zipdownload/localization/fr_FR.inc index 307f0b2f6..be6e7cecf 100644 --- a/plugins/zipdownload/localization/fr_FR.inc +++ b/plugins/zipdownload/localization/fr_FR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Télécharger toutes les pièces jointes'; $labels['downloadfolder'] = 'Télécharger le répertoire'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/gl_ES.inc b/plugins/zipdownload/localization/gl_ES.inc index 3925fca5b..7569aece6 100644 --- a/plugins/zipdownload/localization/gl_ES.inc +++ b/plugins/zipdownload/localization/gl_ES.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Descargar tódolos adxuntos'; $labels['downloadfolder'] = 'Descargar o cartafol'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/he_IL.inc b/plugins/zipdownload/localization/he_IL.inc index 0ba0fcff8..e0ed63521 100644 --- a/plugins/zipdownload/localization/he_IL.inc +++ b/plugins/zipdownload/localization/he_IL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'להוריד את כל הצרופות'; $labels['downloadfolder'] = 'תיקיית צרופות'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/hu_HU.inc b/plugins/zipdownload/localization/hu_HU.inc index 7b8ce85dc..f7051957d 100644 --- a/plugins/zipdownload/localization/hu_HU.inc +++ b/plugins/zipdownload/localization/hu_HU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Összes csatolmány letöltése'; $labels['downloadfolder'] = 'Könyvtár letöltése'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/id_ID.inc b/plugins/zipdownload/localization/id_ID.inc index 1e5901066..f61e89f6c 100644 --- a/plugins/zipdownload/localization/id_ID.inc +++ b/plugins/zipdownload/localization/id_ID.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Unduh semua lampiran'; $labels['downloadfolder'] = 'Folder download'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/it_IT.inc b/plugins/zipdownload/localization/it_IT.inc index 4ea8a543d..776dae86e 100644 --- a/plugins/zipdownload/localization/it_IT.inc +++ b/plugins/zipdownload/localization/it_IT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Scarica tutti gli allegati'; $labels['downloadfolder'] = 'Scarica cartella'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ja_JP.inc b/plugins/zipdownload/localization/ja_JP.inc index c606658b4..3fcc76bb5 100644 --- a/plugins/zipdownload/localization/ja_JP.inc +++ b/plugins/zipdownload/localization/ja_JP.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'すべての添付ファイルをダウンロード'; $labels['downloadfolder'] = 'ダウンロード先のフォルダー'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/km_KH.inc b/plugins/zipdownload/localization/km_KH.inc index 722e0c8ce..cd48bc881 100644 --- a/plugins/zipdownload/localization/km_KH.inc +++ b/plugins/zipdownload/localization/km_KH.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'ទាញយក ឯកសារភ្ជាប់ទាំងអស់'; $labels['downloadfolder'] = 'ទាញយក ថតឯកសារ'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ko_KR.inc b/plugins/zipdownload/localization/ko_KR.inc index 3859b0830..625be7a40 100644 --- a/plugins/zipdownload/localization/ko_KR.inc +++ b/plugins/zipdownload/localization/ko_KR.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = '모든 첨부파일을 다운로드'; $labels['downloadfolder'] = '다운로드 폴더'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lb_LU.inc b/plugins/zipdownload/localization/lb_LU.inc index 6721c51cb..9aa9153bb 100644 --- a/plugins/zipdownload/localization/lb_LU.inc +++ b/plugins/zipdownload/localization/lb_LU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'All d\'Unhäng eroflueden'; $labels['downloadfolder'] = 'Dossier eroflueden'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lt_LT.inc b/plugins/zipdownload/localization/lt_LT.inc index 08a5818cd..27f8d9761 100644 --- a/plugins/zipdownload/localization/lt_LT.inc +++ b/plugins/zipdownload/localization/lt_LT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Atsisiųsti visus priedus'; $labels['downloadfolder'] = 'Atsisiųsti aplanką'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lv_LV.inc b/plugins/zipdownload/localization/lv_LV.inc index 6c757ff30..8f58f922c 100644 --- a/plugins/zipdownload/localization/lv_LV.inc +++ b/plugins/zipdownload/localization/lv_LV.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Lejupielādēt visus pielikumus'; $labels['downloadfolder'] = 'Lejupielādēt mapi'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nb_NO.inc b/plugins/zipdownload/localization/nb_NO.inc index 637df9063..5cbde564b 100644 --- a/plugins/zipdownload/localization/nb_NO.inc +++ b/plugins/zipdownload/localization/nb_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Last ned alle vedlegg'; $labels['downloadfolder'] = 'Nedlastningsmappe'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nl_NL.inc b/plugins/zipdownload/localization/nl_NL.inc index 174dd0f8d..4e69115a7 100644 --- a/plugins/zipdownload/localization/nl_NL.inc +++ b/plugins/zipdownload/localization/nl_NL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Alle bijlagen downloaden'; $labels['downloadfolder'] = 'Map downloaden'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nn_NO.inc b/plugins/zipdownload/localization/nn_NO.inc index 637df9063..5cbde564b 100644 --- a/plugins/zipdownload/localization/nn_NO.inc +++ b/plugins/zipdownload/localization/nn_NO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Last ned alle vedlegg'; $labels['downloadfolder'] = 'Nedlastningsmappe'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pl_PL.inc b/plugins/zipdownload/localization/pl_PL.inc index b0880c062..78a76294e 100644 --- a/plugins/zipdownload/localization/pl_PL.inc +++ b/plugins/zipdownload/localization/pl_PL.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Pobierz wszystkie jako ZIP'; $labels['downloadfolder'] = 'Pobierz folder'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pt_BR.inc b/plugins/zipdownload/localization/pt_BR.inc index 7f80777b4..4612e25fb 100644 --- a/plugins/zipdownload/localization/pt_BR.inc +++ b/plugins/zipdownload/localization/pt_BR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Baixar todos os anexos'; $labels['downloadfolder'] = 'Pasta de baixar arquivos'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pt_PT.inc b/plugins/zipdownload/localization/pt_PT.inc index 8a5afeb06..bd77e81e8 100644 --- a/plugins/zipdownload/localization/pt_PT.inc +++ b/plugins/zipdownload/localization/pt_PT.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Guardar todos os anexos'; $labels['downloadfolder'] = 'Guardar pasta'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ro_RO.inc b/plugins/zipdownload/localization/ro_RO.inc index 7cba54d32..925c75702 100644 --- a/plugins/zipdownload/localization/ro_RO.inc +++ b/plugins/zipdownload/localization/ro_RO.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Descarca toate atasamentele.'; $labels['downloadfolder'] = 'Dosar de descărcare'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ru_RU.inc b/plugins/zipdownload/localization/ru_RU.inc index 0b58fa7fa..205463450 100644 --- a/plugins/zipdownload/localization/ru_RU.inc +++ b/plugins/zipdownload/localization/ru_RU.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Загрузить все вложения'; $labels['downloadfolder'] = 'Загрузить папку'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sk_SK.inc b/plugins/zipdownload/localization/sk_SK.inc index b26059cb9..fc02481f7 100644 --- a/plugins/zipdownload/localization/sk_SK.inc +++ b/plugins/zipdownload/localization/sk_SK.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Stiahnuť všetky prílohy'; $labels['downloadfolder'] = 'Priečinok na sťahovanie'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sl_SI.inc b/plugins/zipdownload/localization/sl_SI.inc index b31638c09..2d1da0bea 100644 --- a/plugins/zipdownload/localization/sl_SI.inc +++ b/plugins/zipdownload/localization/sl_SI.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Prenesi vse priponke'; $labels['downloadfolder'] = 'Prenesi mapo'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sr_CS.inc b/plugins/zipdownload/localization/sr_CS.inc index b8d63b3f5..039a289aa 100644 --- a/plugins/zipdownload/localization/sr_CS.inc +++ b/plugins/zipdownload/localization/sr_CS.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Преузми све прилоге'; $labels['downloadfolder'] = 'Фасцикла за преузимање'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sv_SE.inc b/plugins/zipdownload/localization/sv_SE.inc index db8a1a368..d674e623e 100644 --- a/plugins/zipdownload/localization/sv_SE.inc +++ b/plugins/zipdownload/localization/sv_SE.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Hämta alla bifogade filer'; $labels['downloadfolder'] = 'Hämta katalog'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/tr_TR.inc b/plugins/zipdownload/localization/tr_TR.inc index bfdf98a6c..0a5ba7cc6 100644 --- a/plugins/zipdownload/localization/tr_TR.inc +++ b/plugins/zipdownload/localization/tr_TR.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Tüm ek dosyaları indir'; $labels['downloadfolder'] = 'klasörü indir'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/uk_UA.inc b/plugins/zipdownload/localization/uk_UA.inc index 847166652..9e68e19cb 100644 --- a/plugins/zipdownload/localization/uk_UA.inc +++ b/plugins/zipdownload/localization/uk_UA.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Завантажити всі вкладення'; $labels['downloadfolder'] = 'Завантажити теку'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/vi_VN.inc b/plugins/zipdownload/localization/vi_VN.inc index a91b32010..06ae673b2 100644 --- a/plugins/zipdownload/localization/vi_VN.inc +++ b/plugins/zipdownload/localization/vi_VN.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = 'Tải tất cả đính kèm về'; $labels['downloadfolder'] = 'Tải giữ liệu về'; - ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/zh_CN.inc b/plugins/zipdownload/localization/zh_CN.inc index 9bf226fab..2efec2f9b 100644 --- a/plugins/zipdownload/localization/zh_CN.inc +++ b/plugins/zipdownload/localization/zh_CN.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = '下载全部附件'; $labels['downloadfolder'] = '下载文件夹'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/zh_TW.inc b/plugins/zipdownload/localization/zh_TW.inc index cc8d673a1..dab103bb8 100644 --- a/plugins/zipdownload/localization/zh_TW.inc +++ b/plugins/zipdownload/localization/zh_TW.inc @@ -16,8 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ -$labels = array(); $labels['downloadall'] = '下載所有附件'; $labels['downloadfolder'] = '下載資料夾'; - ?> \ No newline at end of file diff --git a/program/localization/ar_SA/labels.inc b/program/localization/ar_SA/labels.inc index cbed4b70a..84369bdb4 100644 --- a/program/localization/ar_SA/labels.inc +++ b/program/localization/ar_SA/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'مرحباً بكم في $product'; $labels['username'] = 'اسم المستخدم'; diff --git a/program/localization/ar_SA/messages.inc b/program/localization/ar_SA/messages.inc index b2a31ad26..41952ea50 100644 --- a/program/localization/ar_SA/messages.inc +++ b/program/localization/ar_SA/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'فشل تسجيل الدخول'; $messages['cookiesdisabled'] = 'المتصفح الخاص بك لا يقبل الكوكيز'; diff --git a/program/localization/ast/labels.inc b/program/localization/ast/labels.inc index d4b3823ea..b6b089d79 100644 --- a/program/localization/ast/labels.inc +++ b/program/localization/ast/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bienllegáu a $product'; $labels['username'] = 'Usuariu'; diff --git a/program/localization/ast/messages.inc b/program/localization/ast/messages.inc index be63c772f..3c68a950e 100644 --- a/program/localization/ast/messages.inc +++ b/program/localization/ast/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = '¡Hebo un fallu!'; $messages['loginfailed'] = 'Contraseña o nome d\'usuariu incorreutu.'; $messages['cookiesdisabled'] = 'El to navegador nun aceuta "cookies'; diff --git a/program/localization/az_AZ/labels.inc b/program/localization/az_AZ/labels.inc index ea1dfe431..935cb54cc 100644 --- a/program/localization/az_AZ/labels.inc +++ b/program/localization/az_AZ/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product-a xoş gəldiniz!'; $labels['username'] = 'İstifadəçi adı'; diff --git a/program/localization/az_AZ/messages.inc b/program/localization/az_AZ/messages.inc index 5e8235060..31b4f6acd 100644 --- a/program/localization/az_AZ/messages.inc +++ b/program/localization/az_AZ/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Xəta baş verdi!'; $messages['loginfailed'] = 'Giriş uğursuz oldu.'; $messages['cookiesdisabled'] = 'Sizin brauzer kukiləri qəbul etmir.'; diff --git a/program/localization/be_BE/labels.inc b/program/localization/be_BE/labels.inc index c945b15dd..82fb11121 100644 --- a/program/localization/be_BE/labels.inc +++ b/program/localization/be_BE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Вітаем у $product'; $labels['username'] = 'Карыстальнік'; diff --git a/program/localization/be_BE/messages.inc b/program/localization/be_BE/messages.inc index 4eb508984..5d3d8235e 100644 --- a/program/localization/be_BE/messages.inc +++ b/program/localization/be_BE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Збой уваходу.'; $messages['cookiesdisabled'] = 'Ваш азіральнік не падтрымлівае кукіс.'; diff --git a/program/localization/ber/labels.inc b/program/localization/ber/labels.inc index 1128b0d4b..939405707 100644 --- a/program/localization/ber/labels.inc +++ b/program/localization/ber/labels.inc @@ -13,6 +13,5 @@ +-----------------------------------------------------------------------+ */ -$labels = array(); $labels['username'] = 'Izwel n'; diff --git a/program/localization/bg_BG/labels.inc b/program/localization/bg_BG/labels.inc index 9195d4679..3233e0eed 100644 --- a/program/localization/bg_BG/labels.inc +++ b/program/localization/bg_BG/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Добре дошли в $product'; $labels['username'] = 'Потребител'; diff --git a/program/localization/bg_BG/messages.inc b/program/localization/bg_BG/messages.inc index 8108e8a70..01480275d 100644 --- a/program/localization/bg_BG/messages.inc +++ b/program/localization/bg_BG/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Възникна грешка!'; $messages['loginfailed'] = 'Неуспешно установяване на самоличност.'; $messages['cookiesdisabled'] = 'Вашият браузър не приема cookies.'; diff --git a/program/localization/bn_BD/labels.inc b/program/localization/bn_BD/labels.inc index 219ff607a..45c08ee84 100644 --- a/program/localization/bn_BD/labels.inc +++ b/program/localization/bn_BD/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'স্বাগতম'; $labels['username'] = 'গ্রাহক নাম (username)'; diff --git a/program/localization/bn_BD/messages.inc b/program/localization/bn_BD/messages.inc index ca8330e00..ac959eec2 100644 --- a/program/localization/bn_BD/messages.inc +++ b/program/localization/bn_BD/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ঢোকা গেল না'; $messages['cookiesdisabled'] = 'আপনার ব্রাউজার, কুকি গ্রহন করে না'; diff --git a/program/localization/br/labels.inc b/program/localization/br/labels.inc index 532fa9dd6..8b609d6a8 100644 --- a/program/localization/br/labels.inc +++ b/program/localization/br/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Degemer mat war $product'; $labels['username'] = 'Anv an arveriad'; diff --git a/program/localization/br/messages.inc b/program/localization/br/messages.inc index e99bee16c..82ffdc097 100644 --- a/program/localization/br/messages.inc +++ b/program/localization/br/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Degouezhet ez eus bet ur fazi !'; $messages['loginfailed'] = 'C\'hwitadenn war kennaskañ'; $messages['cookiesdisabled'] = 'N\'eus ket c\'hoant toupinoù Hor merder'; diff --git a/program/localization/bs_BA/labels.inc b/program/localization/bs_BA/labels.inc index 04db132c2..fd3495af0 100644 --- a/program/localization/bs_BA/labels.inc +++ b/program/localization/bs_BA/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Dobrodošli u $product'; $labels['username'] = 'Korisnik'; diff --git a/program/localization/bs_BA/messages.inc b/program/localization/bs_BA/messages.inc index a9aa1bd55..711cdfabd 100644 --- a/program/localization/bs_BA/messages.inc +++ b/program/localization/bs_BA/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Desila se greška!'; $messages['loginfailed'] = 'Prijava nije uspjela.'; $messages['cookiesdisabled'] = 'Vaš preglednik ne prihvata kolačiće.'; diff --git a/program/localization/ca_ES/labels.inc b/program/localization/ca_ES/labels.inc index b3e404032..34dfb4a9d 100644 --- a/program/localization/ca_ES/labels.inc +++ b/program/localization/ca_ES/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Benvingut a $product'; $labels['username'] = 'Nom d\'usuari'; diff --git a/program/localization/ca_ES/messages.inc b/program/localization/ca_ES/messages.inc index e401e5869..3085fd4fc 100644 --- a/program/localization/ca_ES/messages.inc +++ b/program/localization/ca_ES/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Hi ha hagut un error!'; $messages['loginfailed'] = 'L\'accés ha fallat.'; $messages['cookiesdisabled'] = 'El vostre navegador no accepta cookies.'; diff --git a/program/localization/cs_CZ/labels.inc b/program/localization/cs_CZ/labels.inc index b741c960f..c6903165a 100644 --- a/program/localization/cs_CZ/labels.inc +++ b/program/localization/cs_CZ/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Vítejte v $product'; $labels['username'] = 'Uživatel'; diff --git a/program/localization/cs_CZ/messages.inc b/program/localization/cs_CZ/messages.inc index 26881a0a1..c4a928f8e 100644 --- a/program/localization/cs_CZ/messages.inc +++ b/program/localization/cs_CZ/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Došlo k chybě!'; $messages['loginfailed'] = 'Přihlášení selhalo'; $messages['cookiesdisabled'] = 'Váš prohlížeč nepodporuje cookies, které jsou pro přihlášení nezbytné'; diff --git a/program/localization/cy_GB/labels.inc b/program/localization/cy_GB/labels.inc index 26b4c2717..5249af462 100644 --- a/program/localization/cy_GB/labels.inc +++ b/program/localization/cy_GB/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Croeso i $product'; $labels['username'] = 'Enw defnyddiwr'; diff --git a/program/localization/cy_GB/messages.inc b/program/localization/cy_GB/messages.inc index 4f85adb98..130ec2a2c 100644 --- a/program/localization/cy_GB/messages.inc +++ b/program/localization/cy_GB/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Fe gafwyd gwall!'; $messages['loginfailed'] = 'Methwyd a\'ch mewngofnodi'; $messages['cookiesdisabled'] = 'Nid yw eich porwr yn derbyn cwcis'; diff --git a/program/localization/da_DK/labels.inc b/program/localization/da_DK/labels.inc index 262adf35f..2bf9fa0a5 100644 --- a/program/localization/da_DK/labels.inc +++ b/program/localization/da_DK/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brugernavn'; diff --git a/program/localization/da_DK/messages.inc b/program/localization/da_DK/messages.inc index 36a249960..79d9c4f7f 100644 --- a/program/localization/da_DK/messages.inc +++ b/program/localization/da_DK/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Der opstod en fejl!'; $messages['loginfailed'] = 'Det lykkedes ikke at logge på.'; $messages['cookiesdisabled'] = 'Din browser accepterer ikke cookies.'; diff --git a/program/localization/de_CH/labels.inc b/program/localization/de_CH/labels.inc index aafe33e58..c07443d4b 100644 --- a/program/localization/de_CH/labels.inc +++ b/program/localization/de_CH/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; diff --git a/program/localization/de_CH/messages.inc b/program/localization/de_CH/messages.inc index 3899a9b8e..a46b6b070 100644 --- a/program/localization/de_CH/messages.inc +++ b/program/localization/de_CH/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Fehlermeldung'; $messages['loginfailed'] = 'Login fehlgeschlagen'; $messages['cookiesdisabled'] = 'Ihr Browser akzeptiert keine Cookies'; diff --git a/program/localization/de_DE/labels.inc b/program/localization/de_DE/labels.inc index d7565924a..4da611580 100644 --- a/program/localization/de_DE/labels.inc +++ b/program/localization/de_DE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; diff --git a/program/localization/de_DE/messages.inc b/program/localization/de_DE/messages.inc index c931b026a..815fac4c3 100644 --- a/program/localization/de_DE/messages.inc +++ b/program/localization/de_DE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ein Fehler ist aufgetreten!'; $messages['loginfailed'] = 'Die Anmeldung ist fehlgeschlagen.'; $messages['cookiesdisabled'] = 'Ihr Browser akzeptiert keine Cookies.'; diff --git a/program/localization/el_GR/labels.inc b/program/localization/el_GR/labels.inc index 054cf4990..d17041ccb 100644 --- a/program/localization/el_GR/labels.inc +++ b/program/localization/el_GR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Καλώς ήρθατε στο $product'; $labels['username'] = 'Όνομα Χρήστη'; diff --git a/program/localization/el_GR/messages.inc b/program/localization/el_GR/messages.inc index 0d51c7af6..eba82b569 100644 --- a/program/localization/el_GR/messages.inc +++ b/program/localization/el_GR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Έχει προκύψει κάποιο σφάλμα!'; $messages['loginfailed'] = 'Είσοδος απέτυχε'; $messages['cookiesdisabled'] = 'Ο περιηγητής σας (browser) δεν αποδέχεται cookies'; diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc index dde825be6..f86f3c319 100644 --- a/program/localization/en_GB/labels.inc +++ b/program/localization/en_GB/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Username'; diff --git a/program/localization/en_GB/messages.inc b/program/localization/en_GB/messages.inc index a034268df..5be8ac3a3 100644 --- a/program/localization/en_GB/messages.inc +++ b/program/localization/en_GB/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred.'; $messages['loginfailed'] = 'Login failed.'; $messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; diff --git a/program/localization/eo/labels.inc b/program/localization/eo/labels.inc index cc4271d98..2741eb221 100644 --- a/program/localization/eo/labels.inc +++ b/program/localization/eo/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bonvenon al $product'; $labels['username'] = 'Uzantnomo'; diff --git a/program/localization/eo/messages.inc b/program/localization/eo/messages.inc index 214b86444..75e34efe6 100644 --- a/program/localization/eo/messages.inc +++ b/program/localization/eo/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Eraro okazis!'; $messages['loginfailed'] = 'Malsukcesis ensaluti'; $messages['cookiesdisabled'] = 'Via foliumilo ne akceptas kuketojn'; diff --git a/program/localization/es_AR/labels.inc b/program/localization/es_AR/labels.inc index 01777df79..65c3e4617 100644 --- a/program/localization/es_AR/labels.inc +++ b/program/localization/es_AR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; diff --git a/program/localization/es_AR/messages.inc b/program/localization/es_AR/messages.inc index 34c83e01e..7e5dba9f8 100644 --- a/program/localization/es_AR/messages.inc +++ b/program/localization/es_AR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ha ocurrido un error!'; $messages['loginfailed'] = 'Contraseña o nombre de usuario incorrecto'; $messages['cookiesdisabled'] = 'Su navegador no acepta cookies'; diff --git a/program/localization/es_ES/labels.inc b/program/localization/es_ES/labels.inc index 82b503e22..c2dd4dcbe 100644 --- a/program/localization/es_ES/labels.inc +++ b/program/localization/es_ES/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; diff --git a/program/localization/es_ES/messages.inc b/program/localization/es_ES/messages.inc index c4481a2d6..672db9fb2 100644 --- a/program/localization/es_ES/messages.inc +++ b/program/localization/es_ES/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = '¡Ha ocurrido un error!'; $messages['loginfailed'] = 'Contraseña o nombre de usuario incorrecto.'; $messages['cookiesdisabled'] = 'Su navegador no acepta cookies.'; diff --git a/program/localization/et_EE/labels.inc b/program/localization/et_EE/labels.inc index 7d0d57020..aab7c2039 100644 --- a/program/localization/et_EE/labels.inc +++ b/program/localization/et_EE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Tere tulemast! See on $product.'; $labels['username'] = 'Kasutajanimi'; diff --git a/program/localization/et_EE/messages.inc b/program/localization/et_EE/messages.inc index 42060123d..6d4752730 100644 --- a/program/localization/et_EE/messages.inc +++ b/program/localization/et_EE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ilmnes tõrge!'; $messages['loginfailed'] = 'Sisselogimine ebaõnnestus'; $messages['cookiesdisabled'] = 'Sinu veebilehitseja ei võta präänikuid vastu'; diff --git a/program/localization/eu_ES/labels.inc b/program/localization/eu_ES/labels.inc index 293c656fa..89b19cfbc 100644 --- a/program/localization/eu_ES/labels.inc +++ b/program/localization/eu_ES/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Ongi etorri $product'; $labels['username'] = 'Erabiltzailea'; diff --git a/program/localization/eu_ES/messages.inc b/program/localization/eu_ES/messages.inc index a74cf7f2a..6aa6cbb22 100644 --- a/program/localization/eu_ES/messages.inc +++ b/program/localization/eu_ES/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Errore bat gertatu da!'; $messages['loginfailed'] = 'Saio hasierak huts egin du.'; $messages['cookiesdisabled'] = 'Zure nabigatzaileak ez ditu cookie-rik onartzen'; diff --git a/program/localization/fa_AF/labels.inc b/program/localization/fa_AF/labels.inc index d29006c14..40d7cf19d 100644 --- a/program/localization/fa_AF/labels.inc +++ b/program/localization/fa_AF/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'به اين پروژه خوش امديد'; $labels['username'] = 'نام کاربر'; diff --git a/program/localization/fa_AF/messages.inc b/program/localization/fa_AF/messages.inc index b748b2a3f..42f34be88 100644 --- a/program/localization/fa_AF/messages.inc +++ b/program/localization/fa_AF/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'خطا رخ داد'; $messages['loginfailed'] = 'خطا در ورود به سیستم'; $messages['cookiesdisabled'] = 'جستجوگر شما cookies را قبول نميکند'; diff --git a/program/localization/fa_IR/labels.inc b/program/localization/fa_IR/labels.inc index 11ce5d61b..ad016a7c5 100644 --- a/program/localization/fa_IR/labels.inc +++ b/program/localization/fa_IR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'به $product خوش آمدید'; $labels['username'] = 'نام کاربری'; diff --git a/program/localization/fa_IR/messages.inc b/program/localization/fa_IR/messages.inc index 8e563bb4e..1530400b6 100644 --- a/program/localization/fa_IR/messages.inc +++ b/program/localization/fa_IR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'خطایی رخ داد!'; $messages['loginfailed'] = 'ورود ناموفق بود.'; $messages['cookiesdisabled'] = 'مرورگر شما کوکی‌ها را قبول نمی‌کند.'; diff --git a/program/localization/fi_FI/labels.inc b/program/localization/fi_FI/labels.inc index a81e2c039..a3764ed85 100644 --- a/program/localization/fi_FI/labels.inc +++ b/program/localization/fi_FI/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Tervetuloa $product -käyttäjäksi'; $labels['username'] = 'Käyttäjätunnus'; diff --git a/program/localization/fi_FI/messages.inc b/program/localization/fi_FI/messages.inc index 075162f12..d581f53df 100644 --- a/program/localization/fi_FI/messages.inc +++ b/program/localization/fi_FI/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Virhe havaittu.'; $messages['loginfailed'] = 'Sisäänkirjautuminen epäonnistui'; $messages['cookiesdisabled'] = 'Selaimesi ei hyväksy evästeitä'; diff --git a/program/localization/fr_FR/labels.inc b/program/localization/fr_FR/labels.inc index 5acddc621..eee9f1ae4 100644 --- a/program/localization/fr_FR/labels.inc +++ b/program/localization/fr_FR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bienvenue sur $product'; $labels['username'] = 'Utilisateur'; diff --git a/program/localization/fr_FR/messages.inc b/program/localization/fr_FR/messages.inc index b57f43c8d..99cf02cea 100644 --- a/program/localization/fr_FR/messages.inc +++ b/program/localization/fr_FR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Une erreur est survenue !'; $messages['loginfailed'] = 'L\'authentification a échoué'; $messages['cookiesdisabled'] = 'Votre navigateur n\'accepte pas les cookies'; diff --git a/program/localization/fy_NL/labels.inc b/program/localization/fy_NL/labels.inc index ba518f4e6..5e9fcaca1 100644 --- a/program/localization/fy_NL/labels.inc +++ b/program/localization/fy_NL/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Brûkersnamme'; diff --git a/program/localization/fy_NL/messages.inc b/program/localization/fy_NL/messages.inc index 2ac9519b5..6a6718925 100644 --- a/program/localization/fy_NL/messages.inc +++ b/program/localization/fy_NL/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Login failed.'; $messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; diff --git a/program/localization/ga_IE/labels.inc b/program/localization/ga_IE/labels.inc index f8103bef0..6d55afca9 100644 --- a/program/localization/ga_IE/labels.inc +++ b/program/localization/ga_IE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Fáilte go $product'; $labels['username'] = 'Úsáideoir'; diff --git a/program/localization/ga_IE/messages.inc b/program/localization/ga_IE/messages.inc index b614ecbe1..67819ec6b 100644 --- a/program/localization/ga_IE/messages.inc +++ b/program/localization/ga_IE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Theip an iarraidh chun logáil tú isteach'; $messages['cookiesdisabled'] = 'Níor glac do sracléitheoir an fianán seisiúin'; diff --git a/program/localization/gl_ES/labels.inc b/program/localization/gl_ES/labels.inc index 4e00a286f..4711d9722 100644 --- a/program/localization/gl_ES/labels.inc +++ b/program/localization/gl_ES/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Benvido a $product'; $labels['username'] = 'Nome de usuario'; diff --git a/program/localization/gl_ES/messages.inc b/program/localization/gl_ES/messages.inc index f291fccfe..8f004ed9d 100644 --- a/program/localization/gl_ES/messages.inc +++ b/program/localization/gl_ES/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ocurreu un erro!'; $messages['loginfailed'] = 'O contrasinal ou o nome de usuario son incorrectos.'; $messages['cookiesdisabled'] = 'O seu navegador non acepta galletas.'; diff --git a/program/localization/he_IL/labels.inc b/program/localization/he_IL/labels.inc index b079c3c38..9ee2dbaec 100644 --- a/program/localization/he_IL/labels.inc +++ b/program/localization/he_IL/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'ברוך בואך אל $product'; $labels['username'] = 'שם משתמש'; diff --git a/program/localization/he_IL/messages.inc b/program/localization/he_IL/messages.inc index 81d24b87a..276a9f394 100644 --- a/program/localization/he_IL/messages.inc +++ b/program/localization/he_IL/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'קרתה שגיאה !'; $messages['loginfailed'] = 'הכניסה נכשלה'; $messages['cookiesdisabled'] = 'הדפדפן אינו מקבל עוגיות'; diff --git a/program/localization/hi_IN/labels.inc b/program/localization/hi_IN/labels.inc index 9d944264a..ccad601fa 100644 --- a/program/localization/hi_IN/labels.inc +++ b/program/localization/hi_IN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product में स्वागत है'; $labels['username'] = 'यूसरनाम'; diff --git a/program/localization/hi_IN/messages.inc b/program/localization/hi_IN/messages.inc index 1865863a7..8f66b13a4 100644 --- a/program/localization/hi_IN/messages.inc +++ b/program/localization/hi_IN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'लॉगिन नहीं हो पाया'; $messages['cookiesdisabled'] = 'आपका ब्राऊसर कुकी स्वीकार नहीं कर रहा है'; diff --git a/program/localization/hr_HR/labels.inc b/program/localization/hr_HR/labels.inc index e26fe7ca5..d4e2b1a3f 100644 --- a/program/localization/hr_HR/labels.inc +++ b/program/localization/hr_HR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Dobrodošli na $product'; $labels['username'] = 'Korisničko ime'; diff --git a/program/localization/hr_HR/messages.inc b/program/localization/hr_HR/messages.inc index 58a6858cd..2aadb32d3 100644 --- a/program/localization/hr_HR/messages.inc +++ b/program/localization/hr_HR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Prijava neuspješna'; $messages['cookiesdisabled'] = 'Vaš Web preglednik ne podržava kolačiće (cookies)'; diff --git a/program/localization/hu_HU/labels.inc b/program/localization/hu_HU/labels.inc index e263b120e..0bfbefd0f 100644 --- a/program/localization/hu_HU/labels.inc +++ b/program/localization/hu_HU/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Üdvözli a $product'; $labels['username'] = 'Felhasználónév'; diff --git a/program/localization/hu_HU/messages.inc b/program/localization/hu_HU/messages.inc index 0223841da..a3b5c13b3 100644 --- a/program/localization/hu_HU/messages.inc +++ b/program/localization/hu_HU/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Hiba történt!'; $messages['loginfailed'] = 'Sikertelen bejelentkezés.'; $messages['cookiesdisabled'] = 'A böngésző nem támogatja a sütik használatát'; diff --git a/program/localization/hy_AM/labels.inc b/program/localization/hy_AM/labels.inc index 17e25f612..d3909714a 100644 --- a/program/localization/hy_AM/labels.inc +++ b/program/localization/hy_AM/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Բարի գալուստ $product'; $labels['username'] = 'Օգտվող'; diff --git a/program/localization/hy_AM/messages.inc b/program/localization/hy_AM/messages.inc index 909133e41..fd52ab6f9 100644 --- a/program/localization/hy_AM/messages.inc +++ b/program/localization/hy_AM/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Սխա՛լ'; $messages['loginfailed'] = 'Մուտքը ձախողվեց'; $messages['cookiesdisabled'] = 'Сookies–ների ապահովվումը բացակայում է'; diff --git a/program/localization/ia/labels.inc b/program/localization/ia/labels.inc index 9baf2c5f3..15c8e708f 100644 --- a/program/localization/ia/labels.inc +++ b/program/localization/ia/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Benvenite a $product'; $labels['username'] = 'Nomine de usator'; diff --git a/program/localization/ia/messages.inc b/program/localization/ia/messages.inc index 427302a6c..b42b3bd63 100644 --- a/program/localization/ia/messages.inc +++ b/program/localization/ia/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Initio de session fallite'; $messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; diff --git a/program/localization/id_ID/labels.inc b/program/localization/id_ID/labels.inc index 20e54a976..2915d802b 100644 --- a/program/localization/id_ID/labels.inc +++ b/program/localization/id_ID/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Selamat datang di $product'; $labels['username'] = 'Username'; diff --git a/program/localization/id_ID/messages.inc b/program/localization/id_ID/messages.inc index bcce58cc6..7b32cfe45 100644 --- a/program/localization/id_ID/messages.inc +++ b/program/localization/id_ID/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Terjadi error!'; $messages['loginfailed'] = 'Login gagal.'; $messages['cookiesdisabled'] = 'Browser Anda tidak menerima cookies.'; diff --git a/program/localization/is_IS/labels.inc b/program/localization/is_IS/labels.inc index 384a2265b..c1d9591f6 100644 --- a/program/localization/is_IS/labels.inc +++ b/program/localization/is_IS/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Velkomin í $product'; $labels['username'] = 'Netfang'; diff --git a/program/localization/is_IS/messages.inc b/program/localization/is_IS/messages.inc index 089ac8c0a..d6eb1659c 100644 --- a/program/localization/is_IS/messages.inc +++ b/program/localization/is_IS/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Innskráning mistókst'; $messages['cookiesdisabled'] = 'Vafrinn þinn vill ekki taka við kökum (cookies)'; diff --git a/program/localization/it_IT/labels.inc b/program/localization/it_IT/labels.inc index 9c38af06f..5cd18c2d4 100644 --- a/program/localization/it_IT/labels.inc +++ b/program/localization/it_IT/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Benvenuto in $product'; $labels['username'] = 'Utente'; diff --git a/program/localization/it_IT/messages.inc b/program/localization/it_IT/messages.inc index 66eb85730..f9e85f4bb 100644 --- a/program/localization/it_IT/messages.inc +++ b/program/localization/it_IT/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Si è verificato un errore!'; $messages['loginfailed'] = 'Impossibile accedere. Utente o password non corretti'; $messages['cookiesdisabled'] = 'Il tuo browser non accetta i cookies'; diff --git a/program/localization/ja_JP/labels.inc b/program/localization/ja_JP/labels.inc index 3bed99866..07bb86fbb 100644 --- a/program/localization/ja_JP/labels.inc +++ b/program/localization/ja_JP/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$productにようこそ'; $labels['username'] = 'ユーザー名'; diff --git a/program/localization/ja_JP/messages.inc b/program/localization/ja_JP/messages.inc index 267bcea42..19f316835 100644 --- a/program/localization/ja_JP/messages.inc +++ b/program/localization/ja_JP/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'エラーが発生しました!'; $messages['loginfailed'] = 'ログインできませんでした。'; $messages['cookiesdisabled'] = 'ブラウザーがCookieを受け付けません。'; diff --git a/program/localization/ka_GE/labels.inc b/program/localization/ka_GE/labels.inc index 5200057bb..fae6f65c8 100644 --- a/program/localization/ka_GE/labels.inc +++ b/program/localization/ka_GE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'მოგესალმებათ $product'; $labels['username'] = 'მომხმარებელი'; diff --git a/program/localization/ka_GE/messages.inc b/program/localization/ka_GE/messages.inc index 218bd731b..9779939c7 100644 --- a/program/localization/ka_GE/messages.inc +++ b/program/localization/ka_GE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'შესვლა შეუძლებელია'; $messages['cookiesdisabled'] = 'თქვენი ბროუზერი კუკიებს არ პასუხობს'; diff --git a/program/localization/km_KH/labels.inc b/program/localization/km_KH/labels.inc index 8ef06c029..4c83ab8e7 100644 --- a/program/localization/km_KH/labels.inc +++ b/program/localization/km_KH/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product សូមស្វាគមន៍'; $labels['username'] = 'ឈ្មោះអ្នកប្រើ'; diff --git a/program/localization/km_KH/messages.inc b/program/localization/km_KH/messages.inc index aef7d983e..d1db6cc7e 100644 --- a/program/localization/km_KH/messages.inc +++ b/program/localization/km_KH/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ការពិនិត្យចូលមិនបានសំរេចព្រោះមានបញ្ហាកើតឡើង'; $messages['cookiesdisabled'] = 'កម្មវិធីមើលគេហទំព័រនេះមិនទទួលយកCookies'; diff --git a/program/localization/ko_KR/labels.inc b/program/localization/ko_KR/labels.inc index 4aa1541a8..f4c18152c 100644 --- a/program/localization/ko_KR/labels.inc +++ b/program/localization/ko_KR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product에 오신 것을 환영합니다'; $labels['username'] = '사용자명'; diff --git a/program/localization/ko_KR/messages.inc b/program/localization/ko_KR/messages.inc index ac0667b8d..a1103c766 100644 --- a/program/localization/ko_KR/messages.inc +++ b/program/localization/ko_KR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = '오류 발생!'; $messages['loginfailed'] = '로그인이 실패하였습니다.'; $messages['cookiesdisabled'] = '브라우저가 쿠키를 지원하지 않습니다.'; diff --git a/program/localization/ku/labels.inc b/program/localization/ku/labels.inc index 80003b1ff..27d54137e 100644 --- a/program/localization/ku/labels.inc +++ b/program/localization/ku/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bixêr hatî $product \'ê'; $labels['username'] = 'Bikarhêner'; diff --git a/program/localization/ku/messages.inc b/program/localization/ku/messages.inc index 792492f1d..eec0b258b 100644 --- a/program/localization/ku/messages.inc +++ b/program/localization/ku/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Têketin têk çû'; $messages['cookiesdisabled'] = 'Geroka te destûrê nade çerezan'; diff --git a/program/localization/lb_LU/labels.inc b/program/localization/lb_LU/labels.inc index 3901a35e9..7b7c2b679 100644 --- a/program/localization/lb_LU/labels.inc +++ b/program/localization/lb_LU/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Wëllkomm bei $product'; $labels['username'] = 'Benotzernumm'; diff --git a/program/localization/lb_LU/messages.inc b/program/localization/lb_LU/messages.inc index ec66e0fe2..6176d9a2c 100644 --- a/program/localization/lb_LU/messages.inc +++ b/program/localization/lb_LU/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ee Feeler ass opgetrueden!'; $messages['loginfailed'] = 'Login feelgeschloen.'; $messages['cookiesdisabled'] = 'Däi Browser acceptéiert keng Cookien.'; diff --git a/program/localization/lt_LT/labels.inc b/program/localization/lt_LT/labels.inc index 3eddab538..a77ac90a7 100644 --- a/program/localization/lt_LT/labels.inc +++ b/program/localization/lt_LT/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Sveiki! Čia $product'; $labels['username'] = 'Naudotojo vardas'; diff --git a/program/localization/lt_LT/messages.inc b/program/localization/lt_LT/messages.inc index 3673b2f0e..8ffacb3a6 100644 --- a/program/localization/lt_LT/messages.inc +++ b/program/localization/lt_LT/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Įvyko klaida!'; $messages['loginfailed'] = 'Prisijungti nepavyko.'; $messages['cookiesdisabled'] = 'Jūsų naršyklė nepriima slapukų.'; diff --git a/program/localization/lv_LV/labels.inc b/program/localization/lv_LV/labels.inc index 11e7d3ba7..b9c3b0c79 100644 --- a/program/localization/lv_LV/labels.inc +++ b/program/localization/lv_LV/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Esiet laipni lūgti $product'; $labels['username'] = 'Lietotājvārds'; diff --git a/program/localization/lv_LV/messages.inc b/program/localization/lv_LV/messages.inc index 674c68137..87d57174b 100644 --- a/program/localization/lv_LV/messages.inc +++ b/program/localization/lv_LV/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Radās kļūda!'; $messages['loginfailed'] = 'Pieslēgties neizdevās'; $messages['cookiesdisabled'] = 'Jūsu pārlūkprogramma neatbalsta sīkdatnes (cookies)'; diff --git a/program/localization/mk_MK/labels.inc b/program/localization/mk_MK/labels.inc index 63c503ac1..dcbf34149 100644 --- a/program/localization/mk_MK/labels.inc +++ b/program/localization/mk_MK/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Добредојдовте во $product'; $labels['username'] = 'Корисничко име'; diff --git a/program/localization/mk_MK/messages.inc b/program/localization/mk_MK/messages.inc index 3abf1ba75..0ddfbe797 100644 --- a/program/localization/mk_MK/messages.inc +++ b/program/localization/mk_MK/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Најавата не успеа'; $messages['cookiesdisabled'] = 'Вашиот прелистувач не прифаќа колачиња'; diff --git a/program/localization/ml_IN/labels.inc b/program/localization/ml_IN/labels.inc index 29edfa623..ad5cfee33 100644 --- a/program/localization/ml_IN/labels.inc +++ b/program/localization/ml_IN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product ലേയ്ക്ക് സ്വാഗതം'; $labels['username'] = 'ഉപയോക്തൃനാമം'; diff --git a/program/localization/ml_IN/messages.inc b/program/localization/ml_IN/messages.inc index 1e9cf87fb..a64c7b6ac 100644 --- a/program/localization/ml_IN/messages.inc +++ b/program/localization/ml_IN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Login failed.'; $messages['cookiesdisabled'] = 'തങ്കളുടെ ബ്രവു്സര്‍ കുക്കീസ് സ്വീകരിക്കുന്നതല്ല'; diff --git a/program/localization/mr_IN/labels.inc b/program/localization/mr_IN/labels.inc index ccbae5a89..b9b963abf 100644 --- a/program/localization/mr_IN/labels.inc +++ b/program/localization/mr_IN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product वरती स्वागत आहे'; $labels['username'] = 'वापरकर्त्याचे नाव(तुमचे इमेल)'; diff --git a/program/localization/mr_IN/messages.inc b/program/localization/mr_IN/messages.inc index 04e873aa0..748898b75 100644 --- a/program/localization/mr_IN/messages.inc +++ b/program/localization/mr_IN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'काहीतरी चूक झाली'; $messages['loginfailed'] = 'प्रवेश करता आला नाही'; $messages['cookiesdisabled'] = 'तुमचा ब्राऊझर कुकीज घेऊ शकत नाही'; diff --git a/program/localization/ms_MY/labels.inc b/program/localization/ms_MY/labels.inc index 135b4ea5f..b39a3bf7c 100644 --- a/program/localization/ms_MY/labels.inc +++ b/program/localization/ms_MY/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Selamat datang ke $product'; $labels['username'] = 'Nama Pengguna'; diff --git a/program/localization/ms_MY/messages.inc b/program/localization/ms_MY/messages.inc index 0f0f102e6..8728512b1 100644 --- a/program/localization/ms_MY/messages.inc +++ b/program/localization/ms_MY/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Log masuk gagal'; $messages['cookiesdisabled'] = 'Pelayar anda tidak menerima cookies'; diff --git a/program/localization/nb_NO/labels.inc b/program/localization/nb_NO/labels.inc index 140d9f918..f9ccfab89 100644 --- a/program/localization/nb_NO/labels.inc +++ b/program/localization/nb_NO/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brukernavn'; diff --git a/program/localization/nb_NO/messages.inc b/program/localization/nb_NO/messages.inc index a757fb353..23ee932d3 100644 --- a/program/localization/nb_NO/messages.inc +++ b/program/localization/nb_NO/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Det oppsto en feil!'; $messages['loginfailed'] = 'Pålogging mislyktes'; $messages['cookiesdisabled'] = 'Nettleseren din tillater ikke informasjonskapsler (cookies)'; diff --git a/program/localization/ne_NP/labels.inc b/program/localization/ne_NP/labels.inc index a4fd22dc3..826571d4f 100644 --- a/program/localization/ne_NP/labels.inc +++ b/program/localization/ne_NP/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product मा स्वागत छ'; $labels['username'] = 'प्रयोगकर्ताको नाम'; diff --git a/program/localization/ne_NP/messages.inc b/program/localization/ne_NP/messages.inc index a8ad1a2f7..a30cc87bc 100644 --- a/program/localization/ne_NP/messages.inc +++ b/program/localization/ne_NP/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'लागईन हुन पाएन'; $messages['cookiesdisabled'] = 'तपाईको ब्राऊसरले कुकी स्वीकार गारिरहेको छैन'; diff --git a/program/localization/nl_BE/labels.inc b/program/localization/nl_BE/labels.inc index c37febef3..6882db592 100644 --- a/program/localization/nl_BE/labels.inc +++ b/program/localization/nl_BE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; diff --git a/program/localization/nl_BE/messages.inc b/program/localization/nl_BE/messages.inc index b730801a7..a7fe31078 100644 --- a/program/localization/nl_BE/messages.inc +++ b/program/localization/nl_BE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Er is een fout opgetreden!'; $messages['loginfailed'] = 'Aanmelden mislukt...'; $messages['cookiesdisabled'] = 'Uw browser accepteert geen cookies...'; diff --git a/program/localization/nl_NL/labels.inc b/program/localization/nl_NL/labels.inc index 2644eb3df..0f36b116e 100644 --- a/program/localization/nl_NL/labels.inc +++ b/program/localization/nl_NL/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; diff --git a/program/localization/nl_NL/messages.inc b/program/localization/nl_NL/messages.inc index 5c9794602..e31dc01fd 100644 --- a/program/localization/nl_NL/messages.inc +++ b/program/localization/nl_NL/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Er is een fout opgetreden!'; $messages['loginfailed'] = 'Aanmelden mislukt.'; $messages['cookiesdisabled'] = 'Uw browser accepteert geen cookies.'; diff --git a/program/localization/nn_NO/labels.inc b/program/localization/nn_NO/labels.inc index 62329115f..830ed9847 100644 --- a/program/localization/nn_NO/labels.inc +++ b/program/localization/nn_NO/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Velkomen til $product'; $labels['username'] = 'Brukarnamn'; diff --git a/program/localization/nn_NO/messages.inc b/program/localization/nn_NO/messages.inc index 586a4021a..409b6f414 100644 --- a/program/localization/nn_NO/messages.inc +++ b/program/localization/nn_NO/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Noko gjekk feil.'; $messages['loginfailed'] = 'Feil ved innlogging.'; $messages['cookiesdisabled'] = 'Nettlesaren din tillet ikkje informasjonskapslar (cookies).'; diff --git a/program/localization/pl_PL/labels.inc b/program/localization/pl_PL/labels.inc index 052db602e..af2c972f6 100644 --- a/program/localization/pl_PL/labels.inc +++ b/program/localization/pl_PL/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Witamy w $product'; $labels['username'] = 'Nazwa'; diff --git a/program/localization/pl_PL/messages.inc b/program/localization/pl_PL/messages.inc index ebc3d134b..d6e4ea0e7 100644 --- a/program/localization/pl_PL/messages.inc +++ b/program/localization/pl_PL/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Wystąpił błąd!'; $messages['loginfailed'] = 'Błąd logowania!'; $messages['cookiesdisabled'] = 'Twoja przeglądarka nie obsługuje ciasteczek!'; diff --git a/program/localization/ps/labels.inc b/program/localization/ps/labels.inc index a49c5b3df..ed993cb5b 100644 --- a/program/localization/ps/labels.inc +++ b/program/localization/ps/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product ته ښه راغلاست'; $labels['username'] = 'کارن نوم'; diff --git a/program/localization/ps/messages.inc b/program/localization/ps/messages.inc index d8774d3db..f4f966cb1 100644 --- a/program/localization/ps/messages.inc +++ b/program/localization/ps/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ننوتنه په بري سره ترسره نه شوه'; $messages['cookiesdisabled'] = 'ستاسو لټوني ککوړي ونه منل'; diff --git a/program/localization/pt_BR/labels.inc b/program/localization/pt_BR/labels.inc index 1ff7e2b77..9235e3346 100644 --- a/program/localization/pt_BR/labels.inc +++ b/program/localization/pt_BR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Usuário'; diff --git a/program/localization/pt_BR/messages.inc b/program/localization/pt_BR/messages.inc index dd64dee63..447173a7f 100644 --- a/program/localization/pt_BR/messages.inc +++ b/program/localization/pt_BR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ocorreu um erro!'; $messages['loginfailed'] = 'Falha no login'; $messages['cookiesdisabled'] = 'Seu navegador não aceita cookies'; diff --git a/program/localization/pt_PT/labels.inc b/program/localization/pt_PT/labels.inc index 90b5790bf..137840ea3 100644 --- a/program/localization/pt_PT/labels.inc +++ b/program/localization/pt_PT/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Utilizador'; diff --git a/program/localization/pt_PT/messages.inc b/program/localization/pt_PT/messages.inc index 5f54a0d4b..ad924d65e 100644 --- a/program/localization/pt_PT/messages.inc +++ b/program/localization/pt_PT/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ocorreu um erro!'; $messages['loginfailed'] = 'O utilizador ou palavra-passe que introduziu não correspondem.'; $messages['cookiesdisabled'] = 'O seu navegador não suporta cookies'; diff --git a/program/localization/ro_RO/labels.inc b/program/localization/ro_RO/labels.inc index 6d9d0a2dc..d863017d2 100644 --- a/program/localization/ro_RO/labels.inc +++ b/program/localization/ro_RO/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Bine aţi venit la $product'; $labels['username'] = 'Utilizator'; diff --git a/program/localization/ro_RO/messages.inc b/program/localization/ro_RO/messages.inc index 6be25147b..16eb0cd0a 100644 --- a/program/localization/ro_RO/messages.inc +++ b/program/localization/ro_RO/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'A avut loc o EROARE!'; $messages['loginfailed'] = 'Autentificare eşuată'; $messages['cookiesdisabled'] = 'Browserul dumneavoastră nu acceptă cookies'; diff --git a/program/localization/ru_RU/labels.inc b/program/localization/ru_RU/labels.inc index 54a8481d3..86937e5b4 100644 --- a/program/localization/ru_RU/labels.inc +++ b/program/localization/ru_RU/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Добро пожаловать в $product!'; $labels['username'] = 'Имя пользователя'; diff --git a/program/localization/ru_RU/messages.inc b/program/localization/ru_RU/messages.inc index 1f4a7b33d..cdd7b5ac2 100644 --- a/program/localization/ru_RU/messages.inc +++ b/program/localization/ru_RU/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Произошла ошибка!'; $messages['loginfailed'] = 'Неудачная попытка входа.'; $messages['cookiesdisabled'] = 'Ваш браузер не принимает cookie.'; diff --git a/program/localization/si_LK/labels.inc b/program/localization/si_LK/labels.inc index 350a87f77..ef7911900 100644 --- a/program/localization/si_LK/labels.inc +++ b/program/localization/si_LK/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product වෙත පිළිගනිමු'; $labels['username'] = 'පරිශීලක නාමය'; diff --git a/program/localization/si_LK/messages.inc b/program/localization/si_LK/messages.inc index 60cb2bbed..e2e18c387 100644 --- a/program/localization/si_LK/messages.inc +++ b/program/localization/si_LK/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'දෝෂයක් මතුවිය!'; $messages['loginfailed'] = 'ඇතුල්වීම අසාර්ථකයි.'; $messages['cookiesdisabled'] = 'ඔබේ බෞසරය කුකී බාර ගන්නේ නැත'; diff --git a/program/localization/sk_SK/labels.inc b/program/localization/sk_SK/labels.inc index 3747d6c09..67dc9210b 100644 --- a/program/localization/sk_SK/labels.inc +++ b/program/localization/sk_SK/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Vitajte v $product'; $labels['username'] = 'Prihlasovacie meno'; diff --git a/program/localization/sk_SK/messages.inc b/program/localization/sk_SK/messages.inc index d3acbf9af..a9dabb8e4 100644 --- a/program/localization/sk_SK/messages.inc +++ b/program/localization/sk_SK/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Vyskytla sa chyba!'; $messages['loginfailed'] = 'Chybné prihlásenie'; $messages['cookiesdisabled'] = 'Váš internetový prehliadač nepodporuje cookies, ktoré sú potrebné pre prihlásenie'; diff --git a/program/localization/sl_SI/labels.inc b/program/localization/sl_SI/labels.inc index 260d5da17..142191357 100644 --- a/program/localization/sl_SI/labels.inc +++ b/program/localization/sl_SI/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Dobrodošli v $product'; $labels['username'] = 'Uporabniško ime'; diff --git a/program/localization/sl_SI/messages.inc b/program/localization/sl_SI/messages.inc index e582cca5e..07b94ae08 100644 --- a/program/localization/sl_SI/messages.inc +++ b/program/localization/sl_SI/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Prišlo je do napake!'; $messages['loginfailed'] = 'Prijava ni uspela'; $messages['cookiesdisabled'] = 'Vaš spletni brskalnik ne sprejema piškotkov.'; diff --git a/program/localization/sq_AL/labels.inc b/program/localization/sq_AL/labels.inc index ed222c4e0..d45272e93 100644 --- a/program/localization/sq_AL/labels.inc +++ b/program/localization/sq_AL/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Mirëseerdhe te $product'; $labels['username'] = 'Përdoruesi'; diff --git a/program/localization/sq_AL/messages.inc b/program/localization/sq_AL/messages.inc index 6e48b1689..8ef402116 100644 --- a/program/localization/sq_AL/messages.inc +++ b/program/localization/sq_AL/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Hyrja dështoi'; $messages['cookiesdisabled'] = 'Shfletuesi juaj nuk i pranon sheqerkat'; diff --git a/program/localization/sr_CS/labels.inc b/program/localization/sr_CS/labels.inc index abaa91d0a..2fe36ca17 100644 --- a/program/localization/sr_CS/labels.inc +++ b/program/localization/sr_CS/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Добродошли на $product'; $labels['username'] = 'Корисничко име'; diff --git a/program/localization/sr_CS/messages.inc b/program/localization/sr_CS/messages.inc index 1a5f5ff01..1f86fa8fd 100644 --- a/program/localization/sr_CS/messages.inc +++ b/program/localization/sr_CS/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Дошло је до грешке!'; $messages['loginfailed'] = 'Неуспешно пријављивање'; $messages['cookiesdisabled'] = 'Ваш интернет прегледач не подржава колачиће'; diff --git a/program/localization/sv_SE/labels.inc b/program/localization/sv_SE/labels.inc index c7340647d..1a1048c29 100644 --- a/program/localization/sv_SE/labels.inc +++ b/program/localization/sv_SE/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Välkommen till $product'; $labels['username'] = 'Användarnamn'; diff --git a/program/localization/sv_SE/messages.inc b/program/localization/sv_SE/messages.inc index d7d66292f..3aeb6e2bb 100644 --- a/program/localization/sv_SE/messages.inc +++ b/program/localization/sv_SE/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Ett fel uppstod!'; $messages['loginfailed'] = 'Inloggningen misslyckades'; $messages['cookiesdisabled'] = 'Din webbläsare accepterar inte cookies'; diff --git a/program/localization/ta_IN/labels.inc b/program/localization/ta_IN/labels.inc index e4471de6a..8b2233511 100644 --- a/program/localization/ta_IN/labels.inc +++ b/program/localization/ta_IN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'நல்வரவு'; $labels['username'] = 'பயனர்'; diff --git a/program/localization/ta_IN/messages.inc b/program/localization/ta_IN/messages.inc index e1c2251a0..98ccd526d 100644 --- a/program/localization/ta_IN/messages.inc +++ b/program/localization/ta_IN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'நுழைவு தோல்வியடைந்தது'; $messages['cookiesdisabled'] = 'உங்கள் உலாவி நினைவிகளை அனுமதிப்பதில்லை'; diff --git a/program/localization/th_TH/labels.inc b/program/localization/th_TH/labels.inc index e0a9656ec..06e399660 100644 --- a/program/localization/th_TH/labels.inc +++ b/program/localization/th_TH/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'ยินดีต้อนรับสู่ $product'; $labels['username'] = 'บัญชีผู้ใช้'; diff --git a/program/localization/th_TH/messages.inc b/program/localization/th_TH/messages.inc index 81164fe77..f39da7789 100644 --- a/program/localization/th_TH/messages.inc +++ b/program/localization/th_TH/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'เกิดข้อผิดพลาดบางประการ!'; $messages['loginfailed'] = 'ไม่สามารถเข้าสู่ระบบได้'; $messages['cookiesdisabled'] = 'Browser ของคุณไม่ได้เปิดการใช้งาน Cookie ไว้'; diff --git a/program/localization/tr_TR/labels.inc b/program/localization/tr_TR/labels.inc index 511f3e15e..3ab173b2f 100644 --- a/program/localization/tr_TR/labels.inc +++ b/program/localization/tr_TR/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '$product, Hoş Geldiniz'; $labels['username'] = 'Kullanıcı Adı'; diff --git a/program/localization/tr_TR/messages.inc b/program/localization/tr_TR/messages.inc index 88b8eec0f..1831340af 100644 --- a/program/localization/tr_TR/messages.inc +++ b/program/localization/tr_TR/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Bir hata oluştu!'; $messages['loginfailed'] = 'Giriş Başarısız'; $messages['cookiesdisabled'] = 'Tarayıcınız çerezleri kabul etmiyor'; diff --git a/program/localization/uk_UA/labels.inc b/program/localization/uk_UA/labels.inc index 2bf666334..ae90bd00f 100644 --- a/program/localization/uk_UA/labels.inc +++ b/program/localization/uk_UA/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Ласкаво просимо до $product'; $labels['username'] = 'Ім\'я користувача'; diff --git a/program/localization/uk_UA/messages.inc b/program/localization/uk_UA/messages.inc index 1e79e90a2..c555f9374 100644 --- a/program/localization/uk_UA/messages.inc +++ b/program/localization/uk_UA/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Виникла помилка!'; $messages['loginfailed'] = 'Невдала спроба входу'; $messages['cookiesdisabled'] = 'Ваш переглядач не приймає cookie'; diff --git a/program/localization/vi_VN/labels.inc b/program/localization/vi_VN/labels.inc index 187bcbff8..34a6625e4 100644 --- a/program/localization/vi_VN/labels.inc +++ b/program/localization/vi_VN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = 'Chào bạn đã đến với $product'; $labels['username'] = 'Tên đăng nhập'; diff --git a/program/localization/vi_VN/messages.inc b/program/localization/vi_VN/messages.inc index 74e97adcb..f1d3b0127 100644 --- a/program/localization/vi_VN/messages.inc +++ b/program/localization/vi_VN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = 'Xuất hiện 1 lỗi'; $messages['loginfailed'] = 'Không đăng nhập được'; $messages['cookiesdisabled'] = 'Trình duyệt không hỗ trợ cookies'; diff --git a/program/localization/zh_CN/labels.inc b/program/localization/zh_CN/labels.inc index 95efa1529..a22f1bf7e 100644 --- a/program/localization/zh_CN/labels.inc +++ b/program/localization/zh_CN/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '欢迎使用 $product'; $labels['username'] = '用户名'; diff --git a/program/localization/zh_CN/messages.inc b/program/localization/zh_CN/messages.inc index 5f1bb8160..ef40ed529 100644 --- a/program/localization/zh_CN/messages.inc +++ b/program/localization/zh_CN/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = '发生错误!'; $messages['loginfailed'] = '登录失败。'; $messages['cookiesdisabled'] = '您的浏览器不接受 cookies。'; diff --git a/program/localization/zh_TW/labels.inc b/program/localization/zh_TW/labels.inc index cac178715..ab23c7a4b 100644 --- a/program/localization/zh_TW/labels.inc +++ b/program/localization/zh_TW/labels.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ -$labels = array(); $labels['welcome'] = '歡迎使用 $product'; $labels['username'] = '使用者名稱'; diff --git a/program/localization/zh_TW/messages.inc b/program/localization/zh_TW/messages.inc index 381aec610..04e8c23ad 100644 --- a/program/localization/zh_TW/messages.inc +++ b/program/localization/zh_TW/messages.inc @@ -16,7 +16,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ -$messages = array(); $messages['errortitle'] = '發生錯誤!'; $messages['loginfailed'] = '登入失敗'; $messages['cookiesdisabled'] = '你的瀏覽器不接受 cookies'; -- cgit v1.2.3 From 63573c931224d9496ab92027e94543dd9f7d9d36 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 10 Oct 2013 18:30:46 +0200 Subject: Added Urdu (ur_PK) language support --- program/localization/index.inc | 1 + program/localization/ur_PK/labels.inc | 42 +++++++++++++++++++++++++++++++++ program/localization/ur_PK/messages.inc | 20 ++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 program/localization/ur_PK/labels.inc create mode 100644 program/localization/ur_PK/messages.inc diff --git a/program/localization/index.inc b/program/localization/index.inc index 4b848dc49..616999514 100644 --- a/program/localization/index.inc +++ b/program/localization/index.inc @@ -96,6 +96,7 @@ $rcube_languages = array( 'th_TH' => 'Thai (ไทย)', 'tr_TR' => 'Turkish (Türkçe)', 'uk_UA' => 'Ukrainian (Українська)', + 'ur_PK' => 'Urdu (اُردو)', 'vi_VN' => 'Vietnamese (Tiếng Việt)', 'cy_GB' => 'Welsh (Cymraeg)', 'fy_NL' => 'West Frisian (Frysk)', diff --git a/program/localization/ur_PK/labels.inc b/program/localization/ur_PK/labels.inc new file mode 100644 index 000000000..f05f85109 --- /dev/null +++ b/program/localization/ur_PK/labels.inc @@ -0,0 +1,42 @@ +/labels.inc | + | | + | Localization file of the Roundcube Webmail client | + | Copyright (C) 2005-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ +*/ + + +$labels['welcome'] = ' $product میں خوش آمدید'; +$labels['server'] = 'سَروَر'; +$labels['mail'] = 'میل'; +$labels['settings'] = 'ترتیبات'; +$labels['download'] = 'ڈاؤن لوڈ'; +$labels['showanyway'] = 'جیسا بھی ہے ظاہر کر دیں'; +$labels['markread'] = 'جیسے پڑھ لیا ہو'; +$labels['markunread'] = 'جیسے ابھی نہ پڑھا ہو'; +$labels['more'] = 'مزید'; +$labels['back'] = 'واپس'; +$labels['select'] = 'مۃنتخب کریں'; +$labels['all'] = 'تمام'; +$labels['none'] = 'کوئی نہیں'; +$labels['currpage'] = 'موجودہ حفحہ'; +$labels['unread'] = 'نہیں پڑھا'; +$labels['deleted'] = 'ختم ہو گیا'; +$labels['undeleted'] = 'ختم نہیں ہُوا'; +$labels['invert'] = 'شکل تبدیل کریں'; +$labels['list'] = 'لِسٹ'; +$labels['expand-all'] = 'تمام کھولیں'; +$labels['attachment'] = 'مُنسلَک شُدہ'; +$labels['nonesort'] = 'کوئی نہیں'; +?> diff --git a/program/localization/ur_PK/messages.inc b/program/localization/ur_PK/messages.inc new file mode 100644 index 000000000..9a3c2babb --- /dev/null +++ b/program/localization/ur_PK/messages.inc @@ -0,0 +1,20 @@ +/messages.inc | + | | + | Localization file of the Roundcube Webmail client | + | Copyright (C) 2005-2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ +*/ + + +?> -- cgit v1.2.3 From 4136174517d426dcec74304ce004b4c845f075f5 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 10 Oct 2013 19:21:14 +0200 Subject: Clean up translations once again, this time remove untranslated strings for all langs --- bin/transifexpull.sh | 2 +- plugins/acl/localization/az_AZ.inc | 1 - plugins/acl/localization/be_BE.inc | 1 - plugins/acl/localization/bg_BG.inc | 1 - plugins/acl/localization/bs_BA.inc | 1 - plugins/acl/localization/ca_ES.inc | 1 - plugins/acl/localization/cs_CZ.inc | 21 +- plugins/acl/localization/cy_GB.inc | 1 - plugins/acl/localization/da_DK.inc | 3 +- plugins/acl/localization/de_CH.inc | 1 - plugins/acl/localization/de_DE.inc | 1 - plugins/acl/localization/el_GR.inc | 1 - plugins/acl/localization/en_GB.inc | 2 - plugins/acl/localization/eo.inc | 27 - plugins/acl/localization/es_AR.inc | 1 - plugins/acl/localization/es_ES.inc | 3 +- plugins/acl/localization/et_EE.inc | 12 - plugins/acl/localization/eu_ES.inc | 1 - plugins/acl/localization/fa_IR.inc | 1 - plugins/acl/localization/fi_FI.inc | 76 +- plugins/acl/localization/fr_FR.inc | 1 - plugins/acl/localization/gl_ES.inc | 1 - plugins/acl/localization/he_IL.inc | 1 - plugins/acl/localization/hu_HU.inc | 1 - plugins/acl/localization/hy_AM.inc | 2 - plugins/acl/localization/id_ID.inc | 1 - plugins/acl/localization/it_IT.inc | 1 - plugins/acl/localization/ja_JP.inc | 1 - plugins/acl/localization/ko_KR.inc | 1 - plugins/acl/localization/lb_LU.inc | 22 - plugins/acl/localization/lt_LT.inc | 1 - plugins/acl/localization/lv_LV.inc | 1 - plugins/acl/localization/nb_NO.inc | 2 - plugins/acl/localization/nl_NL.inc | 1 - plugins/acl/localization/nn_NO.inc | 2 - plugins/acl/localization/pl_PL.inc | 1 - plugins/acl/localization/pt_BR.inc | 1 - plugins/acl/localization/pt_PT.inc | 3 +- plugins/acl/localization/ro_RO.inc | 25 +- plugins/acl/localization/ru_RU.inc | 1 - plugins/acl/localization/sk_SK.inc | 1 - plugins/acl/localization/sl_SI.inc | 1 - plugins/acl/localization/sr_CS.inc | 69 -- plugins/acl/localization/sv_SE.inc | 1 - plugins/acl/localization/th_TH.inc | 1 - plugins/acl/localization/ti.inc | 1 - plugins/acl/localization/tr_TR.inc | 1 - plugins/acl/localization/vi_VN.inc | 2 - plugins/acl/localization/zh_CN.inc | 10 - plugins/acl/localization/zh_TW.inc | 1 - plugins/archive/localization/ar.inc | 2 - plugins/archive/localization/ar_SA.inc | 1 - plugins/archive/localization/ast.inc | 1 - plugins/archive/localization/az_AZ.inc | 1 - plugins/archive/localization/be_BE.inc | 9 +- plugins/archive/localization/bg_BG.inc | 1 - plugins/archive/localization/bn_BD.inc | 2 - plugins/archive/localization/br.inc | 10 - plugins/archive/localization/bs_BA.inc | 1 - plugins/archive/localization/ca_ES.inc | 1 - plugins/archive/localization/cs_CZ.inc | 1 - plugins/archive/localization/cy_GB.inc | 1 - plugins/archive/localization/da_DK.inc | 1 - plugins/archive/localization/de_CH.inc | 1 - plugins/archive/localization/de_DE.inc | 1 - plugins/archive/localization/el_GR.inc | 1 - plugins/archive/localization/en_GB.inc | 10 - plugins/archive/localization/eo.inc | 10 - plugins/archive/localization/es_AR.inc | 1 - plugins/archive/localization/es_ES.inc | 1 - plugins/archive/localization/et_EE.inc | 1 - plugins/archive/localization/eu_ES.inc | 1 - plugins/archive/localization/fa_AF.inc | 1 - plugins/archive/localization/fa_IR.inc | 1 - plugins/archive/localization/fi_FI.inc | 19 +- plugins/archive/localization/fr_FR.inc | 7 +- plugins/archive/localization/gl_ES.inc | 1 - plugins/archive/localization/he_IL.inc | 1 - plugins/archive/localization/hi_IN.inc | 2 - plugins/archive/localization/hr_HR.inc | 10 - plugins/archive/localization/hu_HU.inc | 1 - plugins/archive/localization/hy_AM.inc | 10 - plugins/archive/localization/ia.inc | 2 - plugins/archive/localization/id_ID.inc | 1 - plugins/archive/localization/it_IT.inc | 1 - plugins/archive/localization/ja_JP.inc | 1 - plugins/archive/localization/km_KH.inc | 10 - plugins/archive/localization/ko_KR.inc | 1 - plugins/archive/localization/ku.inc | 10 - plugins/archive/localization/lb_LU.inc | 1 - plugins/archive/localization/lt_LT.inc | 1 - plugins/archive/localization/lv_LV.inc | 1 - plugins/archive/localization/ml_IN.inc | 10 - plugins/archive/localization/mn_MN.inc | 2 - plugins/archive/localization/mr_IN.inc | 10 - plugins/archive/localization/ms_MY.inc | 2 - plugins/archive/localization/my_MM.inc | 2 - plugins/archive/localization/nb_NO.inc | 3 +- plugins/archive/localization/nl_BE.inc | 2 - plugins/archive/localization/nl_NL.inc | 1 - plugins/archive/localization/nn_NO.inc | 3 +- plugins/archive/localization/nqo.inc | 2 - plugins/archive/localization/om.inc | 2 - plugins/archive/localization/pl_PL.inc | 1 - plugins/archive/localization/pt_BR.inc | 19 +- plugins/archive/localization/pt_PT.inc | 1 - plugins/archive/localization/ro_RO.inc | 7 +- plugins/archive/localization/ru_RU.inc | 1 - plugins/archive/localization/si_LK.inc | 10 - plugins/archive/localization/sk_SK.inc | 1 - plugins/archive/localization/sl_SI.inc | 1 - plugins/archive/localization/sr_CS.inc | 10 - plugins/archive/localization/sv_SE.inc | 1 - plugins/archive/localization/te_IN.inc | 2 - plugins/archive/localization/th_TH.inc | 2 - plugins/archive/localization/ti.inc | 2 - plugins/archive/localization/tr_TR.inc | 1 - plugins/archive/localization/tzm.inc | 2 - plugins/archive/localization/uk_UA.inc | 10 - plugins/archive/localization/ur_PK.inc | 2 - plugins/archive/localization/vi_VN.inc | 10 - plugins/archive/localization/zh_CN.inc | 21 +- plugins/archive/localization/zh_TW.inc | 1 - plugins/attachment_reminder/localization/ar.inc | 1 - plugins/attachment_reminder/localization/ar_SA.inc | 1 - plugins/attachment_reminder/localization/az_AZ.inc | 1 - plugins/attachment_reminder/localization/be_BE.inc | 1 - plugins/attachment_reminder/localization/bg_BG.inc | 1 - plugins/attachment_reminder/localization/bn_BD.inc | 1 - plugins/attachment_reminder/localization/bs_BA.inc | 1 - plugins/attachment_reminder/localization/ca_ES.inc | 1 - plugins/attachment_reminder/localization/cs_CZ.inc | 1 - plugins/attachment_reminder/localization/cy_GB.inc | 1 - plugins/attachment_reminder/localization/da_DK.inc | 1 - plugins/attachment_reminder/localization/de_CH.inc | 1 - plugins/attachment_reminder/localization/de_DE.inc | 17 +- plugins/attachment_reminder/localization/el_GR.inc | 1 - plugins/attachment_reminder/localization/eo.inc | 1 - plugins/attachment_reminder/localization/es_AR.inc | 1 - plugins/attachment_reminder/localization/es_ES.inc | 17 +- plugins/attachment_reminder/localization/et_EE.inc | 1 - plugins/attachment_reminder/localization/eu_ES.inc | 1 - plugins/attachment_reminder/localization/fa_AF.inc | 1 - plugins/attachment_reminder/localization/fa_IR.inc | 1 - plugins/attachment_reminder/localization/fi_FI.inc | 1 - plugins/attachment_reminder/localization/fr_FR.inc | 17 +- plugins/attachment_reminder/localization/gl_ES.inc | 1 - plugins/attachment_reminder/localization/he_IL.inc | 1 - plugins/attachment_reminder/localization/hi_IN.inc | 1 - plugins/attachment_reminder/localization/hu_HU.inc | 1 - plugins/attachment_reminder/localization/hy_AM.inc | 1 - plugins/attachment_reminder/localization/ia.inc | 1 - plugins/attachment_reminder/localization/id_ID.inc | 1 - plugins/attachment_reminder/localization/it_IT.inc | 17 +- plugins/attachment_reminder/localization/ja_JP.inc | 1 - plugins/attachment_reminder/localization/ko_KR.inc | 1 - plugins/attachment_reminder/localization/lb_LU.inc | 1 - plugins/attachment_reminder/localization/lt_LT.inc | 1 - plugins/attachment_reminder/localization/lv_LV.inc | 1 - plugins/attachment_reminder/localization/ml_IN.inc | 1 - plugins/attachment_reminder/localization/mn_MN.inc | 1 - plugins/attachment_reminder/localization/ms_MY.inc | 1 - plugins/attachment_reminder/localization/my_MM.inc | 1 - plugins/attachment_reminder/localization/nb_NO.inc | 1 - plugins/attachment_reminder/localization/nl_BE.inc | 1 - plugins/attachment_reminder/localization/nl_NL.inc | 21 +- plugins/attachment_reminder/localization/nn_NO.inc | 1 - plugins/attachment_reminder/localization/nqo.inc | 1 - plugins/attachment_reminder/localization/om.inc | 1 - plugins/attachment_reminder/localization/pl_PL.inc | 15 + plugins/attachment_reminder/localization/pt_BR.inc | 1 - plugins/attachment_reminder/localization/pt_PT.inc | 1 - plugins/attachment_reminder/localization/ro_RO.inc | 1 - plugins/attachment_reminder/localization/ru_RU.inc | 1 - plugins/attachment_reminder/localization/sk_SK.inc | 1 - plugins/attachment_reminder/localization/sl_SI.inc | 1 - plugins/attachment_reminder/localization/sr_CS.inc | 1 - plugins/attachment_reminder/localization/sv_SE.inc | 1 - plugins/attachment_reminder/localization/te_IN.inc | 1 - plugins/attachment_reminder/localization/th_TH.inc | 1 - plugins/attachment_reminder/localization/ti.inc | 1 - plugins/attachment_reminder/localization/tr_TR.inc | 1 - plugins/attachment_reminder/localization/tzm.inc | 1 - plugins/attachment_reminder/localization/uk_UA.inc | 1 - plugins/attachment_reminder/localization/ur_PK.inc | 1 - plugins/attachment_reminder/localization/vi_VN.inc | 1 - plugins/attachment_reminder/localization/zh_CN.inc | 21 +- plugins/attachment_reminder/localization/zh_TW.inc | 17 +- plugins/enigma/localization/ru_RU.inc | 1 - plugins/help/localization/ar.inc | 2 - plugins/help/localization/ar_SA.inc | 1 - plugins/help/localization/ast.inc | 1 - plugins/help/localization/az_AZ.inc | 1 - plugins/help/localization/be_BE.inc | 1 - plugins/help/localization/bg_BG.inc | 1 - plugins/help/localization/bn_BD.inc | 2 - plugins/help/localization/br.inc | 1 - plugins/help/localization/bs_BA.inc | 1 - plugins/help/localization/ca_ES.inc | 1 - plugins/help/localization/cs_CZ.inc | 1 - plugins/help/localization/cy_GB.inc | 1 - plugins/help/localization/da_DK.inc | 1 - plugins/help/localization/de_CH.inc | 1 - plugins/help/localization/de_DE.inc | 1 - plugins/help/localization/el_GR.inc | 1 - plugins/help/localization/en_GB.inc | 1 - plugins/help/localization/eo.inc | 1 - plugins/help/localization/es_AR.inc | 1 - plugins/help/localization/es_ES.inc | 1 - plugins/help/localization/et_EE.inc | 1 - plugins/help/localization/eu_ES.inc | 1 - plugins/help/localization/fa_AF.inc | 1 - plugins/help/localization/fa_IR.inc | 1 - plugins/help/localization/fi_FI.inc | 1 - plugins/help/localization/fr_FR.inc | 1 - plugins/help/localization/gl_ES.inc | 1 - plugins/help/localization/he_IL.inc | 1 - plugins/help/localization/hi_IN.inc | 2 - plugins/help/localization/hu_HU.inc | 1 - plugins/help/localization/hy_AM.inc | 1 - plugins/help/localization/ia.inc | 2 - plugins/help/localization/id_ID.inc | 1 - plugins/help/localization/it_IT.inc | 1 - plugins/help/localization/ja_JP.inc | 1 - plugins/help/localization/km_KH.inc | 1 - plugins/help/localization/ko_KR.inc | 1 - plugins/help/localization/lb_LU.inc | 1 - plugins/help/localization/lt_LT.inc | 1 - plugins/help/localization/lv_LV.inc | 1 - plugins/help/localization/ml_IN.inc | 2 - plugins/help/localization/mn_MN.inc | 2 - plugins/help/localization/ms_MY.inc | 2 - plugins/help/localization/my_MM.inc | 2 - plugins/help/localization/nb_NO.inc | 1 - plugins/help/localization/nl_BE.inc | 2 - plugins/help/localization/nl_NL.inc | 1 - plugins/help/localization/nn_NO.inc | 1 - plugins/help/localization/nqo.inc | 2 - plugins/help/localization/om.inc | 2 - plugins/help/localization/pl_PL.inc | 1 - plugins/help/localization/pt_BR.inc | 1 - plugins/help/localization/pt_PT.inc | 1 - plugins/help/localization/ro_RO.inc | 1 - plugins/help/localization/ru_RU.inc | 1 - plugins/help/localization/sk_SK.inc | 1 - plugins/help/localization/sl_SI.inc | 1 - plugins/help/localization/sr_CS.inc | 1 - plugins/help/localization/sv_SE.inc | 1 - plugins/help/localization/te_IN.inc | 2 - plugins/help/localization/th_TH.inc | 2 - plugins/help/localization/ti.inc | 1 - plugins/help/localization/tr_TR.inc | 1 - plugins/help/localization/tzm.inc | 2 - plugins/help/localization/uk_UA.inc | 1 - plugins/help/localization/ur_PK.inc | 2 - plugins/help/localization/vi_VN.inc | 1 - plugins/help/localization/zh_CN.inc | 1 - plugins/help/localization/zh_TW.inc | 1 - plugins/hide_blockquote/localization/ar.inc | 2 - plugins/hide_blockquote/localization/ar_SA.inc | 1 - plugins/hide_blockquote/localization/az_AZ.inc | 1 - plugins/hide_blockquote/localization/be_BE.inc | 1 - plugins/hide_blockquote/localization/bg_BG.inc | 1 - plugins/hide_blockquote/localization/bn_BD.inc | 2 - plugins/hide_blockquote/localization/bs_BA.inc | 1 - plugins/hide_blockquote/localization/ca_ES.inc | 1 - plugins/hide_blockquote/localization/cs_CZ.inc | 1 - plugins/hide_blockquote/localization/cy_GB.inc | 1 - plugins/hide_blockquote/localization/da_DK.inc | 1 - plugins/hide_blockquote/localization/de_CH.inc | 1 - plugins/hide_blockquote/localization/de_DE.inc | 1 - plugins/hide_blockquote/localization/el_GR.inc | 1 - plugins/hide_blockquote/localization/en_GB.inc | 1 - plugins/hide_blockquote/localization/eo.inc | 1 - plugins/hide_blockquote/localization/es_AR.inc | 1 - plugins/hide_blockquote/localization/es_ES.inc | 1 - plugins/hide_blockquote/localization/et_EE.inc | 1 - plugins/hide_blockquote/localization/eu_ES.inc | 1 - plugins/hide_blockquote/localization/fa_AF.inc | 2 - plugins/hide_blockquote/localization/fa_IR.inc | 1 - plugins/hide_blockquote/localization/fi_FI.inc | 3 +- plugins/hide_blockquote/localization/fr_FR.inc | 1 - plugins/hide_blockquote/localization/gl_ES.inc | 1 - plugins/hide_blockquote/localization/he_IL.inc | 1 - plugins/hide_blockquote/localization/hi_IN.inc | 2 - plugins/hide_blockquote/localization/hu_HU.inc | 1 - plugins/hide_blockquote/localization/hy_AM.inc | 1 - plugins/hide_blockquote/localization/ia.inc | 2 - plugins/hide_blockquote/localization/id_ID.inc | 1 - plugins/hide_blockquote/localization/it_IT.inc | 1 - plugins/hide_blockquote/localization/ja_JP.inc | 1 - plugins/hide_blockquote/localization/ko_KR.inc | 1 - plugins/hide_blockquote/localization/lb_LU.inc | 1 - plugins/hide_blockquote/localization/lt_LT.inc | 1 - plugins/hide_blockquote/localization/lv_LV.inc | 1 - plugins/hide_blockquote/localization/ml_IN.inc | 2 - plugins/hide_blockquote/localization/mn_MN.inc | 2 - plugins/hide_blockquote/localization/ms_MY.inc | 2 - plugins/hide_blockquote/localization/my_MM.inc | 2 - plugins/hide_blockquote/localization/nb_NO.inc | 1 - plugins/hide_blockquote/localization/nl_BE.inc | 2 - plugins/hide_blockquote/localization/nl_NL.inc | 1 - plugins/hide_blockquote/localization/nn_NO.inc | 1 - plugins/hide_blockquote/localization/nqo.inc | 2 - plugins/hide_blockquote/localization/om.inc | 2 - plugins/hide_blockquote/localization/pl_PL.inc | 1 - plugins/hide_blockquote/localization/pt_BR.inc | 1 - plugins/hide_blockquote/localization/pt_PT.inc | 1 - plugins/hide_blockquote/localization/ro_RO.inc | 1 - plugins/hide_blockquote/localization/ru_RU.inc | 1 - plugins/hide_blockquote/localization/sk_SK.inc | 1 - plugins/hide_blockquote/localization/sl_SI.inc | 1 - plugins/hide_blockquote/localization/sr_CS.inc | 1 - plugins/hide_blockquote/localization/sv_SE.inc | 1 - plugins/hide_blockquote/localization/te_IN.inc | 2 - plugins/hide_blockquote/localization/th_TH.inc | 2 - plugins/hide_blockquote/localization/ti.inc | 2 - plugins/hide_blockquote/localization/tr_TR.inc | 1 - plugins/hide_blockquote/localization/tzm.inc | 2 - plugins/hide_blockquote/localization/uk_UA.inc | 1 - plugins/hide_blockquote/localization/ur_PK.inc | 2 - plugins/hide_blockquote/localization/vi_VN.inc | 1 - plugins/hide_blockquote/localization/zh_CN.inc | 1 - plugins/hide_blockquote/localization/zh_TW.inc | 1 - plugins/managesieve/localization/ar_SA.inc | 2 - plugins/managesieve/localization/az_AZ.inc | 34 - plugins/managesieve/localization/be_BE.inc | 170 +++-- plugins/managesieve/localization/bg_BG.inc | 11 - plugins/managesieve/localization/bs_BA.inc | 11 - plugins/managesieve/localization/ca_ES.inc | 12 - plugins/managesieve/localization/cs_CZ.inc | 10 +- plugins/managesieve/localization/cy_GB.inc | 11 - plugins/managesieve/localization/da_DK.inc | 13 - plugins/managesieve/localization/de_CH.inc | 11 - plugins/managesieve/localization/de_DE.inc | 12 - plugins/managesieve/localization/el_GR.inc | 13 - plugins/managesieve/localization/en_GB.inc | 56 -- plugins/managesieve/localization/eo.inc | 143 ---- plugins/managesieve/localization/es_AR.inc | 111 --- plugins/managesieve/localization/es_ES.inc | 13 +- plugins/managesieve/localization/et_EE.inc | 13 - plugins/managesieve/localization/eu_ES.inc | 2 - plugins/managesieve/localization/fa_IR.inc | 12 - plugins/managesieve/localization/fi_FI.inc | 131 ---- plugins/managesieve/localization/fr_FR.inc | 11 - plugins/managesieve/localization/gl_ES.inc | 13 - plugins/managesieve/localization/he_IL.inc | 12 - plugins/managesieve/localization/hr_HR.inc | 56 -- plugins/managesieve/localization/hu_HU.inc | 11 - plugins/managesieve/localization/hy_AM.inc | 56 -- plugins/managesieve/localization/ia.inc | 173 ----- plugins/managesieve/localization/id_ID.inc | 37 - plugins/managesieve/localization/it_IT.inc | 11 - plugins/managesieve/localization/ja_JP.inc | 22 +- plugins/managesieve/localization/ko_KR.inc | 12 - plugins/managesieve/localization/lb_LU.inc | 145 ---- plugins/managesieve/localization/lt_LT.inc | 13 - plugins/managesieve/localization/lv_LV.inc | 13 - plugins/managesieve/localization/ml_IN.inc | 56 -- plugins/managesieve/localization/mr_IN.inc | 160 ---- plugins/managesieve/localization/nb_NO.inc | 13 - plugins/managesieve/localization/nl_NL.inc | 42 +- plugins/managesieve/localization/nn_NO.inc | 38 - plugins/managesieve/localization/pl_PL.inc | 2 - plugins/managesieve/localization/pt_BR.inc | 11 - plugins/managesieve/localization/pt_PT.inc | 6 +- plugins/managesieve/localization/ro_RO.inc | 11 - plugins/managesieve/localization/ru_RU.inc | 2 - plugins/managesieve/localization/si_LK.inc | 152 ---- plugins/managesieve/localization/sk_SK.inc | 11 - plugins/managesieve/localization/sl_SI.inc | 12 - plugins/managesieve/localization/sv_SE.inc | 11 - plugins/managesieve/localization/th_TH.inc | 2 - plugins/managesieve/localization/tr_TR.inc | 13 +- plugins/managesieve/localization/uk_UA.inc | 115 --- plugins/managesieve/localization/vi_VN.inc | 40 - plugins/managesieve/localization/zh_CN.inc | 24 - plugins/managesieve/localization/zh_TW.inc | 30 - plugins/markasjunk/localization/ar.inc | 1 - plugins/markasjunk/localization/az_AZ.inc | 1 - plugins/markasjunk/localization/be_BE.inc | 7 +- plugins/markasjunk/localization/bg_BG.inc | 1 - plugins/markasjunk/localization/br.inc | 1 - plugins/markasjunk/localization/bs_BA.inc | 1 - plugins/markasjunk/localization/ca_ES.inc | 1 - plugins/markasjunk/localization/cs_CZ.inc | 1 - plugins/markasjunk/localization/cy_GB.inc | 1 - plugins/markasjunk/localization/da_DK.inc | 1 - plugins/markasjunk/localization/de_CH.inc | 1 - plugins/markasjunk/localization/de_DE.inc | 1 - plugins/markasjunk/localization/el_GR.inc | 1 - plugins/markasjunk/localization/en_GB.inc | 1 - plugins/markasjunk/localization/eo.inc | 1 - plugins/markasjunk/localization/es_AR.inc | 1 - plugins/markasjunk/localization/es_ES.inc | 1 - plugins/markasjunk/localization/et_EE.inc | 1 - plugins/markasjunk/localization/eu_ES.inc | 1 - plugins/markasjunk/localization/fa_IR.inc | 1 - plugins/markasjunk/localization/fi_FI.inc | 1 - plugins/markasjunk/localization/fr_FR.inc | 1 - plugins/markasjunk/localization/gl_ES.inc | 1 - plugins/markasjunk/localization/he_IL.inc | 1 - plugins/markasjunk/localization/hr_HR.inc | 2 - plugins/markasjunk/localization/hu_HU.inc | 1 - plugins/markasjunk/localization/hy_AM.inc | 1 - plugins/markasjunk/localization/id_ID.inc | 1 - plugins/markasjunk/localization/it_IT.inc | 1 - plugins/markasjunk/localization/ja_JP.inc | 1 - plugins/markasjunk/localization/km_KH.inc | 1 - plugins/markasjunk/localization/ko_KR.inc | 1 - plugins/markasjunk/localization/ku.inc | 2 - plugins/markasjunk/localization/lb_LU.inc | 1 - plugins/markasjunk/localization/lt_LT.inc | 1 - plugins/markasjunk/localization/lv_LV.inc | 1 - plugins/markasjunk/localization/ml_IN.inc | 2 - plugins/markasjunk/localization/mr_IN.inc | 2 - plugins/markasjunk/localization/nb_NO.inc | 1 - plugins/markasjunk/localization/nl_NL.inc | 1 - plugins/markasjunk/localization/nn_NO.inc | 1 - plugins/markasjunk/localization/pl_PL.inc | 1 - plugins/markasjunk/localization/pt_BR.inc | 1 - plugins/markasjunk/localization/pt_PT.inc | 1 - plugins/markasjunk/localization/ro_RO.inc | 7 +- plugins/markasjunk/localization/ru_RU.inc | 1 - plugins/markasjunk/localization/si_LK.inc | 2 - plugins/markasjunk/localization/sk_SK.inc | 1 - plugins/markasjunk/localization/sl_SI.inc | 1 - plugins/markasjunk/localization/sr_CS.inc | 1 - plugins/markasjunk/localization/sv_SE.inc | 1 - plugins/markasjunk/localization/tr_TR.inc | 1 - plugins/markasjunk/localization/uk_UA.inc | 2 - plugins/markasjunk/localization/vi_VN.inc | 1 - plugins/markasjunk/localization/zh_CN.inc | 1 - plugins/markasjunk/localization/zh_TW.inc | 1 - plugins/new_user_dialog/localization/ar.inc | 1 - plugins/new_user_dialog/localization/ar_SA.inc | 1 - plugins/new_user_dialog/localization/ast.inc | 1 - plugins/new_user_dialog/localization/az_AZ.inc | 1 - plugins/new_user_dialog/localization/be_BE.inc | 5 +- plugins/new_user_dialog/localization/bg_BG.inc | 1 - plugins/new_user_dialog/localization/bs_BA.inc | 1 - plugins/new_user_dialog/localization/ca_ES.inc | 1 - plugins/new_user_dialog/localization/cs_CZ.inc | 1 - plugins/new_user_dialog/localization/cy_GB.inc | 1 - plugins/new_user_dialog/localization/da_DK.inc | 1 - plugins/new_user_dialog/localization/de_CH.inc | 1 - plugins/new_user_dialog/localization/de_DE.inc | 1 - plugins/new_user_dialog/localization/el_GR.inc | 1 - plugins/new_user_dialog/localization/en_GB.inc | 1 - plugins/new_user_dialog/localization/eo.inc | 1 - plugins/new_user_dialog/localization/es_AR.inc | 1 - plugins/new_user_dialog/localization/es_ES.inc | 1 - plugins/new_user_dialog/localization/et_EE.inc | 1 - plugins/new_user_dialog/localization/eu_ES.inc | 1 - plugins/new_user_dialog/localization/fa_AF.inc | 1 - plugins/new_user_dialog/localization/fa_IR.inc | 1 - plugins/new_user_dialog/localization/fi_FI.inc | 1 - plugins/new_user_dialog/localization/fr_FR.inc | 1 - plugins/new_user_dialog/localization/gl_ES.inc | 1 - plugins/new_user_dialog/localization/he_IL.inc | 1 - plugins/new_user_dialog/localization/hr_HR.inc | 1 - plugins/new_user_dialog/localization/hu_HU.inc | 1 - plugins/new_user_dialog/localization/hy_AM.inc | 1 - plugins/new_user_dialog/localization/id_ID.inc | 1 - plugins/new_user_dialog/localization/it_IT.inc | 1 - plugins/new_user_dialog/localization/ja_JP.inc | 1 - plugins/new_user_dialog/localization/km_KH.inc | 1 - plugins/new_user_dialog/localization/ko_KR.inc | 1 - plugins/new_user_dialog/localization/ku.inc | 1 - plugins/new_user_dialog/localization/lb_LU.inc | 1 - plugins/new_user_dialog/localization/lt_LT.inc | 1 - plugins/new_user_dialog/localization/lv_LV.inc | 1 - plugins/new_user_dialog/localization/ml_IN.inc | 1 - plugins/new_user_dialog/localization/mr_IN.inc | 1 - plugins/new_user_dialog/localization/nb_NO.inc | 1 - plugins/new_user_dialog/localization/nl_NL.inc | 1 - plugins/new_user_dialog/localization/nn_NO.inc | 1 - plugins/new_user_dialog/localization/pl_PL.inc | 1 - plugins/new_user_dialog/localization/pt_BR.inc | 1 - plugins/new_user_dialog/localization/pt_PT.inc | 1 - plugins/new_user_dialog/localization/ro_RO.inc | 5 +- plugins/new_user_dialog/localization/ru_RU.inc | 1 - plugins/new_user_dialog/localization/sk_SK.inc | 1 - plugins/new_user_dialog/localization/sl_SI.inc | 1 - plugins/new_user_dialog/localization/sr_CS.inc | 1 - plugins/new_user_dialog/localization/sv_SE.inc | 1 - plugins/new_user_dialog/localization/tr_TR.inc | 1 - plugins/new_user_dialog/localization/uk_UA.inc | 1 - plugins/new_user_dialog/localization/vi_VN.inc | 1 - plugins/new_user_dialog/localization/zh_CN.inc | 1 - plugins/new_user_dialog/localization/zh_TW.inc | 1 - plugins/newmail_notifier/localization/ar_SA.inc | 2 - plugins/newmail_notifier/localization/ast.inc | 1 - plugins/newmail_notifier/localization/az_AZ.inc | 2 - plugins/newmail_notifier/localization/be_BE.inc | 5 +- plugins/newmail_notifier/localization/bg_BG.inc | 1 - plugins/newmail_notifier/localization/br.inc | 9 - plugins/newmail_notifier/localization/bs_BA.inc | 1 - plugins/newmail_notifier/localization/ca_ES.inc | 2 - plugins/newmail_notifier/localization/cs_CZ.inc | 1 - plugins/newmail_notifier/localization/cy_GB.inc | 1 - plugins/newmail_notifier/localization/da_DK.inc | 2 - plugins/newmail_notifier/localization/de_CH.inc | 1 - plugins/newmail_notifier/localization/de_DE.inc | 1 - plugins/newmail_notifier/localization/el_GR.inc | 1 - plugins/newmail_notifier/localization/en_GB.inc | 2 - plugins/newmail_notifier/localization/eo.inc | 2 - plugins/newmail_notifier/localization/es_AR.inc | 1 - plugins/newmail_notifier/localization/es_ES.inc | 3 +- plugins/newmail_notifier/localization/et_EE.inc | 2 - plugins/newmail_notifier/localization/eu_ES.inc | 1 - plugins/newmail_notifier/localization/fa_IR.inc | 2 - plugins/newmail_notifier/localization/fi_FI.inc | 1 - plugins/newmail_notifier/localization/fr_FR.inc | 1 - plugins/newmail_notifier/localization/gl_ES.inc | 2 - plugins/newmail_notifier/localization/he_IL.inc | 2 - plugins/newmail_notifier/localization/hr_HR.inc | 2 - plugins/newmail_notifier/localization/hu_HU.inc | 1 - plugins/newmail_notifier/localization/hy_AM.inc | 2 - plugins/newmail_notifier/localization/ia.inc | 7 - plugins/newmail_notifier/localization/id_ID.inc | 2 - plugins/newmail_notifier/localization/it_IT.inc | 1 - plugins/newmail_notifier/localization/ja_JP.inc | 3 +- plugins/newmail_notifier/localization/km_KH.inc | 6 - plugins/newmail_notifier/localization/ko_KR.inc | 2 - plugins/newmail_notifier/localization/lb_LU.inc | 2 +- plugins/newmail_notifier/localization/lt_LT.inc | 2 - plugins/newmail_notifier/localization/lv_LV.inc | 1 - plugins/newmail_notifier/localization/ml_IN.inc | 2 - plugins/newmail_notifier/localization/mr_IN.inc | 6 - plugins/newmail_notifier/localization/nb_NO.inc | 2 - plugins/newmail_notifier/localization/nl_NL.inc | 1 - plugins/newmail_notifier/localization/nn_NO.inc | 2 - plugins/newmail_notifier/localization/pl_PL.inc | 1 - plugins/newmail_notifier/localization/pt_BR.inc | 1 - plugins/newmail_notifier/localization/pt_PT.inc | 1 - plugins/newmail_notifier/localization/ro_RO.inc | 1 - plugins/newmail_notifier/localization/ru_RU.inc | 1 - plugins/newmail_notifier/localization/si_LK.inc | 10 - plugins/newmail_notifier/localization/sk_SK.inc | 1 - plugins/newmail_notifier/localization/sl_SI.inc | 2 - plugins/newmail_notifier/localization/sr_CS.inc | 2 - plugins/newmail_notifier/localization/sv_SE.inc | 1 - plugins/newmail_notifier/localization/ti.inc | 1 - plugins/newmail_notifier/localization/tr_TR.inc | 3 +- plugins/newmail_notifier/localization/uk_UA.inc | 2 - plugins/newmail_notifier/localization/vi_VN.inc | 2 - plugins/newmail_notifier/localization/zh_CN.inc | 2 - plugins/newmail_notifier/localization/zh_TW.inc | 1 - plugins/password/localization/ar.inc | 1 - plugins/password/localization/ar_SA.inc | 1 - plugins/password/localization/ast.inc | 1 - plugins/password/localization/az_AZ.inc | 1 - plugins/password/localization/be_BE.inc | 1 - plugins/password/localization/bg_BG.inc | 1 - plugins/password/localization/br.inc | 2 - plugins/password/localization/bs_BA.inc | 1 - plugins/password/localization/ca_ES.inc | 1 - plugins/password/localization/cs_CZ.inc | 1 - plugins/password/localization/cy_GB.inc | 1 - plugins/password/localization/da_DK.inc | 1 - plugins/password/localization/de_CH.inc | 1 - plugins/password/localization/de_DE.inc | 1 - plugins/password/localization/el_GR.inc | 1 - plugins/password/localization/en_GB.inc | 1 - plugins/password/localization/eo.inc | 1 - plugins/password/localization/es_AR.inc | 1 - plugins/password/localization/es_ES.inc | 1 - plugins/password/localization/et_EE.inc | 1 - plugins/password/localization/eu_ES.inc | 1 - plugins/password/localization/fa_AF.inc | 1 - plugins/password/localization/fa_IR.inc | 1 - plugins/password/localization/fi_FI.inc | 1 - plugins/password/localization/fr_FR.inc | 1 - plugins/password/localization/gl_ES.inc | 1 - plugins/password/localization/he_IL.inc | 1 - plugins/password/localization/hr_HR.inc | 1 - plugins/password/localization/hu_HU.inc | 1 - plugins/password/localization/hy_AM.inc | 1 - plugins/password/localization/id_ID.inc | 1 - plugins/password/localization/it_IT.inc | 1 - plugins/password/localization/ja_JP.inc | 1 - plugins/password/localization/ko_KR.inc | 1 - plugins/password/localization/ku.inc | 14 - plugins/password/localization/lb_LU.inc | 1 - plugins/password/localization/lt_LT.inc | 1 - plugins/password/localization/lv_LV.inc | 1 - plugins/password/localization/nb_NO.inc | 1 - plugins/password/localization/nl_NL.inc | 1 - plugins/password/localization/nn_NO.inc | 1 - plugins/password/localization/pl_PL.inc | 1 - plugins/password/localization/pt_BR.inc | 1 - plugins/password/localization/pt_PT.inc | 1 - plugins/password/localization/ro_RO.inc | 11 +- plugins/password/localization/ru_RU.inc | 1 - plugins/password/localization/sk_SK.inc | 1 - plugins/password/localization/sl_SI.inc | 1 - plugins/password/localization/sr_CS.inc | 1 - plugins/password/localization/sv_SE.inc | 1 - plugins/password/localization/ti.inc | 1 - plugins/password/localization/tr_TR.inc | 1 - plugins/password/localization/uk_UA.inc | 1 - plugins/password/localization/vi_VN.inc | 1 - plugins/password/localization/zh_CN.inc | 1 - plugins/password/localization/zh_TW.inc | 1 - .../subscriptions_option/localization/az_AZ.inc | 1 - .../subscriptions_option/localization/be_BE.inc | 1 - .../subscriptions_option/localization/bg_BG.inc | 1 - .../subscriptions_option/localization/bs_BA.inc | 2 - .../subscriptions_option/localization/ca_ES.inc | 2 - .../subscriptions_option/localization/cs_CZ.inc | 2 - .../subscriptions_option/localization/cy_GB.inc | 2 - .../subscriptions_option/localization/da_DK.inc | 2 - .../subscriptions_option/localization/de_CH.inc | 2 - .../subscriptions_option/localization/de_DE.inc | 2 - .../subscriptions_option/localization/el_GR.inc | 1 - .../subscriptions_option/localization/en_GB.inc | 2 - plugins/subscriptions_option/localization/eo.inc | 2 - .../subscriptions_option/localization/es_AR.inc | 1 - .../subscriptions_option/localization/es_ES.inc | 2 - .../subscriptions_option/localization/et_EE.inc | 2 - .../subscriptions_option/localization/eu_ES.inc | 1 - .../subscriptions_option/localization/fa_AF.inc | 1 - .../subscriptions_option/localization/fa_IR.inc | 2 - .../subscriptions_option/localization/fi_FI.inc | 2 - .../subscriptions_option/localization/fr_FR.inc | 2 - .../subscriptions_option/localization/gl_ES.inc | 2 - .../subscriptions_option/localization/he_IL.inc | 2 - .../subscriptions_option/localization/hu_HU.inc | 2 - .../subscriptions_option/localization/hy_AM.inc | 2 - .../subscriptions_option/localization/id_ID.inc | 1 - .../subscriptions_option/localization/it_IT.inc | 2 - .../subscriptions_option/localization/ja_JP.inc | 2 - .../subscriptions_option/localization/ko_KR.inc | 2 - .../subscriptions_option/localization/lb_LU.inc | 2 - .../subscriptions_option/localization/lt_LT.inc | 2 - .../subscriptions_option/localization/lv_LV.inc | 1 - .../subscriptions_option/localization/nb_NO.inc | 2 - .../subscriptions_option/localization/nl_NL.inc | 2 - .../subscriptions_option/localization/nn_NO.inc | 1 - .../subscriptions_option/localization/pl_PL.inc | 2 - .../subscriptions_option/localization/pt_BR.inc | 2 - .../subscriptions_option/localization/pt_PT.inc | 2 - .../subscriptions_option/localization/ro_RO.inc | 1 - .../subscriptions_option/localization/ru_RU.inc | 2 - .../subscriptions_option/localization/sk_SK.inc | 2 - .../subscriptions_option/localization/sl_SI.inc | 2 - .../subscriptions_option/localization/sr_CS.inc | 2 - .../subscriptions_option/localization/sv_SE.inc | 2 - .../subscriptions_option/localization/tr_TR.inc | 2 - .../subscriptions_option/localization/vi_VN.inc | 2 - .../subscriptions_option/localization/zh_CN.inc | 2 - .../subscriptions_option/localization/zh_TW.inc | 2 - plugins/userinfo/localization/ar.inc | 1 - plugins/userinfo/localization/ar_SA.inc | 1 - plugins/userinfo/localization/ast.inc | 1 - plugins/userinfo/localization/az_AZ.inc | 1 - plugins/userinfo/localization/be_BE.inc | 3 +- plugins/userinfo/localization/bg_BG.inc | 1 - plugins/userinfo/localization/br.inc | 2 - plugins/userinfo/localization/bs_BA.inc | 1 - plugins/userinfo/localization/ca_ES.inc | 1 - plugins/userinfo/localization/cs_CZ.inc | 1 - plugins/userinfo/localization/cy_GB.inc | 1 - plugins/userinfo/localization/da_DK.inc | 1 - plugins/userinfo/localization/de_CH.inc | 1 - plugins/userinfo/localization/de_DE.inc | 1 - plugins/userinfo/localization/el_GR.inc | 1 - plugins/userinfo/localization/en_GB.inc | 1 - plugins/userinfo/localization/eo.inc | 1 - plugins/userinfo/localization/es_AR.inc | 1 - plugins/userinfo/localization/es_ES.inc | 1 - plugins/userinfo/localization/et_EE.inc | 1 - plugins/userinfo/localization/eu_ES.inc | 1 - plugins/userinfo/localization/fa_AF.inc | 1 - plugins/userinfo/localization/fa_IR.inc | 1 - plugins/userinfo/localization/fi_FI.inc | 1 - plugins/userinfo/localization/fr_FR.inc | 1 - plugins/userinfo/localization/gl_ES.inc | 1 - plugins/userinfo/localization/he_IL.inc | 1 - plugins/userinfo/localization/hr_HR.inc | 1 - plugins/userinfo/localization/hu_HU.inc | 1 - plugins/userinfo/localization/hy_AM.inc | 1 - plugins/userinfo/localization/ia.inc | 1 - plugins/userinfo/localization/id_ID.inc | 1 - plugins/userinfo/localization/it_IT.inc | 1 - plugins/userinfo/localization/ja_JP.inc | 1 - plugins/userinfo/localization/km_KH.inc | 1 - plugins/userinfo/localization/ko_KR.inc | 1 - plugins/userinfo/localization/ku.inc | 1 - plugins/userinfo/localization/lb_LU.inc | 1 - plugins/userinfo/localization/lt_LT.inc | 1 - plugins/userinfo/localization/lv_LV.inc | 1 - plugins/userinfo/localization/ml_IN.inc | 1 - plugins/userinfo/localization/mr_IN.inc | 3 - plugins/userinfo/localization/nb_NO.inc | 1 - plugins/userinfo/localization/nl_NL.inc | 1 - plugins/userinfo/localization/nn_NO.inc | 1 - plugins/userinfo/localization/pl_PL.inc | 1 - plugins/userinfo/localization/pt_BR.inc | 1 - plugins/userinfo/localization/pt_PT.inc | 1 - plugins/userinfo/localization/ro_RO.inc | 9 +- plugins/userinfo/localization/ru_RU.inc | 1 - plugins/userinfo/localization/sk_SK.inc | 1 - plugins/userinfo/localization/sl_SI.inc | 1 - plugins/userinfo/localization/sr_CS.inc | 1 - plugins/userinfo/localization/sv_SE.inc | 1 - plugins/userinfo/localization/ti.inc | 1 - plugins/userinfo/localization/tr_TR.inc | 1 - plugins/userinfo/localization/uk_UA.inc | 1 - plugins/userinfo/localization/vi_VN.inc | 1 - plugins/userinfo/localization/zh_CN.inc | 1 - plugins/userinfo/localization/zh_TW.inc | 1 - plugins/vcard_attachments/localization/ar.inc | 1 - plugins/vcard_attachments/localization/ar_SA.inc | 1 - plugins/vcard_attachments/localization/az_AZ.inc | 1 - plugins/vcard_attachments/localization/be_BE.inc | 1 - plugins/vcard_attachments/localization/bg_BG.inc | 1 - plugins/vcard_attachments/localization/bs_BA.inc | 1 - plugins/vcard_attachments/localization/ca_ES.inc | 1 - plugins/vcard_attachments/localization/cs_CZ.inc | 1 - plugins/vcard_attachments/localization/cy_GB.inc | 1 - plugins/vcard_attachments/localization/da_DK.inc | 1 - plugins/vcard_attachments/localization/de_CH.inc | 1 - plugins/vcard_attachments/localization/de_DE.inc | 1 - plugins/vcard_attachments/localization/el_GR.inc | 1 - plugins/vcard_attachments/localization/en_GB.inc | 1 - plugins/vcard_attachments/localization/eo.inc | 1 - plugins/vcard_attachments/localization/es_AR.inc | 1 - plugins/vcard_attachments/localization/es_ES.inc | 1 - plugins/vcard_attachments/localization/et_EE.inc | 1 - plugins/vcard_attachments/localization/eu_ES.inc | 1 - plugins/vcard_attachments/localization/fa_IR.inc | 1 - plugins/vcard_attachments/localization/fi_FI.inc | 1 - plugins/vcard_attachments/localization/fr_FR.inc | 1 - plugins/vcard_attachments/localization/gl_ES.inc | 1 - plugins/vcard_attachments/localization/he_IL.inc | 1 - plugins/vcard_attachments/localization/hr_HR.inc | 1 - plugins/vcard_attachments/localization/hu_HU.inc | 1 - plugins/vcard_attachments/localization/hy_AM.inc | 1 - plugins/vcard_attachments/localization/id_ID.inc | 1 - plugins/vcard_attachments/localization/it_IT.inc | 1 - plugins/vcard_attachments/localization/ja_JP.inc | 1 - plugins/vcard_attachments/localization/km_KH.inc | 1 - plugins/vcard_attachments/localization/ko_KR.inc | 1 - plugins/vcard_attachments/localization/lb_LU.inc | 1 - plugins/vcard_attachments/localization/lt_LT.inc | 1 - plugins/vcard_attachments/localization/lv_LV.inc | 1 - plugins/vcard_attachments/localization/ml_IN.inc | 1 - plugins/vcard_attachments/localization/mr_IN.inc | 1 - plugins/vcard_attachments/localization/nb_NO.inc | 1 - plugins/vcard_attachments/localization/nl_NL.inc | 1 - plugins/vcard_attachments/localization/nn_NO.inc | 1 - plugins/vcard_attachments/localization/pl_PL.inc | 1 - plugins/vcard_attachments/localization/pt_BR.inc | 1 - plugins/vcard_attachments/localization/pt_PT.inc | 1 - plugins/vcard_attachments/localization/ro_RO.inc | 1 - plugins/vcard_attachments/localization/ru_RU.inc | 1 - plugins/vcard_attachments/localization/si_LK.inc | 1 - plugins/vcard_attachments/localization/sk_SK.inc | 1 - plugins/vcard_attachments/localization/sl_SI.inc | 1 - plugins/vcard_attachments/localization/sr_CS.inc | 1 - plugins/vcard_attachments/localization/sv_SE.inc | 1 - plugins/vcard_attachments/localization/tr_TR.inc | 1 - plugins/vcard_attachments/localization/uk_UA.inc | 1 - plugins/vcard_attachments/localization/vi_VN.inc | 1 - plugins/vcard_attachments/localization/zh_CN.inc | 1 - plugins/vcard_attachments/localization/zh_TW.inc | 1 - plugins/zipdownload/localization/ar.inc | 1 - plugins/zipdownload/localization/ar_SA.inc | 1 - plugins/zipdownload/localization/az_AZ.inc | 1 - plugins/zipdownload/localization/be_BE.inc | 1 - plugins/zipdownload/localization/bg_BG.inc | 1 - plugins/zipdownload/localization/br.inc | 1 - plugins/zipdownload/localization/bs_BA.inc | 1 - plugins/zipdownload/localization/ca_ES.inc | 1 - plugins/zipdownload/localization/cs_CZ.inc | 1 - plugins/zipdownload/localization/cy_GB.inc | 1 - plugins/zipdownload/localization/da_DK.inc | 1 - plugins/zipdownload/localization/de_CH.inc | 1 - plugins/zipdownload/localization/de_DE.inc | 1 - plugins/zipdownload/localization/el_GR.inc | 1 - plugins/zipdownload/localization/en_GB.inc | 1 - plugins/zipdownload/localization/eo.inc | 1 - plugins/zipdownload/localization/es_AR.inc | 1 - plugins/zipdownload/localization/es_ES.inc | 1 - plugins/zipdownload/localization/et_EE.inc | 1 - plugins/zipdownload/localization/eu_ES.inc | 1 - plugins/zipdownload/localization/fa_AF.inc | 1 - plugins/zipdownload/localization/fa_IR.inc | 1 - plugins/zipdownload/localization/fi_FI.inc | 1 - plugins/zipdownload/localization/fr_FR.inc | 1 - plugins/zipdownload/localization/gl_ES.inc | 1 - plugins/zipdownload/localization/he_IL.inc | 1 - plugins/zipdownload/localization/hu_HU.inc | 1 - plugins/zipdownload/localization/id_ID.inc | 1 - plugins/zipdownload/localization/it_IT.inc | 1 - plugins/zipdownload/localization/ja_JP.inc | 1 - plugins/zipdownload/localization/km_KH.inc | 1 - plugins/zipdownload/localization/ko_KR.inc | 1 - plugins/zipdownload/localization/lb_LU.inc | 1 - plugins/zipdownload/localization/lt_LT.inc | 1 - plugins/zipdownload/localization/lv_LV.inc | 1 - plugins/zipdownload/localization/nb_NO.inc | 1 - plugins/zipdownload/localization/nl_NL.inc | 1 - plugins/zipdownload/localization/nn_NO.inc | 1 - plugins/zipdownload/localization/pl_PL.inc | 1 - plugins/zipdownload/localization/pt_BR.inc | 1 - plugins/zipdownload/localization/pt_PT.inc | 1 - plugins/zipdownload/localization/ro_RO.inc | 5 +- plugins/zipdownload/localization/ru_RU.inc | 1 - plugins/zipdownload/localization/sk_SK.inc | 1 - plugins/zipdownload/localization/sl_SI.inc | 1 - plugins/zipdownload/localization/sr_CS.inc | 1 - plugins/zipdownload/localization/sv_SE.inc | 1 - plugins/zipdownload/localization/tr_TR.inc | 1 - plugins/zipdownload/localization/uk_UA.inc | 1 - plugins/zipdownload/localization/vi_VN.inc | 1 - plugins/zipdownload/localization/zh_CN.inc | 1 - plugins/zipdownload/localization/zh_TW.inc | 1 - program/localization/ar_SA/labels.inc | 39 - program/localization/ar_SA/messages.inc | 22 - program/localization/ast/labels.inc | 2 - program/localization/ast/messages.inc | 4 - program/localization/az_AZ/labels.inc | 18 +- program/localization/az_AZ/messages.inc | 4 - program/localization/be_BE/labels.inc | 838 ++++++++++----------- program/localization/be_BE/messages.inc | 305 ++++---- program/localization/bg_BG/labels.inc | 2 - program/localization/bg_BG/messages.inc | 4 - program/localization/bn_BD/labels.inc | 228 ------ program/localization/bn_BD/messages.inc | 89 --- program/localization/br/labels.inc | 277 ------- program/localization/br/messages.inc | 101 --- program/localization/bs_BA/labels.inc | 8 +- program/localization/bs_BA/messages.inc | 4 - program/localization/ca_ES/labels.inc | 16 +- program/localization/ca_ES/messages.inc | 4 - program/localization/cs_CZ/labels.inc | 10 +- program/localization/cs_CZ/messages.inc | 10 +- program/localization/cy_GB/labels.inc | 2 - program/localization/cy_GB/messages.inc | 4 - program/localization/da_DK/labels.inc | 10 +- program/localization/da_DK/messages.inc | 4 - program/localization/de_CH/labels.inc | 2 - program/localization/de_CH/messages.inc | 4 - program/localization/de_DE/labels.inc | 10 +- program/localization/de_DE/messages.inc | 4 - program/localization/el_GR/labels.inc | 8 +- program/localization/el_GR/messages.inc | 4 - program/localization/en_GB/labels.inc | 19 - program/localization/en_GB/messages.inc | 15 +- program/localization/eo/labels.inc | 157 +--- program/localization/eo/messages.inc | 93 --- program/localization/es_AR/labels.inc | 64 -- program/localization/es_AR/messages.inc | 13 - program/localization/es_ES/labels.inc | 8 +- program/localization/es_ES/messages.inc | 11 +- program/localization/et_EE/labels.inc | 6 +- program/localization/et_EE/messages.inc | 11 +- program/localization/eu_ES/labels.inc | 473 ++++++------ program/localization/eu_ES/messages.inc | 4 - program/localization/fa_AF/labels.inc | 228 ------ program/localization/fa_AF/messages.inc | 76 -- program/localization/fa_IR/labels.inc | 42 +- program/localization/fa_IR/messages.inc | 4 - program/localization/fi_FI/labels.inc | 8 +- program/localization/fi_FI/messages.inc | 25 +- program/localization/fr_FR/csv2vcard.inc | 1 - program/localization/fr_FR/labels.inc | 2 - program/localization/fr_FR/messages.inc | 216 +++--- program/localization/fy_NL/labels.inc | 395 ---------- program/localization/fy_NL/messages.inc | 153 ---- program/localization/ga_IE/labels.inc | 289 ------- program/localization/ga_IE/messages.inc | 105 --- program/localization/gl_ES/labels.inc | 5 - program/localization/gl_ES/messages.inc | 6 - program/localization/he_IL/labels.inc | 8 +- program/localization/he_IL/messages.inc | 11 +- program/localization/hi_IN/labels.inc | 290 ------- program/localization/hi_IN/messages.inc | 108 --- program/localization/hr_HR/labels.inc | 44 -- program/localization/hr_HR/messages.inc | 21 - program/localization/hu_HU/labels.inc | 2 - program/localization/hu_HU/messages.inc | 4 - program/localization/hy_AM/labels.inc | 37 - program/localization/hy_AM/messages.inc | 19 - program/localization/ia/labels.inc | 193 ----- program/localization/ia/messages.inc | 133 ---- program/localization/id_ID/labels.inc | 13 +- program/localization/id_ID/messages.inc | 18 +- program/localization/is_IS/labels.inc | 43 -- program/localization/is_IS/messages.inc | 116 --- program/localization/it_IT/labels.inc | 18 +- program/localization/it_IT/messages.inc | 4 - program/localization/ja_JP/labels.inc | 10 +- program/localization/ja_JP/messages.inc | 3 +- program/localization/ka_GE/labels.inc | 124 --- program/localization/ka_GE/messages.inc | 58 -- program/localization/km_KH/labels.inc | 95 --- program/localization/km_KH/messages.inc | 47 -- program/localization/ko_KR/labels.inc | 26 +- program/localization/ko_KR/messages.inc | 18 +- program/localization/ku/labels.inc | 301 -------- program/localization/ku/messages.inc | 101 --- program/localization/lb_LU/labels.inc | 3 - program/localization/lb_LU/messages.inc | 4 - program/localization/lt_LT/labels.inc | 20 +- program/localization/lt_LT/messages.inc | 4 - program/localization/lv_LV/labels.inc | 7 +- program/localization/lv_LV/messages.inc | 11 +- program/localization/mk_MK/labels.inc | 208 ----- program/localization/mk_MK/messages.inc | 76 -- program/localization/ml_IN/labels.inc | 206 ----- program/localization/ml_IN/messages.inc | 147 ---- program/localization/mr_IN/labels.inc | 99 --- program/localization/mr_IN/messages.inc | 60 -- program/localization/ms_MY/labels.inc | 200 ----- program/localization/ms_MY/messages.inc | 101 --- program/localization/nb_NO/labels.inc | 8 - program/localization/nb_NO/messages.inc | 9 - program/localization/ne_NP/labels.inc | 271 ------- program/localization/ne_NP/messages.inc | 105 --- program/localization/nl_BE/labels.inc | 110 --- program/localization/nl_BE/messages.inc | 13 - program/localization/nl_NL/labels.inc | 8 +- program/localization/nl_NL/messages.inc | 1 - program/localization/nn_NO/labels.inc | 13 - program/localization/nn_NO/messages.inc | 13 - program/localization/pl_PL/csv2vcard.inc | 1 - program/localization/pl_PL/labels.inc | 14 +- program/localization/pl_PL/messages.inc | 10 +- program/localization/ps/labels.inc | 228 ------ program/localization/ps/messages.inc | 89 --- program/localization/pt_BR/labels.inc | 2 - program/localization/pt_BR/messages.inc | 4 - program/localization/pt_PT/labels.inc | 14 +- program/localization/pt_PT/messages.inc | 5 +- program/localization/ro_RO/labels.inc | 2 - program/localization/ro_RO/messages.inc | 73 +- program/localization/ru_RU/labels.inc | 7 +- program/localization/ru_RU/messages.inc | 1 - program/localization/si_LK/labels.inc | 164 ---- program/localization/si_LK/messages.inc | 86 --- program/localization/sk_SK/labels.inc | 58 +- program/localization/sk_SK/messages.inc | 30 +- program/localization/sl_SI/labels.inc | 4 +- program/localization/sl_SI/messages.inc | 11 +- program/localization/sq_AL/labels.inc | 301 -------- program/localization/sq_AL/messages.inc | 101 --- program/localization/sr_CS/labels.inc | 62 -- program/localization/sr_CS/messages.inc | 13 - program/localization/sv_SE/labels.inc | 8 +- program/localization/sv_SE/messages.inc | 4 - program/localization/ta_IN/labels.inc | 208 ----- program/localization/ta_IN/messages.inc | 76 -- program/localization/th_TH/labels.inc | 186 ----- program/localization/th_TH/messages.inc | 89 --- program/localization/tr_TR/labels.inc | 10 +- program/localization/tr_TR/messages.inc | 11 +- program/localization/uk_UA/labels.inc | 11 - program/localization/uk_UA/messages.inc | 15 +- program/localization/ur_PK/labels.inc | 2 - program/localization/ur_PK/messages.inc | 2 - program/localization/vi_VN/labels.inc | 19 +- program/localization/vi_VN/messages.inc | 13 - program/localization/zh_CN/labels.inc | 72 +- program/localization/zh_CN/messages.inc | 145 ++-- program/localization/zh_TW/csv2vcard.inc | 1 - program/localization/zh_TW/labels.inc | 7 - program/localization/zh_TW/messages.inc | 20 +- 971 files changed, 1721 insertions(+), 12196 deletions(-) diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh index 8cd99f4f2..ce25f6fc1 100755 --- a/bin/transifexpull.sh +++ b/bin/transifexpull.sh @@ -22,7 +22,7 @@ do_clean() # remove (one-line) comments perl -pi -e "s/^\\/\\/.*//" $1 # remove empty lines (but not in file header) - perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp + perl -ne 'print if ($. < 18 || length($_) > 1)' $1 > $1.tmp mv $1.tmp $1 } diff --git a/plugins/acl/localization/az_AZ.inc b/plugins/acl/localization/az_AZ.inc index 1a2eea442..d1cbb076d 100644 --- a/plugins/acl/localization/az_AZ.inc +++ b/plugins/acl/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Paylaşma'; $labels['myrights'] = 'Giriş hüququ'; $labels['username'] = 'İstifadəçi:'; diff --git a/plugins/acl/localization/be_BE.inc b/plugins/acl/localization/be_BE.inc index 37b984c08..bce5915f0 100644 --- a/plugins/acl/localization/be_BE.inc +++ b/plugins/acl/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Сумесны доступ'; $labels['myrights'] = 'Правы доступа'; $labels['username'] = 'Карыстальнік:'; diff --git a/plugins/acl/localization/bg_BG.inc b/plugins/acl/localization/bg_BG.inc index c41d69ece..2e3c57dcf 100644 --- a/plugins/acl/localization/bg_BG.inc +++ b/plugins/acl/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Споделяне'; $labels['myrights'] = 'Права за достъп'; $labels['username'] = 'Потребител:'; diff --git a/plugins/acl/localization/bs_BA.inc b/plugins/acl/localization/bs_BA.inc index 646600b5f..7cedc8c5c 100644 --- a/plugins/acl/localization/bs_BA.inc +++ b/plugins/acl/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Razmjena'; $labels['myrights'] = 'Prava pristupa'; $labels['username'] = 'Korisnik:'; diff --git a/plugins/acl/localization/ca_ES.inc b/plugins/acl/localization/ca_ES.inc index 5944ae2c7..d238524b3 100644 --- a/plugins/acl/localization/ca_ES.inc +++ b/plugins/acl/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Comparteix'; $labels['myrights'] = 'Permisos d\'accés'; $labels['username'] = 'Usuari:'; diff --git a/plugins/acl/localization/cs_CZ.inc b/plugins/acl/localization/cs_CZ.inc index 8dde16076..437b46aef 100644 --- a/plugins/acl/localization/cs_CZ.inc +++ b/plugins/acl/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Sdílení'; $labels['myrights'] = 'Přístupová práva'; $labels['username'] = 'Uživatel:'; @@ -64,12 +63,12 @@ $labels['longacll'] = 'Složka je viditelná v seznamu a může být přihláše $labels['longaclr'] = 'Složka může být otevřena pro čtení'; $labels['longacls'] = 'Označená zpráva byla změněna'; $labels['longaclw'] = 'Značky a klíčová slova u zpráv je možné měnit, kromě příznaku Přečteno a Smazáno'; -$labels['longacli'] = 'Zpŕava může být napsána nebo zkopírována do složky'; -$labels['longaclp'] = 'Zpráva byla odeslána do složky'; +$labels['longacli'] = 'Zpráva může být napsána nebo zkopírována do složky'; +$labels['longaclp'] = 'Zpráva může být odeslána do této složky'; $labels['longaclc'] = 'Složka může být vytvořena (nebo přejmenována) přimo v této složce'; $labels['longaclk'] = 'Složka může být vytvořena (nebo přejmenována) přimo v této složce'; -$labels['longacld'] = 'Značka o smazání zprávy může být změněna'; -$labels['longaclt'] = 'Značka o smazání zprávy může být změněna'; +$labels['longacld'] = 'Příznak smazané zprávy může být změněn'; +$labels['longaclt'] = 'Příznak smazané zprávy může být změněn'; $labels['longacle'] = 'Zpráva může být smazána'; $labels['longaclx'] = 'Složka může být smazána nebo přejmenována'; $labels['longacla'] = 'Přístupová práva složky mohou být změněna'; @@ -80,12 +79,12 @@ $labels['longacldelete'] = 'Zprávy mohou být smazány'; $messages['deleting'] = 'Odstraňuji přístupová práva...'; $messages['saving'] = 'Ukládám přístupová práva...'; $messages['updatesuccess'] = 'Přístupová práva byla úspěšně změněna'; -$messages['deletesuccess'] = 'Přístupová páva byla úspěšně odstraněna'; -$messages['createsuccess'] = 'Přístupová práva byla úspěšně přídána'; -$messages['updateerror'] = 'Nelze upravit přístupová práva'; -$messages['deleteerror'] = 'Nelze odstranit přístupová práva'; -$messages['createerror'] = 'Nelze přidat přístupová práva'; +$messages['deletesuccess'] = 'Přístupová práva byla úspěšně odstraněna'; +$messages['createsuccess'] = 'Přístupová práva byla úspěšně přidána'; +$messages['updateerror'] = 'Úprava přístupových práv se nezdařila'; +$messages['deleteerror'] = 'Smazání přístupových práv se nezdařilo'; +$messages['createerror'] = 'Přidání přístupových práv se nezdařilo'; $messages['deleteconfirm'] = 'Opravdu si přejete odstranit přístupová práva pro vybrané(ho) uživatele?'; $messages['norights'] = 'Nejsou specifikována žádná práva!'; -$messages['nouser'] = 'Není specifikováno uživatelské jméno'; +$messages['nouser'] = 'Není specifikováno uživatelské jméno!'; ?> diff --git a/plugins/acl/localization/cy_GB.inc b/plugins/acl/localization/cy_GB.inc index 78b67b5fe..30b0aaffe 100644 --- a/plugins/acl/localization/cy_GB.inc +++ b/plugins/acl/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Rhannu'; $labels['myrights'] = 'Hawliau Mynediad'; $labels['username'] = 'Defnyddiwr:'; diff --git a/plugins/acl/localization/da_DK.inc b/plugins/acl/localization/da_DK.inc index bb5ace3ab..f31137644 100644 --- a/plugins/acl/localization/da_DK.inc +++ b/plugins/acl/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Deling'; $labels['myrights'] = 'Adgangrettigheder'; $labels['username'] = 'Bruger:'; @@ -82,7 +81,7 @@ $messages['saving'] = 'Gemme rettigheder...'; $messages['updatesuccess'] = 'Tilgangsrettighederne blev ændret'; $messages['deletesuccess'] = 'Sletterettigheder blev ændret'; $messages['createsuccess'] = 'Tilgangsrettigheder blev tilføjet'; -$messages['updateerror'] = 'Kunne ikke opdatere tilgangsrettigheder'; +$messages['updateerror'] = 'Kunne ikke opdatere adgangsrettigheder'; $messages['deleteerror'] = 'Kunne ikke slette tilgangsrettigheder'; $messages['createerror'] = 'Kunne ikke tilføje tilgangsrettigheder'; $messages['deleteconfirm'] = 'Er du sikker på, at du vil slette tilgangsrettigheder fra de(n) valgte bruger(e)?'; diff --git a/plugins/acl/localization/de_CH.inc b/plugins/acl/localization/de_CH.inc index 872baa5a4..98e555a64 100644 --- a/plugins/acl/localization/de_CH.inc +++ b/plugins/acl/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Freigabe'; $labels['myrights'] = 'Zugriffsrechte'; $labels['username'] = 'Benutzer:'; diff --git a/plugins/acl/localization/de_DE.inc b/plugins/acl/localization/de_DE.inc index 864dc7756..3df3dc63f 100644 --- a/plugins/acl/localization/de_DE.inc +++ b/plugins/acl/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Freigabe'; $labels['myrights'] = 'Zugriffsrechte'; $labels['username'] = 'Benutzer:'; diff --git a/plugins/acl/localization/el_GR.inc b/plugins/acl/localization/el_GR.inc index df317aca0..56e1081b3 100644 --- a/plugins/acl/localization/el_GR.inc +++ b/plugins/acl/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Μοιρασμα'; $labels['myrights'] = 'Δικαιώματα Πρόσβασης '; $labels['username'] = 'Χρηστης:'; diff --git a/plugins/acl/localization/en_GB.inc b/plugins/acl/localization/en_GB.inc index 35bbf3fec..16616c746 100644 --- a/plugins/acl/localization/en_GB.inc +++ b/plugins/acl/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Sharing'; $labels['myrights'] = 'Access Rights'; $labels['username'] = 'User:'; @@ -82,7 +81,6 @@ $messages['saving'] = 'Saving access rights...'; $messages['updatesuccess'] = 'Successfully changed access rights'; $messages['deletesuccess'] = 'Successfully deleted access rights'; $messages['createsuccess'] = 'Successfully added access rights'; -$messages['updateerror'] = 'Ubable to update access rights'; $messages['deleteerror'] = 'Unable to delete access rights'; $messages['createerror'] = 'Unable to add access rights'; $messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; diff --git a/plugins/acl/localization/eo.inc b/plugins/acl/localization/eo.inc index 6471244c2..888ea4def 100644 --- a/plugins/acl/localization/eo.inc +++ b/plugins/acl/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Kunhavigado'; $labels['myrights'] = 'Atingrajtoj'; $labels['username'] = 'Uzanto:'; @@ -28,14 +27,12 @@ $labels['identifier'] = 'Identigilo'; $labels['acll'] = 'Elserĉo'; $labels['aclr'] = 'Legi mesaĝojn'; $labels['acls'] = 'Manteni legitan staton'; -$labels['aclw'] = 'Write flags'; $labels['acli'] = 'Enmeti (alglui)'; $labels['aclp'] = 'Afiŝi'; $labels['aclc'] = 'Krei subdosierujojn'; $labels['aclk'] = 'Krei subdosierujojn'; $labels['acld'] = 'Forigi mesaĝojn'; $labels['aclt'] = 'Forigi mesaĝojn'; -$labels['acle'] = 'Expunge'; $labels['aclx'] = 'Forigi dosierujon'; $labels['acla'] = 'Administri'; $labels['aclfull'] = 'Plena kontrolo'; @@ -53,7 +50,6 @@ $labels['shortaclc'] = 'Krei'; $labels['shortaclk'] = 'Krei'; $labels['shortacld'] = 'Forigi'; $labels['shortaclt'] = 'Forigi'; -$labels['shortacle'] = 'Expunge'; $labels['shortaclx'] = 'Forigo de dosierujo'; $labels['shortacla'] = 'Administri'; $labels['shortaclother'] = 'Alia'; @@ -62,30 +58,7 @@ $labels['shortaclwrite'] = 'Skribi'; $labels['shortacldelete'] = 'Forigi'; $labels['longacll'] = 'La dosierujo videblas en listoj kaj oni povas aboni al ĝi'; $labels['longaclr'] = 'La dosierujo malfermeblas por legado'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; $labels['longacli'] = 'Mesaĝoj skribeblas aŭ kopieblas en la dosierujo'; $labels['longaclp'] = 'Mesaĝoj afiŝeblas en ĉi tiu dosierujo'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longacld'] = 'Messages Delete flag can be changed'; -$labels['longaclt'] = 'Messages Delete flag can be changed'; -$labels['longacle'] = 'Messages can be expunged'; -$labels['longaclx'] = 'The folder can be deleted or renamed'; -$labels['longacla'] = 'The folder access rights can be changed'; -$labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = 'La dosierujo malfermeblas por legado'; -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; -$labels['longacldelete'] = 'Messages can be deleted'; -$messages['deleting'] = 'Deleting access rights...'; -$messages['saving'] = 'Saving access rights...'; -$messages['updatesuccess'] = 'Successfully changed access rights'; -$messages['deletesuccess'] = 'Successfully deleted access rights'; -$messages['createsuccess'] = 'Successfully added access rights'; -$messages['updateerror'] = 'Ubable to update access rights'; -$messages['deleteerror'] = 'Unable to delete access rights'; -$messages['createerror'] = 'Unable to add access rights'; -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; -$messages['norights'] = 'No rights has been specified!'; -$messages['nouser'] = 'No username has been specified!'; ?> diff --git a/plugins/acl/localization/es_AR.inc b/plugins/acl/localization/es_AR.inc index 410fa4fee..0fa111167 100644 --- a/plugins/acl/localization/es_AR.inc +++ b/plugins/acl/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Compartiendo'; $labels['myrights'] = 'Permisos de acceso'; $labels['username'] = 'Usuario:'; diff --git a/plugins/acl/localization/es_ES.inc b/plugins/acl/localization/es_ES.inc index e578d5e6a..3e64bfee6 100644 --- a/plugins/acl/localization/es_ES.inc +++ b/plugins/acl/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Compartir'; $labels['myrights'] = 'Permisos de acceso'; $labels['username'] = 'Usuario:'; @@ -82,7 +81,7 @@ $messages['saving'] = 'Guardando permisos de acceso…'; $messages['updatesuccess'] = 'Se han cambiado los permisos de acceso'; $messages['deletesuccess'] = 'Se han borrado los permisos de acceso'; $messages['createsuccess'] = 'Se han añadido los permisos de acceso'; -$messages['updateerror'] = 'No se han podido actualizar los permisos de acceso'; +$messages['updateerror'] = 'No ha sido posible actualizar los derechos de acceso'; $messages['deleteerror'] = 'No se han podido borrar los permisos de acceso'; $messages['createerror'] = 'No se han podido añadir los permisos de acceso'; $messages['deleteconfirm'] = '¿Seguro que quiere borrar los permisos de acceso del usuairo seleccionado?'; diff --git a/plugins/acl/localization/et_EE.inc b/plugins/acl/localization/et_EE.inc index 531d311cc..5a64ac8fb 100644 --- a/plugins/acl/localization/et_EE.inc +++ b/plugins/acl/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Jagamine'; $labels['myrights'] = 'Ligipääsuõigused'; $labels['username'] = 'Kasutaja:'; @@ -25,10 +24,7 @@ $labels['actions'] = 'Ligipääsuõiguste toimingud...'; $labels['anyone'] = 'Kõik kasutajad'; $labels['anonymous'] = 'Külalised (anonüümsed)'; $labels['identifier'] = 'Tuvastaja'; -$labels['acll'] = 'Lookup'; $labels['aclr'] = 'Lugeda kirju'; -$labels['acls'] = 'Keep Seen state'; -$labels['aclw'] = 'Write flags'; $labels['acli'] = 'Sisesta (kopeeri)'; $labels['aclp'] = 'Postita'; $labels['aclc'] = 'Luua alamkaustu'; @@ -43,7 +39,6 @@ $labels['aclother'] = 'Muu'; $labels['aclread'] = 'Loe'; $labels['aclwrite'] = 'Kirjuta'; $labels['acldelete'] = 'Kustuta'; -$labels['shortacll'] = 'Lookup'; $labels['shortaclr'] = 'Loe'; $labels['shortacls'] = 'Säilita'; $labels['shortaclw'] = 'Kirjuta'; @@ -62,12 +57,6 @@ $labels['shortaclwrite'] = 'Kirjuta'; $labels['shortacldelete'] = 'Kustuta'; $labels['longacll'] = 'See kaust on nimekirjas nähtav ja seda saab tellida'; $labels['longaclr'] = 'Kausta saab lugemiseks avada'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; -$labels['longacli'] = 'Messages can be written or copied to the folder'; -$labels['longaclp'] = 'Messages can be posted to this folder'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; $labels['longacld'] = 'Kirja kustutamis lippu saab muuta'; $labels['longaclt'] = 'Kirja kustutamis lippu saab muuta'; $labels['longacle'] = 'Kirju saab eemaldada'; @@ -75,7 +64,6 @@ $labels['longaclx'] = 'Seda kausta ei saa kustutada ega ümber nimetada'; $labels['longacla'] = 'Selle kausta ligipääsuõigusi saab muuta'; $labels['longaclfull'] = 'Täielik kontroll koos kaustade haldamisega'; $labels['longaclread'] = 'Kausta saab lugemiseks avada'; -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Kirju saab kustutada'; $messages['deleting'] = 'Ligipääsuõiguste kustutamine...'; $messages['saving'] = 'Ligipääsuõiguste salvestamine...'; diff --git a/plugins/acl/localization/eu_ES.inc b/plugins/acl/localization/eu_ES.inc index 8f3e319e0..4fa9f3b08 100644 --- a/plugins/acl/localization/eu_ES.inc +++ b/plugins/acl/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Partekatzen'; $labels['myrights'] = 'Sarbide-eskubideak'; $labels['username'] = 'Erabiltzailea:'; diff --git a/plugins/acl/localization/fa_IR.inc b/plugins/acl/localization/fa_IR.inc index e2859ebf2..993783ff4 100644 --- a/plugins/acl/localization/fa_IR.inc +++ b/plugins/acl/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'اشتراک‌گذاری'; $labels['myrights'] = 'مجوزهای دسترسی'; $labels['username'] = 'کاربر:'; diff --git a/plugins/acl/localization/fi_FI.inc b/plugins/acl/localization/fi_FI.inc index 9de9162ad..ab3222464 100644 --- a/plugins/acl/localization/fi_FI.inc +++ b/plugins/acl/localization/fi_FI.inc @@ -15,77 +15,29 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Jakaminen'; $labels['myrights'] = 'Käyttöoikeudet'; $labels['username'] = 'Käyttäjä:'; $labels['advanced'] = 'edistynyt tila'; -$labels['newuser'] = 'Add entry'; -$labels['actions'] = 'Access right actions...'; $labels['anyone'] = 'Kaikki käyttäjät (kuka tahansa)'; $labels['anonymous'] = 'Vieraat (anonyymit)'; -$labels['identifier'] = 'Identifier'; -$labels['acll'] = 'Lookup'; -$labels['aclr'] = 'Read messages'; -$labels['acls'] = 'Keep Seen state'; -$labels['aclw'] = 'Write flags'; -$labels['acli'] = 'Insert (Copy into)'; -$labels['aclp'] = 'Post'; -$labels['aclc'] = 'Create subfolders'; -$labels['aclk'] = 'Create subfolders'; -$labels['acld'] = 'Delete messages'; -$labels['aclt'] = 'Delete messages'; -$labels['acle'] = 'Expunge'; -$labels['aclx'] = 'Delete folder'; -$labels['acla'] = 'Administer'; -$labels['aclfull'] = 'Full control'; -$labels['aclother'] = 'Other'; -$labels['aclread'] = 'Read'; -$labels['aclwrite'] = 'Write'; -$labels['acldelete'] = 'Delete'; -$labels['shortacll'] = 'Lookup'; -$labels['shortaclr'] = 'Read'; -$labels['shortacls'] = 'Keep'; -$labels['shortaclw'] = 'Write'; -$labels['shortacli'] = 'Insert'; -$labels['shortaclp'] = 'Post'; +$labels['aclother'] = 'Muu'; $labels['shortaclc'] = 'Luo'; $labels['shortaclk'] = 'Luo'; $labels['shortacld'] = 'Poista'; $labels['shortaclt'] = 'Poista'; -$labels['shortacle'] = 'Expunge'; -$labels['shortaclx'] = 'Folder delete'; -$labels['shortacla'] = 'Administer'; $labels['shortaclother'] = 'Muu'; -$labels['shortaclread'] = 'Read'; -$labels['shortaclwrite'] = 'Write'; -$labels['shortacldelete'] = 'Delete'; -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; -$labels['longaclr'] = 'The folder can be opened for reading'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; -$labels['longacli'] = 'Messages can be written or copied to the folder'; -$labels['longaclp'] = 'Messages can be posted to this folder'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longacld'] = 'Messages Delete flag can be changed'; -$labels['longaclt'] = 'Messages Delete flag can be changed'; -$labels['longacle'] = 'Messages can be expunged'; -$labels['longaclx'] = 'The folder can be deleted or renamed'; -$labels['longacla'] = 'The folder access rights can be changed'; -$labels['longaclfull'] = 'Full control including folder administration'; -$labels['longaclread'] = 'The folder can be opened for reading'; -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; -$labels['longacldelete'] = 'Messages can be deleted'; -$messages['deleting'] = 'Deleting access rights...'; -$messages['saving'] = 'Saving access rights...'; -$messages['updatesuccess'] = 'Successfully changed access rights'; -$messages['deletesuccess'] = 'Successfully deleted access rights'; -$messages['createsuccess'] = 'Successfully added access rights'; -$messages['updateerror'] = 'Ubable to update access rights'; -$messages['deleteerror'] = 'Unable to delete access rights'; -$messages['createerror'] = 'Unable to add access rights'; -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; -$messages['norights'] = 'No rights has been specified!'; -$messages['nouser'] = 'No username has been specified!'; +$labels['longaclr'] = 'Kansion voi avata lukua varten'; +$labels['longaclx'] = 'Kansio voidaan poistaa tai nimetä uudelleen'; +$labels['longacla'] = 'Kansion käyttöoikeuksia voi muuttaa'; +$messages['deleting'] = 'Poistetaan käyttöoikeuksia...'; +$messages['saving'] = 'Tallennetaan käyttöoikeuksia...'; +$messages['updatesuccess'] = 'Käyttöoikeuksia muutettiin onnistuneesti'; +$messages['deletesuccess'] = 'Käyttöoikeuksia poistettiin onnistuneesti'; +$messages['createsuccess'] = 'Käyttöoikeuksia lisättiin onnistuneesti'; +$messages['updateerror'] = 'Käyttöoikeuksien päivitys epäonnistui'; +$messages['deleteerror'] = 'Käyttöoikeuksien poistaminen epäonnistui'; +$messages['createerror'] = 'Käyttöoikeuksien lisääminen epäonnistui'; +$messages['norights'] = 'Oikeuksia ei ole määritelty!'; +$messages['nouser'] = 'Käyttäjänimeä ei ole määritelty!'; ?> diff --git a/plugins/acl/localization/fr_FR.inc b/plugins/acl/localization/fr_FR.inc index ed26e86ee..b4e47bb17 100644 --- a/plugins/acl/localization/fr_FR.inc +++ b/plugins/acl/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Partage'; $labels['myrights'] = 'Droits d\'accès'; $labels['username'] = 'Utilisateur :'; diff --git a/plugins/acl/localization/gl_ES.inc b/plugins/acl/localization/gl_ES.inc index f2aee348d..17aaf2599 100644 --- a/plugins/acl/localization/gl_ES.inc +++ b/plugins/acl/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Compartindo'; $labels['myrights'] = 'Dereitos de acceso'; $labels['username'] = 'Usuario:'; diff --git a/plugins/acl/localization/he_IL.inc b/plugins/acl/localization/he_IL.inc index 2314153b2..921c6eef6 100644 --- a/plugins/acl/localization/he_IL.inc +++ b/plugins/acl/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'שיתוף'; $labels['myrights'] = 'זכויות גישה'; $labels['username'] = 'משתמש:'; diff --git a/plugins/acl/localization/hu_HU.inc b/plugins/acl/localization/hu_HU.inc index d6905e714..b61a2eb1f 100644 --- a/plugins/acl/localization/hu_HU.inc +++ b/plugins/acl/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Megosztás'; $labels['myrights'] = 'Hozzáférési jogok'; $labels['username'] = 'Felhasználó:'; diff --git a/plugins/acl/localization/hy_AM.inc b/plugins/acl/localization/hy_AM.inc index 10fad0643..b474f6309 100644 --- a/plugins/acl/localization/hy_AM.inc +++ b/plugins/acl/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Կիսվել'; $labels['myrights'] = 'Մուտքի իրավունքներ'; $labels['username'] = 'Օգտատեր`'; @@ -82,7 +81,6 @@ $messages['saving'] = 'Պահպանվում են մուտքի իրավունքն $messages['updatesuccess'] = 'Մուտքի իրավունքները բարեհաջող փոփոխվեցին։'; $messages['deletesuccess'] = 'Մուտքի իրավունքները բարեհաջող ջնջվեցին։'; $messages['createsuccess'] = 'Մուտքի իրավունքները բարեհաջող ավելացվեցվին։'; -$messages['updateerror'] = 'Մուտքի իրավունքները թարմացումը ձախողվեց։'; $messages['deleteerror'] = 'Մուտքի իրավունքները ջնջումը ձախողվեց։'; $messages['createerror'] = 'Մուտքի իրավունքները ավելացումը ձախողվեց։'; $messages['deleteconfirm'] = 'Դուք վստա՞հ էք, որ ցանկանում եք նշված օգտվողներին զրկել մուտքի իրավունքներից։'; diff --git a/plugins/acl/localization/id_ID.inc b/plugins/acl/localization/id_ID.inc index a04a0943a..d7c4b55cd 100644 --- a/plugins/acl/localization/id_ID.inc +++ b/plugins/acl/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Berbagi'; $labels['myrights'] = 'Hak Akses'; $labels['username'] = 'Pengguna:'; diff --git a/plugins/acl/localization/it_IT.inc b/plugins/acl/localization/it_IT.inc index 64756091a..f610ac031 100644 --- a/plugins/acl/localization/it_IT.inc +++ b/plugins/acl/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Condivisione'; $labels['myrights'] = 'Diritti d\'accesso'; $labels['username'] = 'Utente:'; diff --git a/plugins/acl/localization/ja_JP.inc b/plugins/acl/localization/ja_JP.inc index 35cfcc173..15da70b3d 100644 --- a/plugins/acl/localization/ja_JP.inc +++ b/plugins/acl/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = '共有'; $labels['myrights'] = 'アクセス権'; $labels['username'] = 'ユーザー:'; diff --git a/plugins/acl/localization/ko_KR.inc b/plugins/acl/localization/ko_KR.inc index dc22fa10c..c7c3e466e 100644 --- a/plugins/acl/localization/ko_KR.inc +++ b/plugins/acl/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = '공유'; $labels['myrights'] = '접근 권한'; $labels['username'] = '사용자:'; diff --git a/plugins/acl/localization/lb_LU.inc b/plugins/acl/localization/lb_LU.inc index 31c013983..be03a7297 100644 --- a/plugins/acl/localization/lb_LU.inc +++ b/plugins/acl/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Sharing'; $labels['myrights'] = 'Zougrëffsrechter'; $labels['username'] = 'Benotzer:'; @@ -28,11 +27,6 @@ $labels['identifier'] = 'Identifiant'; $labels['acll'] = 'Noschloen'; $labels['aclr'] = 'Messagë liesen'; $labels['acls'] = 'Lies-Status behalen'; -$labels['aclw'] = 'Write flags'; -$labels['acli'] = 'Insert (Copy into)'; -$labels['aclp'] = 'Post'; -$labels['aclc'] = 'Create subfolders'; -$labels['aclk'] = 'Create subfolders'; $labels['acld'] = 'Messagë läschen'; $labels['aclt'] = 'Messagë läschen'; $labels['acle'] = 'Ausläschen'; @@ -60,22 +54,6 @@ $labels['shortaclother'] = 'Aner'; $labels['shortaclread'] = 'Liesen'; $labels['shortaclwrite'] = 'Schreiwen'; $labels['shortacldelete'] = 'Läschen'; -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; -$labels['longaclr'] = 'The folder can be opened for reading'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; -$labels['longacli'] = 'Messages can be written or copied to the folder'; -$labels['longaclp'] = 'Messages can be posted to this folder'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longacld'] = 'Messages Delete flag can be changed'; -$labels['longaclt'] = 'Messages Delete flag can be changed'; -$labels['longacle'] = 'Messages can be expunged'; -$labels['longaclx'] = 'The folder can be deleted or renamed'; -$labels['longacla'] = 'The folder access rights can be changed'; -$labels['longaclfull'] = 'Full control including folder administration'; -$labels['longaclread'] = 'The folder can be opened for reading'; -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; $labels['longacldelete'] = 'Messagë kënne geläscht ginn'; $messages['deleting'] = 'Zougrëffsrechter gi geläscht...'; $messages['saving'] = 'Zougrëffsrechter gi gespäichert...'; diff --git a/plugins/acl/localization/lt_LT.inc b/plugins/acl/localization/lt_LT.inc index ad4ae9cb2..ab4cbbaa1 100644 --- a/plugins/acl/localization/lt_LT.inc +++ b/plugins/acl/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Dalinimasis'; $labels['myrights'] = 'Prieigos teisės'; $labels['username'] = 'Vartotojas:'; diff --git a/plugins/acl/localization/lv_LV.inc b/plugins/acl/localization/lv_LV.inc index c44269e36..83ceec5eb 100644 --- a/plugins/acl/localization/lv_LV.inc +++ b/plugins/acl/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['myrights'] = 'Piekļuves tiesības'; $labels['username'] = 'Lietotājs:'; $labels['advanced'] = 'paplašinātais režīms'; diff --git a/plugins/acl/localization/nb_NO.inc b/plugins/acl/localization/nb_NO.inc index 7e78a4b31..56a9b20a7 100644 --- a/plugins/acl/localization/nb_NO.inc +++ b/plugins/acl/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Deling'; $labels['myrights'] = 'Tilgangsrettigheter'; $labels['username'] = 'Bruker:'; @@ -82,7 +81,6 @@ $messages['saving'] = 'Lagrer tilgangsrettigheter'; $messages['updatesuccess'] = 'Tilgangsrettigheter ble endret'; $messages['deletesuccess'] = 'Tilgangsrettigheter ble slettet'; $messages['createsuccess'] = 'Tilgangsrettigheter ble lagt til'; -$messages['updateerror'] = 'Kunne ikke oppdatere tilgangsrettigheter'; $messages['deleteerror'] = 'Kunne ikke fjerne tilgangsrettigheter'; $messages['createerror'] = 'Kunne ikke legge til tilgangsrettigheter'; $messages['deleteconfirm'] = 'Er du sikker på at du vil fjerne tilgangen til valgte brukere'; diff --git a/plugins/acl/localization/nl_NL.inc b/plugins/acl/localization/nl_NL.inc index 4a29f7629..4bf6870ed 100644 --- a/plugins/acl/localization/nl_NL.inc +++ b/plugins/acl/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Delen'; $labels['myrights'] = 'Toegangsrechten'; $labels['username'] = 'Gebruiker:'; diff --git a/plugins/acl/localization/nn_NO.inc b/plugins/acl/localization/nn_NO.inc index 5bd0caf01..4690a304c 100644 --- a/plugins/acl/localization/nn_NO.inc +++ b/plugins/acl/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Deling'; $labels['myrights'] = 'Tilgangsrettar'; $labels['username'] = 'Brukar:'; @@ -82,7 +81,6 @@ $messages['saving'] = 'Lagrar tilgangsrettar…'; $messages['updatesuccess'] = 'Tilgangsrettiar vart endra'; $messages['deletesuccess'] = 'Tilgangsretter vart sletta'; $messages['createsuccess'] = 'Tilgangsrettar vart legne til'; -$messages['updateerror'] = 'Kunne ikkje oppdatere tilgangsrettar'; $messages['deleteerror'] = 'Kunne ikkje fjerne tilgangsrettar'; $messages['createerror'] = 'Kunne ikkje leggje til tilgangsrettar'; $messages['deleteconfirm'] = 'Er du sikker på at du vil fjerne tilgangen til valde brukarar?'; diff --git a/plugins/acl/localization/pl_PL.inc b/plugins/acl/localization/pl_PL.inc index 2e6e2cb7b..d3804ac26 100644 --- a/plugins/acl/localization/pl_PL.inc +++ b/plugins/acl/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Udostępnianie'; $labels['myrights'] = 'Prawa dostępu'; $labels['username'] = 'Użytkownik:'; diff --git a/plugins/acl/localization/pt_BR.inc b/plugins/acl/localization/pt_BR.inc index 044485409..70217626f 100644 --- a/plugins/acl/localization/pt_BR.inc +++ b/plugins/acl/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Compartilhamento'; $labels['myrights'] = 'Permissões de Acesso'; $labels['username'] = 'Usuário:'; diff --git a/plugins/acl/localization/pt_PT.inc b/plugins/acl/localization/pt_PT.inc index 5cc974f0a..3f1a8f076 100644 --- a/plugins/acl/localization/pt_PT.inc +++ b/plugins/acl/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Partilhar'; $labels['myrights'] = 'Permissões de acesso'; $labels['username'] = 'Utilizador:'; @@ -82,7 +81,7 @@ $messages['saving'] = 'A guardar as permissões de acesso...'; $messages['updatesuccess'] = 'Permissões de acesso alteradas com sucesso'; $messages['deletesuccess'] = 'Permissões de acesso eliminadas com sucesso'; $messages['createsuccess'] = 'Permissões de acesso adicionadas com sucesso'; -$messages['updateerror'] = 'Não foi possível actualizar as permissões de acesso'; +$messages['updateerror'] = 'Não foi possível actualizar os direitos de acesso'; $messages['deleteerror'] = 'Não foi possível eliminar as permissões de acesso'; $messages['createerror'] = 'Não foi possível adicionar as permissões de acesso'; $messages['deleteconfirm'] = 'Tem a certeza que pretende remover as permissões de acesso do(s) utilizador(es) seleccionado(s)?'; diff --git a/plugins/acl/localization/ro_RO.inc b/plugins/acl/localization/ro_RO.inc index e069b06c8..571314b42 100644 --- a/plugins/acl/localization/ro_RO.inc +++ b/plugins/acl/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Partajare'; $labels['myrights'] = 'Drepturi de acces'; $labels['username'] = 'Utilizator:'; @@ -27,7 +26,7 @@ $labels['anonymous'] = 'Vizitator'; $labels['identifier'] = 'Identificator'; $labels['acll'] = 'Caută'; $labels['aclr'] = 'Citire mesaje'; -$labels['acls'] = 'Menține starea de Vâzut'; +$labels['acls'] = 'Menține starea citirii'; $labels['aclw'] = 'Indicator scriere'; $labels['acli'] = 'Inserare (copiere în)'; $labels['aclp'] = 'Postează'; @@ -60,7 +59,7 @@ $labels['shortaclother'] = 'Altul'; $labels['shortaclread'] = 'Citeşte'; $labels['shortaclwrite'] = 'Scrie'; $labels['shortacldelete'] = 'Șterge'; -$labels['longacll'] = 'Dosarul este vizibil pe liste și se poate înscrie pe el'; +$labels['longacll'] = 'Dosarul este vizibil pe liste și se poate subscrie la acesta'; $labels['longaclr'] = 'Dosarul se poate deschide pentru citire'; $labels['longacls'] = 'Indicatorul de Văzut a fost schimbat'; $labels['longaclw'] = 'Indicatoarele și cuvintele cheie ale mesajelor se pot schimba cu excepția Văzut și Șters'; @@ -68,24 +67,24 @@ $labels['longacli'] = 'Mesajul se poate scrie sau copia într-un dosar'; $labels['longaclp'] = 'Mesajele se pot trimite către acest dosar'; $labels['longaclc'] = 'Dosarele se pot crea (sau redenumi) direct sub acest dosar'; $labels['longaclk'] = 'Dosarele se pot crea (sau redenumi) direct sub acest dosar'; -$labels['longacld'] = 'Indicatorul de Șters al mesajelor se pot modifica'; -$labels['longaclt'] = 'Indicatorul de Șters al mesajelor se pot modifica'; +$labels['longacld'] = 'Indicatorul de Șters al mesajelor se poate modifica'; +$labels['longaclt'] = 'Indicatorul de Șters al mesajelor se poate modifica'; $labels['longacle'] = 'Mesajele se pot elimina'; $labels['longaclx'] = 'Dosarul se poate șterge sau redenumi'; $labels['longacla'] = 'Drepturile de acces la dosar se pot schimba'; $labels['longaclfull'] = 'Control complet include și administrare dosar'; $labels['longaclread'] = 'Dosarul se poate deschide pentru citire'; $labels['longaclwrite'] = 'Mesajul se poate marca, scrie sau copia într-un dosar'; -$labels['longacldelete'] = 'Mesajul se poate șterge'; -$messages['deleting'] = 'Drepturile de acces la ștergere...'; -$messages['saving'] = 'Drepturile de acces la salvare...'; +$labels['longacldelete'] = 'Mesajele se pot șterge'; +$messages['deleting'] = 'Șterg drepturile de access...'; +$messages['saving'] = 'Salvez drepturi accesare...'; $messages['updatesuccess'] = 'Drepturile de acces au fost schimbate cu succes'; $messages['deletesuccess'] = 'Drepturile de acces au fost șterse cu succes'; $messages['createsuccess'] = 'Drepturile de acces au fost adăugate cu succes'; -$messages['updateerror'] = 'Nu sau putut actualiza drepturile de acces'; -$messages['deleteerror'] = 'Nu sau putut șterge drepturile de acces'; -$messages['createerror'] = 'Nu sau putut adăuga drepturi de acces'; -$messages['deleteconfirm'] = 'Sunteți sigur că doriți să ștergeți drepturile de acces la utilizatorul(i) selectați?'; +$messages['updateerror'] = 'Nu s-au putut actualiza drepturile de acces'; +$messages['deleteerror'] = 'Nu s-au putut șterge drepturile de acces'; +$messages['createerror'] = 'Nu s-au putut adăuga drepturi de acces'; +$messages['deleteconfirm'] = 'Sunteți sigur că doriți să ștergeți drepturile de acces la utilizatorul (ii) selectați?'; $messages['norights'] = 'Nu au fost specificate drepturi!'; -$messages['nouser'] = 'Nu a fost specificat nume de utilizator!'; +$messages['nouser'] = 'Nu a fost specificat niciun utilizator!'; ?> diff --git a/plugins/acl/localization/ru_RU.inc b/plugins/acl/localization/ru_RU.inc index 5688c841b..3fcb3f970 100644 --- a/plugins/acl/localization/ru_RU.inc +++ b/plugins/acl/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Совместный доступ'; $labels['myrights'] = 'Права доступа'; $labels['username'] = 'Пользователь:'; diff --git a/plugins/acl/localization/sk_SK.inc b/plugins/acl/localization/sk_SK.inc index 50fb85703..eb410f119 100644 --- a/plugins/acl/localization/sk_SK.inc +++ b/plugins/acl/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Zdieľanie'; $labels['myrights'] = 'Prístupové práva'; $labels['username'] = 'Používateľ:'; diff --git a/plugins/acl/localization/sl_SI.inc b/plugins/acl/localization/sl_SI.inc index aff709832..fb75af833 100644 --- a/plugins/acl/localization/sl_SI.inc +++ b/plugins/acl/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Skupna raba'; $labels['myrights'] = 'Pravice dostopa'; $labels['username'] = 'Uporabnik:'; diff --git a/plugins/acl/localization/sr_CS.inc b/plugins/acl/localization/sr_CS.inc index 523e93abd..9e9a78028 100644 --- a/plugins/acl/localization/sr_CS.inc +++ b/plugins/acl/localization/sr_CS.inc @@ -15,77 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Дељење'; $labels['myrights'] = 'Права приступа'; $labels['username'] = 'Корисник:'; -$labels['advanced'] = 'advanced mode'; $labels['newuser'] = 'Додај унос'; -$labels['actions'] = 'Access right actions...'; -$labels['anyone'] = 'All users (anyone)'; -$labels['anonymous'] = 'Guests (anonymous)'; -$labels['identifier'] = 'Identifier'; -$labels['acll'] = 'Lookup'; -$labels['aclr'] = 'Read messages'; -$labels['acls'] = 'Keep Seen state'; -$labels['aclw'] = 'Write flags'; -$labels['acli'] = 'Insert (Copy into)'; -$labels['aclp'] = 'Post'; -$labels['aclc'] = 'Create subfolders'; -$labels['aclk'] = 'Create subfolders'; -$labels['acld'] = 'Delete messages'; -$labels['aclt'] = 'Delete messages'; -$labels['acle'] = 'Expunge'; -$labels['aclx'] = 'Delete folder'; -$labels['acla'] = 'Administer'; -$labels['aclfull'] = 'Full control'; -$labels['aclother'] = 'Other'; -$labels['aclread'] = 'Read'; -$labels['aclwrite'] = 'Write'; -$labels['acldelete'] = 'Delete'; -$labels['shortacll'] = 'Lookup'; -$labels['shortaclr'] = 'Read'; -$labels['shortacls'] = 'Keep'; -$labels['shortaclw'] = 'Write'; -$labels['shortacli'] = 'Insert'; -$labels['shortaclp'] = 'Post'; -$labels['shortaclc'] = 'Create'; -$labels['shortaclk'] = 'Create'; -$labels['shortacld'] = 'Delete'; -$labels['shortaclt'] = 'Delete'; -$labels['shortacle'] = 'Expunge'; -$labels['shortaclx'] = 'Folder delete'; -$labels['shortacla'] = 'Administer'; -$labels['shortaclother'] = 'Other'; -$labels['shortaclread'] = 'Read'; -$labels['shortaclwrite'] = 'Write'; -$labels['shortacldelete'] = 'Delete'; -$labels['longacll'] = 'The folder is visible on lists and can be subscribed to'; -$labels['longaclr'] = 'The folder can be opened for reading'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; -$labels['longacli'] = 'Messages can be written or copied to the folder'; -$labels['longaclp'] = 'Messages can be posted to this folder'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longacld'] = 'Messages Delete flag can be changed'; -$labels['longaclt'] = 'Messages Delete flag can be changed'; -$labels['longacle'] = 'Messages can be expunged'; -$labels['longaclx'] = 'The folder can be deleted or renamed'; -$labels['longacla'] = 'The folder access rights can be changed'; -$labels['longaclfull'] = 'Full control including folder administration'; -$labels['longaclread'] = 'The folder can be opened for reading'; -$labels['longaclwrite'] = 'Messages can be marked, written or copied to the folder'; -$labels['longacldelete'] = 'Messages can be deleted'; -$messages['deleting'] = 'Deleting access rights...'; -$messages['saving'] = 'Saving access rights...'; -$messages['updatesuccess'] = 'Successfully changed access rights'; -$messages['deletesuccess'] = 'Successfully deleted access rights'; -$messages['createsuccess'] = 'Successfully added access rights'; -$messages['updateerror'] = 'Ubable to update access rights'; -$messages['deleteerror'] = 'Unable to delete access rights'; -$messages['createerror'] = 'Unable to add access rights'; -$messages['deleteconfirm'] = 'Are you sure, you want to remove access rights of selected user(s)?'; -$messages['norights'] = 'No rights has been specified!'; -$messages['nouser'] = 'No username has been specified!'; ?> diff --git a/plugins/acl/localization/sv_SE.inc b/plugins/acl/localization/sv_SE.inc index 6c364623e..37c374a29 100644 --- a/plugins/acl/localization/sv_SE.inc +++ b/plugins/acl/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Utdelning'; $labels['myrights'] = 'Åtkomsträttigheter'; $labels['username'] = 'Användare:'; diff --git a/plugins/acl/localization/th_TH.inc b/plugins/acl/localization/th_TH.inc index 3cbcb14b6..8eb1d279c 100644 --- a/plugins/acl/localization/th_TH.inc +++ b/plugins/acl/localization/th_TH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'การแชร์ข้อมูล'; $labels['myrights'] = 'สิทธิ์การเข้าใช้'; $labels['username'] = 'ผู้ใช้งาน:'; diff --git a/plugins/acl/localization/ti.inc b/plugins/acl/localization/ti.inc index ed769b66b..751be8736 100644 --- a/plugins/acl/localization/ti.inc +++ b/plugins/acl/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'ንኻልእ'; $labels['myrights'] = 'መሰላት በዓል ዋና'; $labels['username'] = 'በዓል ዋና'; diff --git a/plugins/acl/localization/tr_TR.inc b/plugins/acl/localization/tr_TR.inc index 499ed7861..673403b0b 100644 --- a/plugins/acl/localization/tr_TR.inc +++ b/plugins/acl/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Paylaşım'; $labels['myrights'] = 'Erişim Hakları'; $labels['username'] = 'Kullanıcı:'; diff --git a/plugins/acl/localization/vi_VN.inc b/plugins/acl/localization/vi_VN.inc index cde9ec9dc..a3839982b 100644 --- a/plugins/acl/localization/vi_VN.inc +++ b/plugins/acl/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = 'Chia sẻ'; $labels['myrights'] = 'Quyền truy cập'; $labels['username'] = 'Người dùng:'; @@ -82,7 +81,6 @@ $messages['saving'] = 'Lưu quyền truy cập...'; $messages['updatesuccess'] = 'Thay đổi quyền truy cập thành công...'; $messages['deletesuccess'] = 'Xóa quyền truy cập thành công...'; $messages['createsuccess'] = 'Thêm quyền truy cập thành công...'; -$messages['updateerror'] = 'Không thể cập nhật quyền truy cập'; $messages['deleteerror'] = 'Khôngthể xóa quyền truy cập'; $messages['createerror'] = 'Không thể thêm quyền truy cập'; $messages['deleteconfirm'] = 'Bạn có chắc là muốn xóa bỏ quyền truy cập của người dùng được chọn?'; diff --git a/plugins/acl/localization/zh_CN.inc b/plugins/acl/localization/zh_CN.inc index 55bd7dc4e..68d294489 100644 --- a/plugins/acl/localization/zh_CN.inc +++ b/plugins/acl/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = '共享'; $labels['myrights'] = '访问权限'; $labels['username'] = '用户:'; @@ -62,18 +61,10 @@ $labels['shortaclwrite'] = '写入'; $labels['shortacldelete'] = '删除'; $labels['longacll'] = '该文件夹在列表上可见且可被订阅'; $labels['longaclr'] = '该文件夹可被打开阅读'; -$labels['longacls'] = 'Messages Seen flag can be changed'; -$labels['longaclw'] = 'Messages flags and keywords can be changed, except Seen and Deleted'; $labels['longacli'] = '消息可写或可被复制至文件夹中'; -$labels['longaclp'] = 'Messages can be posted to this folder'; -$labels['longaclc'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longaclk'] = 'Folders can be created (or renamed) directly under this folder'; -$labels['longacld'] = 'Messages Delete flag can be changed'; -$labels['longaclt'] = 'Messages Delete flag can be changed'; $labels['longacle'] = '消息可被清除'; $labels['longaclx'] = '该文件夹可被删除或重命名'; $labels['longacla'] = '文件夹访问权限可被修改'; -$labels['longaclfull'] = 'Full control including folder administration'; $labels['longaclread'] = '该文件夹可被打开阅读'; $labels['longaclwrite'] = '消息可被标记,撰写或复制至文件夹中'; $labels['longacldelete'] = '信息可被删除'; @@ -82,7 +73,6 @@ $messages['saving'] = '保存访问权限中…'; $messages['updatesuccess'] = '成功修改访问权限'; $messages['deletesuccess'] = '成功删除访问权限'; $messages['createsuccess'] = '成功添加访问权限'; -$messages['updateerror'] = '无法更新访问权限'; $messages['deleteerror'] = '无法删除访问权限'; $messages['createerror'] = '无法添加访问权限'; $messages['deleteconfirm'] = '您确定要移除选中用户的访问权限吗?'; diff --git a/plugins/acl/localization/zh_TW.inc b/plugins/acl/localization/zh_TW.inc index 92d633ec9..e3adc04a3 100644 --- a/plugins/acl/localization/zh_TW.inc +++ b/plugins/acl/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-acl/ */ - $labels['sharing'] = '分享'; $labels['myrights'] = '存取權限'; $labels['username'] = '使用者:'; diff --git a/plugins/archive/localization/ar.inc b/plugins/archive/localization/ar.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/ar.inc +++ b/plugins/archive/localization/ar.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/ar_SA.inc b/plugins/archive/localization/ar_SA.inc index bc237debd..737f745d8 100644 --- a/plugins/archive/localization/ar_SA.inc +++ b/plugins/archive/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'الأرشيف'; $labels['buttontitle'] = 'أرشف هذه الرسالة'; $labels['archived'] = 'أُرشفت بنجاح'; diff --git a/plugins/archive/localization/ast.inc b/plugins/archive/localization/ast.inc index 1c16f697e..546c33538 100644 --- a/plugins/archive/localization/ast.inc +++ b/plugins/archive/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivu'; $labels['buttontitle'] = 'Archivar esti mensaxe'; $labels['archived'] = 'Mensaxe archiváu'; diff --git a/plugins/archive/localization/az_AZ.inc b/plugins/archive/localization/az_AZ.inc index 24887f2d6..ab2311776 100644 --- a/plugins/archive/localization/az_AZ.inc +++ b/plugins/archive/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arxiv'; $labels['buttontitle'] = 'Mesajı arxivə göndər'; $labels['archived'] = 'Arxivə göndərildi'; diff --git a/plugins/archive/localization/be_BE.inc b/plugins/archive/localization/be_BE.inc index b1758eadd..90e4417d7 100644 --- a/plugins/archive/localization/be_BE.inc +++ b/plugins/archive/localization/be_BE.inc @@ -15,16 +15,15 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Архіў'; $labels['buttontitle'] = 'Перанесці ў Архіў'; -$labels['archived'] = 'Паспяхова перанесены ў Архіў'; -$labels['archivedreload'] = 'Паспяхова перанесены ў Архіў. Перазагрузіце старонку, каб пабачыць новыя архіўныя папкі.'; -$labels['archiveerror'] = 'Некаторыя лісты не могуць быць перанесены ў архіў'; +$labels['archived'] = 'Перанесена ў Архіў'; +$labels['archivedreload'] = 'Перанесена ў Архіў. Перазагрузіце старонку, каб пабачыць новыя архіўныя папкі.'; +$labels['archiveerror'] = 'Некаторыя паведамленні не могуць быць перанесены ў архіў'; $labels['archivefolder'] = 'Архіў'; $labels['settingstitle'] = 'Архіў'; $labels['archivetype'] = 'Раздзяліць архіў паводле'; -$labels['archivetypeyear'] = 'году (прыкладам, Архіў/2012)'; +$labels['archivetypeyear'] = 'года (прыкладам, Архіў/2012)'; $labels['archivetypemonth'] = 'месяца (прыкладам, Архіў/2012/06)'; $labels['archivetypefolder'] = 'Арыгінальная папка'; $labels['archivetypesender'] = 'Эл. пошта адпраўніка'; diff --git a/plugins/archive/localization/bg_BG.inc b/plugins/archive/localization/bg_BG.inc index 65323b71e..9f9b868cb 100644 --- a/plugins/archive/localization/bg_BG.inc +++ b/plugins/archive/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Архивирай'; $labels['buttontitle'] = 'Архивиране на писмото'; $labels['archived'] = 'Архивирането премина успешно'; diff --git a/plugins/archive/localization/bn_BD.inc b/plugins/archive/localization/bn_BD.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/bn_BD.inc +++ b/plugins/archive/localization/bn_BD.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/br.inc b/plugins/archive/localization/br.inc index 08ff1cda0..b3a322903 100644 --- a/plugins/archive/localization/br.inc +++ b/plugins/archive/localization/br.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Diell'; $labels['buttontitle'] = 'Dielliñ ar gemenadenn-mañ'; $labels['archived'] = 'Diellet gant berzh'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Diell'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/bs_BA.inc b/plugins/archive/localization/bs_BA.inc index b9d109299..47d138ca5 100644 --- a/plugins/archive/localization/bs_BA.inc +++ b/plugins/archive/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhiviraj ovu poruku'; $labels['archived'] = 'Arhiviranje uspješno'; diff --git a/plugins/archive/localization/ca_ES.inc b/plugins/archive/localization/ca_ES.inc index d012156db..bce2c202a 100644 --- a/plugins/archive/localization/ca_ES.inc +++ b/plugins/archive/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arxiva'; $labels['buttontitle'] = 'Arxiva aquest missatge'; $labels['archived'] = 'Arxivat correctament'; diff --git a/plugins/archive/localization/cs_CZ.inc b/plugins/archive/localization/cs_CZ.inc index 988a026db..ef26a09f3 100644 --- a/plugins/archive/localization/cs_CZ.inc +++ b/plugins/archive/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Archivovat zprávu'; $labels['archived'] = 'Úspěšně vloženo do archivu'; diff --git a/plugins/archive/localization/cy_GB.inc b/plugins/archive/localization/cy_GB.inc index 7f91c5ffc..8fa6c65df 100644 --- a/plugins/archive/localization/cy_GB.inc +++ b/plugins/archive/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archif'; $labels['buttontitle'] = 'Archifo\'r neges hwn'; $labels['archived'] = 'Archifwyd yn llwyddiannus'; diff --git a/plugins/archive/localization/da_DK.inc b/plugins/archive/localization/da_DK.inc index 69ead1dce..f3dedf8bf 100644 --- a/plugins/archive/localization/da_DK.inc +++ b/plugins/archive/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkiv'; $labels['buttontitle'] = 'Arkivér denne besked'; $labels['archived'] = 'Succesfuldt arkiveret.'; diff --git a/plugins/archive/localization/de_CH.inc b/plugins/archive/localization/de_CH.inc index 72795bde3..90ab3ad16 100644 --- a/plugins/archive/localization/de_CH.inc +++ b/plugins/archive/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Nachricht(en) archivieren'; $labels['archived'] = 'Nachricht(en) erfolgreich archiviert'; diff --git a/plugins/archive/localization/de_DE.inc b/plugins/archive/localization/de_DE.inc index 0aff17703..ee39acfcb 100644 --- a/plugins/archive/localization/de_DE.inc +++ b/plugins/archive/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archiv'; $labels['buttontitle'] = 'Nachricht archivieren'; $labels['archived'] = 'Nachricht erfolgreich archiviert'; diff --git a/plugins/archive/localization/el_GR.inc b/plugins/archive/localization/el_GR.inc index 1a582b35e..17eefab11 100644 --- a/plugins/archive/localization/el_GR.inc +++ b/plugins/archive/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Αρχειοθέτηση'; $labels['buttontitle'] = 'Αρχειοθέτηση μηνύματος'; $labels['archived'] = 'Αρχειοθετήθηκε με επιτυχία'; diff --git a/plugins/archive/localization/en_GB.inc b/plugins/archive/localization/en_GB.inc index b90958c74..5c03b82d5 100644 --- a/plugins/archive/localization/en_GB.inc +++ b/plugins/archive/localization/en_GB.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archive'; $labels['buttontitle'] = 'Archive this message'; $labels['archived'] = 'Successfully archived'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Archive'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/eo.inc b/plugins/archive/localization/eo.inc index e0973af75..bd0c2618c 100644 --- a/plugins/archive/localization/eo.inc +++ b/plugins/archive/localization/eo.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkivigi'; $labels['buttontitle'] = 'Arkivigi ĉi tiun mesaĝon'; $labels['archived'] = 'Sukcese arkivigita'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Arkivo'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/es_AR.inc b/plugins/archive/localization/es_AR.inc index 5e4ad3776..44e974c19 100644 --- a/plugins/archive/localization/es_AR.inc +++ b/plugins/archive/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivo'; $labels['buttontitle'] = 'Archivar este mensaje'; $labels['archived'] = 'Mensaje Archivado'; diff --git a/plugins/archive/localization/es_ES.inc b/plugins/archive/localization/es_ES.inc index 4555f0efe..115751f67 100644 --- a/plugins/archive/localization/es_ES.inc +++ b/plugins/archive/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivo'; $labels['buttontitle'] = 'Archivar este mensaje'; $labels['archived'] = 'Mensaje Archivado'; diff --git a/plugins/archive/localization/et_EE.inc b/plugins/archive/localization/et_EE.inc index acf6bd977..aec89984a 100644 --- a/plugins/archive/localization/et_EE.inc +++ b/plugins/archive/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhiveeri'; $labels['buttontitle'] = 'Arhiveeri see kiri'; $labels['archived'] = 'Edukalt arhiveeritud'; diff --git a/plugins/archive/localization/eu_ES.inc b/plugins/archive/localization/eu_ES.inc index 5aa91ee84..c4f0e7b0e 100644 --- a/plugins/archive/localization/eu_ES.inc +++ b/plugins/archive/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Gorde'; $labels['buttontitle'] = 'Gorde mezu hau'; $labels['archived'] = 'Ongi gorde da'; diff --git a/plugins/archive/localization/fa_AF.inc b/plugins/archive/localization/fa_AF.inc index 4bdc671aa..fafccb5b8 100644 --- a/plugins/archive/localization/fa_AF.inc +++ b/plugins/archive/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'ارشیو'; $labels['buttontitle'] = 'ارشیو این پیام'; $labels['archived'] = 'با موفقیت ارشیو شد'; diff --git a/plugins/archive/localization/fa_IR.inc b/plugins/archive/localization/fa_IR.inc index e707efda9..9e9efcf70 100644 --- a/plugins/archive/localization/fa_IR.inc +++ b/plugins/archive/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'بایگانی'; $labels['buttontitle'] = 'بایگانی این پیغام'; $labels['archived'] = 'با موفقیت بایگانی شد'; diff --git a/plugins/archive/localization/fi_FI.inc b/plugins/archive/localization/fi_FI.inc index f67173916..09142374d 100644 --- a/plugins/archive/localization/fi_FI.inc +++ b/plugins/archive/localization/fi_FI.inc @@ -15,18 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkistoi'; $labels['buttontitle'] = 'Arkistoi viesti'; $labels['archived'] = 'Arkistoitu onnistuneesti'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; +$labels['archivedreload'] = 'Arkistointi onnistui. Päivitä sivu nähdäksesi uudet arkistokansiot.'; +$labels['archiveerror'] = 'Joidenkin viestien arkistointi epäonnistui'; $labels['archivefolder'] = 'Arkistoi'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; +$labels['settingstitle'] = 'Arkistoi'; +$labels['archivetype'] = 'Jaa arkisto'; +$labels['archivetypeyear'] = 'Vuodella (esim. Arkisto/2012)'; +$labels['archivetypemonth'] = 'Kuukaudella (esim. Arkisto/2012/06)'; +$labels['archivetypefolder'] = 'Alkuperäinen kansio'; +$labels['archivetypesender'] = 'Lähettäjän osoite'; +$labels['unkownsender'] = 'tuntematon'; ?> diff --git a/plugins/archive/localization/fr_FR.inc b/plugins/archive/localization/fr_FR.inc index 8cea65be7..989abc74e 100644 --- a/plugins/archive/localization/fr_FR.inc +++ b/plugins/archive/localization/fr_FR.inc @@ -15,18 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archive'; $labels['buttontitle'] = 'Archiver ce message'; -$labels['archived'] = 'Message archivé avec success'; +$labels['archived'] = 'Message archivé avec succès'; $labels['archivedreload'] = 'Archivé avec succès. Rechargez la page pour voir les nouveaux dossiers d\'archivage.'; $labels['archiveerror'] = 'Certains messages n\'ont pas pu être archivés.'; $labels['archivefolder'] = 'Archive'; $labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Diviser l\'archive en'; +$labels['archivetype'] = 'Diviser l\'archive par'; $labels['archivetypeyear'] = 'Année (ex Archives/2012)'; $labels['archivetypemonth'] = 'Mois (ex Archives/2012/06)'; $labels['archivetypefolder'] = 'Dossier original'; -$labels['archivetypesender'] = 'Email de l\'émetteur'; +$labels['archivetypesender'] = 'Courriel de l\'émetteur'; $labels['unkownsender'] = 'inconnu'; ?> diff --git a/plugins/archive/localization/gl_ES.inc b/plugins/archive/localization/gl_ES.inc index a4eb6a0f5..1eda2542b 100644 --- a/plugins/archive/localization/gl_ES.inc +++ b/plugins/archive/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensaxe'; $labels['archived'] = 'Aquivouse a mensaxe'; diff --git a/plugins/archive/localization/he_IL.inc b/plugins/archive/localization/he_IL.inc index 609e19ab9..e4e042652 100644 --- a/plugins/archive/localization/he_IL.inc +++ b/plugins/archive/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'ארכיון'; $labels['buttontitle'] = 'משלוח ההודעה לארכיב'; $labels['archived'] = 'עדכון הארכיון הצליח'; diff --git a/plugins/archive/localization/hi_IN.inc b/plugins/archive/localization/hi_IN.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/hi_IN.inc +++ b/plugins/archive/localization/hi_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/hr_HR.inc b/plugins/archive/localization/hr_HR.inc index 9bf75d0d1..2a99cb687 100644 --- a/plugins/archive/localization/hr_HR.inc +++ b/plugins/archive/localization/hr_HR.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhiviraj poruku'; $labels['archived'] = 'Uspješno arhivirana'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Arhiva'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/hu_HU.inc b/plugins/archive/localization/hu_HU.inc index 6c570487c..799de1619 100644 --- a/plugins/archive/localization/hu_HU.inc +++ b/plugins/archive/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archiválás'; $labels['buttontitle'] = 'Üzenet archiválása'; $labels['archived'] = 'Sikeres archiválás'; diff --git a/plugins/archive/localization/hy_AM.inc b/plugins/archive/localization/hy_AM.inc index 6ce968666..a380346d4 100644 --- a/plugins/archive/localization/hy_AM.inc +++ b/plugins/archive/localization/hy_AM.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Արխիվ'; $labels['buttontitle'] = 'Արխիվացնել այս հաղորդագրությունը'; $labels['archived'] = 'Բարեհաջող արխիվացվեց'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Արխիվ'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/ia.inc b/plugins/archive/localization/ia.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/ia.inc +++ b/plugins/archive/localization/ia.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/id_ID.inc b/plugins/archive/localization/id_ID.inc index 1601b545b..0fa59ae71 100644 --- a/plugins/archive/localization/id_ID.inc +++ b/plugins/archive/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arsip'; $labels['buttontitle'] = 'Arsipkan pesan ini'; $labels['archived'] = 'Berhasil mengarsipkan'; diff --git a/plugins/archive/localization/it_IT.inc b/plugins/archive/localization/it_IT.inc index bd0f66f9c..a15d80063 100644 --- a/plugins/archive/localization/it_IT.inc +++ b/plugins/archive/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivio'; $labels['buttontitle'] = 'Archivia questo messaggio'; $labels['archived'] = 'Archiviato correttamente'; diff --git a/plugins/archive/localization/ja_JP.inc b/plugins/archive/localization/ja_JP.inc index 971839abd..c9454be18 100644 --- a/plugins/archive/localization/ja_JP.inc +++ b/plugins/archive/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'アーカイブ'; $labels['buttontitle'] = 'このメッセージをアーカイブ'; $labels['archived'] = 'アーカイブしました。'; diff --git a/plugins/archive/localization/km_KH.inc b/plugins/archive/localization/km_KH.inc index d8b07ed2f..d4b1c3baa 100644 --- a/plugins/archive/localization/km_KH.inc +++ b/plugins/archive/localization/km_KH.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'ប័ណ្ណសារ'; $labels['buttontitle'] = 'ប័ណ្ណសារ សារលិខិត នេះ'; $labels['archived'] = 'ប័ណ្ណសារ បានសំរេច'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'ប័ណ្ណសារ'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/ko_KR.inc b/plugins/archive/localization/ko_KR.inc index 21b635b07..bf23f3a41 100644 --- a/plugins/archive/localization/ko_KR.inc +++ b/plugins/archive/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = '보관'; $labels['buttontitle'] = '이 메시지를 보관'; $labels['archived'] = '성공적으로 보관됨'; diff --git a/plugins/archive/localization/ku.inc b/plugins/archive/localization/ku.inc index 3b5e8ccfd..494951502 100644 --- a/plugins/archive/localization/ku.inc +++ b/plugins/archive/localization/ku.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arşîv'; $labels['buttontitle'] = 'am masaja bxa arşiv'; $labels['archived'] = 'ba gşti Arşiv kra'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Arşîv'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/lb_LU.inc b/plugins/archive/localization/lb_LU.inc index ec33f69d5..ac16cfea7 100644 --- a/plugins/archive/localization/lb_LU.inc +++ b/plugins/archive/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivéieren'; $labels['buttontitle'] = 'Dëse Message archivéieren'; $labels['archived'] = 'Erfollegräich archivéiert'; diff --git a/plugins/archive/localization/lt_LT.inc b/plugins/archive/localization/lt_LT.inc index 414c01daa..fdcf34336 100644 --- a/plugins/archive/localization/lt_LT.inc +++ b/plugins/archive/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archyvuoti'; $labels['buttontitle'] = 'Perkelti šį laišką į archyvą'; $labels['archived'] = 'Laiškas sėkmingai perkeltas į archyvą'; diff --git a/plugins/archive/localization/lv_LV.inc b/plugins/archive/localization/lv_LV.inc index 0f22ac98c..5215786b2 100644 --- a/plugins/archive/localization/lv_LV.inc +++ b/plugins/archive/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhīvs'; $labels['buttontitle'] = 'Arhivēt šo vēstuli'; $labels['archived'] = 'Vēstule veiksmīgi arhivēta'; diff --git a/plugins/archive/localization/ml_IN.inc b/plugins/archive/localization/ml_IN.inc index 3b06330cc..047223f83 100644 --- a/plugins/archive/localization/ml_IN.inc +++ b/plugins/archive/localization/ml_IN.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'ശേഖരം'; $labels['buttontitle'] = 'ഈ മെസ്സേജ് ശേഖരിക്കുക'; $labels['archived'] = 'വിജയകരമായി ശേഖരിച്ചു'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'ശേഖരം'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/mn_MN.inc b/plugins/archive/localization/mn_MN.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/mn_MN.inc +++ b/plugins/archive/localization/mn_MN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/mr_IN.inc b/plugins/archive/localization/mr_IN.inc index 46ae7b959..96ecbc26b 100644 --- a/plugins/archive/localization/mr_IN.inc +++ b/plugins/archive/localization/mr_IN.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'जतन केलेला'; $labels['buttontitle'] = 'हा संदेश जतन करा'; $labels['archived'] = 'यशस्वीरीत्या जतन केला'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'जतन केलेला'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/ms_MY.inc b/plugins/archive/localization/ms_MY.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/ms_MY.inc +++ b/plugins/archive/localization/ms_MY.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/my_MM.inc b/plugins/archive/localization/my_MM.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/my_MM.inc +++ b/plugins/archive/localization/my_MM.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/nb_NO.inc b/plugins/archive/localization/nb_NO.inc index 6b85b8286..c0f193aa6 100644 --- a/plugins/archive/localization/nb_NO.inc +++ b/plugins/archive/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkiv'; $labels['buttontitle'] = 'Arkiver meldingen'; $labels['archived'] = 'Arkivert'; @@ -27,6 +26,6 @@ $labels['archivetype'] = 'Del arkiv etter'; $labels['archivetypeyear'] = 'År (f.eks. Arkiv/2012)'; $labels['archivetypemonth'] = 'Måned (f.eks. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Opprinnelig mappe'; -$labels['archivetypesender'] = 'Sender email'; +$labels['archivetypesender'] = 'Avsender'; $labels['unkownsender'] = 'ukjent'; ?> diff --git a/plugins/archive/localization/nl_BE.inc b/plugins/archive/localization/nl_BE.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/nl_BE.inc +++ b/plugins/archive/localization/nl_BE.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/nl_NL.inc b/plugins/archive/localization/nl_NL.inc index a89b1ba6e..edec96761 100644 --- a/plugins/archive/localization/nl_NL.inc +++ b/plugins/archive/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archief'; $labels['buttontitle'] = 'Archiveer dit bericht'; $labels['archived'] = 'Succesvol gearchiveerd'; diff --git a/plugins/archive/localization/nn_NO.inc b/plugins/archive/localization/nn_NO.inc index 4934b0b7a..d4279c7cb 100644 --- a/plugins/archive/localization/nn_NO.inc +++ b/plugins/archive/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkiver'; $labels['buttontitle'] = 'Arkiver meldinga'; $labels['archived'] = 'Arkivert'; @@ -27,6 +26,6 @@ $labels['archivetype'] = 'Del arkiv etter'; $labels['archivetypeyear'] = 'År (f.eks. Arkiv/2012)'; $labels['archivetypemonth'] = 'Månad (f.eks. Arkiv/2012/06)'; $labels['archivetypefolder'] = 'Opprinneleg mappe'; -$labels['archivetypesender'] = 'Sender email'; +$labels['archivetypesender'] = 'Avsendar'; $labels['unkownsender'] = 'ukjent'; ?> diff --git a/plugins/archive/localization/nqo.inc b/plugins/archive/localization/nqo.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/nqo.inc +++ b/plugins/archive/localization/nqo.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/om.inc b/plugins/archive/localization/om.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/om.inc +++ b/plugins/archive/localization/om.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/pl_PL.inc b/plugins/archive/localization/pl_PL.inc index 1320b53a6..9d066e518 100644 --- a/plugins/archive/localization/pl_PL.inc +++ b/plugins/archive/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archiwum'; $labels['buttontitle'] = 'Przenieś do archiwum'; $labels['archived'] = 'Pomyślnie zarchiwizowano'; diff --git a/plugins/archive/localization/pt_BR.inc b/plugins/archive/localization/pt_BR.inc index aa72d227f..b819ad2d3 100644 --- a/plugins/archive/localization/pt_BR.inc +++ b/plugins/archive/localization/pt_BR.inc @@ -15,18 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensagem'; $labels['archived'] = 'Arquivada com sucesso'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; +$labels['archivedreload'] = 'Arquivado com sucesso. Recarregue a página para ver as novas pastas de arquivo.'; +$labels['archiveerror'] = 'Algumas mensagens não puderam ser arquivadas'; $labels['archivefolder'] = 'Arquivo'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; +$labels['settingstitle'] = 'Arquivo'; +$labels['archivetype'] = 'Dividir arquivo por'; +$labels['archivetypeyear'] = 'Ano (isto é, Arquivo/2012)'; +$labels['archivetypemonth'] = 'Mês (isto é, Arquivo/2012/06)'; +$labels['archivetypefolder'] = 'Pasta original'; +$labels['archivetypesender'] = 'E-mail do remetente'; +$labels['unkownsender'] = 'desconhecido'; ?> diff --git a/plugins/archive/localization/pt_PT.inc b/plugins/archive/localization/pt_PT.inc index 95a24948d..a2a3e20de 100644 --- a/plugins/archive/localization/pt_PT.inc +++ b/plugins/archive/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arquivo'; $labels['buttontitle'] = 'Arquivar esta mensagem'; $labels['archived'] = 'Arquivada com sucesso'; diff --git a/plugins/archive/localization/ro_RO.inc b/plugins/archive/localization/ro_RO.inc index 64d1bd596..6cd9df5ee 100644 --- a/plugins/archive/localization/ro_RO.inc +++ b/plugins/archive/localization/ro_RO.inc @@ -15,15 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhivă'; -$labels['buttontitle'] = 'Arhivează acest mesaj.'; +$labels['buttontitle'] = 'Arhivează mesajul.'; $labels['archived'] = 'Arhivare reuşită.'; $labels['archivedreload'] = 'Arhivat cu succes. Reîncărcați pagina pentru a vedea noul dosar de arhivare.'; -$labels['archiveerror'] = 'Câteva mesaje nu au putut fi arhivate'; +$labels['archiveerror'] = 'Unele mesaje nu au putut fi arhivate'; $labels['archivefolder'] = 'Arhivă'; $labels['settingstitle'] = 'Arhivă'; -$labels['archivetype'] = 'Divide arhiva pe'; +$labels['archivetype'] = 'Împarte arhiva pe'; $labels['archivetypeyear'] = 'Ani (ex. Arhiva/2013)'; $labels['archivetypemonth'] = 'Luni (ex. Arhiva/2013/06)'; $labels['archivetypefolder'] = 'Dosar original'; diff --git a/plugins/archive/localization/ru_RU.inc b/plugins/archive/localization/ru_RU.inc index e33edc21f..b3058b62e 100644 --- a/plugins/archive/localization/ru_RU.inc +++ b/plugins/archive/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Архив'; $labels['buttontitle'] = 'Переместить выбранное в архив'; $labels['archived'] = 'Перенесено в Архив'; diff --git a/plugins/archive/localization/si_LK.inc b/plugins/archive/localization/si_LK.inc index f8035605c..24f49ab4f 100644 --- a/plugins/archive/localization/si_LK.inc +++ b/plugins/archive/localization/si_LK.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'සංරක්‍ෂණය'; $labels['buttontitle'] = 'මෙම පණිවිඩය සංරක්‍ෂණය කරන්න'; $labels['archived'] = 'සංරක්‍ෂණය සාර්ථකයි'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'සංරක්‍ෂණය'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/sk_SK.inc b/plugins/archive/localization/sk_SK.inc index 0bcdaee5b..f3f447b90 100644 --- a/plugins/archive/localization/sk_SK.inc +++ b/plugins/archive/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Archivovať'; $labels['buttontitle'] = 'Archivovať túto správu'; $labels['archived'] = 'Úspešne archivované'; diff --git a/plugins/archive/localization/sl_SI.inc b/plugins/archive/localization/sl_SI.inc index 5dbd605b4..60d772591 100644 --- a/plugins/archive/localization/sl_SI.inc +++ b/plugins/archive/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhiv'; $labels['buttontitle'] = 'Arhiviraj to sporočilo'; $labels['archived'] = 'Sporočilo je bilo uspešno arhivirano'; diff --git a/plugins/archive/localization/sr_CS.inc b/plugins/archive/localization/sr_CS.inc index ca04f4ba0..9d501e9d0 100644 --- a/plugins/archive/localization/sr_CS.inc +++ b/plugins/archive/localization/sr_CS.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arhiva'; $labels['buttontitle'] = 'Arhivirati ovu poruku'; $labels['archived'] = 'Uspěšno arhivirano'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Arhiva'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/sv_SE.inc b/plugins/archive/localization/sv_SE.inc index 82e1808f2..361b7b6d9 100644 --- a/plugins/archive/localization/sv_SE.inc +++ b/plugins/archive/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arkivera'; $labels['buttontitle'] = 'Arkivera meddelande'; $labels['archived'] = 'Meddelandet är arkiverat'; diff --git a/plugins/archive/localization/te_IN.inc b/plugins/archive/localization/te_IN.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/te_IN.inc +++ b/plugins/archive/localization/te_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/th_TH.inc b/plugins/archive/localization/th_TH.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/th_TH.inc +++ b/plugins/archive/localization/th_TH.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/ti.inc b/plugins/archive/localization/ti.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/ti.inc +++ b/plugins/archive/localization/ti.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/tr_TR.inc b/plugins/archive/localization/tr_TR.inc index 694643fba..bbadfda7c 100644 --- a/plugins/archive/localization/tr_TR.inc +++ b/plugins/archive/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Arşiv'; $labels['buttontitle'] = 'Bu postayı arşivle'; $labels['archived'] = 'Başarıyla arşivlendi'; diff --git a/plugins/archive/localization/tzm.inc b/plugins/archive/localization/tzm.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/tzm.inc +++ b/plugins/archive/localization/tzm.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/uk_UA.inc b/plugins/archive/localization/uk_UA.inc index 1fb84146c..d2b461fca 100644 --- a/plugins/archive/localization/uk_UA.inc +++ b/plugins/archive/localization/uk_UA.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Архів'; $labels['buttontitle'] = 'Архівувати це повідомлення'; $labels['archived'] = 'Перенесено в архів'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Архів'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/ur_PK.inc b/plugins/archive/localization/ur_PK.inc index ce13b2a85..8e95162d5 100644 --- a/plugins/archive/localization/ur_PK.inc +++ b/plugins/archive/localization/ur_PK.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - - ?> diff --git a/plugins/archive/localization/vi_VN.inc b/plugins/archive/localization/vi_VN.inc index 493b5491b..61e02085b 100644 --- a/plugins/archive/localization/vi_VN.inc +++ b/plugins/archive/localization/vi_VN.inc @@ -15,18 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = 'Lưu trữ'; $labels['buttontitle'] = 'Lưu lại bức thư này'; $labels['archived'] = 'Lưu lại thành công'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; $labels['archivefolder'] = 'Lưu trữ'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; ?> diff --git a/plugins/archive/localization/zh_CN.inc b/plugins/archive/localization/zh_CN.inc index 9fc6bd0b9..89837c141 100644 --- a/plugins/archive/localization/zh_CN.inc +++ b/plugins/archive/localization/zh_CN.inc @@ -15,18 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = '存档'; -$labels['buttontitle'] = '将该信息存档'; +$labels['buttontitle'] = '存档该信息'; $labels['archived'] = '存档成功'; -$labels['archivedreload'] = 'Successfully archived. Reload the page to see the new archive folders.'; -$labels['archiveerror'] = 'Some messages could not be archived'; +$labels['archivedreload'] = '存档成功。请刷新本页以查看新的存档文件夹。'; +$labels['archiveerror'] = '部分信息无法存档'; $labels['archivefolder'] = '存档'; -$labels['settingstitle'] = 'Archive'; -$labels['archivetype'] = 'Divide archive by'; -$labels['archivetypeyear'] = 'Year (e.g. Archive/2012)'; -$labels['archivetypemonth'] = 'Month (e.g. Archive/2012/06)'; -$labels['archivetypefolder'] = 'Original folder'; -$labels['archivetypesender'] = 'Sender email'; -$labels['unkownsender'] = 'unknown'; +$labels['settingstitle'] = '存档'; +$labels['archivetype'] = '分类存档按'; +$labels['archivetypeyear'] = '年(例如 存档/2012)'; +$labels['archivetypemonth'] = '月(例如 存档/2012/06)'; +$labels['archivetypefolder'] = '原始文件夹'; +$labels['archivetypesender'] = '发件人邮件'; +$labels['unkownsender'] = '未知'; ?> diff --git a/plugins/archive/localization/zh_TW.inc b/plugins/archive/localization/zh_TW.inc index 30fec5563..a50ef2845 100644 --- a/plugins/archive/localization/zh_TW.inc +++ b/plugins/archive/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-archive/ */ - $labels['buttontext'] = '封存'; $labels['buttontitle'] = '封存此信件'; $labels['archived'] = '已成功封存'; diff --git a/plugins/attachment_reminder/localization/ar.inc b/plugins/attachment_reminder/localization/ar.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ar.inc +++ b/plugins/attachment_reminder/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ar_SA.inc b/plugins/attachment_reminder/localization/ar_SA.inc index 12b1ffedb..bb1ad0449 100644 --- a/plugins/attachment_reminder/localization/ar_SA.inc +++ b/plugins/attachment_reminder/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "هل نسيت إرفاق ملف؟"; $messages['reminderoption'] = "تذكير حول المرفقات المنسية"; $messages['keywords'] = "المرفقات,الملف,ارفاق,مرفق,ارفاق,مضمون,CV,صفحة المغلف"; diff --git a/plugins/attachment_reminder/localization/az_AZ.inc b/plugins/attachment_reminder/localization/az_AZ.inc index dccdf5dbe..5340c917e 100644 --- a/plugins/attachment_reminder/localization/az_AZ.inc +++ b/plugins/attachment_reminder/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Faylı əlavə etməyi unutdunuz?"; $messages['reminderoption'] = "Unudulmuş qoşmalardan xəbərdar et"; $messages['keywords'] = "qoşmalar,fayl,qoşma,qoşulub,qoşulur,qapalı,CV,qoşma məktub"; diff --git a/plugins/attachment_reminder/localization/be_BE.inc b/plugins/attachment_reminder/localization/be_BE.inc index 25c05ad7e..a920ccfa6 100644 --- a/plugins/attachment_reminder/localization/be_BE.inc +++ b/plugins/attachment_reminder/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Забыліся далучыць файл?"; $messages['reminderoption'] = "Напамінаць пра забытыя далучэнні"; $messages['keywords'] = "далучэнне,файл,далучыць,далучаны,далучаецца,укладзены,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bg_BG.inc b/plugins/attachment_reminder/localization/bg_BG.inc index 93d657106..a882d6c94 100644 --- a/plugins/attachment_reminder/localization/bg_BG.inc +++ b/plugins/attachment_reminder/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Забравихте ли да прикрепите файл към съобщението?"; $messages['reminderoption'] = "Напомняне за забравени прикачени файлове"; $messages['keywords'] = "прикачен,прикрепен,прикачам,прикачвам,прикрепям,прикрепвам,файл,attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/bn_BD.inc b/plugins/attachment_reminder/localization/bn_BD.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/bn_BD.inc +++ b/plugins/attachment_reminder/localization/bn_BD.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/bs_BA.inc b/plugins/attachment_reminder/localization/bs_BA.inc index 388b36cfa..1ec385dfa 100644 --- a/plugins/attachment_reminder/localization/bs_BA.inc +++ b/plugins/attachment_reminder/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Da li ste zaboravili da dodate ovu datoteku?"; $messages['reminderoption'] = "Napomene o zaboravljenim prilozima"; $messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter,prilog,biografija,popratno pismo,prilogu,popratnom pismu,datoteka,fajl"; diff --git a/plugins/attachment_reminder/localization/ca_ES.inc b/plugins/attachment_reminder/localization/ca_ES.inc index 285210aeb..957548bfb 100644 --- a/plugins/attachment_reminder/localization/ca_ES.inc +++ b/plugins/attachment_reminder/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Heu oblidat afegir un fitxer?"; $messages['reminderoption'] = "Avís de fitxers adjunts oblidats"; $messages['keywords'] = "adjunt,fitxer,adjuntar,adjuntat,adjuntant,CV,carta"; diff --git a/plugins/attachment_reminder/localization/cs_CZ.inc b/plugins/attachment_reminder/localization/cs_CZ.inc index 975f2bd17..3d2166478 100644 --- a/plugins/attachment_reminder/localization/cs_CZ.inc +++ b/plugins/attachment_reminder/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Nezapomněli jste připojit přílohu?"; $messages['reminderoption'] = "Upozorňovat na zapomenuté přílohy"; $messages['keywords'] = "příloha,přílohy,příloze,přílohu,přiloženém,připojeném,CV,životopis"; diff --git a/plugins/attachment_reminder/localization/cy_GB.inc b/plugins/attachment_reminder/localization/cy_GB.inc index 259000180..0ce8a9991 100644 --- a/plugins/attachment_reminder/localization/cy_GB.inc +++ b/plugins/attachment_reminder/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Wedi anghofio atodi ffeil?"; $messages['reminderoption'] = "Atgoffa am atodiadau ar goll"; $messages['keywords'] = "atodiad,atodi,atodaf,atodwyd,atodir,amgaedig,dogfen,llythyr,ffeil,attachment,file,attach,attached,attaching,enclosed,CV,cover letter,"; diff --git a/plugins/attachment_reminder/localization/da_DK.inc b/plugins/attachment_reminder/localization/da_DK.inc index ac7e6ff89..e41eafb36 100644 --- a/plugins/attachment_reminder/localization/da_DK.inc +++ b/plugins/attachment_reminder/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Glemte du at vedhæfte en fil?"; $messages['reminderoption'] = "Påmind om glemt vedhæftning af filer"; $messages['keywords'] = "vedhæftet fil,fil,vedhæft,vedhæftet,vedhæfter,lukket,CV,følgebrev"; diff --git a/plugins/attachment_reminder/localization/de_CH.inc b/plugins/attachment_reminder/localization/de_CH.inc index a093e6c72..9aca61e68 100644 --- a/plugins/attachment_reminder/localization/de_CH.inc +++ b/plugins/attachment_reminder/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Haben Sie möglicherweise vergessen eine Datei anzuhängen?"; $messages['reminderoption'] = "Vor vergessenen Anhängen warnen"; $messages['keywords'] = "anbei,anhang,angehängt,angefügt,beigefügt,beliegend"; diff --git a/plugins/attachment_reminder/localization/de_DE.inc b/plugins/attachment_reminder/localization/de_DE.inc index f59f66a86..0422e2de2 100644 --- a/plugins/attachment_reminder/localization/de_DE.inc +++ b/plugins/attachment_reminder/localization/de_DE.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "Haben Sie möglicherweise vergessen eine Datei anzuhängen?"; -$messages['reminderoption'] = "Remind about forgotten attachments"; +$messages['reminderoption'] = "Erinnern an vergessene Anhänge "; $messages['keywords'] = "anbei,im anhang,angehängt,angefügt,beigefügt,beliegend"; diff --git a/plugins/attachment_reminder/localization/el_GR.inc b/plugins/attachment_reminder/localization/el_GR.inc index 7d696a339..e47995f3a 100644 --- a/plugins/attachment_reminder/localization/el_GR.inc +++ b/plugins/attachment_reminder/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Μήπως ξεχάσετε να επισυνάψετε ένα αρχείο; "; $messages['reminderoption'] = "Υπενθύμιση ξεχάσmena συνημμένα "; $messages['keywords'] = "συνημμένο, αρχείο, συννημενο, επισυναψη, επισυνάπτοντας, κλειστό, βιογραφικό σημείωμα, συνοδευτική επιστολή"; diff --git a/plugins/attachment_reminder/localization/eo.inc b/plugins/attachment_reminder/localization/eo.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/eo.inc +++ b/plugins/attachment_reminder/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/es_AR.inc b/plugins/attachment_reminder/localization/es_AR.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/es_AR.inc +++ b/plugins/attachment_reminder/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/es_ES.inc b/plugins/attachment_reminder/localization/es_ES.inc index db4625010..7f6f29e6e 100644 --- a/plugins/attachment_reminder/localization/es_ES.inc +++ b/plugins/attachment_reminder/localization/es_ES.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "¿Olvidó adjuntar un fichero al mensaje?"; -$messages['reminderoption'] = "Remind about forgotten attachments"; +$messages['reminderoption'] = "Recordatorio sobre adjuntos olvidados"; $messages['keywords'] = "adjunto"; diff --git a/plugins/attachment_reminder/localization/et_EE.inc b/plugins/attachment_reminder/localization/et_EE.inc index 3b79e0169..c8be2af6d 100644 --- a/plugins/attachment_reminder/localization/et_EE.inc +++ b/plugins/attachment_reminder/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Unustasid faili lisada?"; $messages['reminderoption'] = "Tuleta mulle meelde kui unustasin manuse lisada"; $messages['keywords'] = "manus,manuses,lisatud,lisasin,fail,file,failis,attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/eu_ES.inc b/plugins/attachment_reminder/localization/eu_ES.inc index 2faf23c7a..f658990e5 100644 --- a/plugins/attachment_reminder/localization/eu_ES.inc +++ b/plugins/attachment_reminder/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Ahaztu zaizu fitxategia eranstea?"; $messages['reminderoption'] = "Ohartarazi ahaztutako erankinez"; $messages['keywords'] = "eranskin,fitxategia,erantzi,erantzita,eransten,atxikita"; diff --git a/plugins/attachment_reminder/localization/fa_AF.inc b/plugins/attachment_reminder/localization/fa_AF.inc index f7b67cefc..1c47737f1 100644 --- a/plugins/attachment_reminder/localization/fa_AF.inc +++ b/plugins/attachment_reminder/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "آیا فراموش کردید که فایل را الصاق کرده اید؟"; $messages['reminderoption'] = "یاد آوری درمورد ضمایم فراموش شده"; $messages['keywords'] = "ضمیمه،فایل،ضمیمه کردن،ضمیمه شده،در حال ضمیمه کردن، الصاق شده،CV، عنوان نامه"; diff --git a/plugins/attachment_reminder/localization/fa_IR.inc b/plugins/attachment_reminder/localization/fa_IR.inc index 763ad7432..fd1c40117 100644 --- a/plugins/attachment_reminder/localization/fa_IR.inc +++ b/plugins/attachment_reminder/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "آیا شما پیوست کردن پرونده را فراموش کرده‌اید؟"; $messages['reminderoption'] = "یادآوری فراموشی پیوست‌ها"; $messages['keywords'] = "پیوست،پرونده،پیوست کردن، پیوست شده، CV"; diff --git a/plugins/attachment_reminder/localization/fi_FI.inc b/plugins/attachment_reminder/localization/fi_FI.inc index 459b610f7..53d2a9abb 100644 --- a/plugins/attachment_reminder/localization/fi_FI.inc +++ b/plugins/attachment_reminder/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Unohditko liittää tiedoston?"; $messages['reminderoption'] = "Muistuta mahdollisesti unohtuneista liitteistä"; $messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter,liite,tiedosto,liitteenä,liitetiedosto"; diff --git a/plugins/attachment_reminder/localization/fr_FR.inc b/plugins/attachment_reminder/localization/fr_FR.inc index 20d11f20e..bda3eba90 100644 --- a/plugins/attachment_reminder/localization/fr_FR.inc +++ b/plugins/attachment_reminder/localization/fr_FR.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "Avez vous oublié d'attacher un fichier ?"; -$messages['reminderoption'] = "Remind about forgotten attachments"; +$messages['reminderoption'] = "Rappel à propos des pièces jointes oubliées"; $messages['keywords'] = "joins,joint,attaché,CV"; diff --git a/plugins/attachment_reminder/localization/gl_ES.inc b/plugins/attachment_reminder/localization/gl_ES.inc index 978f54163..bd126b2af 100644 --- a/plugins/attachment_reminder/localization/gl_ES.inc +++ b/plugins/attachment_reminder/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Esqueceches adxuntar un ficheiro?"; $messages['reminderoption'] = "Lembrete de adxuntos esquecidos"; $messages['keywords'] = "adxunto,ficheiro,engádega, engadido,engadindo,anexo,CV,cuberta,carta"; diff --git a/plugins/attachment_reminder/localization/he_IL.inc b/plugins/attachment_reminder/localization/he_IL.inc index bfe5f6973..2c348afb6 100644 --- a/plugins/attachment_reminder/localization/he_IL.inc +++ b/plugins/attachment_reminder/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "האם שכחת לצרף קובץ?"; $messages['reminderoption'] = "להזכיר לצרף נספח"; $messages['keywords'] = "נספח,קובץ,לצרף,מצורף,מצרף,מצרפת,רצ\"ב,קו\"ח,קורות חיים"; diff --git a/plugins/attachment_reminder/localization/hi_IN.inc b/plugins/attachment_reminder/localization/hi_IN.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/hi_IN.inc +++ b/plugins/attachment_reminder/localization/hi_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/hu_HU.inc b/plugins/attachment_reminder/localization/hu_HU.inc index 0acca33f2..b76a8cf9b 100644 --- a/plugins/attachment_reminder/localization/hu_HU.inc +++ b/plugins/attachment_reminder/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Nem felejtetted el a csatolandó file-t?"; $messages['reminderoption'] = "Emlékeztessen a csatolandó csatolmányra"; $messages['keywords'] = "csatolmány, file, csatolás, csatolt, csatolni, közrezárt, CV, kisérőlevél"; diff --git a/plugins/attachment_reminder/localization/hy_AM.inc b/plugins/attachment_reminder/localization/hy_AM.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/hy_AM.inc +++ b/plugins/attachment_reminder/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ia.inc b/plugins/attachment_reminder/localization/ia.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ia.inc +++ b/plugins/attachment_reminder/localization/ia.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/id_ID.inc b/plugins/attachment_reminder/localization/id_ID.inc index 08399afe2..1f0b0bb7a 100644 --- a/plugins/attachment_reminder/localization/id_ID.inc +++ b/plugins/attachment_reminder/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Apakah anda lupa menambahkan attachment?"; $messages['reminderoption'] = "Pengingat attachment yang terlupakan"; $messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/it_IT.inc b/plugins/attachment_reminder/localization/it_IT.inc index 09dba7fe4..2a9772dcb 100644 --- a/plugins/attachment_reminder/localization/it_IT.inc +++ b/plugins/attachment_reminder/localization/it_IT.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "Sembra che tu abbia dimenticato di allegare un file!\nPremere Annulla per inviare lo stesso.\nOK per tornare al messaggio senza inviare."; -$messages['reminderoption'] = "Remind about forgotten attachments"; +$messages['reminderoption'] = "Ricorda per gli allegati dimenticati"; $messages['keywords'] = "allegato,allegati,allegata,allegate,allega,allego,alleghi,attaccato,file,attachment,attach"; diff --git a/plugins/attachment_reminder/localization/ja_JP.inc b/plugins/attachment_reminder/localization/ja_JP.inc index 93b77868d..5ba55d446 100644 --- a/plugins/attachment_reminder/localization/ja_JP.inc +++ b/plugins/attachment_reminder/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "ファイルの添付を忘れていませんか?"; $messages['reminderoption'] = "添付ファイルの付け忘れを確認"; $messages['keywords'] = "添付,ファイル,添付ファイル,同封,添え状"; diff --git a/plugins/attachment_reminder/localization/ko_KR.inc b/plugins/attachment_reminder/localization/ko_KR.inc index a82b07059..c80dcc4c8 100644 --- a/plugins/attachment_reminder/localization/ko_KR.inc +++ b/plugins/attachment_reminder/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "파일을 첨부하는 것을 잊으셨습니까?"; $messages['reminderoption'] = "잊었던 첨부파일에 대해 알리기"; $messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/lb_LU.inc b/plugins/attachment_reminder/localization/lb_LU.inc index 50dcb908d..f91f3d129 100644 --- a/plugins/attachment_reminder/localization/lb_LU.inc +++ b/plugins/attachment_reminder/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Hues du vergiess e Fichier drunzehänken?"; $messages['reminderoption'] = "U vergiessen Unhäng erënneren"; $messages['keywords'] = "Attachment,Fichier,Unhank,Unhang,Unhäng,ugehaangen,unhänken,attachment,file,attach,attached,attaching,enclosed,CV,cover letter,fichier joint"; diff --git a/plugins/attachment_reminder/localization/lt_LT.inc b/plugins/attachment_reminder/localization/lt_LT.inc index 8b8a07dde..a8ba0b883 100644 --- a/plugins/attachment_reminder/localization/lt_LT.inc +++ b/plugins/attachment_reminder/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Ar nepamiršote prisegti priedo?"; $messages['reminderoption'] = "Priminti apie neprisegtus priedus"; $messages['keywords'] = "priedas, byla, prisegti, prisegta, prisegama, uždaras, CV, laiškas"; diff --git a/plugins/attachment_reminder/localization/lv_LV.inc b/plugins/attachment_reminder/localization/lv_LV.inc index 1dc446aa6..ee4feeb24 100644 --- a/plugins/attachment_reminder/localization/lv_LV.inc +++ b/plugins/attachment_reminder/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Vai Jūs nepiemirsāt pievienot failu?"; $messages['reminderoption'] = "Atgādināt par nepievienotajiem pielikumiem"; $messages['keywords'] = "pielikums,fails,pievienot,pielikt,pievienots,pielikts,ievietot,ievietots,CV"; diff --git a/plugins/attachment_reminder/localization/ml_IN.inc b/plugins/attachment_reminder/localization/ml_IN.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ml_IN.inc +++ b/plugins/attachment_reminder/localization/ml_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/mn_MN.inc b/plugins/attachment_reminder/localization/mn_MN.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/mn_MN.inc +++ b/plugins/attachment_reminder/localization/mn_MN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ms_MY.inc b/plugins/attachment_reminder/localization/ms_MY.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ms_MY.inc +++ b/plugins/attachment_reminder/localization/ms_MY.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/my_MM.inc b/plugins/attachment_reminder/localization/my_MM.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/my_MM.inc +++ b/plugins/attachment_reminder/localization/my_MM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nb_NO.inc b/plugins/attachment_reminder/localization/nb_NO.inc index cf79784e8..1462837d5 100644 --- a/plugins/attachment_reminder/localization/nb_NO.inc +++ b/plugins/attachment_reminder/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Glemte du å legge ved en fil?"; $messages['reminderoption'] = "Gi meg en påminnelse om glemte vedlegg"; $messages['keywords'] = "vedlegg, fil, legg ved, lagt ved, legger ved, lukket, CV, følgebrev"; diff --git a/plugins/attachment_reminder/localization/nl_BE.inc b/plugins/attachment_reminder/localization/nl_BE.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/nl_BE.inc +++ b/plugins/attachment_reminder/localization/nl_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nl_NL.inc b/plugins/attachment_reminder/localization/nl_NL.inc index 2131eb153..293ad174f 100644 --- a/plugins/attachment_reminder/localization/nl_NL.inc +++ b/plugins/attachment_reminder/localization/nl_NL.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ +$messages['forgotattachment'] = "Bent u vergeten het bestand bij te voegen?"; +$messages['reminderoption'] = "Herinner mij aan vergeten bijlagen"; +$messages['keywords'] = "attachment,bestand,bijgaand,bijgaande,brief,bijgevoegd,bijgesloten,CV,document,bijgesloten"; diff --git a/plugins/attachment_reminder/localization/nn_NO.inc b/plugins/attachment_reminder/localization/nn_NO.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/nn_NO.inc +++ b/plugins/attachment_reminder/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/nqo.inc b/plugins/attachment_reminder/localization/nqo.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/nqo.inc +++ b/plugins/attachment_reminder/localization/nqo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/om.inc b/plugins/attachment_reminder/localization/om.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/om.inc +++ b/plugins/attachment_reminder/localization/om.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/pl_PL.inc b/plugins/attachment_reminder/localization/pl_PL.inc index 5815746dc..06cede5d9 100644 --- a/plugins/attachment_reminder/localization/pl_PL.inc +++ b/plugins/attachment_reminder/localization/pl_PL.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "Czy nie zapomniałeś załączyć pliku?"; $messages['reminderoption'] = "Włącz przypominanie o brakującym załączniku"; $messages['keywords'] = "załącznik,plik,załącz,CV"; diff --git a/plugins/attachment_reminder/localization/pt_BR.inc b/plugins/attachment_reminder/localization/pt_BR.inc index a9320fbce..b06e8923e 100644 --- a/plugins/attachment_reminder/localization/pt_BR.inc +++ b/plugins/attachment_reminder/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Você esqueceu-se de anexar um arquivo?"; $messages['reminderoption'] = "Alertar quando os anexos forem esquecidos"; $messages['keywords'] = "anexo,arquivo,anexar,anexado,anexando,incluso,CV,currículo"; diff --git a/plugins/attachment_reminder/localization/pt_PT.inc b/plugins/attachment_reminder/localization/pt_PT.inc index 10e6bebb6..de2d04efd 100644 --- a/plugins/attachment_reminder/localization/pt_PT.inc +++ b/plugins/attachment_reminder/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Você esqueceu-se de anexar um ficheiro?"; $messages['reminderoption'] = "Lembrar sobre anexos esquecidos"; $messages['keywords'] = "anexo,ficheiro,anexar,anexado,a anexar,em anexo,currículo,carta de apresentação"; diff --git a/plugins/attachment_reminder/localization/ro_RO.inc b/plugins/attachment_reminder/localization/ro_RO.inc index 048efe20c..ff1153908 100644 --- a/plugins/attachment_reminder/localization/ro_RO.inc +++ b/plugins/attachment_reminder/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Ați uitat să atașati ?"; $messages['reminderoption'] = "Adu-mi aminte de atașamente"; $messages['keywords'] = "atașament,atasament,atas,atasat,ataș,attach,fisier,fișier,attach,atach,attache"; diff --git a/plugins/attachment_reminder/localization/ru_RU.inc b/plugins/attachment_reminder/localization/ru_RU.inc index 40186e8b8..d592b1e30 100644 --- a/plugins/attachment_reminder/localization/ru_RU.inc +++ b/plugins/attachment_reminder/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Вы не забыли прикрепить файл?"; $messages['reminderoption'] = "Напоминать о забытых вложениях"; $messages['keywords'] = "вложение,файл, вложенный, прикрепленный,резюме,документ"; diff --git a/plugins/attachment_reminder/localization/sk_SK.inc b/plugins/attachment_reminder/localization/sk_SK.inc index b169ad0bd..344d1e6a7 100644 --- a/plugins/attachment_reminder/localization/sk_SK.inc +++ b/plugins/attachment_reminder/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Nezabudli ste pridať prílohu?"; $messages['reminderoption'] = "Pripomenúť zabudnuté prílohy"; $messages['keywords'] = "príloha,súbor,pripojiť,priložená,priložený,priložené,v prílohe,životopis,sprievodný list"; diff --git a/plugins/attachment_reminder/localization/sl_SI.inc b/plugins/attachment_reminder/localization/sl_SI.inc index 8acfdbd05..9531f8ed0 100644 --- a/plugins/attachment_reminder/localization/sl_SI.inc +++ b/plugins/attachment_reminder/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Ste pozabili pripeti datoteko?"; $messages['reminderoption'] = "Opozorilo za dodajanje priponk"; $messages['keywords'] = "priponka,datoteka,pripeti,pripeta,pripenjati,priložen,priložiti,CV,spremno pismo"; diff --git a/plugins/attachment_reminder/localization/sr_CS.inc b/plugins/attachment_reminder/localization/sr_CS.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/sr_CS.inc +++ b/plugins/attachment_reminder/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/sv_SE.inc b/plugins/attachment_reminder/localization/sv_SE.inc index 1641db03c..744a9618e 100644 --- a/plugins/attachment_reminder/localization/sv_SE.inc +++ b/plugins/attachment_reminder/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Glömde du att bifoga en fil?"; $messages['reminderoption'] = "Påminn om glömda bilagor"; $messages['keywords'] = "bilaga,fil,bifoga,bifogad,bifogar,infogad,CV,personligt brev"; diff --git a/plugins/attachment_reminder/localization/te_IN.inc b/plugins/attachment_reminder/localization/te_IN.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/te_IN.inc +++ b/plugins/attachment_reminder/localization/te_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/th_TH.inc b/plugins/attachment_reminder/localization/th_TH.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/th_TH.inc +++ b/plugins/attachment_reminder/localization/th_TH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ti.inc b/plugins/attachment_reminder/localization/ti.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ti.inc +++ b/plugins/attachment_reminder/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/tr_TR.inc b/plugins/attachment_reminder/localization/tr_TR.inc index 65b6893ee..f03587d97 100644 --- a/plugins/attachment_reminder/localization/tr_TR.inc +++ b/plugins/attachment_reminder/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = "Bir dosya eklemeyi unuttunuz mu?"; $messages['reminderoption'] = "Unutulan dosya eklemelerini hatırlat"; $messages['keywords'] = "ekleme,dosya,ek,eklenildi,ekleniliyor,konuldu,CV,kapak mektubu"; diff --git a/plugins/attachment_reminder/localization/tzm.inc b/plugins/attachment_reminder/localization/tzm.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/tzm.inc +++ b/plugins/attachment_reminder/localization/tzm.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/uk_UA.inc b/plugins/attachment_reminder/localization/uk_UA.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/uk_UA.inc +++ b/plugins/attachment_reminder/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/ur_PK.inc b/plugins/attachment_reminder/localization/ur_PK.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/ur_PK.inc +++ b/plugins/attachment_reminder/localization/ur_PK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/vi_VN.inc b/plugins/attachment_reminder/localization/vi_VN.inc index 5dce08f1d..c3b4aaa02 100644 --- a/plugins/attachment_reminder/localization/vi_VN.inc +++ b/plugins/attachment_reminder/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ */ - $messages['forgotattachment'] = ""; $messages['reminderoption'] = ""; $messages['keywords'] = ""; diff --git a/plugins/attachment_reminder/localization/zh_CN.inc b/plugins/attachment_reminder/localization/zh_CN.inc index c789a3809..6c44fe948 100644 --- a/plugins/attachment_reminder/localization/zh_CN.inc +++ b/plugins/attachment_reminder/localization/zh_CN.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ +$messages['forgotattachment'] = "您似乎忘记添加附件了,是否继续发送?"; +$messages['reminderoption'] = "忘记添加附件提醒"; +$messages['keywords'] = "attachment,file,attach,attached,attaching,enclosed,CV,cover letter"; diff --git a/plugins/attachment_reminder/localization/zh_TW.inc b/plugins/attachment_reminder/localization/zh_TW.inc index c789a3809..aaa91cd24 100644 --- a/plugins/attachment_reminder/localization/zh_TW.inc +++ b/plugins/attachment_reminder/localization/zh_TW.inc @@ -1,5 +1,20 @@ .inc | + | | + | Localization file of the Roundcube Webmail Archive plugin | + | Copyright (C) 2013, The Roundcube Dev Team | + | | + | Licensed under the GNU General Public License version 3 or | + | any later version with exceptions for skins & plugins. | + | See the README file for a full license statement. | + | | + +-----------------------------------------------------------------------+ + + For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-attachment_reminder/ +*/ $messages['forgotattachment'] = "您似乎忘記加入附件了,你確定要寄出?"; -$messages['reminderoption'] = "Remind about forgotten attachments"; +$messages['reminderoption'] = "提醒加入附件"; $messages['keywords'] = "附件,附加,附檔,附上,附加檔案"; diff --git a/plugins/enigma/localization/ru_RU.inc b/plugins/enigma/localization/ru_RU.inc index 09acd535a..20db6b1cb 100644 --- a/plugins/enigma/localization/ru_RU.inc +++ b/plugins/enigma/localization/ru_RU.inc @@ -16,7 +16,6 @@ @version 2010-12-23 */ - $labels['enigmasettings'] = 'Enigma: Настройки'; $labels['enigmacerts'] = 'Enigma: Сертификаты (S/MIME)'; $labels['enigmakeys'] = 'Enigma: Ключи (PGP)'; diff --git a/plugins/help/localization/ar.inc b/plugins/help/localization/ar.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/ar.inc +++ b/plugins/help/localization/ar.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/ar_SA.inc b/plugins/help/localization/ar_SA.inc index 971d3c0f3..9a9fe727b 100644 --- a/plugins/help/localization/ar_SA.inc +++ b/plugins/help/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'مساعدة'; $labels['about'] = 'حوْل'; $labels['license'] = 'الرخصة'; diff --git a/plugins/help/localization/ast.inc b/plugins/help/localization/ast.inc index 1e3045a4a..7e5e2874a 100644 --- a/plugins/help/localization/ast.inc +++ b/plugins/help/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ayuda'; $labels['about'] = 'Tocante a'; $labels['license'] = 'Llicencia'; diff --git a/plugins/help/localization/az_AZ.inc b/plugins/help/localization/az_AZ.inc index 60606fcdc..5d4bd653d 100644 --- a/plugins/help/localization/az_AZ.inc +++ b/plugins/help/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Kömək'; $labels['about'] = 'Haqqında'; $labels['license'] = 'Lisenziya'; diff --git a/plugins/help/localization/be_BE.inc b/plugins/help/localization/be_BE.inc index c14713bc8..3bbb1db32 100644 --- a/plugins/help/localization/be_BE.inc +++ b/plugins/help/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Дапамога'; $labels['about'] = 'Апісанне'; $labels['license'] = 'Ліцэнзія'; diff --git a/plugins/help/localization/bg_BG.inc b/plugins/help/localization/bg_BG.inc index 7199513f9..05a0aafab 100644 --- a/plugins/help/localization/bg_BG.inc +++ b/plugins/help/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Помощ'; $labels['about'] = 'Относно'; $labels['license'] = 'Лиценз'; diff --git a/plugins/help/localization/bn_BD.inc b/plugins/help/localization/bn_BD.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/bn_BD.inc +++ b/plugins/help/localization/bn_BD.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/br.inc b/plugins/help/localization/br.inc index ae5d624c4..5224034d4 100644 --- a/plugins/help/localization/br.inc +++ b/plugins/help/localization/br.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Skoazell'; $labels['about'] = 'Diwar-benn'; $labels['license'] = 'Lañvaz'; diff --git a/plugins/help/localization/bs_BA.inc b/plugins/help/localization/bs_BA.inc index 6559879a8..89a46e4ea 100644 --- a/plugins/help/localization/bs_BA.inc +++ b/plugins/help/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Pomoć'; $labels['about'] = 'O programu'; $labels['license'] = 'Licenca'; diff --git a/plugins/help/localization/ca_ES.inc b/plugins/help/localization/ca_ES.inc index 60c86f795..4bca2f212 100644 --- a/plugins/help/localization/ca_ES.inc +++ b/plugins/help/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ajuda'; $labels['about'] = 'Quant a'; $labels['license'] = 'Llicència'; diff --git a/plugins/help/localization/cs_CZ.inc b/plugins/help/localization/cs_CZ.inc index f207f014c..427ef9835 100644 --- a/plugins/help/localization/cs_CZ.inc +++ b/plugins/help/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Nápověda'; $labels['about'] = 'O aplikaci'; $labels['license'] = 'Licence'; diff --git a/plugins/help/localization/cy_GB.inc b/plugins/help/localization/cy_GB.inc index f5c34001f..c9e9fb4c1 100644 --- a/plugins/help/localization/cy_GB.inc +++ b/plugins/help/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Cymorth'; $labels['about'] = 'Amdan'; $labels['license'] = 'Trwydded'; diff --git a/plugins/help/localization/da_DK.inc b/plugins/help/localization/da_DK.inc index 43e30803f..af63e50b4 100644 --- a/plugins/help/localization/da_DK.inc +++ b/plugins/help/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hjælp'; $labels['about'] = 'Om'; $labels['license'] = 'Licens'; diff --git a/plugins/help/localization/de_CH.inc b/plugins/help/localization/de_CH.inc index 9df46d9c2..0d4267593 100644 --- a/plugins/help/localization/de_CH.inc +++ b/plugins/help/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hilfe'; $labels['about'] = 'Information'; $labels['license'] = 'Lizenz'; diff --git a/plugins/help/localization/de_DE.inc b/plugins/help/localization/de_DE.inc index 308419a27..677125751 100644 --- a/plugins/help/localization/de_DE.inc +++ b/plugins/help/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hilfe'; $labels['about'] = 'Über'; $labels['license'] = 'Lizenz'; diff --git a/plugins/help/localization/el_GR.inc b/plugins/help/localization/el_GR.inc index 3286f0e85..74be22bf1 100644 --- a/plugins/help/localization/el_GR.inc +++ b/plugins/help/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Βοηθεια'; $labels['about'] = 'Σχετικά'; $labels['license'] = 'Άδεια χρήσης'; diff --git a/plugins/help/localization/en_GB.inc b/plugins/help/localization/en_GB.inc index b23cfb6ca..1be660728 100644 --- a/plugins/help/localization/en_GB.inc +++ b/plugins/help/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Help'; $labels['about'] = 'About'; $labels['license'] = 'Licence'; diff --git a/plugins/help/localization/eo.inc b/plugins/help/localization/eo.inc index 0f03dfc07..017e1592b 100644 --- a/plugins/help/localization/eo.inc +++ b/plugins/help/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Helpo'; $labels['about'] = 'Pri'; $labels['license'] = 'Permesilo'; diff --git a/plugins/help/localization/es_AR.inc b/plugins/help/localization/es_AR.inc index ee0eee3a6..5425367f4 100644 --- a/plugins/help/localization/es_AR.inc +++ b/plugins/help/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ayuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licencia'; diff --git a/plugins/help/localization/es_ES.inc b/plugins/help/localization/es_ES.inc index ee0eee3a6..5425367f4 100644 --- a/plugins/help/localization/es_ES.inc +++ b/plugins/help/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ayuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licencia'; diff --git a/plugins/help/localization/et_EE.inc b/plugins/help/localization/et_EE.inc index 633c5ebca..fef6b777f 100644 --- a/plugins/help/localization/et_EE.inc +++ b/plugins/help/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Abi'; $labels['about'] = 'Roundcube info'; $labels['license'] = 'Litsents'; diff --git a/plugins/help/localization/eu_ES.inc b/plugins/help/localization/eu_ES.inc index f06d4f855..d6547c7da 100644 --- a/plugins/help/localization/eu_ES.inc +++ b/plugins/help/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Laguntza'; $labels['about'] = 'Honi buruz'; $labels['license'] = 'Lizentzia'; diff --git a/plugins/help/localization/fa_AF.inc b/plugins/help/localization/fa_AF.inc index 5e4ca7528..e9fac20c1 100644 --- a/plugins/help/localization/fa_AF.inc +++ b/plugins/help/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'راهنما'; $labels['about'] = 'درباره نرم افزار'; $labels['license'] = 'حق نشر'; diff --git a/plugins/help/localization/fa_IR.inc b/plugins/help/localization/fa_IR.inc index 3285a26bc..adb9c5719 100644 --- a/plugins/help/localization/fa_IR.inc +++ b/plugins/help/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'راهنما'; $labels['about'] = 'درباره'; $labels['license'] = 'گواهینامه'; diff --git a/plugins/help/localization/fi_FI.inc b/plugins/help/localization/fi_FI.inc index 46e062e98..9f11fcee1 100644 --- a/plugins/help/localization/fi_FI.inc +++ b/plugins/help/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ohje'; $labels['about'] = 'Tietoja'; $labels['license'] = 'Lisenssi'; diff --git a/plugins/help/localization/fr_FR.inc b/plugins/help/localization/fr_FR.inc index f4b4cae9b..97e00176d 100644 --- a/plugins/help/localization/fr_FR.inc +++ b/plugins/help/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Aide'; $labels['about'] = 'A propos'; $labels['license'] = 'Licence'; diff --git a/plugins/help/localization/gl_ES.inc b/plugins/help/localization/gl_ES.inc index 146084f81..74a57427a 100644 --- a/plugins/help/localization/gl_ES.inc +++ b/plugins/help/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Axuda'; $labels['about'] = 'Acerca de'; $labels['license'] = 'Licenza'; diff --git a/plugins/help/localization/he_IL.inc b/plugins/help/localization/he_IL.inc index e3024d771..bf75bfb4f 100644 --- a/plugins/help/localization/he_IL.inc +++ b/plugins/help/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'עזרה'; $labels['about'] = 'אודות'; $labels['license'] = 'רשיון'; diff --git a/plugins/help/localization/hi_IN.inc b/plugins/help/localization/hi_IN.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/hi_IN.inc +++ b/plugins/help/localization/hi_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/hu_HU.inc b/plugins/help/localization/hu_HU.inc index e3f9499ef..d285e670b 100644 --- a/plugins/help/localization/hu_HU.inc +++ b/plugins/help/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Segítség'; $labels['about'] = 'Névjegy'; $labels['license'] = 'Licenc'; diff --git a/plugins/help/localization/hy_AM.inc b/plugins/help/localization/hy_AM.inc index a034e0471..7b106cad4 100644 --- a/plugins/help/localization/hy_AM.inc +++ b/plugins/help/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Օգնություն'; $labels['about'] = 'Նկարագիր'; $labels['license'] = 'Արտոնագիր'; diff --git a/plugins/help/localization/ia.inc b/plugins/help/localization/ia.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/ia.inc +++ b/plugins/help/localization/ia.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/id_ID.inc b/plugins/help/localization/id_ID.inc index fab62a62a..7bad95c65 100644 --- a/plugins/help/localization/id_ID.inc +++ b/plugins/help/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Bantuan'; $labels['about'] = 'Tentang'; $labels['license'] = 'Lisensi'; diff --git a/plugins/help/localization/it_IT.inc b/plugins/help/localization/it_IT.inc index 73d9dd653..f88471b4f 100644 --- a/plugins/help/localization/it_IT.inc +++ b/plugins/help/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Aiuto'; $labels['about'] = 'Informazioni'; $labels['license'] = 'Licenza'; diff --git a/plugins/help/localization/ja_JP.inc b/plugins/help/localization/ja_JP.inc index 44a8114ed..db3d5e5cc 100644 --- a/plugins/help/localization/ja_JP.inc +++ b/plugins/help/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'ヘルプ'; $labels['about'] = 'このプログラムについて'; $labels['license'] = 'ライセンス'; diff --git a/plugins/help/localization/km_KH.inc b/plugins/help/localization/km_KH.inc index 5b1da1e9f..1dae389bb 100644 --- a/plugins/help/localization/km_KH.inc +++ b/plugins/help/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'ជំនួយ'; $labels['about'] = 'អំពី'; $labels['license'] = 'អាជ្ញាប័ណ្ណ'; diff --git a/plugins/help/localization/ko_KR.inc b/plugins/help/localization/ko_KR.inc index 82aa50766..88390e3ff 100644 --- a/plugins/help/localization/ko_KR.inc +++ b/plugins/help/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = '도움말'; $labels['about'] = '정보'; $labels['license'] = '라이선스'; diff --git a/plugins/help/localization/lb_LU.inc b/plugins/help/localization/lb_LU.inc index a86f55f76..63d6aebdc 100644 --- a/plugins/help/localization/lb_LU.inc +++ b/plugins/help/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hëllef'; $labels['about'] = 'Iwwert'; $labels['license'] = 'Lizenz'; diff --git a/plugins/help/localization/lt_LT.inc b/plugins/help/localization/lt_LT.inc index b8716884e..b10223d3c 100644 --- a/plugins/help/localization/lt_LT.inc +++ b/plugins/help/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Žinynas'; $labels['about'] = 'Apie'; $labels['license'] = 'Licencija'; diff --git a/plugins/help/localization/lv_LV.inc b/plugins/help/localization/lv_LV.inc index 95b55a217..c3b15f0bc 100644 --- a/plugins/help/localization/lv_LV.inc +++ b/plugins/help/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Palīdzība'; $labels['about'] = 'Par'; $labels['license'] = 'Licence'; diff --git a/plugins/help/localization/ml_IN.inc b/plugins/help/localization/ml_IN.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/ml_IN.inc +++ b/plugins/help/localization/ml_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/mn_MN.inc b/plugins/help/localization/mn_MN.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/mn_MN.inc +++ b/plugins/help/localization/mn_MN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/ms_MY.inc b/plugins/help/localization/ms_MY.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/ms_MY.inc +++ b/plugins/help/localization/ms_MY.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/my_MM.inc b/plugins/help/localization/my_MM.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/my_MM.inc +++ b/plugins/help/localization/my_MM.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/nb_NO.inc b/plugins/help/localization/nb_NO.inc index 13448caab..4a2f7986e 100644 --- a/plugins/help/localization/nb_NO.inc +++ b/plugins/help/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hjelp'; $labels['about'] = 'Om'; $labels['license'] = 'Lisensvilkår'; diff --git a/plugins/help/localization/nl_BE.inc b/plugins/help/localization/nl_BE.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/nl_BE.inc +++ b/plugins/help/localization/nl_BE.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/nl_NL.inc b/plugins/help/localization/nl_NL.inc index a83dbaf62..a6c97e34a 100644 --- a/plugins/help/localization/nl_NL.inc +++ b/plugins/help/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Help'; $labels['about'] = 'Over'; $labels['license'] = 'Licentie'; diff --git a/plugins/help/localization/nn_NO.inc b/plugins/help/localization/nn_NO.inc index 9c31b3c5e..edb7cd619 100644 --- a/plugins/help/localization/nn_NO.inc +++ b/plugins/help/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hjelp'; $labels['about'] = 'Om'; $labels['license'] = 'Lisens'; diff --git a/plugins/help/localization/nqo.inc b/plugins/help/localization/nqo.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/nqo.inc +++ b/plugins/help/localization/nqo.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/om.inc b/plugins/help/localization/om.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/om.inc +++ b/plugins/help/localization/om.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/pl_PL.inc b/plugins/help/localization/pl_PL.inc index 8961e9b27..817dc9d5a 100644 --- a/plugins/help/localization/pl_PL.inc +++ b/plugins/help/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Pomoc'; $labels['about'] = 'O programie'; $labels['license'] = 'Licencja'; diff --git a/plugins/help/localization/pt_BR.inc b/plugins/help/localization/pt_BR.inc index 629b8749b..7aff20bf1 100644 --- a/plugins/help/localization/pt_BR.inc +++ b/plugins/help/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ajuda'; $labels['about'] = 'Sobre'; $labels['license'] = 'Licença'; diff --git a/plugins/help/localization/pt_PT.inc b/plugins/help/localization/pt_PT.inc index 160abe25b..4c141c596 100644 --- a/plugins/help/localization/pt_PT.inc +++ b/plugins/help/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ajuda'; $labels['about'] = 'Sobre...'; $labels['license'] = 'Licença'; diff --git a/plugins/help/localization/ro_RO.inc b/plugins/help/localization/ro_RO.inc index 9944fc1f1..1706d0cea 100644 --- a/plugins/help/localization/ro_RO.inc +++ b/plugins/help/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Ajutor'; $labels['about'] = 'Despre'; $labels['license'] = 'Licența'; diff --git a/plugins/help/localization/ru_RU.inc b/plugins/help/localization/ru_RU.inc index 311efdf77..b3b7c11de 100644 --- a/plugins/help/localization/ru_RU.inc +++ b/plugins/help/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Помощь'; $labels['about'] = 'О программе'; $labels['license'] = 'Лицензия'; diff --git a/plugins/help/localization/sk_SK.inc b/plugins/help/localization/sk_SK.inc index 9f65de374..ca88dbbe0 100644 --- a/plugins/help/localization/sk_SK.inc +++ b/plugins/help/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Nápoveda'; $labels['about'] = 'O aplikácii'; $labels['license'] = 'Licencia'; diff --git a/plugins/help/localization/sl_SI.inc b/plugins/help/localization/sl_SI.inc index dd5904dd0..509e66749 100644 --- a/plugins/help/localization/sl_SI.inc +++ b/plugins/help/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Pomoč'; $labels['about'] = 'Vizitka'; $labels['license'] = 'Licenca'; diff --git a/plugins/help/localization/sr_CS.inc b/plugins/help/localization/sr_CS.inc index 6c1a0be51..e0cf7ccf1 100644 --- a/plugins/help/localization/sr_CS.inc +++ b/plugins/help/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Помоћ'; $labels['about'] = 'Info'; $labels['license'] = 'Licenca'; diff --git a/plugins/help/localization/sv_SE.inc b/plugins/help/localization/sv_SE.inc index 3325b78bf..184efca40 100644 --- a/plugins/help/localization/sv_SE.inc +++ b/plugins/help/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Hjälp'; $labels['about'] = 'Om'; $labels['license'] = 'Licens'; diff --git a/plugins/help/localization/te_IN.inc b/plugins/help/localization/te_IN.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/te_IN.inc +++ b/plugins/help/localization/te_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/th_TH.inc b/plugins/help/localization/th_TH.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/th_TH.inc +++ b/plugins/help/localization/th_TH.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/ti.inc b/plugins/help/localization/ti.inc index 0d402372a..5eccd5075 100644 --- a/plugins/help/localization/ti.inc +++ b/plugins/help/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'መምሃሪ'; $labels['about'] = 'ብዛዕባ'; $labels['license'] = 'ፍቓድ'; diff --git a/plugins/help/localization/tr_TR.inc b/plugins/help/localization/tr_TR.inc index a2c094146..b11f033a3 100644 --- a/plugins/help/localization/tr_TR.inc +++ b/plugins/help/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Yardım'; $labels['about'] = 'Hakkında'; $labels['license'] = 'Lisans'; diff --git a/plugins/help/localization/tzm.inc b/plugins/help/localization/tzm.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/tzm.inc +++ b/plugins/help/localization/tzm.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/uk_UA.inc b/plugins/help/localization/uk_UA.inc index 0c26baed1..8d2f76c3c 100644 --- a/plugins/help/localization/uk_UA.inc +++ b/plugins/help/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Допомога'; $labels['about'] = 'Про програму'; $labels['license'] = 'Ліцензія'; diff --git a/plugins/help/localization/ur_PK.inc b/plugins/help/localization/ur_PK.inc index 8ae66ab42..46160477e 100644 --- a/plugins/help/localization/ur_PK.inc +++ b/plugins/help/localization/ur_PK.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - - ?> diff --git a/plugins/help/localization/vi_VN.inc b/plugins/help/localization/vi_VN.inc index 6af4e448d..b3aff3c0f 100644 --- a/plugins/help/localization/vi_VN.inc +++ b/plugins/help/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = 'Trợ giúp'; $labels['about'] = 'Giới thiệu'; $labels['license'] = 'Bản quyền'; diff --git a/plugins/help/localization/zh_CN.inc b/plugins/help/localization/zh_CN.inc index 75c59eb0e..c2bbd1705 100644 --- a/plugins/help/localization/zh_CN.inc +++ b/plugins/help/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = '帮助'; $labels['about'] = '关于'; $labels['license'] = '许可协议'; diff --git a/plugins/help/localization/zh_TW.inc b/plugins/help/localization/zh_TW.inc index 743216702..59c7d8aae 100644 --- a/plugins/help/localization/zh_TW.inc +++ b/plugins/help/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-help/ */ - $labels['help'] = '說明'; $labels['about'] = '關於'; $labels['license'] = '許可證'; diff --git a/plugins/hide_blockquote/localization/ar.inc b/plugins/hide_blockquote/localization/ar.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ar.inc +++ b/plugins/hide_blockquote/localization/ar.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/ar_SA.inc b/plugins/hide_blockquote/localization/ar_SA.inc index 647c43ab3..30ade1397 100644 --- a/plugins/hide_blockquote/localization/ar_SA.inc +++ b/plugins/hide_blockquote/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'إخفاء'; $labels['show'] = 'إظهار'; ?> diff --git a/plugins/hide_blockquote/localization/az_AZ.inc b/plugins/hide_blockquote/localization/az_AZ.inc index e5318dfd2..b4ae17129 100644 --- a/plugins/hide_blockquote/localization/az_AZ.inc +++ b/plugins/hide_blockquote/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Gizlət'; $labels['show'] = 'Göstər'; $labels['quotelimit'] = 'Sətr saytı göstəriləndən çoxdursa sitatı gizlə:'; diff --git a/plugins/hide_blockquote/localization/be_BE.inc b/plugins/hide_blockquote/localization/be_BE.inc index 313bb2fbc..28248adf0 100644 --- a/plugins/hide_blockquote/localization/be_BE.inc +++ b/plugins/hide_blockquote/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Схаваць'; $labels['show'] = 'Паказаць'; $labels['quotelimit'] = 'Хаваць цытаванне, калі колькасць радкоў пераўзыходзіць'; diff --git a/plugins/hide_blockquote/localization/bg_BG.inc b/plugins/hide_blockquote/localization/bg_BG.inc index 33251995c..ec64513a8 100644 --- a/plugins/hide_blockquote/localization/bg_BG.inc +++ b/plugins/hide_blockquote/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Скрий'; $labels['show'] = 'Покажи'; $labels['quotelimit'] = 'Скрива цитатите когато броя редове е по-голям от'; diff --git a/plugins/hide_blockquote/localization/bn_BD.inc b/plugins/hide_blockquote/localization/bn_BD.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/bn_BD.inc +++ b/plugins/hide_blockquote/localization/bn_BD.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/bs_BA.inc b/plugins/hide_blockquote/localization/bs_BA.inc index 2d39e8dfd..9602440d9 100644 --- a/plugins/hide_blockquote/localization/bs_BA.inc +++ b/plugins/hide_blockquote/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Sakrij'; $labels['show'] = 'Prikaži'; $labels['quotelimit'] = 'Sakrij citate kada je broj linija veći od'; diff --git a/plugins/hide_blockquote/localization/ca_ES.inc b/plugins/hide_blockquote/localization/ca_ES.inc index 035efe2b0..d0698f2ce 100644 --- a/plugins/hide_blockquote/localization/ca_ES.inc +++ b/plugins/hide_blockquote/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Amaga'; $labels['show'] = 'Mostra'; $labels['quotelimit'] = 'Amaga la cita quan el nombre de línies sigui més gran de'; diff --git a/plugins/hide_blockquote/localization/cs_CZ.inc b/plugins/hide_blockquote/localization/cs_CZ.inc index d95758413..766662e12 100644 --- a/plugins/hide_blockquote/localization/cs_CZ.inc +++ b/plugins/hide_blockquote/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Skrýt'; $labels['show'] = 'Zobrazit'; $labels['quotelimit'] = 'Skrýt citaci pokud je počet řádků větší než'; diff --git a/plugins/hide_blockquote/localization/cy_GB.inc b/plugins/hide_blockquote/localization/cy_GB.inc index f7a864e8a..d60890cd8 100644 --- a/plugins/hide_blockquote/localization/cy_GB.inc +++ b/plugins/hide_blockquote/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Cuddio'; $labels['show'] = 'Dangos'; $labels['quotelimit'] = 'Cuddio dyfynniad pan mae\'r nifer o linellau yn fwy na'; diff --git a/plugins/hide_blockquote/localization/da_DK.inc b/plugins/hide_blockquote/localization/da_DK.inc index 7ebe8792f..3691e5438 100644 --- a/plugins/hide_blockquote/localization/da_DK.inc +++ b/plugins/hide_blockquote/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Skjul'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Skjul citat antallet af linjer er højere end'; diff --git a/plugins/hide_blockquote/localization/de_CH.inc b/plugins/hide_blockquote/localization/de_CH.inc index 71f3c1de7..506412560 100644 --- a/plugins/hide_blockquote/localization/de_CH.inc +++ b/plugins/hide_blockquote/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'ausblenden'; $labels['show'] = 'einblenden'; $labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von'; diff --git a/plugins/hide_blockquote/localization/de_DE.inc b/plugins/hide_blockquote/localization/de_DE.inc index 71f3c1de7..506412560 100644 --- a/plugins/hide_blockquote/localization/de_DE.inc +++ b/plugins/hide_blockquote/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'ausblenden'; $labels['show'] = 'einblenden'; $labels['quotelimit'] = 'Zitate verbergen ab einer Zeilenlänge von'; diff --git a/plugins/hide_blockquote/localization/el_GR.inc b/plugins/hide_blockquote/localization/el_GR.inc index cc0f52b45..a5572957a 100644 --- a/plugins/hide_blockquote/localization/el_GR.inc +++ b/plugins/hide_blockquote/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Αποκρυψη'; $labels['show'] = 'Εμφάνιση'; $labels['quotelimit'] = 'Απόκρυψη παραπομπων όταν οι γραμμές μέτρησης είναι μεγαλύτερες από'; diff --git a/plugins/hide_blockquote/localization/en_GB.inc b/plugins/hide_blockquote/localization/en_GB.inc index 3f9d0ae39..0256e712a 100644 --- a/plugins/hide_blockquote/localization/en_GB.inc +++ b/plugins/hide_blockquote/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Hide'; $labels['show'] = 'Show'; $labels['quotelimit'] = 'Hide citation when lines count is greater than'; diff --git a/plugins/hide_blockquote/localization/eo.inc b/plugins/hide_blockquote/localization/eo.inc index 979eed61e..9c09c97fc 100644 --- a/plugins/hide_blockquote/localization/eo.inc +++ b/plugins/hide_blockquote/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Kaŝi'; $labels['show'] = 'Montri'; $labels['quotelimit'] = 'Kaŝi citaĵon kiam la nombro de linioj estas pligranda ol'; diff --git a/plugins/hide_blockquote/localization/es_AR.inc b/plugins/hide_blockquote/localization/es_AR.inc index 36ee47fbd..5046eaf69 100644 --- a/plugins/hide_blockquote/localization/es_AR.inc +++ b/plugins/hide_blockquote/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar el mail citado cuando el número de líneas sea mayor que'; diff --git a/plugins/hide_blockquote/localization/es_ES.inc b/plugins/hide_blockquote/localization/es_ES.inc index bcea6e87a..c602650e6 100644 --- a/plugins/hide_blockquote/localization/es_ES.inc +++ b/plugins/hide_blockquote/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar la cita cuando el número de lineas es mayor que'; diff --git a/plugins/hide_blockquote/localization/et_EE.inc b/plugins/hide_blockquote/localization/et_EE.inc index d64190591..8213946c3 100644 --- a/plugins/hide_blockquote/localization/et_EE.inc +++ b/plugins/hide_blockquote/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Peida'; $labels['show'] = 'Näita'; $labels['quotelimit'] = 'Peida tsitaat kui ridade arv on suurem kui'; diff --git a/plugins/hide_blockquote/localization/eu_ES.inc b/plugins/hide_blockquote/localization/eu_ES.inc index 9b9029b18..f7adf6e00 100644 --- a/plugins/hide_blockquote/localization/eu_ES.inc +++ b/plugins/hide_blockquote/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ezkutatu'; $labels['show'] = 'Erakutsi'; $labels['quotelimit'] = 'Ezkutatu aipamena lerroen kopurua hau baino handiagoa denean'; diff --git a/plugins/hide_blockquote/localization/fa_AF.inc b/plugins/hide_blockquote/localization/fa_AF.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/fa_AF.inc +++ b/plugins/hide_blockquote/localization/fa_AF.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/fa_IR.inc b/plugins/hide_blockquote/localization/fa_IR.inc index 7960190cb..b4fcc1596 100644 --- a/plugins/hide_blockquote/localization/fa_IR.inc +++ b/plugins/hide_blockquote/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'مخفی کردن'; $labels['show'] = 'نشان دادن'; $labels['quotelimit'] = 'مخفی کردن نقل‌قول وقتی تعداد خطوط بیشتر است از'; diff --git a/plugins/hide_blockquote/localization/fi_FI.inc b/plugins/hide_blockquote/localization/fi_FI.inc index 5b513e864..afec57462 100644 --- a/plugins/hide_blockquote/localization/fi_FI.inc +++ b/plugins/hide_blockquote/localization/fi_FI.inc @@ -15,8 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Piilota'; $labels['show'] = 'Näytä'; -$labels['quotelimit'] = 'Hide citation when lines count is greater than'; +$labels['quotelimit'] = 'Piilota lainaus rivejä ollessa enemmän kuin'; ?> diff --git a/plugins/hide_blockquote/localization/fr_FR.inc b/plugins/hide_blockquote/localization/fr_FR.inc index 2623306dc..00c1c918f 100644 --- a/plugins/hide_blockquote/localization/fr_FR.inc +++ b/plugins/hide_blockquote/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Cacher'; $labels['show'] = 'Afficher'; $labels['quotelimit'] = 'Cacher la citation quand le nombre de lignes est plus grand que'; diff --git a/plugins/hide_blockquote/localization/gl_ES.inc b/plugins/hide_blockquote/localization/gl_ES.inc index 6a1db42a4..f945a50e3 100644 --- a/plugins/hide_blockquote/localization/gl_ES.inc +++ b/plugins/hide_blockquote/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Agochar'; $labels['show'] = 'Amosar'; $labels['quotelimit'] = 'Agochar mencións cando haxa demasiadas liñas'; diff --git a/plugins/hide_blockquote/localization/he_IL.inc b/plugins/hide_blockquote/localization/he_IL.inc index 5c49d057a..2e353909b 100644 --- a/plugins/hide_blockquote/localization/he_IL.inc +++ b/plugins/hide_blockquote/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'הסתר'; $labels['show'] = 'הצג'; $labels['quotelimit'] = 'הסתר ציטוט כאשר מספר השורות גדול מ-'; diff --git a/plugins/hide_blockquote/localization/hi_IN.inc b/plugins/hide_blockquote/localization/hi_IN.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/hi_IN.inc +++ b/plugins/hide_blockquote/localization/hi_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/hu_HU.inc b/plugins/hide_blockquote/localization/hu_HU.inc index d989b7555..97abb9f35 100644 --- a/plugins/hide_blockquote/localization/hu_HU.inc +++ b/plugins/hide_blockquote/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Elrejtés'; $labels['show'] = 'Megjelenítés'; $labels['quotelimit'] = 'Idézet elrejtése ha a sorok száma több mint'; diff --git a/plugins/hide_blockquote/localization/hy_AM.inc b/plugins/hide_blockquote/localization/hy_AM.inc index f6a4d44ef..b1808e400 100644 --- a/plugins/hide_blockquote/localization/hy_AM.inc +++ b/plugins/hide_blockquote/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Թաքցնել'; $labels['show'] = 'Ցուցադրել'; $labels['quotelimit'] = 'Թաքցնել ցիտումը երբ տողերի քանակը գերազանցում է'; diff --git a/plugins/hide_blockquote/localization/ia.inc b/plugins/hide_blockquote/localization/ia.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ia.inc +++ b/plugins/hide_blockquote/localization/ia.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/id_ID.inc b/plugins/hide_blockquote/localization/id_ID.inc index 2cdf673a5..da6534968 100644 --- a/plugins/hide_blockquote/localization/id_ID.inc +++ b/plugins/hide_blockquote/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Sembunyi'; $labels['show'] = 'Tampil'; $labels['quotelimit'] = 'Sembunyikan kutipan ketika jumlah baris lebih besar dari'; diff --git a/plugins/hide_blockquote/localization/it_IT.inc b/plugins/hide_blockquote/localization/it_IT.inc index 4c6c10f03..a24353020 100644 --- a/plugins/hide_blockquote/localization/it_IT.inc +++ b/plugins/hide_blockquote/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Nascondi'; $labels['show'] = 'Mostra'; $labels['quotelimit'] = 'Nascondi la citazione quando il numero di righe è maggiore di'; diff --git a/plugins/hide_blockquote/localization/ja_JP.inc b/plugins/hide_blockquote/localization/ja_JP.inc index f67c47068..4bf36ae13 100644 --- a/plugins/hide_blockquote/localization/ja_JP.inc +++ b/plugins/hide_blockquote/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = '隠す'; $labels['show'] = '表示'; $labels['quotelimit'] = '次の行数より多い引用を非表示'; diff --git a/plugins/hide_blockquote/localization/ko_KR.inc b/plugins/hide_blockquote/localization/ko_KR.inc index 79dc28ec0..e26d06f7f 100644 --- a/plugins/hide_blockquote/localization/ko_KR.inc +++ b/plugins/hide_blockquote/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = '숨기기'; $labels['show'] = '보이기'; $labels['quotelimit'] = '라인 개수가 정해진 개수보다 클 때 인용구 감추기'; diff --git a/plugins/hide_blockquote/localization/lb_LU.inc b/plugins/hide_blockquote/localization/lb_LU.inc index d0e037eff..8f5a07df9 100644 --- a/plugins/hide_blockquote/localization/lb_LU.inc +++ b/plugins/hide_blockquote/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Verstoppen'; $labels['show'] = 'Weisen'; $labels['quotelimit'] = 'Zitat verstoppe wann d\'Zeilenunzuel méi grouss ass ewéi'; diff --git a/plugins/hide_blockquote/localization/lt_LT.inc b/plugins/hide_blockquote/localization/lt_LT.inc index 981487711..9b560de14 100644 --- a/plugins/hide_blockquote/localization/lt_LT.inc +++ b/plugins/hide_blockquote/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Paslėpti'; $labels['show'] = 'Parodyti'; $labels['quotelimit'] = 'Paslėpti citatą, kai joje eilučių daugiau negu'; diff --git a/plugins/hide_blockquote/localization/lv_LV.inc b/plugins/hide_blockquote/localization/lv_LV.inc index e036ef7f5..162deda8b 100644 --- a/plugins/hide_blockquote/localization/lv_LV.inc +++ b/plugins/hide_blockquote/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Slēpt'; $labels['show'] = 'Rādīt'; $labels['quotelimit'] = 'Slēpt citātu kad līniju skaits ir lielāks kā'; diff --git a/plugins/hide_blockquote/localization/ml_IN.inc b/plugins/hide_blockquote/localization/ml_IN.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ml_IN.inc +++ b/plugins/hide_blockquote/localization/ml_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/mn_MN.inc b/plugins/hide_blockquote/localization/mn_MN.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/mn_MN.inc +++ b/plugins/hide_blockquote/localization/mn_MN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/ms_MY.inc b/plugins/hide_blockquote/localization/ms_MY.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ms_MY.inc +++ b/plugins/hide_blockquote/localization/ms_MY.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/my_MM.inc b/plugins/hide_blockquote/localization/my_MM.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/my_MM.inc +++ b/plugins/hide_blockquote/localization/my_MM.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/nb_NO.inc b/plugins/hide_blockquote/localization/nb_NO.inc index 403763ec8..fb2027620 100644 --- a/plugins/hide_blockquote/localization/nb_NO.inc +++ b/plugins/hide_blockquote/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Skjul'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Skjul sitat når antall linjer er flere enn'; diff --git a/plugins/hide_blockquote/localization/nl_BE.inc b/plugins/hide_blockquote/localization/nl_BE.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/nl_BE.inc +++ b/plugins/hide_blockquote/localization/nl_BE.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/nl_NL.inc b/plugins/hide_blockquote/localization/nl_NL.inc index 48ec7a3ef..104f4782c 100644 --- a/plugins/hide_blockquote/localization/nl_NL.inc +++ b/plugins/hide_blockquote/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Verbergen'; $labels['show'] = 'Tonen'; $labels['quotelimit'] = 'Verberg citaat wanneer aantal regels groter is dan'; diff --git a/plugins/hide_blockquote/localization/nn_NO.inc b/plugins/hide_blockquote/localization/nn_NO.inc index 243b63c74..4bc583a51 100644 --- a/plugins/hide_blockquote/localization/nn_NO.inc +++ b/plugins/hide_blockquote/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Gøym'; $labels['show'] = 'Vis'; $labels['quotelimit'] = 'Gøym sitat når talet på linjer er større enn'; diff --git a/plugins/hide_blockquote/localization/nqo.inc b/plugins/hide_blockquote/localization/nqo.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/nqo.inc +++ b/plugins/hide_blockquote/localization/nqo.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/om.inc b/plugins/hide_blockquote/localization/om.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/om.inc +++ b/plugins/hide_blockquote/localization/om.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/pl_PL.inc b/plugins/hide_blockquote/localization/pl_PL.inc index 73552ed88..cdd1f8f8a 100644 --- a/plugins/hide_blockquote/localization/pl_PL.inc +++ b/plugins/hide_blockquote/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ukryj'; $labels['show'] = 'Pokaż'; $labels['quotelimit'] = 'Ukryj blok cytatu gdy liczba linii jest większa od'; diff --git a/plugins/hide_blockquote/localization/pt_BR.inc b/plugins/hide_blockquote/localization/pt_BR.inc index f4c8ca5e4..b303c06f3 100644 --- a/plugins/hide_blockquote/localization/pt_BR.inc +++ b/plugins/hide_blockquote/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ocultar'; $labels['show'] = 'Exibir'; $labels['quotelimit'] = 'Ocultar a citação quando o número de linhas for maior do que'; diff --git a/plugins/hide_blockquote/localization/pt_PT.inc b/plugins/hide_blockquote/localization/pt_PT.inc index 116acf64c..34693784c 100644 --- a/plugins/hide_blockquote/localization/pt_PT.inc +++ b/plugins/hide_blockquote/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ocultar'; $labels['show'] = 'Mostrar'; $labels['quotelimit'] = 'Ocultar citação quando o numero de linhas for maior que'; diff --git a/plugins/hide_blockquote/localization/ro_RO.inc b/plugins/hide_blockquote/localization/ro_RO.inc index d02c855df..978b84a90 100644 --- a/plugins/hide_blockquote/localization/ro_RO.inc +++ b/plugins/hide_blockquote/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ascunde'; $labels['show'] = 'Afișează'; $labels['quotelimit'] = 'Ascunde citațiile dacă numărul de linii este mai mare ca'; diff --git a/plugins/hide_blockquote/localization/ru_RU.inc b/plugins/hide_blockquote/localization/ru_RU.inc index a2131cf4e..1e6b26c16 100644 --- a/plugins/hide_blockquote/localization/ru_RU.inc +++ b/plugins/hide_blockquote/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Скрыть'; $labels['show'] = 'Показать'; $labels['quotelimit'] = 'Скрыть цитату, если число строк более чем'; diff --git a/plugins/hide_blockquote/localization/sk_SK.inc b/plugins/hide_blockquote/localization/sk_SK.inc index 878ea1cdb..2a41c1ec6 100644 --- a/plugins/hide_blockquote/localization/sk_SK.inc +++ b/plugins/hide_blockquote/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Skryť'; $labels['show'] = 'Zobraziť'; $labels['quotelimit'] = 'Skryť citáciu pokiaľ je počet riadkov väčší než'; diff --git a/plugins/hide_blockquote/localization/sl_SI.inc b/plugins/hide_blockquote/localization/sl_SI.inc index 298d7e922..1728f40e7 100644 --- a/plugins/hide_blockquote/localization/sl_SI.inc +++ b/plugins/hide_blockquote/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Skrij'; $labels['show'] = 'Prikaži'; $labels['quotelimit'] = 'Skrij citiran tekst, ko je število vrstic večje od'; diff --git a/plugins/hide_blockquote/localization/sr_CS.inc b/plugins/hide_blockquote/localization/sr_CS.inc index 049ad1d9c..c96c4322d 100644 --- a/plugins/hide_blockquote/localization/sr_CS.inc +++ b/plugins/hide_blockquote/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Сакриј'; $labels['show'] = 'Прикажи'; $labels['quotelimit'] = 'Сакриј цитат када је број редова већи од'; diff --git a/plugins/hide_blockquote/localization/sv_SE.inc b/plugins/hide_blockquote/localization/sv_SE.inc index 00a5ce892..9d021d923 100644 --- a/plugins/hide_blockquote/localization/sv_SE.inc +++ b/plugins/hide_blockquote/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Dölj'; $labels['show'] = 'Visa'; $labels['quotelimit'] = 'Dölj citat när antalet rader överstiger'; diff --git a/plugins/hide_blockquote/localization/te_IN.inc b/plugins/hide_blockquote/localization/te_IN.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/te_IN.inc +++ b/plugins/hide_blockquote/localization/te_IN.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/th_TH.inc b/plugins/hide_blockquote/localization/th_TH.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/th_TH.inc +++ b/plugins/hide_blockquote/localization/th_TH.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/ti.inc b/plugins/hide_blockquote/localization/ti.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ti.inc +++ b/plugins/hide_blockquote/localization/ti.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/tr_TR.inc b/plugins/hide_blockquote/localization/tr_TR.inc index 56a05eea5..db3d013e7 100644 --- a/plugins/hide_blockquote/localization/tr_TR.inc +++ b/plugins/hide_blockquote/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Gizle'; $labels['show'] = 'Göster'; $labels['quotelimit'] = 'Satır sayısı şu satır sayısındna fazla ile alıntıları gizle:'; diff --git a/plugins/hide_blockquote/localization/tzm.inc b/plugins/hide_blockquote/localization/tzm.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/tzm.inc +++ b/plugins/hide_blockquote/localization/tzm.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/uk_UA.inc b/plugins/hide_blockquote/localization/uk_UA.inc index 8ad5e4fba..a8dd54144 100644 --- a/plugins/hide_blockquote/localization/uk_UA.inc +++ b/plugins/hide_blockquote/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Приховати'; $labels['show'] = 'Показати'; ?> diff --git a/plugins/hide_blockquote/localization/ur_PK.inc b/plugins/hide_blockquote/localization/ur_PK.inc index b2afd3bc7..83c0e3cb6 100644 --- a/plugins/hide_blockquote/localization/ur_PK.inc +++ b/plugins/hide_blockquote/localization/ur_PK.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - - ?> diff --git a/plugins/hide_blockquote/localization/vi_VN.inc b/plugins/hide_blockquote/localization/vi_VN.inc index 705b90449..a0235117d 100644 --- a/plugins/hide_blockquote/localization/vi_VN.inc +++ b/plugins/hide_blockquote/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = 'Ẩn'; $labels['show'] = 'Hiển thị'; $labels['quotelimit'] = 'Ẩn trích dẫn khi tổng số dòng lớn hơn'; diff --git a/plugins/hide_blockquote/localization/zh_CN.inc b/plugins/hide_blockquote/localization/zh_CN.inc index 78aa89c92..6701f2d7c 100644 --- a/plugins/hide_blockquote/localization/zh_CN.inc +++ b/plugins/hide_blockquote/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = '隐藏'; $labels['show'] = '显示'; $labels['quotelimit'] = '隐藏引用当行数大于'; diff --git a/plugins/hide_blockquote/localization/zh_TW.inc b/plugins/hide_blockquote/localization/zh_TW.inc index b5ad96122..0fcca729a 100644 --- a/plugins/hide_blockquote/localization/zh_TW.inc +++ b/plugins/hide_blockquote/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-hide_blockquote/ */ - $labels['hide'] = '隱藏'; $labels['show'] = '顯示'; $labels['quotelimit'] = '隱藏引文當行數大於'; diff --git a/plugins/managesieve/localization/ar_SA.inc b/plugins/managesieve/localization/ar_SA.inc index 70cd2c282..8e6d8414a 100644 --- a/plugins/managesieve/localization/ar_SA.inc +++ b/plugins/managesieve/localization/ar_SA.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['messagedelete'] = 'حذف الرسالة'; $labels['add'] = 'إضافة'; $labels['del'] = 'حذف'; diff --git a/plugins/managesieve/localization/az_AZ.inc b/plugins/managesieve/localization/az_AZ.inc index 88d7d404d..e9c60e493 100644 --- a/plugins/managesieve/localization/az_AZ.inc +++ b/plugins/managesieve/localization/az_AZ.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Süzgəclər'; $labels['managefilters'] = 'Gələn məktub üçün süzgəclərin idarəsi'; $labels['filtername'] = 'Süzgəcin adı'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Məktubun kopyasını göndər'; $labels['messagereply'] = 'Məktubla cavab ver'; $labels['messagedelete'] = 'Sil'; $labels['messagediscard'] = 'Məktubla rədd et'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Daxil olan məktub üçün:'; $labels['messagesactions'] = '...növbəti hərəkəti yerinə yetir:'; $labels['add'] = 'Əlavə et'; $labels['del'] = 'Sil'; $labels['sender'] = 'Göndərən'; $labels['recipient'] = 'Qəbul edən'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Məktub neçə müddətdən bir göndərilsin (gündə):'; $labels['vacationinterval'] = 'Məktublar nə qədər sıx göndərilsin:'; $labels['days'] = 'günlər'; @@ -84,13 +80,11 @@ $labels['countisgreaterthanequal'] = 'say çox və ya bərabərdir'; $labels['countislessthan'] = 'say buradan azdır'; $labels['countislessthanequal'] = 'say azdır və ya bərabərdir'; $labels['countequals'] = 'say bərabərdir'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'dəyər buradan daha böyükdür'; $labels['valueisgreaterthanequal'] = 'dəyər çoxdur və ya bərabərdir'; $labels['valueislessthan'] = 'dəyər buradan azdır'; $labels['valueislessthanequal'] = 'dəyər azdır və ya bərabərdir'; $labels['valueequals'] = 'dəyər bərabərdir'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Məktublara flaq quraşdır'; $labels['addflags'] = 'Məktuba flaq əlavə et'; $labels['removeflags'] = 'Məktubdan flaqları sil'; @@ -122,22 +116,6 @@ $labels['filtercreate'] = 'Süzgəc yarat'; $labels['usedata'] = 'Süzgəcdə bu məlumatları istifadə et:'; $labels['nextstep'] = 'Sonrakı'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Əlavə ayarlar'; $labels['body'] = 'Məzmun'; $labels['address'] = 'ünvan'; @@ -157,38 +135,26 @@ $labels['default'] = 'ön qurğulu'; $labels['octet'] = 'ciddi (oktet)'; $labels['asciicasemap'] = 'qeydiyyat üzrə müstəqil (ascii-casemap)'; $labels['asciinumeric'] = 'ədədi (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Serverin naməlum xətası.'; $messages['filterconnerror'] = 'Serverə qoşulmaq alınmır'; -$messages['filterdeleteerror'] = 'Süzgəci silmək mümkün deyil. Server xətası.'; $messages['filterdeleted'] = 'Süzgəc uğurla silindi.'; $messages['filtersaved'] = 'Süzgəc uğurla saxlanıldı.'; -$messages['filtersaveerror'] = 'Süzgəci saxlamaq mümkün deyil. Server xətası.'; $messages['filterdeleteconfirm'] = 'Siz həqiqətən süzgəci silmək istəyirsiniz?'; $messages['ruledeleteconfirm'] = 'Bu qaydanı silməkdə əminsiniz?'; $messages['actiondeleteconfirm'] = 'Bu hərəkəti silməkdə əminsiniz?'; $messages['forbiddenchars'] = 'Sahədə qadağan edilən işarələr.'; $messages['cannotbeempty'] = 'Sahə boş ola bilməz.'; $messages['ruleexist'] = 'Bu adla süzgəc artıq mövcuddur.'; -$messages['setactivateerror'] = 'Seçilmiş süzgəc dəstini yandırmaq mümkün deyil. Server xətası.'; -$messages['setdeactivateerror'] = 'Seçilmiş süzgəc dəstini söndürmək mümkün deyil. Server xətası.'; -$messages['setdeleteerror'] = 'Seçilmiş süzgəc dəstini silmək mümkün deyil. Server xətası.'; $messages['setactivated'] = 'Süzgəc dəsti yandırıldı.'; $messages['setdeactivated'] = 'Süzgəc dəsti söndürüldü.'; $messages['setdeleted'] = 'Süzgəc dəsti silindi.'; $messages['setdeleteconfirm'] = 'Bu süzgəc dəstini silməkdə əminsiniz?'; -$messages['setcreateerror'] = 'Süzgəc dəstini yaratmaq mümkün deyil. Server xərası.'; $messages['setcreated'] = 'Süzgəc dəsti uğurla yaradıldı.'; -$messages['activateerror'] = 'Seçilmiş süzgəc(lər)i yandırmaq mümkün deyil. Server xətası.'; -$messages['deactivateerror'] = 'Seçilmiş süzgəc(lər)i söndürmək mümkün deyil. Server xətası.'; $messages['deactivated'] = 'Süzgəc(lər) uğurla yandırıldı.'; $messages['activated'] = 'Süzgəc(lər) uğurla söndürüldü.'; $messages['moved'] = 'Süzgəc uğurla köçürüldü.'; -$messages['moveerror'] = 'Süzgəci köçürmək mümkün deyil. Server xətası.'; $messages['nametoolong'] = 'Süzgəc dəstini yaratmaq mümkün deyil. Ad çox uzundur.'; $messages['namereserved'] = 'Rezerv edilmiş ad.'; $messages['setexist'] = 'Dəst artıq mövcuddur.'; $messages['nodata'] = 'Heç olmasa bir mövqe tutmaq lazımdır!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/be_BE.inc b/plugins/managesieve/localization/be_BE.inc index b9b4591cf..29c97ad94 100644 --- a/plugins/managesieve/localization/be_BE.inc +++ b/plugins/managesieve/localization/be_BE.inc @@ -15,10 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Фільтры'; -$labels['managefilters'] = 'Кіраваць фільтрамі атрыманай пошты'; +$labels['managefilters'] = 'Парадкаваць фільтры атрыманай пошты'; $labels['filtername'] = 'Назва фільтра'; $labels['newfilter'] = 'Новы фільтр'; $labels['filteradd'] = 'Дадаць фільтр'; @@ -38,7 +36,7 @@ $labels['filtermatches'] = 'задавальняе выразу'; $labels['filternotmatches'] = 'не задавальняе выразу'; $labels['filterregex'] = 'задавальняе рэгулярнаму выразу'; $labels['filternotregex'] = 'не задавальняе рэгулярнаму выразу'; -$labels['filterunder'] = 'меньш'; +$labels['filterunder'] = 'менш'; $labels['filterover'] = 'больш'; $labels['addrule'] = 'Дадаць правіла'; $labels['delrule'] = 'Выдаліць правіла'; @@ -78,49 +76,49 @@ $labels['active'] = 'актыўны'; $labels['none'] = 'няма'; $labels['fromset'] = 'з набору'; $labels['fromfile'] = 'з файла'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; +$labels['filterdisabled'] = 'Фільтр адключаны'; +$labels['countisgreaterthan'] = 'лік большы за'; +$labels['countisgreaterthanequal'] = 'лік большы за альбо роўны'; +$labels['countislessthan'] = 'лік меншы за'; +$labels['countislessthanequal'] = 'лік меншы за альбо роўны'; +$labels['countequals'] = 'лік роўны'; $labels['countnotequals'] = 'лік не роўны'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; +$labels['valueisgreaterthan'] = 'значэнне большае за'; +$labels['valueisgreaterthanequal'] = 'значэнне большае за альбо роўнае'; +$labels['valueislessthan'] = 'значэнне меншае за'; +$labels['valueislessthanequal'] = 'значэнне меншае за альбо роўнае'; +$labels['valueequals'] = 'значэнне роўнае'; $labels['valuenotequals'] = 'значэнне не роўнае'; $labels['setflags'] = 'Устанавіць флагі на паведамленне'; $labels['addflags'] = 'Дадаць флагі да паведамлення'; $labels['removeflags'] = 'Выдаліць флагі з паведамлення'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; +$labels['flagread'] = 'Прачытана'; +$labels['flagdeleted'] = 'Выдалена'; +$labels['flaganswered'] = 'З адказам'; +$labels['flagflagged'] = 'Пазначана'; +$labels['flagdraft'] = 'Чарнавік'; $labels['setvariable'] = 'Устанавіць зменную'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; +$labels['setvarname'] = 'Імя зменнай:'; +$labels['setvarvalue'] = 'Значэнне зменнай:'; +$labels['setvarmodifiers'] = 'Мадыфікатары:'; +$labels['varlower'] = 'ніжні рэгістр'; +$labels['varupper'] = 'верхні рэгістр'; +$labels['varlowerfirst'] = 'першы знак у ніжнім рэгістры'; +$labels['varupperfirst'] = 'першы знак у верхнім рэгістры'; +$labels['varquotewildcard'] = 'службовыя знакі забіраць у апострафы'; +$labels['varlength'] = 'даўжыня'; +$labels['notify'] = 'Паслаць апавяшчэнне'; +$labels['notifyaddress'] = 'На эл. адрас:'; +$labels['notifybody'] = 'Цела апавяшчэння:'; +$labels['notifysubject'] = 'Тэма апавяшчэння:'; +$labels['notifyfrom'] = 'Адпраўнік апавяшчэння:'; +$labels['notifyimportance'] = 'Важнасць:'; +$labels['notifyimportancelow'] = 'нізкая'; +$labels['notifyimportancenormal'] = 'звычайная'; +$labels['notifyimportancehigh'] = 'высокая'; +$labels['filtercreate'] = 'Стварыць фільтр'; +$labels['usedata'] = 'Ужываць наступныя дадзеныя ў фільтры:'; +$labels['nextstep'] = 'Наступны крок'; $labels['...'] = '...'; $labels['currdate'] = 'Бягучая дата'; $labels['datetest'] = 'Дата'; @@ -138,54 +136,54 @@ $labels['iso8601'] = 'дата (ISO8601)'; $labels['std11'] = 'дата (RFC2822)'; $labels['zone'] = 'часавая зона'; $labels['weekday'] = 'дзень тыдня (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; +$labels['advancedopts'] = 'Дадатковыя параметры'; +$labels['body'] = 'Цела'; +$labels['address'] = 'адрас'; +$labels['envelope'] = 'канверт'; +$labels['modifier'] = 'мадыфікатар:'; +$labels['text'] = 'тэкст'; +$labels['undecoded'] = 'неапрацаваны (сыры)'; +$labels['contenttype'] = 'тып змесціва'; +$labels['modtype'] = 'пошук у адрасах:'; +$labels['allparts'] = 'усюль'; +$labels['domain'] = 'у імені дамена'; +$labels['localpart'] = 'толькі ў імені карыстальніка, без дамена'; +$labels['user'] = 'у поўным імені карыстальніка'; +$labels['detail'] = 'у дадатковых звестках'; +$labels['comparator'] = 'спосаб параўнання:'; +$labels['default'] = 'стандартны'; +$labels['octet'] = 'строгі (octet)'; +$labels['asciicasemap'] = 'без уліку рэгістру (ascii-casemap)'; +$labels['asciinumeric'] = 'лікавы (ascii-numeric)'; $labels['index'] = 'індэкс:'; $labels['indexlast'] = 'назад'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Не ўдалося актываваць вылучаны набор фільтраў. Памылка на серверы.'; -$messages['setdeactivateerror'] = 'Не ўдалося дэактываваць вылучаны набор фільтраў. Памылка на серверы.'; -$messages['setdeleteerror'] = 'Не ўдалося выдаліць вылучаны набор фільтраў. Памылка на серверы.'; -$messages['setactivated'] = 'Набор фільтраў актываваны паспяхова.'; -$messages['setdeactivated'] = 'Набор фільтраў дэактываваны паспяхова.'; -$messages['setdeleted'] = 'Набор фільтраў выдалены паспяхова.'; -$messages['setdeleteconfirm'] = 'Напраўду выдаліць вылучаны набор фільтраў?'; +$messages['filterunknownerror'] = 'Невядомая памылка сервера.'; +$messages['filterconnerror'] = 'Не ўдалося злучыцца з серверам.'; +$messages['filterdeleteerror'] = 'Не ўдалося выдаліць фільтр. Памылка на серверы.'; +$messages['filterdeleted'] = 'Фільтр выдалены.'; +$messages['filtersaved'] = 'Фільтр захаваны.'; +$messages['filtersaveerror'] = 'Не ўдалося захаваць фільтр. Памылка на серверы.'; +$messages['filterdeleteconfirm'] = 'Напраўду выдаліць абраны фільтр?'; +$messages['ruledeleteconfirm'] = 'Напраўду выдаліць абранае правіла?'; +$messages['actiondeleteconfirm'] = 'Напраўду выдаліць абранае дзеянне?'; +$messages['forbiddenchars'] = 'Забароненыя знакі ў полі.'; +$messages['cannotbeempty'] = 'Поле не можа быць пустым.'; +$messages['ruleexist'] = 'Фільтр з гэтай назвай ужо існуе.'; +$messages['setactivateerror'] = 'Не ўдалося ўключыць абраны набор фільтраў. Памылка на серверы.'; +$messages['setdeactivateerror'] = 'Не ўдалося адключыць абраны набор фільтраў. Памылка на серверы.'; +$messages['setdeleteerror'] = 'Не ўдалося выдаліць абраны набор фільтраў. Памылка на серверы.'; +$messages['setactivated'] = 'Набор фільтраў актываваны.'; +$messages['setdeactivated'] = 'Набор фільтраў дэактываваны.'; +$messages['setdeleted'] = 'Набор фільтраў выдалены.'; +$messages['setdeleteconfirm'] = 'Напраўду выдаліць абраны набор фільтраў?'; $messages['setcreateerror'] = 'Не ўдалося стварыць набор фільтраў. Памылка на серверы.'; -$messages['setcreated'] = 'Набор фільтраў створаны паспяхова.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Фільтр перамешчаны паспяхова.'; -$messages['moveerror'] = 'Не ўдалося перамясціць вылучаны фільтр. Памылка на серверы.'; +$messages['setcreated'] = 'Набор фільтраў створаны.'; +$messages['activateerror'] = 'Не ўдалося ўключыць абраны(я) фільтры. Памылка на серверы.'; +$messages['deactivateerror'] = 'Не ўдалося адключыць абраны(я) фільтры. Памылка на серверы.'; +$messages['deactivated'] = 'Фільтр(ы) адключаны.'; +$messages['activated'] = 'Фільтр(ы) уключаны.'; +$messages['moved'] = 'Фільтр перамешчаны.'; +$messages['moveerror'] = 'Не ўдалося перамясціць абраны фільтр. Памылка на серверы.'; $messages['nametoolong'] = 'Задаўгая назва.'; $messages['namereserved'] = 'Зарэзерваваная назва.'; $messages['setexist'] = 'Набор ужо існуе.'; diff --git a/plugins/managesieve/localization/bg_BG.inc b/plugins/managesieve/localization/bg_BG.inc index 6887b30d9..a9a77d5df 100644 --- a/plugins/managesieve/localization/bg_BG.inc +++ b/plugins/managesieve/localization/bg_BG.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Филтри'; $labels['managefilters'] = 'Управление на филтри за входяща поща'; $labels['filtername'] = 'Име на филтър'; @@ -161,31 +159,22 @@ $labels['index'] = 'индекс:'; $labels['indexlast'] = 'наобратно'; $messages['filterunknownerror'] = 'Неизвестна сървърна грешка.'; $messages['filterconnerror'] = 'Неуспешно свързване с managesieve сървъра.'; -$messages['filterdeleteerror'] = 'Невъзможно изтриване на филтъра. Възникна сървърна грешка.'; $messages['filterdeleted'] = 'Филтърът е изтрит успешно.'; $messages['filtersaved'] = 'Филтърът е записан успешно.'; -$messages['filtersaveerror'] = 'Невъзможно записване на филтъра. Възникна сървърна грешка.'; $messages['filterdeleteconfirm'] = 'Наистина ли желаете да изтриете избрания филтър?'; $messages['ruledeleteconfirm'] = 'Сигурни ли сте, че желаете да изтриете избраното условие?'; $messages['actiondeleteconfirm'] = 'Сигурни ли сте, че желаете да изтриете избраното действие?'; $messages['forbiddenchars'] = 'Забранени символи в полето.'; $messages['cannotbeempty'] = 'Полето не може да бъде празно.'; $messages['ruleexist'] = 'Вече има филтър с указаното име.'; -$messages['setactivateerror'] = 'Невъзможно активиране на избрания набор от филтри. Възникна сървърна грешка.'; -$messages['setdeactivateerror'] = 'Невъзможно деактивиране на избрания набор от филтри. Възникна сървърна грешка.'; -$messages['setdeleteerror'] = 'Невъзможно изтриване на избрания набор от филтри. Възникна сървърна грешка.'; $messages['setactivated'] = 'Наборът от филтри е активиран успешно.'; $messages['setdeactivated'] = 'Наборът от филтри е деактивиран успешно.'; $messages['setdeleted'] = 'Наборът от филтри е изтрит успешно.'; $messages['setdeleteconfirm'] = 'Сигурни ли сте, че желаете да изтриете избрания набор от филтри?'; -$messages['setcreateerror'] = 'Невъзможно създаване на набор от филтри. Възникна сървърна грешка.'; $messages['setcreated'] = 'Наборът от филтри е създаден успешно.'; -$messages['activateerror'] = 'Невъзможно включване на филтъра. Възникна сървърна грешка.'; -$messages['deactivateerror'] = 'Невъзможно изключване на филтъра. Възникна сървърна грешка.'; $messages['deactivated'] = 'Филтърът е изключен успешно.'; $messages['activated'] = 'Филтърът е включен успешно.'; $messages['moved'] = 'Филтърът е преместен успешно.'; -$messages['moveerror'] = 'Невъзможно преместване на филтъра. Възникна сървърна грешка.'; $messages['nametoolong'] = 'Името е прекалено дълго.'; $messages['namereserved'] = 'Резервирано име.'; $messages['setexist'] = 'Вече има такъв набор филтри.'; diff --git a/plugins/managesieve/localization/bs_BA.inc b/plugins/managesieve/localization/bs_BA.inc index d66e30117..f4b5ebb22 100644 --- a/plugins/managesieve/localization/bs_BA.inc +++ b/plugins/managesieve/localization/bs_BA.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filteri'; $labels['managefilters'] = 'Upravljanje dolaznim email filterima'; $labels['filtername'] = 'Naziv filtera'; @@ -161,31 +159,22 @@ $labels['index'] = 'indeks:'; $labels['indexlast'] = 'unazad'; $messages['filterunknownerror'] = 'Nepoznata serverska greška.'; $messages['filterconnerror'] = 'Nije se moguće povezati na server.'; -$messages['filterdeleteerror'] = 'Nije moguće obrisati filter. Desila se serverska greška.'; $messages['filterdeleted'] = 'Filter je uspješno obrisan.'; $messages['filtersaved'] = 'Filter je uspješno sačuvan.'; -$messages['filtersaveerror'] = 'Nije moguće sačuvati filter. Desila se serverska greška.'; $messages['filterdeleteconfirm'] = 'Da li zaista želite obrisati označeni filter?'; $messages['ruledeleteconfirm'] = 'Jeste li sigurni da želite obrisati označeno pravilo?'; $messages['actiondeleteconfirm'] = 'Jeste li sigurni da želite obrisati označenu akciju?'; $messages['forbiddenchars'] = 'U polje su uneseni nedozvoljeni znakovi.'; $messages['cannotbeempty'] = 'Polje ne može biti prazno.'; $messages['ruleexist'] = 'Filter s tim imenom već postoji.'; -$messages['setactivateerror'] = 'Nije moguće aktivirati označeni set filtera. Desila se serverska greška.'; -$messages['setdeactivateerror'] = 'Nije moguće deaktivirati označeni set filtera. Desila se serverska greška.'; -$messages['setdeleteerror'] = 'Nije moguće obrisati označeni set filtera. Desila se serverska greška.'; $messages['setactivated'] = 'Set filtera je uspješno aktiviran.'; $messages['setdeactivated'] = 'Set filtera je uspješno deaktiviran.'; $messages['setdeleted'] = 'Set filtera je uspješno obrisan.'; $messages['setdeleteconfirm'] = 'Jeste li sigurni da želite obrisati označeni set filtera?'; -$messages['setcreateerror'] = 'Nije moguće kreirati se filtera. Desila se serverska greška.'; $messages['setcreated'] = 'Set filtera je uspješno kreiran.'; -$messages['activateerror'] = 'Nije moguće omogućiti označene filtere. Desila se serverska greška.'; -$messages['deactivateerror'] = 'Nije moguće onemogućiti označene filtere. Desila se serverska greška.'; $messages['deactivated'] = 'Filteri su uspješno omogućeni.'; $messages['activated'] = 'Filteri su uspješno onemogućeni.'; $messages['moved'] = 'Filteri su uspješno premješteni.'; -$messages['moveerror'] = 'Nije moguće premjestiti označeni filter. Desila se serverska greška.'; $messages['nametoolong'] = 'Ime je predugo.'; $messages['namereserved'] = 'Ime je rezervisano.'; $messages['setexist'] = 'Set već postoji.'; diff --git a/plugins/managesieve/localization/ca_ES.inc b/plugins/managesieve/localization/ca_ES.inc index 66630fad7..cf5117f6a 100644 --- a/plugins/managesieve/localization/ca_ES.inc +++ b/plugins/managesieve/localization/ca_ES.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtres'; $labels['managefilters'] = 'Gestiona els filtres dels missatges d\'entrada'; $labels['filtername'] = 'Nom del filtre'; @@ -56,7 +54,6 @@ $labels['add'] = 'Afegeix'; $labels['del'] = 'Suprimeix'; $labels['sender'] = 'Remitent'; $labels['recipient'] = 'Destinatari/a'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Cada quan enviar un missatge (en dies):'; $labels['vacationinterval'] = 'Amb quina freqüència enviar missatges:'; $labels['days'] = 'dies'; @@ -161,31 +158,22 @@ $labels['index'] = 'índex:'; $labels['indexlast'] = 'cap enrere'; $messages['filterunknownerror'] = 'Error desconegut al servidor.'; $messages['filterconnerror'] = 'No s\'ha pogut connectar al servidor.'; -$messages['filterdeleteerror'] = 'No s\'ha pogut suprimir el filtre. Hi ha hagut un error al servidor.'; $messages['filterdeleted'] = 'El filtre s\'ha suprimit correctament.'; $messages['filtersaved'] = 'Filtre desat correctament.'; -$messages['filtersaveerror'] = 'No s\'ha pogut desar el filtre. Hi ha hagut un error al servidor.'; $messages['filterdeleteconfirm'] = 'Realment voleu suprimit el filtre seleccionat?'; $messages['ruledeleteconfirm'] = 'Esteu segur que voleu suprimir la norma seleccionada?'; $messages['actiondeleteconfirm'] = 'Esteu segur que voleu suprimir l\'acció seleccionada?'; $messages['forbiddenchars'] = 'El camp conté caràcters prohibits.'; $messages['cannotbeempty'] = 'El camp no pot estar buit.'; $messages['ruleexist'] = 'Ja existeix un filtre amb aquest nom'; -$messages['setactivateerror'] = 'No s\'ha pogut activar el fitlre seleccionat. Hi ha hagut un error al servidor.'; -$messages['setdeactivateerror'] = 'No s\'ha pogut desactivar el fitlre seleccionat. Hi ha hagut un error al servidor.'; -$messages['setdeleteerror'] = 'No s\'ha pogut suprimir el conjunt de filtres seleccionats. Hi ha hagut un error al servidor.'; $messages['setactivated'] = 'El conjunt de filtres s\'ha activat correctament.'; $messages['setdeactivated'] = 'El conjunt de filtres s\'ha desactivat correctament.'; $messages['setdeleted'] = 'El conjunt de filtres s\'ha suprimit correctament.'; $messages['setdeleteconfirm'] = 'Esteu segurs que voleu suprimir el conjunt de filtres seleccionats?'; -$messages['setcreateerror'] = 'No s\'ha pogut crear el conjunt de filtres. Hi ha hagut un error al servidor.'; $messages['setcreated'] = 'S\'ha creat correctament el conjunt de filtres.'; -$messages['activateerror'] = 'No s\'ha pogut habilitar el(s) filtre(s) seleccionat(s). Hi ha hagut un error al servidor.'; -$messages['deactivateerror'] = 'No s\'ha pogut deshabilitar el(s) filtre(s) seleccionat(s). Hi ha hagut un error al servidor.'; $messages['deactivated'] = 'Filtre(s) habilitat(s) correctament.'; $messages['activated'] = 'Filtre(s) deshabilitat(s) correctament.'; $messages['moved'] = 'S\'ha mogut correctament el filtre.'; -$messages['moveerror'] = 'No s\'ha pogut moure el filtre seleccionat. Hi ha hagut un error al servidor.'; $messages['nametoolong'] = 'El nom és massa llarg.'; $messages['namereserved'] = 'Nom reservat.'; $messages['setexist'] = 'El conjunt ja existeix.'; diff --git a/plugins/managesieve/localization/cs_CZ.inc b/plugins/managesieve/localization/cs_CZ.inc index bbaf35375..f14b13287 100644 --- a/plugins/managesieve/localization/cs_CZ.inc +++ b/plugins/managesieve/localization/cs_CZ.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtry'; $labels['managefilters'] = 'Nastavení filtrů'; $labels['filtername'] = 'Název filtru'; @@ -56,7 +54,7 @@ $labels['add'] = 'Přidej'; $labels['del'] = 'Smaž'; $labels['sender'] = 'Odesílatel'; $labels['recipient'] = 'Příjemce'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; +$labels['vacationaddr'] = 'Moje další e-mailová adresa(y):'; $labels['vacationdays'] = 'Počet dnů mezi automatickými odpověďmi:'; $labels['vacationinterval'] = 'Prodleva mezi automatickými odpověďmi:'; $labels['days'] = 'dnů'; @@ -161,10 +159,10 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'pozpátku'; $messages['filterunknownerror'] = 'Neznámá chyba serveru'; $messages['filterconnerror'] = 'Nebylo možné se připojit k sieve serveru'; -$messages['filterdeleteerror'] = 'Nebylo možné smazat filtr. Server nahlásil chybu'; +$messages['filterdeleteerror'] = 'Nebylo možné smazat filtr. Došlo k chybě serveru.'; $messages['filterdeleted'] = 'Filtr byl smazán'; $messages['filtersaved'] = 'Filtr byl uložen'; -$messages['filtersaveerror'] = 'Nebylo možné uložit filtr. Server nahlásil chybu.'; +$messages['filtersaveerror'] = 'Nebylo možné uložit filtr. Došlo k chybě serveru.'; $messages['filterdeleteconfirm'] = 'Opravdu chcete smazat vybraný filtr?'; $messages['ruledeleteconfirm'] = 'Jste si jisti, že chcete smazat vybrané pravidlo?'; $messages['actiondeleteconfirm'] = 'Jste si jisti, že chcete smazat vybranou akci?'; @@ -185,7 +183,7 @@ $messages['deactivateerror'] = 'Nelze vypnout vybrané filtr/y. Došlo k chybě $messages['deactivated'] = 'Filtr/y úspěšně zapnuty.'; $messages['activated'] = 'Filtr/y úspěšne vypnuty.'; $messages['moved'] = 'Filtr byl úspěšně přesunut.'; -$messages['moveerror'] = 'Nelze přesunout vybraný filtr. Došlo k chybě na serveru.'; +$messages['moveerror'] = 'Nelze přesunout vybraný filtr. Došlo k chybě serveru.'; $messages['nametoolong'] = 'Příliš dlouhý název.'; $messages['namereserved'] = 'Vyhrazený název.'; $messages['setexist'] = 'Sada již existuje.'; diff --git a/plugins/managesieve/localization/cy_GB.inc b/plugins/managesieve/localization/cy_GB.inc index fceca341f..806a49dde 100644 --- a/plugins/managesieve/localization/cy_GB.inc +++ b/plugins/managesieve/localization/cy_GB.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Hidlyddion'; $labels['managefilters'] = 'Rheoli hidlyddion ebost i fewn'; $labels['filtername'] = 'Enw hidlydd'; @@ -161,31 +159,22 @@ $labels['index'] = 'mynegai:'; $labels['indexlast'] = 'o chwith'; $messages['filterunknownerror'] = 'Gwall gweinydd anhysbys.'; $messages['filterconnerror'] = 'Methwyd cysylltu a\'r gweinydd.'; -$messages['filterdeleteerror'] = 'Methwyd dileu hidlydd. Cafwydd gwall gweinydd.'; $messages['filterdeleted'] = 'Dilëuwyd hidlydd yn llwyddiannus.'; $messages['filtersaved'] = 'Cadwyd hidlydd yn llwyddiannus.'; -$messages['filtersaveerror'] = 'Methwyd cadw hidlydd. Cafwyd gwall gweinydd.'; $messages['filterdeleteconfirm'] = 'Ydych chi wir am ddileu yr hidlydd ddewiswyd?'; $messages['ruledeleteconfirm'] = 'Ydych chi\'n siwr eich bod am ddileu\'r rheol ddewiswyd?'; $messages['actiondeleteconfirm'] = 'Ydych chi\'n siwr eich bod am ddileu\'r weithred ddewiswyd?'; $messages['forbiddenchars'] = 'Llythrennau gwaharddedig yn y maes.'; $messages['cannotbeempty'] = 'Ni all y maes fod yn wag.'; $messages['ruleexist'] = 'Mae hidlydd gyda\'r enw yma yn bodoli\'n barod.'; -$messages['setactivateerror'] = 'Methwyd bywiogi y set hidlydd dewiswyd. Cafwyd gwall gweinydd.'; -$messages['setdeactivateerror'] = 'Methwyd dadfywiogi y set hidlydd dewiswyd. Cafwyd gwall gweinydd.'; -$messages['setdeleteerror'] = 'Methwyd dileu y set hidlydd dewiswyd. Cafwyd gwall gweinydd.'; $messages['setactivated'] = 'Bywiogwyd y set hidlydd yn llwyddiannus.'; $messages['setdeactivated'] = 'Dadfywiogwyd y set hidlydd yn llwyddiannus.'; $messages['setdeleted'] = 'Dilëuwyd y set hidlydd yn llwyddiannus.'; $messages['setdeleteconfirm'] = 'Ydych chi\'n siwr eich bod am ddileu\'r set hidlydd ddewiswyd?'; -$messages['setcreateerror'] = 'Methwyd creu set hidlydd. Cafwyd gwall gweinydd.'; $messages['setcreated'] = 'Crëuwyd y set hidlydd yn llwyddiannus.'; -$messages['activateerror'] = 'Methwyd galluogi y hidlydd(ion) dewiswyd. Cafwyd gwall gweinydd.'; -$messages['deactivateerror'] = 'Methwyd analluogi y hidlydd(ion) dewiswyd. Cafwyd gwall gweinydd.'; $messages['deactivated'] = 'Galluogwyd y hidlydd(ion) yn llwyddiannus.'; $messages['activated'] = 'Analluogwyd y hidlydd(ion) yn llwyddiannus.'; $messages['moved'] = 'Symudwyd y hidlydd yn llwyddiannus.'; -$messages['moveerror'] = 'Methwyd symud y hidlydd dewiswyd. Cafwyd gwall gweinydd.'; $messages['nametoolong'] = 'Enw yn rhy hir.'; $messages['namereserved'] = 'Enw neilltuedig.'; $messages['setexist'] = 'Mae\'r set yn bodoli\'n barod.'; diff --git a/plugins/managesieve/localization/da_DK.inc b/plugins/managesieve/localization/da_DK.inc index 2d3c37333..863dc1ecf 100644 --- a/plugins/managesieve/localization/da_DK.inc +++ b/plugins/managesieve/localization/da_DK.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtre'; $labels['managefilters'] = 'Ændre indgående mail filtreing'; $labels['filtername'] = 'Filter navn'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Send kopi af besked til'; $labels['messagereply'] = 'Svar med besked'; $labels['messagedelete'] = 'Slet besked'; $labels['messagediscard'] = 'Slet med besked'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'For indkomne besked:'; $labels['messagesactions'] = '...udfør følgende aktioner:'; $labels['add'] = 'Tilføje'; $labels['del'] = 'Fjern'; $labels['sender'] = 'Afsender'; $labels['recipient'] = 'Modtager'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Hvor tit skal besked sendes (i dage):'; $labels['vacationinterval'] = 'Hvor tit skal besked sendes:'; $labels['days'] = 'dage'; @@ -161,31 +157,22 @@ $labels['index'] = 'indeks:'; $labels['indexlast'] = 'baglends'; $messages['filterunknownerror'] = 'Ukendt server fejl.'; $messages['filterconnerror'] = 'Kan ikke forbinde til server.'; -$messages['filterdeleteerror'] = 'Kan ikke slette filter. Server fejl.'; $messages['filterdeleted'] = 'Filter slettet.'; $messages['filtersaved'] = 'Filter gemt.'; -$messages['filtersaveerror'] = 'Kan ikke gemme filter. Server fejl.'; $messages['filterdeleteconfirm'] = 'Vil du slette det valgte filter?'; $messages['ruledeleteconfirm'] = 'Er du sikker på at du vil slette den valgte regel?'; $messages['actiondeleteconfirm'] = 'Er du sikker på du vil slette den valgte handling?'; $messages['forbiddenchars'] = 'Ulovlige tegn i feltet'; $messages['cannotbeempty'] = 'Feltet kan ikke være tomt.'; $messages['ruleexist'] = 'Filter med dette navn eksisterer allerede.'; -$messages['setactivateerror'] = 'Kan ikke aktiverer valgt filter sæt. Server fejl.'; -$messages['setdeactivateerror'] = 'Kan ikke deaktivere valgt filter sæt. Server fejl.'; -$messages['setdeleteerror'] = 'Kan ikke slette valgt filter sæt. Server fejl.'; $messages['setactivated'] = 'Filter sæt aktiveret.'; $messages['setdeactivated'] = 'Filter sæt deaktiveret.'; $messages['setdeleted'] = 'Filter sæt slettet.'; $messages['setdeleteconfirm'] = 'Er du sikker på du vil slette valgt filter sæt?'; -$messages['setcreateerror'] = 'Kan ikke oprette filter sæt. Server fejl.'; $messages['setcreated'] = 'Filter sæt oprettet.'; -$messages['activateerror'] = 'Kan ikek aktivere valgt filter sæt. Server fejl.'; -$messages['deactivateerror'] = 'Kan ikke deaktivere valgt filter sæt. Server fejl.'; $messages['deactivated'] = 'Filter(filtre) aktiveret.'; $messages['activated'] = 'Filter(filtre) deaktiveret.'; $messages['moved'] = 'Filter flyttet.'; -$messages['moveerror'] = 'Kan ikke flytte valgt filter. Server fejl.'; $messages['nametoolong'] = 'Navn er for langt.'; $messages['namereserved'] = 'Reserveret navn.'; $messages['setexist'] = 'Filterv sæt eksisterer allerede'; diff --git a/plugins/managesieve/localization/de_CH.inc b/plugins/managesieve/localization/de_CH.inc index 6eb58f752..f3559fa89 100644 --- a/plugins/managesieve/localization/de_CH.inc +++ b/plugins/managesieve/localization/de_CH.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filter'; $labels['managefilters'] = 'Verwalte eingehende Nachrichtenfilter'; $labels['filtername'] = 'Filtername'; @@ -161,31 +159,22 @@ $labels['index'] = 'Index:'; $labels['indexlast'] = 'rückwärts'; $messages['filterunknownerror'] = 'Unbekannter Serverfehler'; $messages['filterconnerror'] = 'Kann nicht zum Sieve-Server verbinden'; -$messages['filterdeleteerror'] = 'Fehler beim des löschen Filters. Serverfehler'; $messages['filterdeleted'] = 'Filter erfolgreich gelöscht'; $messages['filtersaved'] = 'Filter gespeichert'; -$messages['filtersaveerror'] = 'Serverfehler, konnte den Filter nicht speichern.'; $messages['filterdeleteconfirm'] = 'Möchten Sie den Filter löschen ?'; $messages['ruledeleteconfirm'] = 'Sicher, dass Sie die Regel löschen wollen?'; $messages['actiondeleteconfirm'] = 'Sicher, dass Sie die ausgewaehlte Aktion löschen wollen?'; $messages['forbiddenchars'] = 'Unerlaubte Zeichen im Feld'; $messages['cannotbeempty'] = 'Feld darf nicht leer sein'; $messages['ruleexist'] = 'Ein Filter mit dem angegebenen Namen existiert bereits.'; -$messages['setactivateerror'] = 'Filtersatz kann nicht aktiviert werden. Serverfehler.'; -$messages['setdeactivateerror'] = 'Filtersatz kann nicht deaktiviert werden. Serverfehler.'; -$messages['setdeleteerror'] = 'Filtersatz kann nicht gelöscht werden. Serverfehler.'; $messages['setactivated'] = 'Filtersatz erfolgreich aktiviert.'; $messages['setdeactivated'] = 'Filtersatz erfolgreich deaktiviert.'; $messages['setdeleted'] = 'Filtersatz erfolgreich gelöscht.'; $messages['setdeleteconfirm'] = 'Sind Sie sicher, dass Sie den ausgewählten Filtersatz löschen möchten?'; -$messages['setcreateerror'] = 'Filtersatz kann nicht erstellt werden. Serverfehler.'; $messages['setcreated'] = 'Filter erfolgreich erstellt.'; -$messages['activateerror'] = 'Filter kann nicht aktiviert werden. Serverfehler.'; -$messages['deactivateerror'] = 'Filter kann nicht deaktiviert werden. Serverfehler.'; $messages['deactivated'] = 'Filter erfolgreich aktiviert.'; $messages['activated'] = 'Filter erfolgreich deaktiviert.'; $messages['moved'] = 'Filter erfolgreich verschoben.'; -$messages['moveerror'] = 'Filter kann nicht verschoben werden. Serverfehler.'; $messages['nametoolong'] = 'Filtersatz kann nicht erstellt werden. Name zu lang.'; $messages['namereserved'] = 'Reservierter Name.'; $messages['setexist'] = 'Filtersatz existiert bereits.'; diff --git a/plugins/managesieve/localization/de_DE.inc b/plugins/managesieve/localization/de_DE.inc index b14df434f..ac81ccd75 100644 --- a/plugins/managesieve/localization/de_DE.inc +++ b/plugins/managesieve/localization/de_DE.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filter'; $labels['managefilters'] = 'Filter für eingehende Nachrichten verwalten'; $labels['filtername'] = 'Filtername'; @@ -56,7 +54,6 @@ $labels['add'] = 'Hinzufügen'; $labels['del'] = 'Löschen'; $labels['sender'] = 'Absender'; $labels['recipient'] = 'Empfänger'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Wie oft sollen Nachrichten gesendet werden (in Tagen):'; $labels['vacationinterval'] = 'Wie oft sollen Nachrichten gesendet werden:'; $labels['days'] = 'Tage'; @@ -161,31 +158,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'rückwärts'; $messages['filterunknownerror'] = 'Unbekannter Serverfehler'; $messages['filterconnerror'] = 'Kann keine Verbindung mit Managesieve-Server herstellen'; -$messages['filterdeleteerror'] = 'Fehler beim Löschen des Filters. Serverfehler'; $messages['filterdeleted'] = 'Filter erfolgreich gelöscht'; $messages['filtersaved'] = 'Filter erfolgreich gespeichert'; -$messages['filtersaveerror'] = 'Fehler beim Speichern des Filters. Serverfehler'; $messages['filterdeleteconfirm'] = 'Möchten Sie den ausgewählten Filter wirklich löschen?'; $messages['ruledeleteconfirm'] = 'Sind Sie sicher, dass Sie die ausgewählte Regel löschen möchten?'; $messages['actiondeleteconfirm'] = 'Sind Sie sicher, dass Sie die ausgewählte Aktion löschen möchten?'; $messages['forbiddenchars'] = 'Unzulässige Zeichen im Eingabefeld'; $messages['cannotbeempty'] = 'Eingabefeld darf nicht leer sein'; $messages['ruleexist'] = 'Ein Filter mit dem angegebenen Namen existiert bereits.'; -$messages['setactivateerror'] = 'Kann ausgewählten Filtersatz nicht aktivieren. Serverfehler'; -$messages['setdeactivateerror'] = 'Kann ausgewählten Filtersatz nicht deaktivieren. Serverfehler'; -$messages['setdeleteerror'] = 'Kann ausgewählten Filtersatz nicht löschen. Serverfehler'; $messages['setactivated'] = 'Filtersatz wurde erfolgreich aktiviert'; $messages['setdeactivated'] = 'Filtersatz wurde erfolgreich deaktiviert'; $messages['setdeleted'] = 'Filtersatz wurde erfolgreich gelöscht'; $messages['setdeleteconfirm'] = 'Sind Sie sicher, dass Sie den ausgewählten Filtersatz löschen möchten?'; -$messages['setcreateerror'] = 'Erstellen von Filter Sätzen nicht möglich. Es ist ein Server Fehler aufgetreten.'; $messages['setcreated'] = 'Filtersatz wurde erfolgreich erstellt'; -$messages['activateerror'] = 'Filter kann nicht aktiviert werden. Serverfehler.'; -$messages['deactivateerror'] = 'Filter kann nicht deaktiviert werden. Serverfehler.'; $messages['deactivated'] = 'Filter erfolgreich deaktiviert.'; $messages['activated'] = 'Filter erfolgreich aktiviert.'; $messages['moved'] = 'Filter erfolgreich verschoben.'; -$messages['moveerror'] = 'Filter kann nicht verschoben werden. Serverfehler.'; $messages['nametoolong'] = 'Kann Filtersatz nicht erstellen. Name zu lang'; $messages['namereserved'] = 'Reservierter Name.'; $messages['setexist'] = 'Filtersatz existiert bereits.'; diff --git a/plugins/managesieve/localization/el_GR.inc b/plugins/managesieve/localization/el_GR.inc index deba507fe..73ec78632 100644 --- a/plugins/managesieve/localization/el_GR.inc +++ b/plugins/managesieve/localization/el_GR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Φίλτρα'; $labels['managefilters'] = 'Διαχείριση φίλτρων εισερχόμενων'; $labels['filtername'] = 'Ονομασία φίλτρου'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Αποστολη της αντιγραφης μυ $labels['messagereply'] = 'Απάντηση με μήνυμα'; $labels['messagedelete'] = 'Διαγραφή μηνύματος'; $labels['messagediscard'] = 'Απόρριψη με μήνυμα'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Για εισερχόμενα μηνύματα που:'; $labels['messagesactions'] = '...εκτέλεση των παρακάτω ενεργειών:'; $labels['add'] = 'Προσθήκη'; $labels['del'] = 'Διαγραφή'; $labels['sender'] = 'Αποστολέας'; $labels['recipient'] = 'Παραλήπτης'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Συχνότητα αποστολής μηνυμάτων (σε ημέρες):'; $labels['vacationinterval'] = 'Συχνότητα αποστολής μηνυμάτων:'; $labels['days'] = 'ημερες'; @@ -161,31 +157,22 @@ $labels['index'] = 'ευρετήριο:'; $labels['indexlast'] = 'προς τα πίσω'; $messages['filterunknownerror'] = 'Άγνωστο σφάλμα διακομιστή'; $messages['filterconnerror'] = 'Αδυναμία σύνδεσης στον διακομιστή managesieve'; -$messages['filterdeleteerror'] = 'Αδυναμία διαγραφής φίλτρου. Προέκυψε σφάλμα στον διακομιστή'; $messages['filterdeleted'] = 'Το φίλτρο διαγράφηκε επιτυχώς'; $messages['filtersaved'] = 'Το φίλτρο αποθηκεύτηκε επιτυχώς'; -$messages['filtersaveerror'] = 'Αδυναμία αποθήκευσης φίλτρου. Προέκυψε σφάλμα στον διακομιστή'; $messages['filterdeleteconfirm'] = 'Είστε σίγουροι ότι θέλετε να διαγράψετε το επιλεγμένο φίλτρο? '; $messages['ruledeleteconfirm'] = 'Θέλετε όντως να διαγράψετε τον επιλεγμένο κανόνα;'; $messages['actiondeleteconfirm'] = 'Θέλετε όντως να διαγράψετε την επιλεγμένη ενέργεια;'; $messages['forbiddenchars'] = 'Μη επιτρεπτοί χαρακτήρες στο πεδίο'; $messages['cannotbeempty'] = 'Το πεδίο δεν μπορεί να είναι κενό'; $messages['ruleexist'] = 'Φιλτρο με αυτο το όνομα υπάρχει ήδη. '; -$messages['setactivateerror'] = 'Αδυναμία ενεργοποιησης επιλεγμενων φιλτρων. Προέκυψε σφάλμα στον διακομιστή.'; -$messages['setdeactivateerror'] = 'Αδυναμία απενεργοποιησης επιλεγμενων φιλτρων. Προέκυψε σφάλμα στον διακομιστή.'; -$messages['setdeleteerror'] = 'Αδυναμία διαγραφής φίλτρων. Προέκυψε σφάλμα στον διακομιστή'; $messages['setactivated'] = 'Φίλτρα ενεργοποιήθηκαν με επιτυχία.'; $messages['setdeactivated'] = 'Φίλτρα απενεργοποιήθηκαν με επιτυχία.'; $messages['setdeleted'] = 'Τα φίλτρα διαγράφηκαν επιτυχώς.'; $messages['setdeleteconfirm'] = 'Θέλετε όντως να διαγράψετε τα επιλεγμένα φιλτρα?'; -$messages['setcreateerror'] = 'Αδυναμία δημιουργιας φιλτρων. Προέκυψε σφάλμα στον διακομιστή.'; $messages['setcreated'] = 'Τα φιλτρα δημιουργηθηκαν επιτυχως.'; -$messages['activateerror'] = 'Αδυναμία ενεργοποιησης επιλεγμενου φίλτρου(ων). Προέκυψε σφάλμα στον διακομιστή.'; -$messages['deactivateerror'] = 'Αδυναμία απενεργοποιησης επιλεγμενου φίλτρου(ων). Προέκυψε σφάλμα στον διακομιστή.'; $messages['deactivated'] = 'Το φιλτρο(α) απενεργοποιηθηκαν επιτυχως.'; $messages['activated'] = 'Το φίλτρο(α) ενεργοποιηθηκαν επιτυχώς.'; $messages['moved'] = 'Το φίλτρο μετακινηθηκε επιτυχώς.'; -$messages['moveerror'] = 'Αδυναμία μετακινησης επιλεγμενου φίλτρου. Προέκυψε σφάλμα στον διακομιστή.'; $messages['nametoolong'] = 'Το όνομα είναι πολύ μεγάλο.'; $messages['namereserved'] = 'Δεσμευμένο όνομα. '; $messages['setexist'] = 'Set υπάρχει ήδη. '; diff --git a/plugins/managesieve/localization/en_GB.inc b/plugins/managesieve/localization/en_GB.inc index 8eff950b3..63006144a 100644 --- a/plugins/managesieve/localization/en_GB.inc +++ b/plugins/managesieve/localization/en_GB.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filters'; $labels['managefilters'] = 'Manage incoming mail filters'; $labels['filtername'] = 'Filter name'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Send message copy to'; $labels['messagereply'] = 'Reply with message'; $labels['messagedelete'] = 'Delete message'; $labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'For incoming mail:'; $labels['messagesactions'] = '...execute the following actions:'; $labels['add'] = 'Add'; $labels['del'] = 'Delete'; $labels['sender'] = 'Sender'; $labels['recipient'] = 'Recipient'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Message body (vacation reason):'; $labels['vacationsubject'] = 'Message subject:'; $labels['rulestop'] = 'Stop evaluating rules'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'count is greater than or equal to'; $labels['countislessthan'] = 'count is less than'; $labels['countislessthanequal'] = 'count is less than or equal to'; $labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'value is greater than'; $labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; $labels['valueislessthan'] = 'value is less than'; $labels['valueislessthanequal'] = 'value is less than or equal to'; $labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Set flags to the message'; $labels['addflags'] = 'Add flags to the message'; $labels['removeflags'] = 'Remove flags from the message'; @@ -99,45 +90,10 @@ $labels['flagdeleted'] = 'Deleted'; $labels['flaganswered'] = 'Answered'; $labels['flagflagged'] = 'Flagged'; $labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; $labels['filtercreate'] = 'Create filter'; $labels['usedata'] = 'Use following data in the filter:'; $labels['nextstep'] = 'Next Step'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Advanced options'; $labels['body'] = 'Body'; $labels['address'] = 'address'; @@ -157,38 +113,26 @@ $labels['default'] = 'default'; $labels['octet'] = 'strict (octet)'; $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Unknown server error'; $messages['filterconnerror'] = 'Unable to connect to managesieve server'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured'; $messages['filterdeleted'] = 'Filter deleted successfully'; $messages['filtersaved'] = 'Filter saved successfully'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; $messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; $messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; $messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; $messages['forbiddenchars'] = 'Forbidden characters in field'; $messages['cannotbeempty'] = 'Field cannot be empty'; $messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; $messages['setactivated'] = 'Filters set activated successfully.'; $messages['setdeactivated'] = 'Filters set deactivated successfully.'; $messages['setdeleted'] = 'Filters set deleted successfully.'; $messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; $messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; $messages['deactivated'] = 'Filter(s) disabled successfully.'; $messages['activated'] = 'Filter(s) enabled successfully.'; $messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; $messages['nametoolong'] = 'Name too long.'; $messages['namereserved'] = 'Reserved name.'; $messages['setexist'] = 'Set already exists.'; $messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/eo.inc b/plugins/managesieve/localization/eo.inc index 2174d34be..f613d92ba 100644 --- a/plugins/managesieve/localization/eo.inc +++ b/plugins/managesieve/localization/eo.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtriloj'; $labels['managefilters'] = 'Mastrumi filtrilojn pri enirantaj mesaĝoj'; $labels['filtername'] = 'Nomo de filtrilo'; @@ -25,8 +23,6 @@ $labels['filteradd'] = 'Aldoni filtrilon'; $labels['filterdel'] = 'Forigi filtrilon'; $labels['moveup'] = 'Movi supren'; $labels['movedown'] = 'Movi malsupren'; -$labels['filterallof'] = 'matching all of the following rules'; -$labels['filteranyof'] = 'matching any of the following rules'; $labels['filterany'] = 'ĉiuj mesaĝoj'; $labels['filtercontains'] = 'enhavas'; $labels['filternotcontains'] = 'ne enhavas'; @@ -48,147 +44,8 @@ $labels['messagecopyto'] = 'Kopii mesaĝo en'; $labels['messagesendcopy'] = 'Sendi kopion de mesaĝo al'; $labels['messagereply'] = 'Respondi per mesaĝo'; $labels['messagedelete'] = 'Forigi mesaĝon'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; -$labels['messagesactions'] = '...execute the following actions:'; $labels['add'] = 'Aldoni'; $labels['del'] = 'Forigi'; $labels['sender'] = 'Sendanto'; $labels['recipient'] = 'Ricevanto'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; -$labels['vacationsubject'] = 'Message subject:'; -$labels['rulestop'] = 'Stop evaluating rules'; -$labels['enable'] = 'Enable/Disable'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; -$labels['active'] = 'active'; -$labels['none'] = 'none'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; -$messages['nametoolong'] = 'Name too long.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/es_AR.inc b/plugins/managesieve/localization/es_AR.inc index a11d45c99..7707a2b57 100644 --- a/plugins/managesieve/localization/es_AR.inc +++ b/plugins/managesieve/localization/es_AR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; $labels['managefilters'] = 'Administrar filtros de correo entrante'; $labels['filtername'] = 'Nombre del filtro'; @@ -34,10 +32,6 @@ $labels['filteris'] = 'es igual a'; $labels['filterisnot'] = 'no es igual a'; $labels['filterexists'] = 'existe'; $labels['filternotexists'] = 'no existe'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; $labels['filterunder'] = 'bajo'; $labels['filterover'] = 'sobre'; $labels['addrule'] = 'Agregar regla'; @@ -49,24 +43,16 @@ $labels['messagesendcopy'] = 'Enviar copia del mensaje a'; $labels['messagereply'] = 'Responder con un mensaje'; $labels['messagedelete'] = 'Eliminar mensaje'; $labels['messagediscard'] = 'Descartar con un mensaje'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Para el correo entrante:'; $labels['messagesactions'] = '... ejecutar las siguientes acciones:'; $labels['add'] = 'Agregar'; $labels['del'] = 'Eliminar'; $labels['sender'] = 'Remitente'; $labels['recipient'] = 'Destinatario'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Cada cuanto enviar mensajes (en días):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Cuerpo del mensaje (razón de vacaciones):'; -$labels['vacationsubject'] = 'Message subject:'; $labels['rulestop'] = 'Parar de evaluar reglas'; -$labels['enable'] = 'Enable/Disable'; $labels['filterset'] = 'Conjunto de filtros'; -$labels['filtersets'] = 'Filter sets'; $labels['filtersetadd'] = 'Agregar conjunto de filtros'; $labels['filtersetdel'] = 'Eliminar conjunto de filtros'; $labels['filtersetact'] = 'Activar conjunto de filtros'; @@ -79,116 +65,19 @@ $labels['none'] = 'none'; $labels['fromset'] = 'desde conjunto'; $labels['fromfile'] = 'desde archivo'; $labels['filterdisabled'] = 'Filtro deshabilitado'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Error desconocido de servidor'; $messages['filterconnerror'] = 'Imposible conectar con el servidor managesieve'; -$messages['filterdeleteerror'] = 'Imposible borrar filtro. Ha ocurrido un error en el servidor'; $messages['filterdeleted'] = 'Filtro borrado satisfactoriamente'; $messages['filtersaved'] = 'Filtro guardado satisfactoriamente'; -$messages['filtersaveerror'] = 'Imposible guardar ell filtro. Ha ocurrido un error en el servidor'; $messages['filterdeleteconfirm'] = '¿Realmente desea borrar el filtro seleccionado?'; $messages['ruledeleteconfirm'] = '¿Está seguro de que desea borrar la regla seleccionada?'; $messages['actiondeleteconfirm'] = '¿Está seguro de que desea borrar la acción seleccionada?'; $messages['forbiddenchars'] = 'Caracteres prohibidos en el campo'; $messages['cannotbeempty'] = 'El campo no puede estar vacío'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Imposible activar el conjunto de filtros. Error en el servidor.'; -$messages['setdeactivateerror'] = 'Imposible desactivar el conjunto de filtros. Error en el servidor.'; -$messages['setdeleteerror'] = 'Imposible eliminar el conjunto de filtros. Error en el servidor.'; $messages['setactivated'] = 'Conjunto de filtros activados correctamente'; $messages['setdeactivated'] = 'Conjunto de filtros desactivados correctamente'; $messages['setdeleted'] = 'Conjunto de filtros eliminados correctamente'; $messages['setdeleteconfirm'] = '¿Esta seguro, que quiere eliminar el conjunto de filtros seleccionado?'; -$messages['setcreateerror'] = 'Imposible crear el conjunto de filtros. Error en el servidor.'; $messages['setcreated'] = 'Conjunto de filtros creados correctamente'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; $messages['nametoolong'] = 'Imposible crear el conjunto de filtros. Nombre del conjunto de filtros muy largo'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/es_ES.inc b/plugins/managesieve/localization/es_ES.inc index a79763ae9..208477a96 100644 --- a/plugins/managesieve/localization/es_ES.inc +++ b/plugins/managesieve/localization/es_ES.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; $labels['managefilters'] = 'Administrar filtros de correo entrante'; $labels['filtername'] = 'Nombre del filtro'; @@ -56,7 +54,7 @@ $labels['add'] = 'Agregar'; $labels['del'] = 'Eliminar'; $labels['sender'] = 'Remitente'; $labels['recipient'] = 'Destinatario'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; +$labels['vacationaddr'] = 'Mis direcciones adicionales de correo electrónico:'; $labels['vacationdays'] = 'Cada cuánto enviar mensajes (en días):'; $labels['vacationinterval'] = 'Cada cuánto enviar mensajes:'; $labels['days'] = 'días'; @@ -161,31 +159,22 @@ $labels['index'] = 'índice:'; $labels['indexlast'] = 'hacia atrás'; $messages['filterunknownerror'] = 'Error desconocido de servidor.'; $messages['filterconnerror'] = 'Imposible conectar con el servidor managesieve.'; -$messages['filterdeleteerror'] = 'Imposible borrar filtro. Ha ocurrido un error en el servidor.'; $messages['filterdeleted'] = 'Filtro borrado satisfactoriamente.'; $messages['filtersaved'] = 'Filtro guardado satisfactoriamente.'; -$messages['filtersaveerror'] = 'Imposible guardar el filtro. Ha ocurrido un error en el servidor.'; $messages['filterdeleteconfirm'] = '¿Realmente desea borrar el filtro seleccionado?'; $messages['ruledeleteconfirm'] = '¿Está seguro de que desea borrar la regla seleccionada?'; $messages['actiondeleteconfirm'] = '¿Está seguro de que desea borrar la acción seleccionada?'; $messages['forbiddenchars'] = 'Caracteres prohibidos en el campo.'; $messages['cannotbeempty'] = 'El campo no puede estar vacío.'; $messages['ruleexist'] = 'Ya existe un filtro con el nombre especificado.'; -$messages['setactivateerror'] = 'Imposible activar el conjunto de filtros seleccionado. Ha ocurrido un error en el servidor.'; -$messages['setdeactivateerror'] = 'Imposible desactivar el conjunto de filtros seleccionado. Ha ocurrido un error en el servidor.'; -$messages['setdeleteerror'] = 'Imposible borrar el conjunto de filtros seleccionado. Ha ocurrido un error en el servidor.'; $messages['setactivated'] = 'Conjunto de filtros activado satisfactoriamente.'; $messages['setdeactivated'] = 'Conjunto de filtros desactivado satisfactoriamente.'; $messages['setdeleted'] = 'Conjunto de filtros borrado satisfactoriamente.'; $messages['setdeleteconfirm'] = '¿Está seguro de que desea borrar el conjunto de filtros seleccionado?'; -$messages['setcreateerror'] = 'Imposible crear el conjunto de filtros. Ha ocurrido un error en el servidor.'; $messages['setcreated'] = 'Conjunto de filtros creado satisfactoriamente.'; -$messages['activateerror'] = 'No se ha podido habilitar el filtro(s) seleccionado. Se ha producido un error de servidor.'; -$messages['deactivateerror'] = 'No se ha podido deshabilitar el filtro(s) seleccionado. Se ha producido un error de servidor.'; $messages['deactivated'] = 'Filtro(s) deshabilitado(s) correctamente.'; $messages['activated'] = 'Filtro(s) habilitado(s) correctamente.'; $messages['moved'] = 'Filtro movido correctamente.'; -$messages['moveerror'] = 'No se ha podido mover el filtro seleccionado. Ha ocurrido un error de servidor.'; $messages['nametoolong'] = 'Imposible crear el conjunto de filtros. Nombre demasiado largo'; $messages['namereserved'] = 'Nombre reservado.'; $messages['setexist'] = 'El conjunto ya existe.'; diff --git a/plugins/managesieve/localization/et_EE.inc b/plugins/managesieve/localization/et_EE.inc index 7af0e071c..e8a3bd3c1 100644 --- a/plugins/managesieve/localization/et_EE.inc +++ b/plugins/managesieve/localization/et_EE.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtrid'; $labels['managefilters'] = 'Halda sisenevate kirjade filtreid'; $labels['filtername'] = 'Filtri nimi'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Saada kirja koopia'; $labels['messagereply'] = 'Vasta kirjaga'; $labels['messagedelete'] = 'Kustuta kiri'; $labels['messagediscard'] = 'Viska ära teatega'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Siseneva kirja puhul, mis:'; $labels['messagesactions'] = '...käivita järgnevad tegevused:'; $labels['add'] = 'Lisa'; $labels['del'] = 'Kustuta'; $labels['sender'] = 'Saatja'; $labels['recipient'] = 'Saaja'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Kui tihti kirju saata (päevades):'; $labels['vacationinterval'] = 'Kui tihti kirju saata:'; $labels['days'] = 'päeva'; @@ -161,31 +157,22 @@ $labels['index'] = 'indeks:'; $labels['indexlast'] = 'tagasisuunas'; $messages['filterunknownerror'] = 'Tundmatu serveri tõrge'; $messages['filterconnerror'] = 'Managesieve serveriga ühendumine nurjus'; -$messages['filterdeleteerror'] = 'Filtri kustutamine nurjus. Ilmnes serveri tõrge.'; $messages['filterdeleted'] = 'Filter edukalt kustutatud'; $messages['filtersaved'] = 'Filter edukalt salvestatud'; -$messages['filtersaveerror'] = 'Filtri salvestamine nurjus. Ilmnes serveri tõrge.'; $messages['filterdeleteconfirm'] = 'Soovid valitud filtri kustutada?'; $messages['ruledeleteconfirm'] = 'Soovid valitud reegli kustutada?'; $messages['actiondeleteconfirm'] = 'Soovid valitud tegevuse kustutada?'; $messages['forbiddenchars'] = 'Väljal on lubamatu märk'; $messages['cannotbeempty'] = 'Väli ei või tühi olla'; $messages['ruleexist'] = 'Määratud nimega filter on juba olemas'; -$messages['setactivateerror'] = 'Valitud filtrite kogumi aktiveerimine nurjus. Ilmnes serveri tõrge.'; -$messages['setdeactivateerror'] = 'Valitud filtrite kogumi deaktiveerimine nurjus. Ilmnes serveri tõrge.'; -$messages['setdeleteerror'] = 'Valitud filtrite kogumi kustutamine nurjus. Ilmnes serveri tõrge.'; $messages['setactivated'] = 'Filtrite kogumi aktiveerimine õnnestus.'; $messages['setdeactivated'] = 'Filtrite kogumi deaktiveerimine õnnestus.'; $messages['setdeleted'] = 'Filtrite kogumi kustutamine õnnestus.'; $messages['setdeleteconfirm'] = 'Oled kindel, et soovid valitud filtrite kogumi kustutada?'; -$messages['setcreateerror'] = 'Filtrite kogumi loomine nurjus. Ilmnes serveri tõrge.'; $messages['setcreated'] = 'Filtrite kogumi loomine õnnestus.'; -$messages['activateerror'] = 'Valitud filtrite lubamine nurjus. Ilmnes serveri tõrge.'; -$messages['deactivateerror'] = 'Valitud filtrite keelamine nurjus. Ilmnes serveri tõrge.'; $messages['deactivated'] = 'Filter edukalt lubatud.'; $messages['activated'] = 'Filter edukalt keelatud.'; $messages['moved'] = 'Filter edukalt liigutatud.'; -$messages['moveerror'] = 'Valitud filtri liigutamine nurjus. Ilmnes serveri tõrge.'; $messages['nametoolong'] = 'Nimi on liiga pikk.'; $messages['namereserved'] = 'Nimi on reserveeritud.'; $messages['setexist'] = 'Kogum on juba olemas.'; diff --git a/plugins/managesieve/localization/eu_ES.inc b/plugins/managesieve/localization/eu_ES.inc index c7846e6f6..fde8f919d 100644 --- a/plugins/managesieve/localization/eu_ES.inc +++ b/plugins/managesieve/localization/eu_ES.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Iragazkiak'; $labels['managefilters'] = 'Administratu postaren sarrera-iragazkiak'; $labels['filtername'] = 'Iragazkiaren izena'; diff --git a/plugins/managesieve/localization/fa_IR.inc b/plugins/managesieve/localization/fa_IR.inc index 5d3cdcd7f..8aeb51711 100644 --- a/plugins/managesieve/localization/fa_IR.inc +++ b/plugins/managesieve/localization/fa_IR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'صافی‌ها'; $labels['managefilters'] = 'مدیریت صافی‌های نامه ورودی'; $labels['filtername'] = 'نام صافی'; @@ -56,7 +54,6 @@ $labels['add'] = 'افزودن'; $labels['del'] = 'حذف'; $labels['sender'] = 'فرستنده'; $labels['recipient'] = 'گیرنده'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'پیغام ها در چه مواقعی فرستاده شدند (در روزهای):'; $labels['vacationinterval'] = 'مواقعی که پیغام‌ها ارسال می‌شوند:'; $labels['days'] = 'روزها'; @@ -161,31 +158,22 @@ $labels['index'] = 'فهرست:'; $labels['indexlast'] = 'به عقب'; $messages['filterunknownerror'] = 'خطای سرور نامعلوم.'; $messages['filterconnerror'] = 'ناتوانی در اتصال به سرور.'; -$messages['filterdeleteerror'] = 'ناتوانی در حذف صافی. خطای سرور رخ داد.'; $messages['filterdeleted'] = 'صافی با موفقیت حذف شد.'; $messages['filtersaved'] = 'صافی با موفقیت ذخیره شد.'; -$messages['filtersaveerror'] = 'ناتوانی در ذخیره فیلتر. خطای سرور رخ داد.'; $messages['filterdeleteconfirm'] = 'آیا مطمئن به حذف صافی انتخاب شده هستید؟'; $messages['ruledeleteconfirm'] = 'آیا مطمئن هستید که می خواهید قانون انتخاب شده را حذف کنید؟'; $messages['actiondeleteconfirm'] = 'آیا مطمئن هستید که می خواهید عمل انتخاب شده را حذف کنید.'; $messages['forbiddenchars'] = 'حروف ممنوعه در فیلد.'; $messages['cannotbeempty'] = 'فیلد نمی تواند خالی باشد.'; $messages['ruleexist'] = 'صافی با این نام مشخص وجود دارد.'; -$messages['setactivateerror'] = 'ناتوان در فعال کردن مجموعه صافی‌ها انتخاب شده. خطای سرور رخ داد.'; -$messages['setdeactivateerror'] = 'ناتوان در غیرفعال کردن مجموعه صافی‌ها انتخاب شده. خطای سرور رخ داد.'; -$messages['setdeleteerror'] = 'ناتوان در حذف مجموعه صافی‌ها انتخاب شده. خطای سرور رخ داد.'; $messages['setactivated'] = 'مجموعه صافی‌ها با موفقیت فعال شد.'; $messages['setdeactivated'] = 'مجموعه صافی‌ها با موفقیت غیرفعال شد.'; $messages['setdeleted'] = 'مجموعه صافی‌ها با موفقیت حذف شد.'; $messages['setdeleteconfirm'] = 'آیا مطمئن هستید که می‌خواهید مجموعه صافی‌ها انتخاب شده را حذف کنید؟'; -$messages['setcreateerror'] = 'ناتوانی در ایجاد مجموعه صافی‌ها. خطای سرور رخ داد.'; $messages['setcreated'] = 'مجموعه صافی‌ها با موفقیت ایجاد شد.'; -$messages['activateerror'] = 'ناتوانی در فعال کردن صافی(های) انتخاب شده. خطای سرور رخ داد.'; -$messages['deactivateerror'] = 'ناتوانی در غیرفعال کردن صافی(های) انتخاب شده. خطای سرور رخ داد.'; $messages['deactivated'] = 'صافی(ها) با موفقیت فعال شدند.'; $messages['activated'] = 'صافی(ها) با موفقیت غیرفعال شدند.'; $messages['moved'] = 'صافی با موفقیت منتقل شد.'; -$messages['moveerror'] = 'ناتوانی در انتقال صافی انتخاب شده. خطای سرور رخ داد.'; $messages['nametoolong'] = 'نام خیلی بلند.'; $messages['namereserved'] = 'نام رزرو شده.'; $messages['setexist'] = 'مجموعه در حال حاضر موجود است.'; diff --git a/plugins/managesieve/localization/fi_FI.inc b/plugins/managesieve/localization/fi_FI.inc index 8108165b1..afdca3d3e 100644 --- a/plugins/managesieve/localization/fi_FI.inc +++ b/plugins/managesieve/localization/fi_FI.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Suodattimet'; $labels['managefilters'] = 'Hallitse saapuvan sähköpostin suodattimia'; $labels['filtername'] = 'Suodattimen nimi'; @@ -34,67 +32,16 @@ $labels['filteris'] = 'on samanlainen kuin'; $labels['filterisnot'] = 'ei ole samanlainen kuin'; $labels['filterexists'] = 'on olemassa'; $labels['filternotexists'] = 'ei ole olemassa'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; -$labels['filterunder'] = 'under'; -$labels['filterover'] = 'over'; $labels['addrule'] = 'Lisää sääntö'; $labels['delrule'] = 'Poista sääntö'; -$labels['messagemoveto'] = 'Move message to'; -$labels['messageredirect'] = 'Redirect message to'; -$labels['messagecopyto'] = 'Copy message to'; -$labels['messagesendcopy'] = 'Send message copy to'; -$labels['messagereply'] = 'Reply with message'; -$labels['messagedelete'] = 'Delete message'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; -$labels['messagesactions'] = '...execute the following actions:'; $labels['add'] = 'Lisää'; $labels['del'] = 'Poista'; $labels['sender'] = 'Lähettäjä'; $labels['recipient'] = 'Vastaanottaja'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; $labels['vacationsubject'] = 'Viestin aihe:'; -$labels['rulestop'] = 'Stop evaluating rules'; -$labels['enable'] = 'Enable/Disable'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; -$labels['active'] = 'active'; -$labels['none'] = 'none'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Aseta liput viestiin'; $labels['addflags'] = 'Lisää liput viestiin'; $labels['removeflags'] = 'Poista liput viestistä'; -$labels['flagread'] = 'Read'; $labels['flagdeleted'] = 'Poistettu'; $labels['flaganswered'] = 'Vastattu'; $labels['flagflagged'] = 'Liputettu'; @@ -102,93 +49,15 @@ $labels['flagdraft'] = 'Luonnos'; $labels['setvariable'] = 'Aseta muuttuja'; $labels['setvarname'] = 'Muuttujan nimi:'; $labels['setvarvalue'] = 'Muuttujan arvo:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; $labels['notifyimportance'] = 'Tärkeysaste:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; $labels['filtercreate'] = 'Luo suodatin'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Lisävalinnat'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; $labels['default'] = 'oletus'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Tuntematon palvelinvirhe.'; $messages['filterconnerror'] = 'Yhteys palvelimeen epäonnistui.'; -$messages['filterdeleteerror'] = 'Suodattimen poisto epäonnistui palvelinvirheen vuoksi.'; $messages['filterdeleted'] = 'Suodatin poistettu onnistuneesti.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; $messages['cannotbeempty'] = 'Kenttä ei voi olla tyhjä.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; $messages['moved'] = 'Suodatin siirretty onnistuneesti.'; -$messages['moveerror'] = 'Suodattimen siirtäminen epäonnistui palvelinvirheen vuoksi.'; $messages['nametoolong'] = 'Nimi on liian pitkä.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/fr_FR.inc b/plugins/managesieve/localization/fr_FR.inc index 88960232d..0e9549b58 100644 --- a/plugins/managesieve/localization/fr_FR.inc +++ b/plugins/managesieve/localization/fr_FR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtres'; $labels['managefilters'] = 'Gérer les filtres sur les courriels entrants'; $labels['filtername'] = 'Nom du filtre'; @@ -161,31 +159,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'retour arrière'; $messages['filterunknownerror'] = 'Erreur du serveur inconnue'; $messages['filterconnerror'] = 'Connexion au serveur Managesieve impossible'; -$messages['filterdeleteerror'] = 'Suppression du filtre impossible. Le serveur à produit une erreur'; $messages['filterdeleted'] = 'Le filtre a bien été supprimé'; $messages['filtersaved'] = 'Le filtre a bien été enregistré'; -$messages['filtersaveerror'] = 'Enregistrement du filtre impossibe. Le serveur à produit une erreur'; $messages['filterdeleteconfirm'] = 'Voulez-vous vraiment supprimer le filtre sélectionné?'; $messages['ruledeleteconfirm'] = 'Voulez-vous vraiment supprimer la règle sélectionnée?'; $messages['actiondeleteconfirm'] = 'Voulez-vous vraiment supprimer l\'action sélectionnée?'; $messages['forbiddenchars'] = 'Caractères interdits dans le champ'; $messages['cannotbeempty'] = 'Le champ ne peut pas être vide'; $messages['ruleexist'] = 'Un filtre existe déjà avec ce nom.'; -$messages['setactivateerror'] = 'Impossible d\'aactiver le groupe de filtres sélectionné. Le serveur a rencontré une erreur.'; -$messages['setdeactivateerror'] = 'Impossible de désactiver le groupe de filtres sélectionné. Le serveur a rencontré une erreur.'; -$messages['setdeleteerror'] = 'Impossible de supprimer le groupe de filtres sélectionné. Le serveur a rencontré une erreur.'; $messages['setactivated'] = 'Le groupe de filtres a bien été activé.'; $messages['setdeactivated'] = 'Le groupe de filtres a bien été désactivé.'; $messages['setdeleted'] = 'Le groupe de filtres a bien été supprimé.'; $messages['setdeleteconfirm'] = 'Voulez vous vraiment supprimer le groupe de filtres sélectionné ?'; -$messages['setcreateerror'] = 'Impossible de créer le groupe de filtres. Le serveur a rencontré une erreur.'; $messages['setcreated'] = 'Le groupe de filtres a bien été créé.'; -$messages['activateerror'] = 'Impossible d\'activer le(s) filtre(s) sélectionné(s). Une erreur serveur s\'est produite.'; -$messages['deactivateerror'] = 'Impossible de désactiver le(s) filtre(s) sélectionné(s). Une erreur serveur s\'est produite.'; $messages['deactivated'] = 'Filtre(s) désactivé(s) avec succès.'; $messages['activated'] = 'Filtre(s) activé(s) avec succès.'; $messages['moved'] = 'Filtre déplacé avec succès.'; -$messages['moveerror'] = 'Déplacement du filtre sélectionné impossible. Le serveur a renvoyé une erreur.'; $messages['nametoolong'] = 'Nom trop long.'; $messages['namereserved'] = 'Nom réservé.'; $messages['setexist'] = 'Ce groupe existe déjà.'; diff --git a/plugins/managesieve/localization/gl_ES.inc b/plugins/managesieve/localization/gl_ES.inc index 7fc4028ae..e588ef571 100644 --- a/plugins/managesieve/localization/gl_ES.inc +++ b/plugins/managesieve/localization/gl_ES.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; $labels['managefilters'] = 'Xestionar os filtros de correo entrante'; $labels['filtername'] = 'Nome do filtro'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Enviar copia da mensaxe a'; $labels['messagereply'] = 'Respostar con unha mensaxe'; $labels['messagedelete'] = 'Eliminar a mensaxe'; $labels['messagediscard'] = 'Descartar con unha mensaxe'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Para o correo entrante:'; $labels['messagesactions'] = '... executar as seguintes accións:'; $labels['add'] = 'Engadir'; $labels['del'] = 'Eliminar'; $labels['sender'] = 'Remitente'; $labels['recipient'] = 'Destinatario'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Cada canto enviar mensaxes (en días):'; $labels['vacationinterval'] = 'Con qué frecuencia vanse enviar mensaxes:'; $labels['days'] = 'días'; @@ -161,31 +157,22 @@ $labels['index'] = 'índice:'; $labels['indexlast'] = 'cara atrás'; $messages['filterunknownerror'] = 'Erro descoñecido servidor'; $messages['filterconnerror'] = 'Imposible conectar co servidor managesieve'; -$messages['filterdeleteerror'] = 'Imposible eliminar filtro. Ocurriu un erro no servidor'; $messages['filterdeleted'] = 'Filtro borrado con éxito'; $messages['filtersaved'] = 'Filtro gardado con éxito'; -$messages['filtersaveerror'] = 'Imposible gardar o filtro. Ocurriu un erro no servidor'; $messages['filterdeleteconfirm'] = 'Realmente desexa eliminar o filtro seleccionado?'; $messages['ruledeleteconfirm'] = 'Está seguro de que desexa eliminar a regra seleccionada?'; $messages['actiondeleteconfirm'] = 'Está seguro de que desexa eliminar a acción seleccionada?'; $messages['forbiddenchars'] = 'Caracteres non permitidos no campo'; $messages['cannotbeempty'] = 'O campo non pode estar baleiro'; $messages['ruleexist'] = 'Xa existe un filtro con nome especificado.'; -$messages['setactivateerror'] = 'Imposible activar o conxunto de filtros seleccionado. Ocurriu un erro no servidor'; -$messages['setdeactivateerror'] = 'Imposible desactivar o conxunto de filtros seleccionado. Ocurriu un error no servidor'; -$messages['setdeleteerror'] = 'Imposible eliminar o conxunto de filtros seleccionado. Ocurriu un error no servidor'; $messages['setactivated'] = 'O conxunto de filtros activouse con éxito'; $messages['setdeactivated'] = 'O conxunto de filtros desactivouse con éxito'; $messages['setdeleted'] = 'O Conxunto de filtros borrouse con éxito'; $messages['setdeleteconfirm'] = 'Está seguro de que desexa eliminar o conxunto de filtros seleccionado?'; -$messages['setcreateerror'] = 'Imposible crear o conxunto de filtros. Ocurriu un error no servidor'; $messages['setcreated'] = 'Conxunto de filtros creado con éxito'; -$messages['activateerror'] = 'Non foi posible activar o(s) filtro(s) seleccionado(s). Ocurriu un erro no servidor.'; -$messages['deactivateerror'] = 'Non foi posible desactivar o(s) filtro(s) seleccionado(s). Ocurriu un erro no servidor.'; $messages['deactivated'] = 'Desactiváronse os filtros correctamente.'; $messages['activated'] = 'Activáronse os filtros correctamente'; $messages['moved'] = 'Moveuse correctamente o filtro.'; -$messages['moveerror'] = 'Non foi posible mover o(s) filtro(s) seleccionado(s). Ocurriu un erro no servidor.'; $messages['nametoolong'] = 'Imposible crear o conxunto de filtros. O nome é longo de máis'; $messages['namereserved'] = 'Nome reservado'; $messages['setexist'] = 'Xa existe o conxunto'; diff --git a/plugins/managesieve/localization/he_IL.inc b/plugins/managesieve/localization/he_IL.inc index ca015b6db..7c2ff29ce 100644 --- a/plugins/managesieve/localization/he_IL.inc +++ b/plugins/managesieve/localization/he_IL.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'מסננים'; $labels['managefilters'] = 'ניהול מסננים לדואר נכנס'; $labels['filtername'] = 'שם המסנן'; @@ -56,7 +54,6 @@ $labels['add'] = 'הוספה'; $labels['del'] = 'מחיקה'; $labels['sender'] = 'השולח'; $labels['recipient'] = 'הנמען'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'באיזו תדירות ( בימים ) לשלוח הודעות:'; $labels['vacationinterval'] = 'באיזו תדירות לשלוח ההודעה'; $labels['days'] = 'ימים'; @@ -161,31 +158,22 @@ $labels['index'] = 'אינדקס:'; $labels['indexlast'] = 'בחזרה'; $messages['filterunknownerror'] = 'שגיאת שרת בלתי מוכרת.'; $messages['filterconnerror'] = 'לא ניתן להתחבר לשרת.'; -$messages['filterdeleteerror'] = 'לא ניתן למחוק את המסנן. אירעה שגיאה בצד השרת.'; $messages['filterdeleted'] = 'המסנן נמחק בהצלחה.'; $messages['filtersaved'] = 'המסנן נשמר בהצלחה.'; -$messages['filtersaveerror'] = 'לא ניתן לשמור את המסנן. אירעה שגיאה בצד השרת.'; $messages['filterdeleteconfirm'] = 'האם אכן ברצונך למחוק את המסנן הנבחר?'; $messages['ruledeleteconfirm'] = 'האם אכן ברצונך למחוק את הכלל הנבחר?'; $messages['actiondeleteconfirm'] = 'האם אכן ברצונך למחוק את הפעולה הנבחרת?'; $messages['forbiddenchars'] = 'תווים אסורים בשדה.'; $messages['cannotbeempty'] = 'השדה לא יכול להישאר ריק.'; $messages['ruleexist'] = 'כבר קיים מסנן בשם כזה.'; -$messages['setactivateerror'] = 'לא ניתן להפעיל את ערכת המסננים הנבחרת. אירעה שגיאה בצד השרת.'; -$messages['setdeactivateerror'] = 'לא ניתן לנטרל את ערכת המסננים הנבחרת. אירעה שגיאה בצד השרת.'; -$messages['setdeleteerror'] = 'לא ניתן למחוק את ערכת המסננים הנבחרת. אירעה שגיאה בצד השרת.'; $messages['setactivated'] = 'ערכת המסננים הופעלה בהצלחה.'; $messages['setdeactivated'] = 'ערכת המסננים נוטרלה בהצלחה.'; $messages['setdeleted'] = 'ערכת המסננים נמחקה בהצלחה.'; $messages['setdeleteconfirm'] = 'האם אכן ברצונך למחוק את ערכת המסננים הנבחרת?'; -$messages['setcreateerror'] = 'לא ניתן ליצור ערכת מסננים. אירעה שגיאה בצד השרת.'; $messages['setcreated'] = 'ערכת המסננים נוצרה בהצלחה.'; -$messages['activateerror'] = 'לא ניתן להפעיל את המסננים הנבחרים. אירעה שגיאה בצד השרת.'; -$messages['deactivateerror'] = 'לא ניתן לנטרל את המסננים הנבחרים. אירעה שגיאה בצד השרת.'; $messages['deactivated'] = 'המסננים הופעלו בהצלחה.'; $messages['activated'] = 'המסננים נוטרלו בהצלחה.'; $messages['moved'] = 'המסנן הועבר בהצלחה.'; -$messages['moveerror'] = 'לא ניתן להעביר את המסנן הנבחר. אירעה שגיאה בצד השרת.'; $messages['nametoolong'] = 'השם ארוך מדי.'; $messages['namereserved'] = 'השם הזה שמור.'; $messages['setexist'] = 'הערכה כבר קיימת.'; diff --git a/plugins/managesieve/localization/hr_HR.inc b/plugins/managesieve/localization/hr_HR.inc index 4e07a3f92..eadbfcc0f 100644 --- a/plugins/managesieve/localization/hr_HR.inc +++ b/plugins/managesieve/localization/hr_HR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filteri'; $labels['managefilters'] = 'Uredi filtere za pristiglu poštu'; $labels['filtername'] = 'Naziv filtera'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Pošalji kopiju poruke na'; $labels['messagereply'] = 'Odgovori sa porukom'; $labels['messagedelete'] = 'Obriši poruku'; $labels['messagediscard'] = 'Otkaži sa porukom'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Za pristigle poruke:'; $labels['messagesactions'] = '...primijeni sljedeće akcije:'; $labels['add'] = 'Dodaj'; $labels['del'] = 'Obriši'; $labels['sender'] = 'Pošiljatelj'; $labels['recipient'] = 'Primatelj'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Koliko često slati poruku (u danima):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Tijelo poruke (razlog odmora):'; $labels['vacationsubject'] = 'Naslov poruke:'; $labels['rulestop'] = 'Prekini izvođenje filtera'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'brojač je veći ili jednak od'; $labels['countislessthan'] = 'brojač je manji od'; $labels['countislessthanequal'] = 'brojač je manji ili jednak od'; $labels['countequals'] = 'brojač je jednak'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'vrijednost je veća od'; $labels['valueisgreaterthanequal'] = 'vrijednost je veća ili jednaka od'; $labels['valueislessthan'] = 'vrijednost je manja od'; $labels['valueislessthanequal'] = 'vrijednost je manja ili jednaka od'; $labels['valueequals'] = 'vrijednost je jednaka'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Postavi oznake na poruku'; $labels['addflags'] = 'Dodaj oznake na poruku'; $labels['removeflags'] = 'Ukloni oznake sa poruke'; @@ -99,45 +90,10 @@ $labels['flagdeleted'] = 'Obrisana'; $labels['flaganswered'] = 'Odgovorena'; $labels['flagflagged'] = 'Označena'; $labels['flagdraft'] = 'Predložak'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; $labels['filtercreate'] = 'Stvori filter'; $labels['usedata'] = 'Koristi podatke za filter:'; $labels['nextstep'] = 'Idući korak'; $labels['...'] = '…'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Napredne postavke'; $labels['body'] = 'Tijelo poruke'; $labels['address'] = 'adresa'; @@ -157,38 +113,26 @@ $labels['default'] = 'preddefinirano'; $labels['octet'] = 'strogo (oktet)'; $labels['asciicasemap'] = 'neosjetljivo na veličinu slova (ascii-casemap)'; $labels['asciinumeric'] = 'numerički (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Nepoznata greška na poslužitelju'; $messages['filterconnerror'] = 'Nemoguće spajanje na poslužitelj (managesieve)'; -$messages['filterdeleteerror'] = 'Nemoguće brisanje filtera. Greška na poslužitelju'; $messages['filterdeleted'] = 'Filter je uspješno obrisan'; $messages['filtersaved'] = 'Filter je uspješno spremljen'; -$messages['filtersaveerror'] = 'Nemoguće spremiti filter. Greška na poslužitelju'; $messages['filterdeleteconfirm'] = 'Sigurno želite obrisati odabrani filter?'; $messages['ruledeleteconfirm'] = 'Jeste li sigurni da želite obrisati odabrana pravila?'; $messages['actiondeleteconfirm'] = 'Jeste li sigurni da želite obrisati odabrane akcije?'; $messages['forbiddenchars'] = 'Nedozvoljeni znakovi u polju'; $messages['cannotbeempty'] = 'Polje nesmije biti prazno'; $messages['ruleexist'] = 'Filter sa zadanim imenom već postoji.'; -$messages['setactivateerror'] = 'Nemoguće aktivirati odabranu grupu filtera. Greška na poslužitelju'; -$messages['setdeactivateerror'] = 'Nemoguće deaktivirati odabranu grupu filtera. Greška na poslužitelju'; -$messages['setdeleteerror'] = 'Nemoguće obrisati odabranu grupu filtera. Greška na poslužitelju'; $messages['setactivated'] = 'Grupa filtera je uspješno aktivirana'; $messages['setdeactivated'] = 'Grupa filtera je uspješno deaktivirana'; $messages['setdeleted'] = 'Grupa filtera je uspješno obrisana'; $messages['setdeleteconfirm'] = 'Jeste li sigurni da želite obrisati odabranu grupu filtera?'; -$messages['setcreateerror'] = 'Nemoguće stvoriti grupu filtera. Greška na poslužitelju'; $messages['setcreated'] = 'Grupa filtera je uspješno stvorena'; -$messages['activateerror'] = 'Nije moguće omogućiti odabrani filter(e). Greška poslužitelja.'; -$messages['deactivateerror'] = 'Nije moguće onemogučiti odabrane filter(e). Greška poslužitelja.'; $messages['deactivated'] = 'Filter(i) omogućen(i) uspješno.'; $messages['activated'] = 'Filter(i) onemogućen(i) uspješno.'; $messages['moved'] = 'Filter uspješno premješten.'; -$messages['moveerror'] = 'Nije moguće premjestiti odabrani filter. Greška poslužitelja.'; $messages['nametoolong'] = 'Nemoguće napraviti grupu filtera. Naziv je predugačak'; $messages['namereserved'] = 'Rezervirano ime.'; $messages['setexist'] = 'Skup već postoji.'; $messages['nodata'] = 'Barem jedan pozicija mora biti odabrana!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/hu_HU.inc b/plugins/managesieve/localization/hu_HU.inc index ffc665212..862c32b94 100644 --- a/plugins/managesieve/localization/hu_HU.inc +++ b/plugins/managesieve/localization/hu_HU.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Üzenetszűrők'; $labels['managefilters'] = 'Bejövő üzenetek szűrői'; $labels['filtername'] = 'Szűrő neve'; @@ -161,31 +159,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'visszafelé'; $messages['filterunknownerror'] = 'Ismeretlen szerverhiba'; $messages['filterconnerror'] = 'Nem tudok a szűrőszerverhez kapcsolódni'; -$messages['filterdeleteerror'] = 'A szűrőt nem lehet törölni, szerverhiba történt'; $messages['filterdeleted'] = 'A szűrő törlése sikeres'; $messages['filtersaved'] = 'A szűrő mentése sikeres'; -$messages['filtersaveerror'] = 'A szűrő mentése sikertelen, szerverhiba történt'; $messages['filterdeleteconfirm'] = 'Biztosan törli ezt a szűrőt?'; $messages['ruledeleteconfirm'] = 'Biztosan törli ezt a szabályt?'; $messages['actiondeleteconfirm'] = 'Biztosan törli ezt a műveletet?'; $messages['forbiddenchars'] = 'Érvénytelen karakter a mezőben'; $messages['cannotbeempty'] = 'A mező nem lehet üres'; $messages['ruleexist'] = 'Már van ilyen névvel elmentett szűrő.'; -$messages['setactivateerror'] = 'A kiválasztott szűrő készletet nem sikerült engedélyezni. Szerver hiba történt.'; -$messages['setdeactivateerror'] = 'A kiválasztott szűrő készletet nem sikerült tiltani. Szerver hiba történt.'; -$messages['setdeleteerror'] = 'Nem sikerült a kiválasztott szűrő készletet törölni. Szerver hiba történt.'; $messages['setactivated'] = 'A filter készlet engedélyezése sikeresen végrehajtódott.'; $messages['setdeactivated'] = 'A filter készlet tiltása sikeresen végrehajtódott.'; $messages['setdeleted'] = 'A filter készlet törlése sikeresen végrehajtódott.'; $messages['setdeleteconfirm'] = 'Biztosan törölni szeretnéd a kiválasztott szűrő készleteket?'; -$messages['setcreateerror'] = 'Nem sikerült létrehozni a szűrő készletet. Szerver hiba történt.'; $messages['setcreated'] = 'A szűrő készlet sikeresen létrejött.'; -$messages['activateerror'] = 'Nem sikerült engedélyezni a kiválasztott szűrö(k)et. Szerver hiba történt.'; -$messages['deactivateerror'] = 'Nem sikerült kikapcsolni a kiválasztott szűrő(ke)t. Szerver hiba történt.'; $messages['deactivated'] = 'Szűrő(k) sikeresen bekapcsolva.'; $messages['activated'] = 'Szűrő(k) sikeresen kikapcsolva.'; $messages['moved'] = 'A szűrő sikeresen áthelyezve.'; -$messages['moveerror'] = 'Az áthelyezés nem sikerült. Szerver hiba történt.'; $messages['nametoolong'] = 'Túll hosszu név'; $messages['namereserved'] = 'Nem használható (foglalt) név-'; $messages['setexist'] = 'A készlet már létezik.'; diff --git a/plugins/managesieve/localization/hy_AM.inc b/plugins/managesieve/localization/hy_AM.inc index e16df4423..5a520f46c 100644 --- a/plugins/managesieve/localization/hy_AM.inc +++ b/plugins/managesieve/localization/hy_AM.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Զտիչներ'; $labels['managefilters'] = 'Կառավարել ստացվող նամակների զտիչները'; $labels['filtername'] = 'Զտիչի անուն'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Ուղարկել հաղորդագրության պ $labels['messagereply'] = 'Պատասխանել հաղորդագրությամբ'; $labels['messagedelete'] = 'Ջնջել հաղորդագրությունը'; $labels['messagediscard'] = 'Հեռացնել, հաղորդագրությամբ'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Ստացվող հաղորդագրությունների համար'; $labels['messagesactions'] = '…կատարել հետևյալ գործողությունները.'; $labels['add'] = 'Ավելացնել'; $labels['del'] = 'Ջնջել'; $labels['sender'] = 'Ուղարկող'; $labels['recipient'] = 'Ստացող'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Ինչ հաճախությամբ ուղարկել հաղորդագրությունները (օրեր)`'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Հաղորդագրության բովանդակություն (արձակուրդի պատճառ)`'; $labels['vacationsubject'] = 'Հաղորդագրության վերնագիր`'; $labels['rulestop'] = 'Դադարել պայմանների ստուգումը'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'քանակը գերազանցում է կ $labels['countislessthan'] = 'քանակը պակաս է'; $labels['countislessthanequal'] = 'քանակը պակաս է կամ հավասար է'; $labels['countequals'] = 'քանակը հավասար է'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'արժեքը գերազանցում է'; $labels['valueisgreaterthanequal'] = 'արժեքը գերազանցում է կամ հավասար է'; $labels['valueislessthan'] = 'արժեքը պակաս է'; $labels['valueislessthanequal'] = 'արժեքը պակաս է կամ հավասար է'; $labels['valueequals'] = 'արժեքը հավասար է'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Հաղորդագրությունը նշել որպես'; $labels['addflags'] = 'Ավելացնել նշաններ հաղորդագրությանը'; $labels['removeflags'] = 'Հեռացնել նշաններ հաղորդագրությունից'; @@ -99,45 +90,10 @@ $labels['flagdeleted'] = 'Ջնջված'; $labels['flaganswered'] = 'Պատասխանված'; $labels['flagflagged'] = 'Նշված'; $labels['flagdraft'] = 'Սևագիր'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; $labels['filtercreate'] = 'Ստեղծել զտիչ'; $labels['usedata'] = 'Զտիչում օգտագործել հետևյալ տեղեկությունը.'; $labels['nextstep'] = 'Հաջորդ քայլ'; $labels['...'] = '…'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Հավելյալ ընտրանքներ'; $labels['body'] = 'Մարմին'; $labels['address'] = 'հասցե'; @@ -157,38 +113,26 @@ $labels['default'] = 'լռակյաց'; $labels['octet'] = 'անփոփոխ (օկտետ)'; $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Սերվերի անհայտ սխալ'; $messages['filterconnerror'] = 'Սերվերի հետ կապի խնդիր։'; -$messages['filterdeleteerror'] = 'Սերվերի սխալ, զտիչի ջնջումն ձախողվեց։'; $messages['filterdeleted'] = 'Զտիչը ջնջվեց։'; $messages['filtersaved'] = 'Զտիչը պահպանվեց։'; -$messages['filtersaveerror'] = 'Սերվերի սխալ, զտիչի պահպանման սխալ։'; $messages['filterdeleteconfirm'] = 'Դուք իսկապե՞ս ցանկանում եք ջնջել նշված զտիչը։'; $messages['ruledeleteconfirm'] = 'Դուք իսկապե՞ս ցանկանում եք ջնջել նշված պայմանը։'; $messages['actiondeleteconfirm'] = 'Դուք իսկապե՞ս ցանկանում եք ջնջել նշված գործողությունը։'; $messages['forbiddenchars'] = 'Դաշտում առկա են արգելված նիշեր։'; $messages['cannotbeempty'] = 'Դաշտը դատարկ չի կարող լինել։'; $messages['ruleexist'] = 'Տրված անունով զտիչ արդեն գոյություն ունի։'; -$messages['setactivateerror'] = 'Սերվերի սխալ։ Նշված զտիչների համալիրի միացման ձախողում։'; -$messages['setdeactivateerror'] = 'Սերվերի սխալ։ Նշված զտիչների համալիրի անջատման ձախողում։'; -$messages['setdeleteerror'] = 'Սերվերի սխալ։ Նշված զտիչների համալիրի ջնջման ձախողում։'; $messages['setactivated'] = 'Զտիչների համալիրը միացված է։'; $messages['setdeactivated'] = 'Զտիչների համալիրը անջատված է։'; $messages['setdeleted'] = 'Զտիչների համալիրը ջնջված է։'; $messages['setdeleteconfirm'] = 'Դուք իսկապե՞ս ցանկանում եք ջնջել նշված զտիչների համալիրը։'; -$messages['setcreateerror'] = 'Սերվերի սխալ։ Զտիչների համալիրի ստեղծումը ձախողվեց։'; $messages['setcreated'] = 'Զտիչների համալիրը ստեղծված է։'; -$messages['activateerror'] = 'Սերվերի սխալ։ Նշված զտիչի միացման ձախողում։'; -$messages['deactivateerror'] = 'Սերվերի սխալ։ Նշված զտիչի անջատման ձախողում։'; $messages['deactivated'] = 'Զտիչի միացված է։'; $messages['activated'] = 'Զտիչի անջատված է։'; $messages['moved'] = 'Զտիչի տեղափոխված է։'; -$messages['moveerror'] = 'Սերվերի սխալ։ Նշված զտիչի տեղափոխման ձախողում։'; $messages['nametoolong'] = 'Անունը չափազանց երկար է։'; $messages['namereserved'] = 'Անթույլատրելի անուն։'; $messages['setexist'] = 'Համալիրը արդեն գոյություն ունի։'; $messages['nodata'] = 'Պահանջվում է նշել գոնե մեկ դիրք։'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/ia.inc b/plugins/managesieve/localization/ia.inc index ae1ba6e26..c0177d055 100644 --- a/plugins/managesieve/localization/ia.inc +++ b/plugins/managesieve/localization/ia.inc @@ -15,180 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; -$labels['managefilters'] = 'Manage incoming mail filters'; -$labels['filtername'] = 'Filter name'; -$labels['newfilter'] = 'New filter'; $labels['filteradd'] = 'Adder filtro'; $labels['filterdel'] = 'Deler filtro'; -$labels['moveup'] = 'Move up'; -$labels['movedown'] = 'Move down'; -$labels['filterallof'] = 'matching all of the following rules'; -$labels['filteranyof'] = 'matching any of the following rules'; -$labels['filterany'] = 'all messages'; -$labels['filtercontains'] = 'contains'; -$labels['filternotcontains'] = 'not contains'; -$labels['filteris'] = 'is equal to'; -$labels['filterisnot'] = 'is not equal to'; -$labels['filterexists'] = 'exists'; -$labels['filternotexists'] = 'not exists'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; -$labels['filterunder'] = 'under'; -$labels['filterover'] = 'over'; -$labels['addrule'] = 'Add rule'; -$labels['delrule'] = 'Delete rule'; -$labels['messagemoveto'] = 'Move message to'; -$labels['messageredirect'] = 'Redirect message to'; -$labels['messagecopyto'] = 'Copy message to'; -$labels['messagesendcopy'] = 'Send message copy to'; -$labels['messagereply'] = 'Reply with message'; -$labels['messagedelete'] = 'Delete message'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; -$labels['messagesactions'] = '...execute the following actions:'; -$labels['add'] = 'Add'; -$labels['del'] = 'Delete'; -$labels['sender'] = 'Sender'; -$labels['recipient'] = 'Recipient'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; -$labels['vacationsubject'] = 'Message subject:'; -$labels['rulestop'] = 'Stop evaluating rules'; -$labels['enable'] = 'Enable/Disable'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; -$labels['active'] = 'active'; -$labels['none'] = 'none'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; -$messages['nametoolong'] = 'Name too long.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/id_ID.inc b/plugins/managesieve/localization/id_ID.inc index e1c30ee6a..d4024491f 100644 --- a/plugins/managesieve/localization/id_ID.inc +++ b/plugins/managesieve/localization/id_ID.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filter'; $labels['managefilters'] = 'Atur filter email masuk'; $labels['filtername'] = 'Nama filter'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Kirim salinan pesan ke'; $labels['messagereply'] = 'balas dengan pesan'; $labels['messagedelete'] = 'Hapus pesan'; $labels['messagediscard'] = 'Buang dengan pesan'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Untuk email masuk:'; $labels['messagesactions'] = '...lakukan tindakan berikut'; $labels['add'] = 'Tambah'; $labels['del'] = 'Hapus'; $labels['sender'] = 'Pengirim'; $labels['recipient'] = 'Penerima'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Seberapa sering mengirim pesan (dalam hari):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Isi pesan (alasan liburan):'; $labels['vacationsubject'] = 'Judul pesan:'; $labels['rulestop'] = 'Berhenti mengevaluasi aturan'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'penghitungan lebih besa dari atau sama den $labels['countislessthan'] = 'penghitungan lebih kecil dari'; $labels['countislessthanequal'] = 'penghitungan lebih kecil dari atau sama dengan'; $labels['countequals'] = 'penghitungan sama dengan'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'nilai lebih besar dari'; $labels['valueisgreaterthanequal'] = 'nilai lebih besar dari atau sama dengan'; $labels['valueislessthan'] = 'nilai lebih kecil dari'; $labels['valueislessthanequal'] = 'nilai lebih kecil dari atau sama dengan'; $labels['valueequals'] = 'nilai sama dengan'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Atur tanda pada pesan'; $labels['addflags'] = 'Berikan tanda pada pesan'; $labels['removeflags'] = 'Cabut tanda dari pesan'; @@ -122,22 +113,6 @@ $labels['filtercreate'] = 'Buat filter'; $labels['usedata'] = 'Gunakan data berikut dalam filter:'; $labels['nextstep'] = 'Langkah Selanjutnya'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Pilihan lanjutan'; $labels['body'] = 'Isi'; $labels['address'] = 'alamat'; @@ -157,38 +132,26 @@ $labels['default'] = 'standar'; $labels['octet'] = 'ketat (oktet)'; $labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; $labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Error pada server tak dikenali.'; $messages['filterconnerror'] = 'Tidak dapat menyambung ke server.'; -$messages['filterdeleteerror'] = 'Tidak bisa menghapus penyaringan. Terjadi error pada server.'; $messages['filterdeleted'] = 'Penyaringan berhasil dihapus.'; $messages['filtersaved'] = 'Penyaringan berhasil disimpan.'; -$messages['filtersaveerror'] = 'Tidak bisa menyimpan penyaringan. Terjadi error pada server.'; $messages['filterdeleteconfirm'] = 'Yakin untuk menghapus penyaringan terpilih?'; $messages['ruledeleteconfirm'] = 'Yakin untuk menghapus aturan terpilih?'; $messages['actiondeleteconfirm'] = 'Yakin untuk menghapus tindakan terpilih?'; $messages['forbiddenchars'] = 'Karakter terlarang pada isian.'; $messages['cannotbeempty'] = 'Isian tidak bisa kosong.'; $messages['ruleexist'] = 'Penyaringan dengan nama tersebut sudah ada.'; -$messages['setactivateerror'] = 'Tidak bisa menghidupkan kumpulan penyaringan terpilih. Terjadi error pada server.'; -$messages['setdeactivateerror'] = 'Tidak bisa mematikan kumpulan penyaringan terpilih. Terjadi error pada server.'; -$messages['setdeleteerror'] = 'Tidak bisa menghapus kumpulan penyaringan terpilih. Terjadi error pada server.'; $messages['setactivated'] = 'Kumpulan penyaringan berhasil dihidupkan.'; $messages['setdeactivated'] = 'Kumpulan penyaringan berhasil dimatikan.'; $messages['setdeleted'] = 'Kumpulan penyaringan berhasil dihapus.'; $messages['setdeleteconfirm'] = 'Yakin ingin menghapus kumpulan penyaringan terpilih?'; -$messages['setcreateerror'] = 'Tidak bisa membuat kumpulan penyaringan. Terjadi galat pada server.'; $messages['setcreated'] = 'Kumpulan penyaringan berhasul dibuat.'; -$messages['activateerror'] = 'Tidak bisa menghidupkan penyaringan terpilih. terjadi galat pada server.'; -$messages['deactivateerror'] = 'Tidak bisa mematikan penyaringan terpilih. Terjadi galat pada server.'; $messages['deactivated'] = 'Berhasil menghidupkan penyaringan.'; $messages['activated'] = 'Berhasil mematikan penyaringan.'; $messages['moved'] = 'Berhasil memindahkan penyaringan.'; -$messages['moveerror'] = 'Tidak bisa memindahkan penyaringan terpilih. Terjadi error pada server.'; $messages['nametoolong'] = 'Nama terlalu panjang.'; $messages['namereserved'] = 'Nama sudah terpesan.'; $messages['setexist'] = 'Kumpulan sudah ada.'; $messages['nodata'] = 'Setidaknya satu posisi harus dipilih!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/it_IT.inc b/plugins/managesieve/localization/it_IT.inc index 6042bf8e0..9de758fa5 100644 --- a/plugins/managesieve/localization/it_IT.inc +++ b/plugins/managesieve/localization/it_IT.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtri'; $labels['managefilters'] = 'Gestione dei filtri per la posta in arrivo'; $labels['filtername'] = 'Nome del filtro'; @@ -161,31 +159,22 @@ $labels['index'] = 'indice:'; $labels['indexlast'] = 'indietro'; $messages['filterunknownerror'] = 'Errore sconosciuto del server'; $messages['filterconnerror'] = 'Collegamento al server managesieve fallito'; -$messages['filterdeleteerror'] = 'Eliminazione del filtro fallita. Si è verificato un errore nel server'; $messages['filterdeleted'] = 'Filtro eliminato con successo'; $messages['filtersaved'] = 'Filtro salvato con successo'; -$messages['filtersaveerror'] = 'Salvataggio del filtro fallito. Si è verificato un errore nel server'; $messages['filterdeleteconfirm'] = 'Vuoi veramente eliminare il filtro selezionato?'; $messages['ruledeleteconfirm'] = 'Sei sicuro di voler eliminare la regola selezionata?'; $messages['actiondeleteconfirm'] = 'Sei sicuro di voler eliminare l\'azione selezionata?'; $messages['forbiddenchars'] = 'Caratteri non consentiti nel campo'; $messages['cannotbeempty'] = 'Il campo non può essere vuoto'; $messages['ruleexist'] = 'Esiste già un filtro con questo nome'; -$messages['setactivateerror'] = 'Impossibile attivare il filtro. Errore del server'; -$messages['setdeactivateerror'] = 'Impossibile disattivare il filtro. Errore del server'; -$messages['setdeleteerror'] = 'Impossibile cancellare il filtro. Errore del server'; $messages['setactivated'] = 'Filtro attivato'; $messages['setdeactivated'] = 'Filtro disattivato'; $messages['setdeleted'] = 'Filtro cancellato'; $messages['setdeleteconfirm'] = 'Sei sicuro di voler cancellare il gruppo di filtri'; -$messages['setcreateerror'] = 'Impossibile creare il gruppo. Errore del server'; $messages['setcreated'] = 'Gruppo di filtri creato'; -$messages['activateerror'] = 'impossibile selezionare il filtro (server error)'; -$messages['deactivateerror'] = 'impossibile disabilitare il filtro (server error)'; $messages['deactivated'] = 'filtro abilitato'; $messages['activated'] = 'filtro disabilitato'; $messages['moved'] = 'filtro spostato'; -$messages['moveerror'] = 'impossibile spostare il filtro (server error)'; $messages['nametoolong'] = 'Impossibile creare il gruppo: Nome troppo lungo'; $messages['namereserved'] = 'nome riservato'; $messages['setexist'] = 'Il gruppo esiste già'; diff --git a/plugins/managesieve/localization/ja_JP.inc b/plugins/managesieve/localization/ja_JP.inc index 52cb89ac7..1fff7e333 100644 --- a/plugins/managesieve/localization/ja_JP.inc +++ b/plugins/managesieve/localization/ja_JP.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'フィルター'; $labels['managefilters'] = '受信メールのフィルターを管理'; $labels['filtername'] = 'フィルター名'; @@ -161,34 +159,34 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = '不明なサーバーのエラーです。'; $messages['filterconnerror'] = 'サーバに接続できません。'; -$messages['filterdeleteerror'] = 'フィルターを削除できませんでした。サーバーでエラーが発生しました。'; +$messages['filterdeleteerror'] = 'フィルターを削除できません。サーバーでエラーが発生しました。'; $messages['filterdeleted'] = 'フィルターを削除しました。'; $messages['filtersaved'] = 'フィルターを保存しました。'; -$messages['filtersaveerror'] = 'フィルターの保存できませんでした。サーバーでエラーが発生しました。'; +$messages['filtersaveerror'] = 'フィルターの保存できません。サーバーでエラーが発生しました。'; $messages['filterdeleteconfirm'] = '本当に選択したフィルターを削除しますか?'; $messages['ruledeleteconfirm'] = '本当に選択したルールを削除しますか?'; $messages['actiondeleteconfirm'] = '本当に選択した操作を削除しますか?'; $messages['forbiddenchars'] = '項目に禁止している文字が含まれています。'; $messages['cannotbeempty'] = '項目は空欄にできません。'; $messages['ruleexist'] = '指定した名前のフィルターが既に存在します。'; -$messages['setactivateerror'] = '選択したフィルターセットを有効にできませんでした。サーバーでエラーが発生しました。'; -$messages['setdeactivateerror'] = '選択したフィルターセットを無効にできませんでした。サーバーでエラーが発生しました。'; -$messages['setdeleteerror'] = '選択したフィルターセットを削除できませんでした。サーバーでエラーが発生しました。'; +$messages['setactivateerror'] = '選択したフィルターセットを有効にできません。サーバーでエラーが発生しました。'; +$messages['setdeactivateerror'] = '選択したフィルターセットを無効にできません。サーバーでエラーが発生しました。'; +$messages['setdeleteerror'] = '選択したフィルターセットを削除できません。サーバーでエラーが発生しました。'; $messages['setactivated'] = 'フィルターセットを有効にしました。'; $messages['setdeactivated'] = 'フィルターセットを無効にしました。'; $messages['setdeleted'] = 'フィルターセットを削除しました。'; $messages['setdeleteconfirm'] = '本当に選択したフィルターセットを削除しますか?'; -$messages['setcreateerror'] = 'フィルターセットを作成できませんでした。サーバーでエラーが発生しました。'; +$messages['setcreateerror'] = 'フィルターセットを作成できません。サーバーでエラーが発生しました。'; $messages['setcreated'] = 'フィルターセットを作成しました。'; -$messages['activateerror'] = '選択したフィルターを有効にできませんでした。サーバーでエラーが発生しました。'; -$messages['deactivateerror'] = '選択したフィルターを無効にできませんでした。サーバーでエラーが発生しました。'; +$messages['activateerror'] = '選択したフィルターを有効にできません。サーバーでエラーが発生しました。'; +$messages['deactivateerror'] = '選択したフィルターを無効にできません。サーバーでエラーが発生しました。'; $messages['deactivated'] = 'フィルターを有効にしました。'; $messages['activated'] = 'フィルターを無効にしました。'; $messages['moved'] = 'フィルターを移動しました。'; -$messages['moveerror'] = '選択したフィルターを移動できませんでした。サーバーでエラーが発生しました。'; +$messages['moveerror'] = 'Unable to move selected filter. Server error occurred.'; $messages['nametoolong'] = '名前が長すぎます。'; $messages['namereserved'] = '予約されている名前です。'; $messages['setexist'] = 'フィルターセットが既に存在します。'; $messages['nodata'] = '少なくとも1つの場所を選択しなければなりません!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; +$messages['invaliddateformat'] = '無効な日付または日付部分の書式'; ?> diff --git a/plugins/managesieve/localization/ko_KR.inc b/plugins/managesieve/localization/ko_KR.inc index 332596d4e..b552fa9ac 100644 --- a/plugins/managesieve/localization/ko_KR.inc +++ b/plugins/managesieve/localization/ko_KR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = '필터'; $labels['managefilters'] = '수신 메일 필터 관리'; $labels['filtername'] = '필터명'; @@ -56,7 +54,6 @@ $labels['add'] = '추가'; $labels['del'] = '삭제'; $labels['sender'] = '발신인'; $labels['recipient'] = '수신인'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = '메시지 발신 주기 (일):'; $labels['vacationinterval'] = '메시지 발신 주기:'; $labels['days'] = '일'; @@ -161,31 +158,22 @@ $labels['index'] = '색인:'; $labels['indexlast'] = '역방향'; $messages['filterunknownerror'] = '알수 없는 서버 오류.'; $messages['filterconnerror'] = '서버에 연결할 수 없음.'; -$messages['filterdeleteerror'] = '필터를 삭제할 수 없음. 서버 오류가 발생함.'; $messages['filterdeleted'] = '필터가 성공적으로 삭제됨.'; $messages['filtersaved'] = '필터가 성공적으로 저장됨.'; -$messages['filtersaveerror'] = '필터를 저장할 수 없음. 서버 오류가 발생함.'; $messages['filterdeleteconfirm'] = '정말로 선택한 필터를 삭제하시겠습니까?'; $messages['ruledeleteconfirm'] = '정말로 선택한 규칙을 삭제하시겠습니까?'; $messages['actiondeleteconfirm'] = '정말로 선택한 동작을 삭제하시겠습니까?'; $messages['forbiddenchars'] = '필드에 금지된 문자가 존재함.'; $messages['cannotbeempty'] = '필드는 비워둘 수 없음.'; $messages['ruleexist'] = '지정한 이름의 필터가 이미 존재함.'; -$messages['setactivateerror'] = '선택한 필터 세트를 활성화 할 수 없음. 서버 오류가 발생함.'; -$messages['setdeactivateerror'] = '선택한 필터 세트를 비활성화 할 수 없음. 서버 오류가 발생함.'; -$messages['setdeleteerror'] = '선택한 필터 세트를 삭제할 수 없음. 서버 오류가 발생함.'; $messages['setactivated'] = '필터 세트가 성공적으로 활성화됨.'; $messages['setdeactivated'] = '필터 세트가 성공적으로 비활성화됨.'; $messages['setdeleted'] = '필터 세트가 성공적으로 삭제됨.'; $messages['setdeleteconfirm'] = '정말로 선택한 필터 세트를 삭제하시겠습니까?'; -$messages['setcreateerror'] = '필터 세트를 생성할 수 없음. 서버 오류가 발생함.'; $messages['setcreated'] = '필터 세트가 성공적으로 생성됨.'; -$messages['activateerror'] = '선택한 필터를 활성화할 수 없음. 서버 오류가 발생함.'; -$messages['deactivateerror'] = '선택한 필터를 비활성화할 수 없음. 서버 오류가 발생함.'; $messages['deactivated'] = '필터가 성공적으로 비활성화됨.'; $messages['activated'] = '필터가 성공적으로 활성화됨.'; $messages['moved'] = '필터가 성공적으로 이동함.'; -$messages['moveerror'] = '선택한 필터를 이동할 수 없음. 서버 오류가 발생함.'; $messages['nametoolong'] = '이름이 너무 김.'; $messages['namereserved'] = '예약된 이름.'; $messages['setexist'] = '세트가 이미 존재함.'; diff --git a/plugins/managesieve/localization/lb_LU.inc b/plugins/managesieve/localization/lb_LU.inc index 9977d1d0d..621fff831 100644 --- a/plugins/managesieve/localization/lb_LU.inc +++ b/plugins/managesieve/localization/lb_LU.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filteren'; $labels['managefilters'] = 'Filtere geréieren fir Mailen déi erakommen'; $labels['filtername'] = 'Numm vum Filter'; @@ -34,10 +32,6 @@ $labels['filteris'] = 'ass gläich'; $labels['filterisnot'] = 'ass net gläich'; $labels['filterexists'] = 'existéiert'; $labels['filternotexists'] = 'existéiert net'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; $labels['filterunder'] = 'ënner'; $labels['filterover'] = 'iwwer'; $labels['addrule'] = 'Reegel dobäisetzen'; @@ -48,147 +42,8 @@ $labels['messagecopyto'] = 'Message kopéieren an'; $labels['messagesendcopy'] = 'Kopie vum Message schécken un'; $labels['messagereply'] = 'Mat dësem Message äntweren'; $labels['messagedelete'] = 'Message läschen'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; -$labels['messagesactions'] = '...execute the following actions:'; $labels['add'] = 'Dobäisetzen'; $labels['del'] = 'Läschen'; $labels['sender'] = 'Ofsender'; $labels['recipient'] = 'Empfänger'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; -$labels['vacationsubject'] = 'Message subject:'; -$labels['rulestop'] = 'Stop evaluating rules'; -$labels['enable'] = 'Enable/Disable'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; -$labels['active'] = 'active'; -$labels['none'] = 'none'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; -$messages['nametoolong'] = 'Name too long.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/lt_LT.inc b/plugins/managesieve/localization/lt_LT.inc index 8a2dfa6ac..5dc81afc6 100644 --- a/plugins/managesieve/localization/lt_LT.inc +++ b/plugins/managesieve/localization/lt_LT.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtrai'; $labels['managefilters'] = 'Tvarkyti gaunamų laiškų filtrus'; $labels['filtername'] = 'Filtro pavadinimas'; @@ -48,8 +46,6 @@ $labels['messagecopyto'] = 'Kopijuoti laišką į'; $labels['messagesendcopy'] = 'Nusiųsti laiško kopiją'; $labels['messagereply'] = 'Atsakyti laišku'; $labels['messagedelete'] = 'Pašalinti laišką'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Gaunamiems laiškams:'; $labels['messagesactions'] = '…vykdyti šiuos veiksmus:'; $labels['add'] = 'Pridėti'; @@ -161,31 +157,22 @@ $labels['index'] = 'turinys:'; $labels['indexlast'] = 'atbulai'; $messages['filterunknownerror'] = 'Nežinoma serverio klaida.'; $messages['filterconnerror'] = 'Neįmanoma užmegzti ryšio su serveriu.'; -$messages['filterdeleteerror'] = 'Filtro panaikinti neįmanoma. Įvyko serverio klaida.'; $messages['filterdeleted'] = 'Filtras panaikintas sėkmingai.'; $messages['filtersaved'] = 'Filtras sėkmingai išsaugotas'; -$messages['filtersaveerror'] = 'Filtro išsaugoti neįmanoma. Įvyko serverio klaida.'; $messages['filterdeleteconfirm'] = 'Ar jūs esate įsitikinęs, jog norite panaikinti pasirinktus filtrus(-ą)?'; $messages['ruledeleteconfirm'] = 'Ar jūs įsitikinęs, jog norite panaikinti pasirinktą taisyklę?'; $messages['actiondeleteconfirm'] = 'Ar jūs įsitikinęs, jog norite panaikinti pasirinktą veiksmą?'; $messages['forbiddenchars'] = 'Laukelyje yra draudžiamų simbolių.'; $messages['cannotbeempty'] = 'Laukelis negali būti tuščias'; $messages['ruleexist'] = 'Filtras tokiu vardu jau yra.'; -$messages['setactivateerror'] = 'Neįmanoma aktyvuoti pasirinkto filtrų rinkinio. Įvyko serverio klaida.'; -$messages['setdeactivateerror'] = 'Neįmanoma deaktyvuoti pasirinkto filtrų rinkinio. Įvyko serverio klaida.'; -$messages['setdeleteerror'] = 'Neįmanoma panaikinti pasirinkto filtrų rinkinio. Įvyko serverio klaida.'; $messages['setactivated'] = 'Filtrų rinkinys sėkmingai aktyvuotas.'; $messages['setdeactivated'] = 'Filtrų rinkinys sėkmingai deaktyvuotas.'; $messages['setdeleted'] = 'Filtrų rinkinys sėkmingai panaikintas.'; $messages['setdeleteconfirm'] = 'Ar jūs esate tikri, jog norite panaikinti pasirinktą filtrų rinkinį?'; -$messages['setcreateerror'] = 'Neįmanoma sukurti filtrų rinkinio. Įvyko serverio klaida.'; $messages['setcreated'] = 'Filtrų rinkinys sėkmingai sukurtas.'; -$messages['activateerror'] = 'Neįmanoma įjungti pasirinktų filtrų(-o). Įvyko serverio klaida.'; -$messages['deactivateerror'] = 'Neįmanoma išjungti pasirinktų filtrų(-o). Įvyko serverio klaida.'; $messages['deactivated'] = 'Filtras(-as) sėkmingai išjungti.'; $messages['activated'] = 'Filtras(-as) sėkmingai įjungti.'; $messages['moved'] = 'Filtrai perkelti sėkmingai.'; -$messages['moveerror'] = 'Pasirinkto filtro perkelti neįmanoma. Įvyko serverio klaida.'; $messages['nametoolong'] = 'Vardas per ilgas.'; $messages['namereserved'] = 'Rezervuotas vardas.'; $messages['setexist'] = 'Rinkinys jau yra sukurtas.'; diff --git a/plugins/managesieve/localization/lv_LV.inc b/plugins/managesieve/localization/lv_LV.inc index c577e7c50..73aa76573 100644 --- a/plugins/managesieve/localization/lv_LV.inc +++ b/plugins/managesieve/localization/lv_LV.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Vēstuļu filtri'; $labels['managefilters'] = 'Pārvaldīt ienākošo vēstuļu filtrus'; $labels['filtername'] = 'Filtra nosaukums'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Pārsūtīt vēstules kopiju uz'; $labels['messagereply'] = 'Atbildēt ar vēstuli'; $labels['messagedelete'] = 'Dzēst vēstuli'; $labels['messagediscard'] = 'Dzēst vēstuli un atbildēt'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Ienākošajām vēstulēm:'; $labels['messagesactions'] = '...izpildīt sekojošās darbības:'; $labels['add'] = 'Pievienot'; $labels['del'] = 'Dzēst'; $labels['sender'] = 'Sūtītājs'; $labels['recipient'] = 'Saņēmējs'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Cik dienu laikā vienam un tam pašam sūtītājam neatbildēt atkārtoti (piem., 7):'; $labels['vacationinterval'] = 'Cik bieži sūtīt vēstules:'; $labels['days'] = 'dienas'; @@ -161,31 +157,22 @@ $labels['index'] = 'indekss:'; $labels['indexlast'] = '"backwards"'; $messages['filterunknownerror'] = 'Nezināma servera kļūda.'; $messages['filterconnerror'] = 'Neizdevās pieslēgties ManageSieve serverim.'; -$messages['filterdeleteerror'] = 'Neizdevās izdzēst filtru - servera kļūda.'; $messages['filterdeleted'] = 'Filtrs veiksmīgi izdzēsts.'; $messages['filtersaved'] = 'Filtrs veiksmīgi saglabāts.'; -$messages['filtersaveerror'] = 'Neizdevās saglabāt filtru - servera kļūda.'; $messages['filterdeleteconfirm'] = 'Vai Jūs tiešām vēlaties dzēst atzīmēto filtru?'; $messages['ruledeleteconfirm'] = 'Vai Jūs tiešām vēlaties dzēst atzīmēto nosacījumu?'; $messages['actiondeleteconfirm'] = 'Vai Jūs tiešām vēlaties dzēst atzīmēto darbību?'; $messages['forbiddenchars'] = 'Lauks satur aizliegtus simbolus.'; $messages['cannotbeempty'] = 'Lauks nedrīkst būt tukšs.'; $messages['ruleexist'] = 'Filtrs ar tādu nosaukumu jau pastāv.'; -$messages['setactivateerror'] = 'Neizdevās aktivizēt atzīmēto filtru kopu - servera kļūda.'; -$messages['setdeactivateerror'] = 'Neizdevās deaktivizēt atzīmēto filtru kopu - servera kļūda.'; -$messages['setdeleteerror'] = 'Neizdevās izdzēst atzīmēto filtru kopu - servera kļūda.'; $messages['setactivated'] = 'Filtru kopa veiksmīgi aktivizēta.'; $messages['setdeactivated'] = 'Filtru kopa veiksmīgi deaktivizēta.'; $messages['setdeleted'] = 'Filtru kopa veiksmīgi izdzēsta.'; $messages['setdeleteconfirm'] = 'Vai tiešām Jūs vēlaties dzēst atzīmēto filtru kopu?'; -$messages['setcreateerror'] = 'Neizdevās izveidot filtru kopu - servera kļūda.'; $messages['setcreated'] = 'Filtru kopa veiksmīgi izveidota.'; -$messages['activateerror'] = 'Nav iespējams ieslēgt izvēlēto(s) filtru(s) - servera kļūda.'; -$messages['deactivateerror'] = 'Nav iespējams atslēgt izvēlēto(s) filtru(s) - servera kļūda.'; $messages['deactivated'] = 'Filtrs(i) veiksmīgi atslēgts(i).'; $messages['activated'] = 'Filtrs(i) veiksmīgi ieslēgts(i).'; $messages['moved'] = 'Filtrs veiksmīgi pārvietots.'; -$messages['moveerror'] = 'Nav iespējams pārvietot izvēlēto filtru - servera kļūda.'; $messages['nametoolong'] = 'Neizdevās izveidot filtru kopu. Pārāk garš kopas nosaukums.'; $messages['namereserved'] = 'Rezervētais nosaukums.'; $messages['setexist'] = 'Kopa jau eksistē.'; diff --git a/plugins/managesieve/localization/ml_IN.inc b/plugins/managesieve/localization/ml_IN.inc index bd4b6f8c1..4dac39417 100644 --- a/plugins/managesieve/localization/ml_IN.inc +++ b/plugins/managesieve/localization/ml_IN.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'അരിപ്പകള്‍'; $labels['managefilters'] = 'അകത്തോട്ടുള്ള ഇമെയില്‍ അരിപ്പകള്‍ ക്രമീകരിക്കുക'; $labels['filtername'] = 'അരിപ്പയുടെ പേര്'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'സന്ദേശത്തിന്റെ പക $labels['messagereply'] = 'സന്ദേശം വെച്ച് മറുപടി അയക്കു'; $labels['messagedelete'] = 'സന്ദേശം മായ്ക്കു'; $labels['messagediscard'] = 'സന്ദേശത്തോടെ നിരാകരിക്കുക'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'ആഗമന സന്ദേശങ്ങള്‍ക്ക്:'; $labels['messagesactions'] = '...ഈ പ്രവര്‍ത്തനങ്ങള്‍ ചെയ്യുക:'; $labels['add'] = 'ചേര്‍ക്കു'; $labels['del'] = 'നീക്കം ചെയ്യുക'; $labels['sender'] = 'അയചയാള്‍'; $labels['recipient'] = 'സ്വീകര്‍ത്താവ്'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'എത്ര ഭിവസം കൂടുമ്പോള്‍ സന്ദേശം അയക്കണം:'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'സന്ദേശത്തിന്റെ ഉള്ളടക്കം (അവധിയുടെ കാരണം):'; $labels['vacationsubject'] = 'സന്ദേശത്തിന്റെ വിഷയം:'; $labels['rulestop'] = 'നിയമങ്ങള്‍ വിലയിരുത്തുന്നത് നിര്‍ത്തുക'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'എണ്ണം ഇതിനെക്ക $labels['countislessthan'] = 'എണ്ണം ഇതിനെക്കാള്‍ കുറവ്'; $labels['countislessthanequal'] = 'എണ്ണം ഇതിനെക്കാള്‍ കൂറവ് ഇല്ലെങ്കില്‍ സമം'; $labels['countequals'] = 'എണ്ണം ഇതിനോട് സമം'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'മൂല്യം ഇതിനെക്കാള്‍ കുടുതല്‍'; $labels['valueisgreaterthanequal'] = 'മുല്യം ഇതിനെക്കാള്‍ കൂടുതല്‍ ഇല്ലെങ്കില്‍ സമം'; $labels['valueislessthan'] = 'മൂല്യം ഇതിനെക്കാള്‍ കുറവ്'; $labels['valueislessthanequal'] = 'മൂല്യം ഇതിനെക്കാള്‍ കൂറവ് ഇല്ലെങ്കില്‍ തുല്യം'; $labels['valueequals'] = 'മൂല്യം ഇതിനോട് സമം'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'സന്ദേശത്തില്‍ അടയാളമിടുക'; $labels['addflags'] = 'സന്ദേശത്തില്‍ അടയാളം ചേര്‍ക്കുക'; $labels['removeflags'] = 'സന്ദേശത്തില്‍ നിന്നും അടയാളം മാറ്റുക'; @@ -99,45 +90,10 @@ $labels['flagdeleted'] = 'നീക്കം ചെയ്തവ'; $labels['flaganswered'] = 'മറുപടി നല്‍കിയവ'; $labels['flagflagged'] = 'അടയാളപ്പെടുത്തിയവ'; $labels['flagdraft'] = 'കരട്'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; $labels['filtercreate'] = 'അരിപ്പ ഉണ്ടാക്കുക'; $labels['usedata'] = 'ഈ വിവരങ്ങള്‍ അരിപ്പയില്‍ ഉപയോഗിക്കുക:'; $labels['nextstep'] = 'അടുത്ത പടി'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'വിപുലീക്രിതമായ ക്രമീകരണങ്ങള്‍'; $labels['body'] = 'ഉള്ളടക്കം'; $labels['address'] = 'മേല്‍വിലാസം'; @@ -157,38 +113,26 @@ $labels['default'] = 'സഹജമായ'; $labels['octet'] = 'കര്‍ശനം (octet)'; $labels['asciicasemap'] = 'വലിയ-ചെറിയക്ഷരങ്ങള്‍ തമ്മില്‍ വ്യത്യാസമില്ലാത്ത (ascii-casemap)'; $labels['asciinumeric'] = 'സംഖ്യകള്‍ (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'അജ്ഞാതമായ സെര്‍വ്വര്‍ പിശക്.'; $messages['filterconnerror'] = 'സെര്‍വ്വറുമായി ബന്ധപ്പെടാന്‍ സാധിക്കുന്നില്ല.'; -$messages['filterdeleteerror'] = 'അരിപ്പ മായ്ക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; $messages['filterdeleted'] = 'അരിപ്പ വിജകരമായി മായ്ച്ചു.'; $messages['filtersaved'] = 'അരിപ്പ വിജകരമായി സൂക്ഷിച്ചു.'; -$messages['filtersaveerror'] = 'അരിപ്പ സൂക്ഷിക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; $messages['filterdeleteconfirm'] = 'തെരഞ്ഞെടുത്ത അരിപ്പ നീക്കം ചെയ്യണമെന്ന് ഉറപ്പാണോ?'; $messages['ruledeleteconfirm'] = 'തെരഞ്ഞെടുത്ത നിയമം നീക്കം ചെയ്യണമെന്ന് ഉറപ്പാണോ?'; $messages['actiondeleteconfirm'] = 'തെരഞ്ഞെടുത്ത പ്രവര്‍ത്തി നീക്കം ചെയ്യണമെന്ന് ഉറപ്പാണോ?'; $messages['forbiddenchars'] = 'ഫില്‍ഡില്‍ സാധുവല്ലാത്ത അക്ഷരങ്ങള്‍.'; $messages['cannotbeempty'] = 'ഫീല്‍ഡ് ശൂന്യമാകാന്‍ പാടില്ല.'; $messages['ruleexist'] = 'ഈ പേരിലുള്ള അരിപ്പ ഇപ്പോള്‍ തന്നെ ഉണ്ട്.'; -$messages['setactivateerror'] = 'അരിപ്പയുടെ കൂട്ടത്തെ പ്രവര്‍ത്തനസജ്ജമാക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; -$messages['setdeactivateerror'] = 'അരിപ്പയുടെ കൂട്ടത്തെ പ്രവര്‍ത്തനരഹിതമാക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; -$messages['setdeleteerror'] = 'തെരഞ്ഞെടുത്ത അരിപ്പയുടെ കൂട്ടത്തെ മായ്ക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; $messages['setactivated'] = 'അരിപ്പകളുടെ കൂട്ടത്തെ വിജയകരമായി പ്രവര്‍ത്തനസജ്ജമാക്കി.'; $messages['setdeactivated'] = 'അരിപ്പകളുടെ കൂട്ടത്തെ വിജയകരമായി പ്രവര്‍ത്തനരഹിതമാക്കി.'; $messages['setdeleted'] = 'അരിപ്പകളുടെ കൂട്ടത്തെ വിജയകരമായി മായ്ച്ചു.'; $messages['setdeleteconfirm'] = 'തെരഞ്ഞെടുത്ത അരിപ്പകളുടെ കൂട്ടത്തെ നീക്കം ചെയ്യണമെന്ന് ഉറപ്പാണോ?'; -$messages['setcreateerror'] = 'അരിപ്പയുടെ കൂട്ടത്തെ നിര്‍മ്മിക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; $messages['setcreated'] = 'അരിപ്പകളുടെ കൂട്ടത്തെ വിജയകരമായി നിര്‍മ്മിച്ചു.'; -$messages['activateerror'] = 'അരിപ്പ (കള്‍) പ്രവര്‍ത്തനസജ്ജം ആക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം!'; -$messages['deactivateerror'] = 'അരിപ്പ (കള്‍) നിര്‍വീര്യം ആക്കാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം!'; $messages['deactivated'] = 'അരിപ്പ വിജകരമായി പ്രവര്‍ത്തനസജ്ജമാക്കി.'; $messages['activated'] = 'അരിപ്പകള്‍ നിര്‍വീര്യം ആക്കപ്പെട്ടിരിക്കുന്നു'; $messages['moved'] = 'അരിപ്പ വിജകരമായി മാറ്റി.'; -$messages['moveerror'] = 'തെരഞ്ഞെടുത്ത അരിപ്പ മാറ്റാന്‍ സാധിച്ചില്ല. സേവകനില്‍ കുഴപ്പം.'; $messages['nametoolong'] = 'പേരിന് നീളം കൂടുതല്‍.'; $messages['namereserved'] = 'നീക്കിവെച്ച വാക്ക്.'; $messages['setexist'] = 'കൂട്ടം നേരത്തെ തന്നെ ഉണ്ട്.'; $messages['nodata'] = 'ഒരു സ്ഥാനമെങ്കിലും തെരഞ്ഞെടുക്കണം!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/mr_IN.inc b/plugins/managesieve/localization/mr_IN.inc index a8b046e63..88edb92e4 100644 --- a/plugins/managesieve/localization/mr_IN.inc +++ b/plugins/managesieve/localization/mr_IN.inc @@ -15,180 +15,20 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'चाळण्या'; -$labels['managefilters'] = 'Manage incoming mail filters'; -$labels['filtername'] = 'Filter name'; -$labels['newfilter'] = 'New filter'; -$labels['filteradd'] = 'Add filter'; -$labels['filterdel'] = 'Delete filter'; $labels['moveup'] = 'वर हलवा'; $labels['movedown'] = 'खाली हलवा'; $labels['filterallof'] = 'खालील सर्व नियम जुळत आहेत'; -$labels['filteranyof'] = 'matching any of the following rules'; $labels['filterany'] = 'सर्व संदेश'; -$labels['filtercontains'] = 'contains'; -$labels['filternotcontains'] = 'not contains'; $labels['filteris'] = 'च्या बरोबर आहे'; $labels['filterisnot'] = 'च्या बरोबर नाही'; $labels['filterexists'] = 'अस्तित्वात आहे'; $labels['filternotexists'] = 'अस्तित्वात नाही'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; $labels['filterunder'] = 'खाली'; $labels['filterover'] = 'वरती'; -$labels['addrule'] = 'Add rule'; -$labels['delrule'] = 'Delete rule'; -$labels['messagemoveto'] = 'Move message to'; -$labels['messageredirect'] = 'Redirect message to'; -$labels['messagecopyto'] = 'Copy message to'; -$labels['messagesendcopy'] = 'Send message copy to'; -$labels['messagereply'] = 'Reply with message'; $labels['messagedelete'] = 'संदेश काढून टाका'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; $labels['messagesactions'] = 'खालील कृती आमलात आणा :'; $labels['add'] = 'समावेश करा'; $labels['del'] = 'नष्ट करा'; $labels['sender'] = 'प्रेषक'; -$labels['recipient'] = 'Recipient'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; -$labels['vacationsubject'] = 'Message subject:'; -$labels['rulestop'] = 'Stop evaluating rules'; -$labels['enable'] = 'Enable/Disable'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; -$labels['active'] = 'active'; -$labels['none'] = 'none'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; -$messages['nametoolong'] = 'Name too long.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/nb_NO.inc b/plugins/managesieve/localization/nb_NO.inc index 208ed985b..e0a34483f 100644 --- a/plugins/managesieve/localization/nb_NO.inc +++ b/plugins/managesieve/localization/nb_NO.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtre'; $labels['managefilters'] = 'Rediger filter for innkommende e-post'; $labels['filtername'] = 'Filternavn'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = 'Send en kopi av meldingen til'; $labels['messagereply'] = 'Svar med melding'; $labels['messagedelete'] = 'Slett melding'; $labels['messagediscard'] = 'Avvis med melding'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'For innkommende e-post'; $labels['messagesactions'] = '... gjør følgende:'; $labels['add'] = 'Legg til'; $labels['del'] = 'Slett'; $labels['sender'] = 'Avsender'; $labels['recipient'] = 'Mottaker'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Periode mellom meldinger (i dager):'; $labels['vacationinterval'] = 'Periode mellom meldinger:'; $labels['days'] = 'dager'; @@ -161,31 +157,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'baklengs'; $messages['filterunknownerror'] = 'Ukjent problem med tjener.'; $messages['filterconnerror'] = 'Kunne ikke koble til tjeneren.'; -$messages['filterdeleteerror'] = 'Kunne ikke slette filter. Det dukket opp en feil på tjeneren.'; $messages['filterdeleted'] = 'Filteret er blitt slettet.'; $messages['filtersaved'] = 'Filteret er blitt lagret.'; -$messages['filtersaveerror'] = 'Kunne ikke lagre filteret. Det dukket opp en feil på tjeneren.'; $messages['filterdeleteconfirm'] = 'Vil du virkelig slette det valgte filteret?'; $messages['ruledeleteconfirm'] = 'Er du sikker på at du vil slette valgte regel?'; $messages['actiondeleteconfirm'] = 'Er du sikker på at du vil slette valgte hendelse?'; $messages['forbiddenchars'] = 'Ugyldige tegn i felt.'; $messages['cannotbeempty'] = 'Feltet kan ikke stå tomt.'; $messages['ruleexist'] = 'Det finnes allerede et filter med dette navnet.'; -$messages['setactivateerror'] = 'Kunne ikke aktivere det valgte filtersettet. Det oppsto en tjenerfeil.'; -$messages['setdeactivateerror'] = 'Kunne ikke deaktivere det valgte filtersettet. Det oppsto en tjenerfeil.'; -$messages['setdeleteerror'] = 'Kunne ikke slette det valgte filtersettet. Det oppsto en tjenerfeil.'; $messages['setactivated'] = 'Filtersett aktivert.'; $messages['setdeactivated'] = 'Filtersett deaktivert.'; $messages['setdeleted'] = 'Filtersett slettet.'; $messages['setdeleteconfirm'] = 'Er du sikker på at du vil slette det valgte filtersettet?'; -$messages['setcreateerror'] = 'Kunne ikke opprette filtersettet. Det oppsto en tjenerfeil.'; $messages['setcreated'] = 'Filtersett opprettet.'; -$messages['activateerror'] = 'Kunne ikke skru på valgte filter. Det oppsto en tjenerfeil.'; -$messages['deactivateerror'] = 'Kunne ikke skru av valgte filter. Det oppsto en tjenerfeil.'; $messages['deactivated'] = 'Filter skrudd på.'; $messages['activated'] = 'Filter skrudd av.'; $messages['moved'] = 'Filter ble flyttet.'; -$messages['moveerror'] = 'Kunne ikke flytte valgte filter. Det oppsto en tjenerfeil.'; $messages['nametoolong'] = 'Navnet er for langt.'; $messages['namereserved'] = 'Navnet er reservert.'; $messages['setexist'] = 'Settet eksisterer allerede.'; diff --git a/plugins/managesieve/localization/nl_NL.inc b/plugins/managesieve/localization/nl_NL.inc index 42bfd737f..97a4e1685 100644 --- a/plugins/managesieve/localization/nl_NL.inc +++ b/plugins/managesieve/localization/nl_NL.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filters'; $labels['managefilters'] = 'Beheer filters voor inkomende e-mail'; $labels['filtername'] = 'Filternaam'; @@ -65,18 +63,18 @@ $labels['vacationreason'] = 'Bericht (vakantiereden):'; $labels['vacationsubject'] = 'Onderwerp:'; $labels['rulestop'] = 'Stop met regels uitvoeren'; $labels['enable'] = 'In-/uitschakelen'; -$labels['filterset'] = 'Filterverzameling'; -$labels['filtersets'] = 'Filterverzamelingen'; -$labels['filtersetadd'] = 'Nieuwe filterverzameling'; -$labels['filtersetdel'] = 'Verwijder filterverzameling'; -$labels['filtersetact'] = 'Huidige filterverzameling activeren'; -$labels['filtersetdeact'] = 'Huidige filterverzameling uitschakelen'; +$labels['filterset'] = 'Filterset'; +$labels['filtersets'] = 'Filtersets'; +$labels['filtersetadd'] = 'Nieuwe filterset'; +$labels['filtersetdel'] = 'Verwijder huidige filterset'; +$labels['filtersetact'] = 'Huidige filterset activeren'; +$labels['filtersetdeact'] = 'Huidige filterset uitschakelen'; $labels['filterdef'] = 'Filterdefinitie'; -$labels['filtersetname'] = 'Filterverzamelingnaam'; -$labels['newfilterset'] = 'Nieuwe filterverzameling'; +$labels['filtersetname'] = 'Filtersetnaam'; +$labels['newfilterset'] = 'Nieuwe filterset'; $labels['active'] = 'actief'; $labels['none'] = 'geen'; -$labels['fromset'] = 'van verzameling'; +$labels['fromset'] = 'van set'; $labels['fromfile'] = 'van bestand'; $labels['filterdisabled'] = 'Filter uitgeschakeld'; $labels['countisgreaterthan'] = 'aantal is groter dan'; @@ -161,34 +159,34 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'terugwaarts'; $messages['filterunknownerror'] = 'Onbekende fout'; $messages['filterconnerror'] = 'Kan geen verbinding maken met de managesieve server'; -$messages['filterdeleteerror'] = 'Kan filter niet verwijderen. Er is een fout opgetreden'; +$messages['filterdeleteerror'] = 'Kan filter niet verwijderen. Er trad een serverfout op.'; $messages['filterdeleted'] = 'Filter succesvol verwijderd'; $messages['filtersaved'] = 'Filter succesvol opgeslagen'; -$messages['filtersaveerror'] = 'Kan filter niet opslaan. Er is een fout opgetreden.'; +$messages['filtersaveerror'] = 'Kan filter niet opslaan. Er trad een serverfout op.'; $messages['filterdeleteconfirm'] = 'Weet je zeker dat je het geselecteerde filter wilt verwijderen?'; $messages['ruledeleteconfirm'] = 'Weet je zeker dat je de geselecteerde regel wilt verwijderen?'; $messages['actiondeleteconfirm'] = 'Weet je zeker dat je de geselecteerde actie wilt verwijderen?'; $messages['forbiddenchars'] = 'Verboden karakters in het veld'; $messages['cannotbeempty'] = 'Veld mag niet leeg zijn'; $messages['ruleexist'] = 'Er bestaat al een filter met deze naam.'; -$messages['setactivateerror'] = 'Filterverzameling kon niet geactiveerd worden. Er trad een serverfout op.'; -$messages['setdeactivateerror'] = 'Filterverzameling kon niet gedeactiveerd worden. Er trad een serverfout op.'; -$messages['setdeleteerror'] = 'Filterverzameling kon niet verwijderd worden. Er trad een serverfout op.'; +$messages['setactivateerror'] = 'Filterset kon niet geactiveerd worden. Er trad een serverfout op.'; +$messages['setdeactivateerror'] = 'Filterset kon niet gedeactiveerd worden. Er trad een serverfout op.'; +$messages['setdeleteerror'] = 'Filterset kon niet verwijderd worden. Er trad een serverfout op.'; $messages['setactivated'] = 'Filterset succesvol geactiveerd.'; -$messages['setdeactivated'] = 'Filterverzameling succesvol gedeactiveerd.'; -$messages['setdeleted'] = 'Filterverzameling succesvol verwijderd.'; +$messages['setdeactivated'] = 'Filterset succesvol gedeactiveerd.'; +$messages['setdeleted'] = 'Filterset succesvol verwijderd.'; $messages['setdeleteconfirm'] = 'Weet u zeker dat u de geselecteerde filterset wilt verwijderen?'; -$messages['setcreateerror'] = 'Filterverzameling kon niet aangemaakt worden. Er trad een serverfout op.'; -$messages['setcreated'] = 'Filterverzameling succesvol aangemaakt.'; +$messages['setcreateerror'] = 'Filterset kon niet aangemaakt worden. Er trad een serverfout op.'; +$messages['setcreated'] = 'Filterset succesvol aangemaakt.'; $messages['activateerror'] = 'Geselecteerde filter(s) konden niet ingeschakeld worden. Er trad een serverfout op.'; $messages['deactivateerror'] = 'Geselecteerde filter(s) konden niet uitgeschakeld worden. Er trad een serverfout op.'; $messages['deactivated'] = 'Filter(s) succesvol ingeschakeld.'; $messages['activated'] = 'Filter(s) succesvol uitgeschakeld.'; $messages['moved'] = 'Filter succesvol verplaatst.'; -$messages['moveerror'] = 'Geselecteerde filter(s) konden niet verplaatst worden. Er trad een serverfout op.'; +$messages['moveerror'] = 'Het geselecteerde filter kon niet verplaatst worden. Er trad een serverfout op.'; $messages['nametoolong'] = 'Naam is te lang.'; $messages['namereserved'] = 'Gereserveerde naam.'; -$messages['setexist'] = 'Set bestaat al.'; +$messages['setexist'] = 'Filterset bestaat al.'; $messages['nodata'] = 'Tenminste één positie moet geselecteerd worden!'; $messages['invaliddateformat'] = 'Ongeldige datum of datumformaat'; ?> diff --git a/plugins/managesieve/localization/nn_NO.inc b/plugins/managesieve/localization/nn_NO.inc index c6b65c326..4ef35dbb4 100644 --- a/plugins/managesieve/localization/nn_NO.inc +++ b/plugins/managesieve/localization/nn_NO.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filter'; $labels['managefilters'] = 'Rediger filter for innkommande e-post'; $labels['filtername'] = 'Filternamn'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Send ein kopi av meldinga til'; $labels['messagereply'] = 'Svar med melding'; $labels['messagedelete'] = 'Slett melding'; $labels['messagediscard'] = 'Avvis med melding'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'For innkommande e-post'; $labels['messagesactions'] = '…gjer følgjande:'; $labels['add'] = 'Legg til'; $labels['del'] = 'Slett'; $labels['sender'] = 'Avsendar'; $labels['recipient'] = 'Mottakar'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Periode mellom meldingar (i dagar):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Innhald (grunngjeving for fråvær)'; $labels['vacationsubject'] = 'Meldingsemne:'; $labels['rulestop'] = 'Stopp evaluering av regler'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'mengd er fleire enn eller lik'; $labels['countislessthan'] = 'mengd er færre enn'; $labels['countislessthanequal'] = 'mengd er færre enn eller lik'; $labels['countequals'] = 'mengd er lik'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'verdien er høgare enn'; $labels['valueisgreaterthanequal'] = 'verdien er høgare eller lik'; $labels['valueislessthan'] = 'verdien er lågare enn'; $labels['valueislessthanequal'] = 'verdien er lågare eller lik'; $labels['valueequals'] = 'verdien er lik'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Sett meldingsflagg'; $labels['addflags'] = 'Legg til flagg på meldinga'; $labels['removeflags'] = 'Fjern flagg fra meldinga'; @@ -107,7 +98,6 @@ $labels['varlower'] = 'med små bokstavar'; $labels['varupper'] = 'med store bokstavar'; $labels['varlowerfirst'] = 'med liten forbokstav'; $labels['varupperfirst'] = 'med stor forbokstav'; -$labels['varquotewildcard'] = 'quote special characters'; $labels['varlength'] = 'lengde'; $labels['notify'] = 'Send varsel'; $labels['notifyaddress'] = 'Til e-postadresse:'; @@ -122,22 +112,6 @@ $labels['filtercreate'] = 'Opprett filter'; $labels['usedata'] = 'Bruk følgande data i filteret:'; $labels['nextstep'] = 'Neste steg'; $labels['...'] = '…'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Avanserte val'; $labels['body'] = 'Meldingstekst'; $labels['address'] = 'adresse'; @@ -157,38 +131,26 @@ $labels['default'] = 'standard'; $labels['octet'] = 'streng (oktett)'; $labels['asciicasemap'] = 'ikkje skil mellom store og små bokstavar (ascii-casemap)'; $labels['asciinumeric'] = 'numerisk (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Ukjent problem med tenar.'; $messages['filterconnerror'] = 'Kunne ikkje kople til tenaren.'; -$messages['filterdeleteerror'] = 'Kunne ikkje slette filter. Det oppstod ein feil på tenaren.'; $messages['filterdeleted'] = 'Filteret er blitt sletta.'; $messages['filtersaved'] = 'Filteret er blitt lagra.'; -$messages['filtersaveerror'] = 'Kunne ikkje lagre filteret. Det oppstod ein feil på tenaren.'; $messages['filterdeleteconfirm'] = 'Vil du verkeleg slette det valde filteret?'; $messages['ruledeleteconfirm'] = 'Er du sikker på at du vil slette vald regel?'; $messages['actiondeleteconfirm'] = 'Er du sikker på at du vil slette vald hending?'; $messages['forbiddenchars'] = 'Ugyldige teikn i felt.'; $messages['cannotbeempty'] = 'Feltet kan ikkje stå tomt.'; $messages['ruleexist'] = 'Det finst alt eit filter med dette namnet.'; -$messages['setactivateerror'] = 'Kunne ikkje aktivere det valde filtersettet. Det oppsto ein tenarfeil.'; -$messages['setdeactivateerror'] = 'Kunne ikkje deaktivere det valde filtersettet. Det oppsto ein tenarfeil.'; -$messages['setdeleteerror'] = 'Kunne ikkje slette det valde filtersettet. Det oppsto ein tenarfeil.'; $messages['setactivated'] = 'Filtersett aktivert.'; $messages['setdeactivated'] = 'Filtersett deaktivert.'; $messages['setdeleted'] = 'Filtersett sletta.'; $messages['setdeleteconfirm'] = 'Er du sikker på at du vil slette det valde filtersettet?'; -$messages['setcreateerror'] = 'Kunne ikkje opprette filtersettet. Det oppstod ein tenarfeil.'; $messages['setcreated'] = 'Filtersett oppretta.'; -$messages['activateerror'] = 'Kunne ikkje skru på valde filter. Det oppstod ein tenarfeil.'; -$messages['deactivateerror'] = 'Kunne ikkje skru av valde filter. Det oppstod ein tenarfeil.'; $messages['deactivated'] = 'Filter skrudd på.'; $messages['activated'] = 'Filter skrudd av.'; $messages['moved'] = 'Filter vart flytta.'; -$messages['moveerror'] = 'Kunne ikkje flytte valde filter. Det oppstod ein tenarfeil.'; $messages['nametoolong'] = 'Namnet er for langt.'; $messages['namereserved'] = 'Namnet er reservert.'; $messages['setexist'] = 'Settet eksisterer alt.'; $messages['nodata'] = 'Du må velje minst éin posisjon!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/pl_PL.inc b/plugins/managesieve/localization/pl_PL.inc index 25882a655..2759309ee 100644 --- a/plugins/managesieve/localization/pl_PL.inc +++ b/plugins/managesieve/localization/pl_PL.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtry'; $labels['managefilters'] = 'Zarządzanie filtrami poczty przychodzącej'; $labels['filtername'] = 'Nazwa filtru'; diff --git a/plugins/managesieve/localization/pt_BR.inc b/plugins/managesieve/localization/pt_BR.inc index 7835e1e1d..9b245e7d8 100644 --- a/plugins/managesieve/localization/pt_BR.inc +++ b/plugins/managesieve/localization/pt_BR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; $labels['managefilters'] = 'Gerenciar filtros de entrada de e-mail'; $labels['filtername'] = 'Nome do filtro'; @@ -161,31 +159,22 @@ $labels['index'] = 'índice:'; $labels['indexlast'] = 'retroceder'; $messages['filterunknownerror'] = 'Erro desconhecido de servidor'; $messages['filterconnerror'] = 'Não foi possível conectar ao servidor managesieve'; -$messages['filterdeleteerror'] = 'Não foi possível excluir filtro. Occorreu um erro de servidor'; $messages['filterdeleted'] = 'Filtro excluído com sucesso'; $messages['filtersaved'] = 'Filtro gravado com sucesso'; -$messages['filtersaveerror'] = 'Não foi possível gravar filtro. Occoreu um erro de servidor.'; $messages['filterdeleteconfirm'] = 'Deseja realmente excluir o filtro selecionado?'; $messages['ruledeleteconfirm'] = 'Deseja realmente excluir a regra selecionada?'; $messages['actiondeleteconfirm'] = 'Deseja realmente excluir a ação selecionada?'; $messages['forbiddenchars'] = 'Caracteres não permitidos no campo'; $messages['cannotbeempty'] = 'Campo não pode ficar em branco'; $messages['ruleexist'] = 'O filtro com o nome especificado já existe.'; -$messages['setactivateerror'] = 'Não foi possível ativar o conjunto de filtros selecionados. Ocorreu um erro no servidor.'; -$messages['setdeactivateerror'] = 'Não foi possível desativar o conjunto de filtros selecionados. Ocorreu um erro no servidor.'; -$messages['setdeleteerror'] = 'Não foi possível excluir o conjunto de filtros selecionados. Ocorreu um erro no servidor.'; $messages['setactivated'] = 'Conjunto de filtros ativados com sucesso.'; $messages['setdeactivated'] = 'Conjunto de filtros desativados com sucesso.'; $messages['setdeleted'] = 'Conjunto de filtros excluídos com sucesso.'; $messages['setdeleteconfirm'] = 'Você está certo que deseja excluir o conjunto de filtros selecionados?'; -$messages['setcreateerror'] = 'Não foi possível criar o conjunto de filtros. Ocorreu um erro no servidor.'; $messages['setcreated'] = 'Conjunto de filtros criado com sucesso.'; -$messages['activateerror'] = 'Não foi possível habilitar o(s) filtro(s) selecionado(s). Ocorreu um erro no servidor.'; -$messages['deactivateerror'] = 'Não foi possível desabilitar o(s) filtro(s) selecionado(s). Ocorreu um erro no servidor.'; $messages['deactivated'] = 'Filtro(s) habilitado(s) com sucesso.'; $messages['activated'] = 'Filtro(s) desabilitado(s) com sucesso.'; $messages['moved'] = 'Filtro movido com sucesso.'; -$messages['moveerror'] = 'Não foi possível mover o filtro selecionado. Ocorreu um erro no servidor.'; $messages['nametoolong'] = 'Nome muito longo.'; $messages['namereserved'] = 'Nome reservado.'; $messages['setexist'] = 'Conjunto já existe.'; diff --git a/plugins/managesieve/localization/pt_PT.inc b/plugins/managesieve/localization/pt_PT.inc index c028ebd05..4e93076a7 100644 --- a/plugins/managesieve/localization/pt_PT.inc +++ b/plugins/managesieve/localization/pt_PT.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtros'; $labels['managefilters'] = 'Gerir filtros'; $labels['filtername'] = 'Nome do filtro'; @@ -161,10 +159,10 @@ $labels['index'] = 'índice:'; $labels['indexlast'] = 'retroceder'; $messages['filterunknownerror'] = 'Erro de servidor desconhecido'; $messages['filterconnerror'] = 'Não é possível ligar ao servidor Sieve'; -$messages['filterdeleteerror'] = 'Não foi possível eliminar o filtro. Erro no servidor'; +$messages['filterdeleteerror'] = 'Não foi possível eliminar o filtro. Ocorreu um erro no servidor.'; $messages['filterdeleted'] = 'Filtro eliminado com sucesso'; $messages['filtersaved'] = 'Filtro guardado com sucesso'; -$messages['filtersaveerror'] = 'Não foi possível guardar o filtro. Erro no servidor'; +$messages['filtersaveerror'] = 'Não foi possível guardar o filtro. Ocorreu um erro no servidor.'; $messages['filterdeleteconfirm'] = 'Tem a certeza que pretende eliminar este filtro?'; $messages['ruledeleteconfirm'] = 'Tem a certeza que pretende eliminar esta regra?'; $messages['actiondeleteconfirm'] = 'Tem a certeza que pretende eliminar esta acção?'; diff --git a/plugins/managesieve/localization/ro_RO.inc b/plugins/managesieve/localization/ro_RO.inc index 894b78db8..2cddf36ae 100644 --- a/plugins/managesieve/localization/ro_RO.inc +++ b/plugins/managesieve/localization/ro_RO.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtre'; $labels['managefilters'] = 'Administreaza filtrele pentru mesaje primite.'; $labels['filtername'] = 'Nume filtru'; @@ -161,31 +159,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'invers'; $messages['filterunknownerror'] = 'Eroare necunoscută la server:'; $messages['filterconnerror'] = 'Nu mă pot conecta la server.'; -$messages['filterdeleteerror'] = 'Nu pot şterge filtrul. S-a produs o eroare la server.'; $messages['filterdeleted'] = 'Filtrul a fost şters cu succes.'; $messages['filtersaved'] = 'Filtrul a fost salvat cu succes.'; -$messages['filtersaveerror'] = 'Nu am putut salva filtrul. S-a produs o eroare la server.'; $messages['filterdeleteconfirm'] = 'Chiar vrei să ştergi filtrul selectat?'; $messages['ruledeleteconfirm'] = 'Eşti sigur că vrei să ştergi regula selectată?'; $messages['actiondeleteconfirm'] = 'Eşti sigur că vrei să ştergi acţiunea selectată?'; $messages['forbiddenchars'] = 'Caractere nepermise în câmp.'; $messages['cannotbeempty'] = 'Câmpul nu poate fi gol.'; $messages['ruleexist'] = 'Filtrul cu numele specificat există deja.'; -$messages['setactivateerror'] = 'Nu pot activa setul de filtre selectat. S-a produs o eroare la server.'; -$messages['setdeactivateerror'] = 'Nu pot dezactiva setul de filtre selectat. S-a produs o eroare la server.'; -$messages['setdeleteerror'] = 'Nu pot şterge setul de filtre selectat. S-a produs o eroare la server.'; $messages['setactivated'] = 'Setul de filtre activat cu succes.'; $messages['setdeactivated'] = 'Setul de filtre dezactivat cu succes.'; $messages['setdeleted'] = 'Setul de filtre şters cu succes.'; $messages['setdeleteconfirm'] = 'Eşti sigur(ă) că vrei să ştergi setul de filtre selectat?'; -$messages['setcreateerror'] = 'Nu am putut crea setul de filtre. S-a produs o eroare la server.'; $messages['setcreated'] = 'Setul de filtre creat cu succes.'; -$messages['activateerror'] = 'Nu am putut activa filtrele selectate. S-a produs o eroare la server.'; -$messages['deactivateerror'] = 'Nu am putut dezactiva filtrele selectate. S-a produs o eroare la server.'; $messages['deactivated'] = 'Filtrele au fost activate cu succes.'; $messages['activated'] = 'Filtrele au fost dezactivate cu succes.'; $messages['moved'] = 'Filtrele au fost mutate cu succes.'; -$messages['moveerror'] = 'Nu am putut muta filtreele selectate. S-a produs o eroare la server.'; $messages['nametoolong'] = 'Numele este prea lung.'; $messages['namereserved'] = 'Nume rezervat.'; $messages['setexist'] = 'Setul există deja.'; diff --git a/plugins/managesieve/localization/ru_RU.inc b/plugins/managesieve/localization/ru_RU.inc index 7342fd177..eccce9470 100644 --- a/plugins/managesieve/localization/ru_RU.inc +++ b/plugins/managesieve/localization/ru_RU.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Фильтры'; $labels['managefilters'] = 'Управление фильтрами для входящей почты'; $labels['filtername'] = 'Название фильтра'; diff --git a/plugins/managesieve/localization/si_LK.inc b/plugins/managesieve/localization/si_LK.inc index 05d7a79f0..6537ed597 100644 --- a/plugins/managesieve/localization/si_LK.inc +++ b/plugins/managesieve/localization/si_LK.inc @@ -15,180 +15,28 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'පෙරහණ'; -$labels['managefilters'] = 'Manage incoming mail filters'; -$labels['filtername'] = 'Filter name'; -$labels['newfilter'] = 'New filter'; -$labels['filteradd'] = 'Add filter'; -$labels['filterdel'] = 'Delete filter'; $labels['moveup'] = 'ඉහළට ගෙනයන්න'; $labels['movedown'] = 'පහළට ගෙනයන්න'; -$labels['filterallof'] = 'matching all of the following rules'; -$labels['filteranyof'] = 'matching any of the following rules'; $labels['filterany'] = 'සියලු පණිවිඩ'; $labels['filtercontains'] = 'අඩංගු'; -$labels['filternotcontains'] = 'not contains'; -$labels['filteris'] = 'is equal to'; -$labels['filterisnot'] = 'is not equal to'; -$labels['filterexists'] = 'exists'; -$labels['filternotexists'] = 'not exists'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; -$labels['filterunder'] = 'under'; -$labels['filterover'] = 'over'; -$labels['addrule'] = 'Add rule'; -$labels['delrule'] = 'Delete rule'; -$labels['messagemoveto'] = 'Move message to'; -$labels['messageredirect'] = 'Redirect message to'; -$labels['messagecopyto'] = 'Copy message to'; -$labels['messagesendcopy'] = 'Send message copy to'; -$labels['messagereply'] = 'Reply with message'; $labels['messagedelete'] = 'පණිවිඩය මකන්න'; -$labels['messagediscard'] = 'Discard with message'; -$labels['messagekeep'] = 'Keep message in Inbox'; -$labels['messagesrules'] = 'For incoming mail:'; -$labels['messagesactions'] = '...execute the following actions:'; $labels['add'] = 'එක් කරන්න'; $labels['del'] = 'මකන්න'; $labels['sender'] = 'යවන්නා'; $labels['recipient'] = 'ලබන්නා'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; -$labels['vacationdays'] = 'How often send messages (in days):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; -$labels['vacationreason'] = 'Message body (vacation reason):'; $labels['vacationsubject'] = 'පණිවිඩයේ මාතෘකාව:'; -$labels['rulestop'] = 'Stop evaluating rules'; $labels['enable'] = 'සක්‍රීය කරන්න/අක්‍රීය කරන්න'; -$labels['filterset'] = 'Filters set'; -$labels['filtersets'] = 'Filter sets'; -$labels['filtersetadd'] = 'Add filters set'; -$labels['filtersetdel'] = 'Delete current filters set'; -$labels['filtersetact'] = 'Activate current filters set'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; -$labels['filterdef'] = 'Filter definition'; -$labels['filtersetname'] = 'Filters set name'; -$labels['newfilterset'] = 'New filters set'; $labels['active'] = 'සක්‍රීය'; $labels['none'] = 'කිසිවක් නැත'; -$labels['fromset'] = 'from set'; -$labels['fromfile'] = 'from file'; -$labels['filterdisabled'] = 'Filter disabled'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; $labels['flagread'] = 'කියවන්න'; $labels['flagdeleted'] = 'මකන ලදී'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; $labels['flagdraft'] = 'කටු සටහන'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; $labels['nextstep'] = 'මීලග පියවර'; $labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; $labels['address'] = 'ලිපිනය'; $labels['envelope'] = 'ලියුම් කවරය'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; $labels['modtype'] = 'වර්ගය:'; $labels['allparts'] = 'සියල්ල'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; -$messages['filterunknownerror'] = 'Unknown server error.'; -$messages['filterconnerror'] = 'Unable to connect to server.'; -$messages['filterdeleteerror'] = 'Unable to delete filter. Server error occured.'; -$messages['filterdeleted'] = 'Filter deleted successfully.'; -$messages['filtersaved'] = 'Filter saved successfully.'; -$messages['filtersaveerror'] = 'Unable to save filter. Server error occured.'; -$messages['filterdeleteconfirm'] = 'Do you really want to delete selected filter?'; -$messages['ruledeleteconfirm'] = 'Are you sure, you want to delete selected rule?'; -$messages['actiondeleteconfirm'] = 'Are you sure, you want to delete selected action?'; -$messages['forbiddenchars'] = 'Forbidden characters in field.'; -$messages['cannotbeempty'] = 'Field cannot be empty.'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Unable to activate selected filters set. Server error occured.'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Unable to delete selected filters set. Server error occured.'; -$messages['setactivated'] = 'Filters set activated successfully.'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; -$messages['setdeleted'] = 'Filters set deleted successfully.'; -$messages['setdeleteconfirm'] = 'Are you sure, you want to delete selected filters set?'; -$messages['setcreateerror'] = 'Unable to create filters set. Server error occured.'; -$messages['setcreated'] = 'Filters set created successfully.'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; $messages['nametoolong'] = 'නම දිග වැඩිය.'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/sk_SK.inc b/plugins/managesieve/localization/sk_SK.inc index 0addfd438..5e7bfb3b5 100644 --- a/plugins/managesieve/localization/sk_SK.inc +++ b/plugins/managesieve/localization/sk_SK.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtre'; $labels['managefilters'] = 'Správa filtrov príchádzajúcej pošty'; $labels['filtername'] = 'Názov filtra'; @@ -161,31 +159,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'dozadu'; $messages['filterunknownerror'] = 'Neznáma chyba serveru'; $messages['filterconnerror'] = 'Nepodarilo sa pripojiť k managesieve serveru'; -$messages['filterdeleteerror'] = 'Nepodarilo sa zmazať filter, server ohlásil chybu'; $messages['filterdeleted'] = 'Filter bol zmazaný'; $messages['filtersaved'] = 'Filter bol uložený'; -$messages['filtersaveerror'] = 'Nepodarilo sa uložiť filter, server ohlásil chybu'; $messages['filterdeleteconfirm'] = 'Naozaj si prajete zmazať tento filter?'; $messages['ruledeleteconfirm'] = 'Naozaj si prajete zamzať toto pravidlo?'; $messages['actiondeleteconfirm'] = 'Naozaj si prajete zmazať túto akciu?'; $messages['forbiddenchars'] = 'Pole obsahuje nepovolené znaky'; $messages['cannotbeempty'] = 'Pole nemôže byť prázdne'; $messages['ruleexist'] = 'Filter so zadaným menom už existuje.'; -$messages['setactivateerror'] = 'Nepodarilo sa aktivovať zvolenú sadu filtrov, server ohlásil chybu'; -$messages['setdeactivateerror'] = 'Nepodarilo sa deaktivovať zvolenú sadu filtrov, server ohlásil chybu'; -$messages['setdeleteerror'] = 'Nepodarilo sa zmazať zvolenú sadu filtrov, server ohlásil chybu'; $messages['setactivated'] = 'Sada filtrov bola aktivovaná'; $messages['setdeactivated'] = 'Sada filtrov bola deaktivovaná'; $messages['setdeleted'] = 'Sada filtrov bola zmazaná'; $messages['setdeleteconfirm'] = 'Naozaj si prajete zmazať túto sadu filtrov?'; -$messages['setcreateerror'] = 'Nepodarilo sa vytvoriť sadu filtrov, server ohlásil chybu'; $messages['setcreated'] = 'Sada filtrov bola vytvorená'; -$messages['activateerror'] = 'Nepodarilo sa povoliť vybraný filter(e). Chyba servera.'; -$messages['deactivateerror'] = 'Nepodarilo sa vypnúť vybraný filter(e). Chyba servera.'; $messages['deactivated'] = 'Filter(e) povolený.'; $messages['activated'] = 'Filter(e) úspešne vypnutý.'; $messages['moved'] = 'Filter presunutý.'; -$messages['moveerror'] = 'Nemôžem presunúť zvolený filter. Chyba servera.'; $messages['nametoolong'] = 'Názov sady filtrov je príliš dlhý'; $messages['namereserved'] = 'Rezervovaný názov.'; $messages['setexist'] = 'Množina už existuje.'; diff --git a/plugins/managesieve/localization/sl_SI.inc b/plugins/managesieve/localization/sl_SI.inc index ed727e950..c776a337a 100644 --- a/plugins/managesieve/localization/sl_SI.inc +++ b/plugins/managesieve/localization/sl_SI.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtri'; $labels['managefilters'] = 'Uredi filtre za dohodno pošto'; $labels['filtername'] = 'Ime filtra'; @@ -56,7 +54,6 @@ $labels['add'] = 'Dodaj'; $labels['del'] = 'Izbriši'; $labels['sender'] = 'Pošiljatelj'; $labels['recipient'] = 'Prejemnik'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Kako pogosto naj bodo sporočila poslana (v dnevih):'; $labels['vacationinterval'] = 'Sporočila pošlji na:'; $labels['days'] = 'dni'; @@ -161,31 +158,22 @@ $labels['index'] = 'indeks:'; $labels['indexlast'] = 'obraten vrstni red'; $messages['filterunknownerror'] = 'Prišlo je do neznane napake.'; $messages['filterconnerror'] = 'Povezave s strežnikom (managesieve) ni bilo mogoče vzpostaviti'; -$messages['filterdeleteerror'] = 'Pravila ni bilo mogoče izbrisati. Prišlo je do napake.'; $messages['filterdeleted'] = 'Pravilo je bilo uspešno izbrisano.'; $messages['filtersaved'] = 'Pravilo je bilo uspešno shranjeno'; -$messages['filtersaveerror'] = 'Pravilo ni bilo shranjeno. Prišlo je do napake.'; $messages['filterdeleteconfirm'] = 'Ste prepričani, da želite izbrisati izbrano pravilo?'; $messages['ruledeleteconfirm'] = 'Ste prepričani, da želite izbrisati izbrano pravilo?'; $messages['actiondeleteconfirm'] = 'Ste prepričani, da želite izbrisati izbrano dejanje?'; $messages['forbiddenchars'] = 'V polju so neveljavni znaki'; $messages['cannotbeempty'] = 'Polje ne sme biti prazno'; $messages['ruleexist'] = 'Filer s tem imenom že obstaja'; -$messages['setactivateerror'] = 'Izbranega filtra ni bilo mogoče vključiti. Prišlo je do napake na strežniku.'; -$messages['setdeactivateerror'] = 'Izbranega filtra ni bilo mogoče izključiti. Prišlo je do napake na strežniku.'; -$messages['setdeleteerror'] = 'Izbranega filtra ni bilo mogoče izbrisati. Prišlo je do napake na strežniku.'; $messages['setactivated'] = 'Filter je bil uspešno vključen.'; $messages['setdeactivated'] = 'Filter je bil uspešno onemogočen.'; $messages['setdeleted'] = 'Filter je bil uspešno izbrisan.'; $messages['setdeleteconfirm'] = 'Ste prepričani, da želite izbrisati ta filter?'; -$messages['setcreateerror'] = 'Filtra ni bilo mogoče ustvariti. Prišlo je do napake na strežniku.'; $messages['setcreated'] = 'Filter je bil uspešno ustvarjen.'; -$messages['activateerror'] = 'Izbranega/ih filtra/ov ni bilo mogoče vključiti. Prišlo je do napake na strežniku.'; -$messages['deactivateerror'] = 'Izbranega/ih fitra/ov ni bilo mogoče izključiti. Prišlo je do napake na strežniku.'; $messages['deactivated'] = 'Filtri so bili uspešno omogočeni.'; $messages['activated'] = 'Filtri so bili uspešno onemogočeni.'; $messages['moved'] = 'Filter je bil uspešno premaknjen.'; -$messages['moveerror'] = 'Izbranega filtra ni bilo mogoče premakniti. Prišlo je do napake na strežniku.'; $messages['nametoolong'] = 'Ime je predolgo.'; $messages['namereserved'] = 'Rezervirano ime.'; $messages['setexist'] = 'Nastavitev filtra že obstaja.'; diff --git a/plugins/managesieve/localization/sv_SE.inc b/plugins/managesieve/localization/sv_SE.inc index a7bed5e36..5d855bd09 100644 --- a/plugins/managesieve/localization/sv_SE.inc +++ b/plugins/managesieve/localization/sv_SE.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filter'; $labels['managefilters'] = 'Administrera filter'; $labels['filtername'] = 'Filternamn'; @@ -161,31 +159,22 @@ $labels['index'] = 'index:'; $labels['indexlast'] = 'omvänd'; $messages['filterunknownerror'] = 'Okänt serverfel'; $messages['filterconnerror'] = 'Anslutning till serverns filtertjänst misslyckades'; -$messages['filterdeleteerror'] = 'Filtret kunde inte tas bort på grund av serverfel'; $messages['filterdeleted'] = 'Filtret är borttaget'; $messages['filtersaved'] = 'Filtret har sparats'; -$messages['filtersaveerror'] = 'Filtret kunde inte sparas på grund av serverfel'; $messages['filterdeleteconfirm'] = 'Vill du ta bort det markerade filtret?'; $messages['ruledeleteconfirm'] = 'Vill du ta bort filterregeln?'; $messages['actiondeleteconfirm'] = 'Vill du ta bort filteråtgärden?'; $messages['forbiddenchars'] = 'Otillåtet tecken i fältet'; $messages['cannotbeempty'] = 'Fältet kan inte lämnas tomt'; $messages['ruleexist'] = 'Ett filter med angivet namn finns redan.'; -$messages['setactivateerror'] = 'Filtergruppen kunde inte aktiveras på grund av serverfel'; -$messages['setdeactivateerror'] = 'Filtergruppen kunde inte deaktiveras på grund av serverfel'; -$messages['setdeleteerror'] = 'Filtergruppen kunde inte tas bort på grund av serverfel'; $messages['setactivated'] = 'Filtergruppen är aktiverad'; $messages['setdeactivated'] = 'Filtergruppen är deaktiverad'; $messages['setdeleted'] = 'Filtergruppen är borttagen'; $messages['setdeleteconfirm'] = 'Vill du ta bort filtergruppen?'; -$messages['setcreateerror'] = 'Filtergruppen kunde inte läggas till på grund av serverfel'; $messages['setcreated'] = 'Filtergruppen har lagts till'; -$messages['activateerror'] = 'Kunde inte aktivera filter på grund av serverfel.'; -$messages['deactivateerror'] = 'Kunde inte deaktivera filter på grund av serverfel.'; $messages['deactivated'] = 'Filter aktiverat.'; $messages['activated'] = 'Filter deaktiverat.'; $messages['moved'] = 'Filter flyttat.'; -$messages['moveerror'] = 'Kunde inte flytta filter på grund av serverfel.'; $messages['nametoolong'] = 'Filtergruppen kan inte läggas till med för långt namn'; $messages['namereserved'] = 'Reserverat namn.'; $messages['setexist'] = 'Filtergrupp finns redan.'; diff --git a/plugins/managesieve/localization/th_TH.inc b/plugins/managesieve/localization/th_TH.inc index bf9125197..c2d041cfe 100644 --- a/plugins/managesieve/localization/th_TH.inc +++ b/plugins/managesieve/localization/th_TH.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'ตัวกรองข้อมูล'; $labels['filtername'] = 'ชื่อตัวกรองข้อมูล'; $labels['newfilter'] = 'สร้างตัวกรองข้อมูลใหม่'; diff --git a/plugins/managesieve/localization/tr_TR.inc b/plugins/managesieve/localization/tr_TR.inc index 67c6d2c4e..98db751fc 100644 --- a/plugins/managesieve/localization/tr_TR.inc +++ b/plugins/managesieve/localization/tr_TR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Filtreler'; $labels['managefilters'] = 'Gelen e-posta filtrelerini yönet'; $labels['filtername'] = 'Filtre adı'; @@ -56,7 +54,7 @@ $labels['add'] = 'Ekle'; $labels['del'] = 'Sil'; $labels['sender'] = 'Gönderici'; $labels['recipient'] = 'Alıcı'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; +$labels['vacationaddr'] = 'Ek e-posta adres(ler)im:'; $labels['vacationdays'] = 'Ne sıklıkla mesajlar gönderilir(gün)'; $labels['vacationinterval'] = 'Ne kadar sıklıkla mesaj gönderirsiniz:'; $labels['days'] = 'günler'; @@ -161,31 +159,22 @@ $labels['index'] = 'indeks:'; $labels['indexlast'] = 'geriye yönelik'; $messages['filterunknownerror'] = 'Bilinmeyen sunucu hatası.'; $messages['filterconnerror'] = 'Sunucuya bağlanamıyor.'; -$messages['filterdeleteerror'] = 'Filtre silinemedi. Sunucuda hata oluştu.'; $messages['filterdeleted'] = 'Filtre başarıyla silindi.'; $messages['filtersaved'] = 'Filter başarıyla kaydedildi.'; -$messages['filtersaveerror'] = 'Filtre kaydedilemedi. Sunucuda hata oluştu.'; $messages['filterdeleteconfirm'] = 'Seçilen filtreleri gerçekten silmek istiyor musun?'; $messages['ruledeleteconfirm'] = 'Seçili kuralları silmek istediğinizden emin misiniz?'; $messages['actiondeleteconfirm'] = 'Seçili aksiyonları silmek istediğinizden emin misiniz?'; $messages['forbiddenchars'] = 'Alanda izin verilmeyen karakterler var.'; $messages['cannotbeempty'] = 'Alan boş olmaz'; $messages['ruleexist'] = 'Belirtilen isimde bir filtre zaten var.'; -$messages['setactivateerror'] = 'Seçilen filtreler etkinleştirilemedi. Sunucuda hata oluştu.'; -$messages['setdeactivateerror'] = 'Seçilen filtreler pasifleştirilemedi. Sunucuda hata oluştu.'; -$messages['setdeleteerror'] = 'Seçilen filtreler silinemedi. Sunucuda hata oluştu.'; $messages['setactivated'] = 'Filtreler başarıyla etkinleştirilemedi.'; $messages['setdeactivated'] = 'Filtreler başarıyla pasifleştirildi.'; $messages['setdeleted'] = 'Filtre seti başarıyla silindi.'; $messages['setdeleteconfirm'] = 'Seçilen filtre setlerini silmek istediğinizden emin misiniz?'; -$messages['setcreateerror'] = 'Filtre setleri oluşturulamadı. Sunucuda hata oluştu.'; $messages['setcreated'] = 'Filtre setleri başarıyla oluşturuldu.'; -$messages['activateerror'] = 'Seçilen filtre(ler) etkinleştirilemedi. Sunucuda hata oluştu.'; -$messages['deactivateerror'] = 'Seçilen filtre(ler) pasifleştirilemedi. Sunucuda hata oluştu.'; $messages['deactivated'] = 'Filtre(ler) başarıyla etkinleştirildi.'; $messages['activated'] = 'Filtre(ler) başarıyla iptal edildi.'; $messages['moved'] = 'Filtre başarıyla taşındı.'; -$messages['moveerror'] = 'Seçilen filtre(ler) taşınamadı. Sunucuda hata oluştu.'; $messages['nametoolong'] = 'İsim çok uzun.'; $messages['namereserved'] = 'rezerve edilmiş isim.'; $messages['setexist'] = 'Set zaten var.'; diff --git a/plugins/managesieve/localization/uk_UA.inc b/plugins/managesieve/localization/uk_UA.inc index 033ac5659..a0e7b6ad0 100644 --- a/plugins/managesieve/localization/uk_UA.inc +++ b/plugins/managesieve/localization/uk_UA.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Фільтри'; $labels['managefilters'] = 'Керування фільтрами вхідної пошти'; $labels['filtername'] = 'Назва фільтру'; @@ -34,43 +32,28 @@ $labels['filteris'] = 'ідентичний до'; $labels['filterisnot'] = 'не ідентичний до'; $labels['filterexists'] = 'існує'; $labels['filternotexists'] = 'не існує'; -$labels['filtermatches'] = 'matches expression'; -$labels['filternotmatches'] = 'not matches expression'; -$labels['filterregex'] = 'matches regular expression'; -$labels['filternotregex'] = 'not matches regular expression'; $labels['filterunder'] = 'менше, ніж'; $labels['filterover'] = 'більше, ніж'; $labels['addrule'] = 'Додати правило'; $labels['delrule'] = 'Видалити правило'; $labels['messagemoveto'] = 'Пересунути повідомлення до'; $labels['messageredirect'] = 'Перенаправити повідомлення до'; -$labels['messagecopyto'] = 'Copy message to'; -$labels['messagesendcopy'] = 'Send message copy to'; $labels['messagereply'] = 'Автовідповідач'; $labels['messagedelete'] = 'Видалити повідомлення'; $labels['messagediscard'] = 'Відхилити з повідомленням'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Для вхідної пошти'; $labels['messagesactions'] = '... виконати дію:'; $labels['add'] = 'Додати'; $labels['del'] = 'Видалити'; $labels['sender'] = 'Відправник'; $labels['recipient'] = 'Отримувач'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Як часто повторювати (у днях):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Текст повідомлення:'; -$labels['vacationsubject'] = 'Message subject:'; $labels['rulestop'] = 'Зупинити перевірку правил'; -$labels['enable'] = 'Enable/Disable'; $labels['filterset'] = 'Набір фільтрів'; -$labels['filtersets'] = 'Filter sets'; $labels['filtersetadd'] = 'Додати набір фільтрів'; $labels['filtersetdel'] = 'Видалити поточний набір'; $labels['filtersetact'] = 'Активувати поточний набір'; -$labels['filtersetdeact'] = 'Deactivate current filters set'; $labels['filterdef'] = 'Параметри фільтру'; $labels['filtersetname'] = 'Назва набору фільтрів'; $labels['newfilterset'] = 'Новий набір фільтрів'; @@ -79,116 +62,18 @@ $labels['none'] = 'нічого'; $labels['fromset'] = 'з набору'; $labels['fromfile'] = 'з файлу'; $labels['filterdisabled'] = 'Фільтр вимкнено'; -$labels['countisgreaterthan'] = 'count is greater than'; -$labels['countisgreaterthanequal'] = 'count is greater than or equal to'; -$labels['countislessthan'] = 'count is less than'; -$labels['countislessthanequal'] = 'count is less than or equal to'; -$labels['countequals'] = 'count is equal to'; -$labels['countnotequals'] = 'count is not equal to'; -$labels['valueisgreaterthan'] = 'value is greater than'; -$labels['valueisgreaterthanequal'] = 'value is greater than or equal to'; -$labels['valueislessthan'] = 'value is less than'; -$labels['valueislessthanequal'] = 'value is less than or equal to'; -$labels['valueequals'] = 'value is equal to'; -$labels['valuenotequals'] = 'value is not equal to'; -$labels['setflags'] = 'Set flags to the message'; -$labels['addflags'] = 'Add flags to the message'; -$labels['removeflags'] = 'Remove flags from the message'; -$labels['flagread'] = 'Read'; -$labels['flagdeleted'] = 'Deleted'; -$labels['flaganswered'] = 'Answered'; -$labels['flagflagged'] = 'Flagged'; -$labels['flagdraft'] = 'Draft'; -$labels['setvariable'] = 'Set variable'; -$labels['setvarname'] = 'Variable name:'; -$labels['setvarvalue'] = 'Variable value:'; -$labels['setvarmodifiers'] = 'Modifiers:'; -$labels['varlower'] = 'lower-case'; -$labels['varupper'] = 'upper-case'; -$labels['varlowerfirst'] = 'first character lower-case'; -$labels['varupperfirst'] = 'first character upper-case'; -$labels['varquotewildcard'] = 'quote special characters'; -$labels['varlength'] = 'length'; -$labels['notify'] = 'Send notification'; -$labels['notifyaddress'] = 'To e-mail address:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; -$labels['notifyimportance'] = 'Importance:'; -$labels['notifyimportancelow'] = 'low'; -$labels['notifyimportancenormal'] = 'normal'; -$labels['notifyimportancehigh'] = 'high'; -$labels['filtercreate'] = 'Create filter'; -$labels['usedata'] = 'Use following data in the filter:'; -$labels['nextstep'] = 'Next Step'; -$labels['...'] = '...'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; -$labels['advancedopts'] = 'Advanced options'; -$labels['body'] = 'Body'; -$labels['address'] = 'address'; -$labels['envelope'] = 'envelope'; -$labels['modifier'] = 'modifier:'; -$labels['text'] = 'text'; -$labels['undecoded'] = 'undecoded (raw)'; -$labels['contenttype'] = 'content type'; -$labels['modtype'] = 'type:'; -$labels['allparts'] = 'all'; -$labels['domain'] = 'domain'; -$labels['localpart'] = 'local part'; -$labels['user'] = 'user'; -$labels['detail'] = 'detail'; -$labels['comparator'] = 'comparator:'; -$labels['default'] = 'default'; -$labels['octet'] = 'strict (octet)'; -$labels['asciicasemap'] = 'case insensitive (ascii-casemap)'; -$labels['asciinumeric'] = 'numeric (ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Невідома помилка сервера'; $messages['filterconnerror'] = 'Неможливо з\'єднатися з сервером'; -$messages['filterdeleteerror'] = 'Неможливо видалити фільтр. Помилка сервера'; $messages['filterdeleted'] = 'Фільтр успішно видалено'; $messages['filtersaved'] = 'Фільтр успішно збережено'; -$messages['filtersaveerror'] = 'Неможливо зберегти фільтр. Помилка сервера'; $messages['filterdeleteconfirm'] = 'Ви дійсно хочете видалити обраний фільтр?'; $messages['ruledeleteconfirm'] = 'Ви дійсно хочете видалити обране правило?'; $messages['actiondeleteconfirm'] = 'Ви дійсно хочете видалити обрану дію?'; $messages['forbiddenchars'] = 'Введено заборонений символ'; $messages['cannotbeempty'] = 'Поле не може бути пустим'; -$messages['ruleexist'] = 'Filter with specified name already exists.'; -$messages['setactivateerror'] = 'Неможливо активувати обраний набір. Помилка сервера'; -$messages['setdeactivateerror'] = 'Unable to deactivate selected filters set. Server error occured.'; -$messages['setdeleteerror'] = 'Неможливо видалити обраний набір. Помилка сервера'; $messages['setactivated'] = 'Набір фільтрів активовано успішно'; -$messages['setdeactivated'] = 'Filters set deactivated successfully.'; $messages['setdeleted'] = 'Набір фільтрів видалено успішно'; $messages['setdeleteconfirm'] = 'Ви впевнені, що хочете видалити обраний набір?'; -$messages['setcreateerror'] = 'Не вдалося створити набір. Помилка сервера'; $messages['setcreated'] = 'Набір фільтрів створено успішно'; -$messages['activateerror'] = 'Unable to enable selected filter(s). Server error occured.'; -$messages['deactivateerror'] = 'Unable to disable selected filter(s). Server error occured.'; -$messages['deactivated'] = 'Filter(s) disabled successfully.'; -$messages['activated'] = 'Filter(s) enabled successfully.'; -$messages['moved'] = 'Filter moved successfully.'; -$messages['moveerror'] = 'Unable to move selected filter. Server error occured.'; $messages['nametoolong'] = 'Не вдалося створити набір. Занадто довга назва'; -$messages['namereserved'] = 'Reserved name.'; -$messages['setexist'] = 'Set already exists.'; -$messages['nodata'] = 'At least one position must be selected!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/vi_VN.inc b/plugins/managesieve/localization/vi_VN.inc index d98c02280..747d1931f 100644 --- a/plugins/managesieve/localization/vi_VN.inc +++ b/plugins/managesieve/localization/vi_VN.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = 'Bộ lọc'; $labels['managefilters'] = 'Quản lý bộ lọc thư đến'; $labels['filtername'] = 'Lọc tên'; @@ -49,18 +47,13 @@ $labels['messagesendcopy'] = 'Gửi bản sao chép tin nhắn tới'; $labels['messagereply'] = 'Trả lời tin nhắn'; $labels['messagedelete'] = 'Xóa thư'; $labels['messagediscard'] = 'Loại bỏ với tin nhắn'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = 'Với thư đến'; $labels['messagesactions'] = 'Thực hiện các hành động sau:'; $labels['add'] = 'Thêm'; $labels['del'] = 'Xoá'; $labels['sender'] = 'Người gửi'; $labels['recipient'] = 'Người nhận'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = 'Số lần gửi thư (trong ngày)'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = 'Nội dung chính'; $labels['vacationsubject'] = 'Tiêu đề thư'; $labels['rulestop'] = 'Ngừng đánh giá qui luật'; @@ -84,13 +77,11 @@ $labels['countisgreaterthanequal'] = 'Đếm lớn hơn hoặc bằng'; $labels['countislessthan'] = 'Đếm ít hơn'; $labels['countislessthanequal'] = 'Đếm ít hơn hoặc bằng'; $labels['countequals'] = 'Đếm bằng'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = 'Giá trị lớn hơn'; $labels['valueisgreaterthanequal'] = 'Giá trị lớn hơn hoặc bằng'; $labels['valueislessthan'] = 'Giá trị nhỏ hơn'; $labels['valueislessthanequal'] = 'Giá trị nhỏ hơn hoặc bằng'; $labels['valueequals'] = 'Giá trị bằng'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = 'Thiết lập đánh dấu cho thư'; $labels['addflags'] = 'Thêm đánh dấu cho thư'; $labels['removeflags'] = 'Bỏ đánh dấu khỏi thư'; @@ -111,9 +102,6 @@ $labels['varquotewildcard'] = 'trích dẫn ký tự đặc biệt'; $labels['varlength'] = 'độ dài'; $labels['notify'] = 'Gửi thông báo'; $labels['notifyaddress'] = 'Gửi đến địa chỉ email:'; -$labels['notifybody'] = 'Notification body:'; -$labels['notifysubject'] = 'Notification subject:'; -$labels['notifyfrom'] = 'Notification sender:'; $labels['notifyimportance'] = 'Mức độ quan trọng:'; $labels['notifyimportancelow'] = 'thấp'; $labels['notifyimportancenormal'] = 'vừa phải'; @@ -122,22 +110,6 @@ $labels['filtercreate'] = 'Tạo bộ lọc'; $labels['usedata'] = 'Dùng dữ liệu trong bộ lọc sau:'; $labels['nextstep'] = 'Bước tiếp theo'; $labels['...'] = '…'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; -$labels['date'] = 'date (yyyy-mm-dd)'; -$labels['julian'] = 'date (julian)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; -$labels['zone'] = 'time-zone'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = 'Tùy chọn tính năng cao hơn'; $labels['body'] = 'Nội dung'; $labels['address'] = 'Địa chỉ'; @@ -157,38 +129,26 @@ $labels['default'] = 'Mặc định'; $labels['octet'] = 'Khắt khe'; $labels['asciicasemap'] = 'Không phân biệt chữ hoa chữ thường'; $labels['asciinumeric'] = 'Bảng mã ASCII'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = 'Không tìm được lỗi máy chủ'; $messages['filterconnerror'] = 'Không kết nối được với máy chủ.'; -$messages['filterdeleteerror'] = 'Không thể xóa bộ lọc. Xuất hiện lỗi ở máy chủ'; $messages['filterdeleted'] = 'Xóa bộ lọc thành công'; $messages['filtersaved'] = 'Lưu bộ lọc thành công'; -$messages['filtersaveerror'] = 'Không thể lưu bộ lọc. Xuất hiện lỗi ở máy chủ'; $messages['filterdeleteconfirm'] = 'Bạn có thực sự muốn xóa bộ lọc được chọn?'; $messages['ruledeleteconfirm'] = 'Bạn có chắc chắn muốn xóa qui luật được chọn?'; $messages['actiondeleteconfirm'] = 'Bạn có chắc chắn muốn xóa hành động được chọn?'; $messages['forbiddenchars'] = 'Ký tự bị cấm trong ô'; $messages['cannotbeempty'] = 'Ô không thể bị bỏ trống'; $messages['ruleexist'] = 'Đã tồn tại bộ lọc với tên cụ thế'; -$messages['setactivateerror'] = 'Không thể kích hoạt bộ lọc được lựa chọn. Xuất hiện lỗi ở máy chủ'; -$messages['setdeactivateerror'] = 'Không thể không kích hoạt bộ lọc được lựa chọn. Xuất hiện lỗi ở máy chủ'; -$messages['setdeleteerror'] = 'Không thể xóa bộ lọc được lựa chọn. Forbidden characters in field.'; $messages['setactivated'] = 'Bộ lọc được khởi động thành công'; $messages['setdeactivated'] = 'Ngừng kích hoạt bộ lọc thành công'; $messages['setdeleted'] = 'Xóa bộ lọc thành công'; $messages['setdeleteconfirm'] = 'Bạn có chắc bạn muốn xóa thiết lập bộ lọc được chọn?'; -$messages['setcreateerror'] = 'Không thể tạo thiết lập bộ lọc. Có lỗi xuất hiện ở máy chủ'; $messages['setcreated'] = 'Thiết lập bộ lọc được tạo thành công'; -$messages['activateerror'] = 'Không thể khởi động bộ lọc được chọn. Có lỗi xuất hiện ở máy chủ'; -$messages['deactivateerror'] = 'Không thể tắt bộ lọc đã chọn. Có lỗi xuất hiện ở máy chủ'; $messages['deactivated'] = 'Bộ lọc được khởi động thành công'; $messages['activated'] = 'Bộ lọc được tắt thành công'; $messages['moved'] = 'Bộ lọc được chuyển đi thành công'; -$messages['moveerror'] = 'Không thể chuyển bộc lọc đã chọn. Có lỗi xuất hiện ở máy chủ'; $messages['nametoolong'] = 'Tên quá dài'; $messages['namereserved'] = 'Tên đã được bảo vệ'; $messages['setexist'] = 'Thiết lập đã tồn tại'; $messages['nodata'] = 'Ít nhất một vị trí phải được chọn'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/zh_CN.inc b/plugins/managesieve/localization/zh_CN.inc index fdff5fae9..5c38cfe7f 100644 --- a/plugins/managesieve/localization/zh_CN.inc +++ b/plugins/managesieve/localization/zh_CN.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = '过滤器'; $labels['managefilters'] = '管理邮件过滤规则'; $labels['filtername'] = '过滤规则名称'; @@ -49,14 +47,12 @@ $labels['messagesendcopy'] = '发送复制邮件至'; $labels['messagereply'] = '回复以下内容'; $labels['messagedelete'] = '删除邮件'; $labels['messagediscard'] = '舍弃邮件并回复以下内容'; -$labels['messagekeep'] = 'Keep message in Inbox'; $labels['messagesrules'] = '对新收取的邮件应用规则:'; $labels['messagesactions'] = '执行以下操作:'; $labels['add'] = '添加'; $labels['del'] = '删除'; $labels['sender'] = '发件人'; $labels['recipient'] = '收件人'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = '发送邮件频率(单位:天):'; $labels['vacationinterval'] = '发送邮件频率:'; $labels['days'] = '天'; @@ -84,13 +80,11 @@ $labels['countisgreaterthanequal'] = '计数大于或等于'; $labels['countislessthan'] = '计数小于'; $labels['countislessthanequal'] = '计数小于或等于'; $labels['countequals'] = '计数等于'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = '值大于'; $labels['valueisgreaterthanequal'] = '值大于或等于'; $labels['valueislessthan'] = '值小于'; $labels['valueislessthanequal'] = '值小于或等于'; $labels['valueequals'] = '值等于'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = '设定邮件的标识'; $labels['addflags'] = '增加邮件的标识'; $labels['removeflags'] = '删除邮件的标识'; @@ -124,20 +118,14 @@ $labels['nextstep'] = '下一步'; $labels['...'] = '...'; $labels['currdate'] = '当前日期'; $labels['datetest'] = '日期'; -$labels['dateheader'] = 'header:'; $labels['year'] = '年'; $labels['month'] = '月'; $labels['day'] = '天'; $labels['date'] = '日期 (年-月-日)'; -$labels['julian'] = 'date (julian)'; $labels['hour'] = '小时'; $labels['minute'] = '分钟'; $labels['second'] = '秒'; -$labels['time'] = 'time (hh:mm:ss)'; -$labels['iso8601'] = 'date (ISO8601)'; -$labels['std11'] = 'date (RFC2822)'; $labels['zone'] = '时区'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = '高级选项'; $labels['body'] = '正文'; $labels['address'] = '地址'; @@ -157,38 +145,26 @@ $labels['default'] = '默认'; $labels['octet'] = '严格模式(字节)'; $labels['asciicasemap'] = '不区分大小写(ascii 字符)'; $labels['asciinumeric'] = '数字类型(ascii 数字)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = '未知的服务器错误'; $messages['filterconnerror'] = '无法连接至服务器'; -$messages['filterdeleteerror'] = '无法删除过滤器。服务器发生错误'; $messages['filterdeleted'] = '过滤器已成功删除'; $messages['filtersaved'] = '过滤器已成功保存。'; -$messages['filtersaveerror'] = '无法保存过滤器。服务器发生错误'; $messages['filterdeleteconfirm'] = '您确定要删除所选择的过滤器吗?'; $messages['ruledeleteconfirm'] = '您确定要删除所选择的规则吗?'; $messages['actiondeleteconfirm'] = '您确定要删除所选择的操作吗?'; $messages['forbiddenchars'] = '内容包含禁用字符'; $messages['cannotbeempty'] = '内容不能为空'; $messages['ruleexist'] = '指定过滤器名称已存在。'; -$messages['setactivateerror'] = '无法启用指定过滤器,服务器发生错误。'; -$messages['setdeactivateerror'] = '无法停用指定过滤器,服务器发生错误。'; -$messages['setdeleteerror'] = '无法删除指定过滤器,服务器发生错误。'; $messages['setactivated'] = '启用过滤器集成功。'; $messages['setdeactivated'] = '禁用过滤器集成功。'; $messages['setdeleted'] = '删除过滤器成功。'; $messages['setdeleteconfirm'] = '您确定要删除指定的过滤器吗?'; -$messages['setcreateerror'] = '无法创建过滤器,服务器发生错误。'; $messages['setcreated'] = '过滤器成功创建。'; -$messages['activateerror'] = '无法启用选中的过滤器,服务器发生错误。'; -$messages['deactivateerror'] = '无法禁用选中的过滤器,服务器发生错误。'; $messages['deactivated'] = '启用过滤器成功。'; $messages['activated'] = '禁用过滤器成功。'; $messages['moved'] = '移动过滤器成功。'; -$messages['moveerror'] = '无法移动选中的过滤器,服务器发生错误。'; $messages['nametoolong'] = '无法创建过滤器集,名称太长。'; $messages['namereserved'] = '保留名称。'; $messages['setexist'] = '设置已存在。'; $messages['nodata'] = '至少选择一个位置!'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/managesieve/localization/zh_TW.inc b/plugins/managesieve/localization/zh_TW.inc index 46b9ea957..72eb3393b 100644 --- a/plugins/managesieve/localization/zh_TW.inc +++ b/plugins/managesieve/localization/zh_TW.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-managesieve/ */ - - $labels['filters'] = '篩選器'; $labels['managefilters'] = '設定篩選器'; $labels['filtername'] = '篩選器名稱'; @@ -56,11 +54,7 @@ $labels['add'] = '新增'; $labels['del'] = '刪除'; $labels['sender'] = '寄件者'; $labels['recipient'] = '收件者'; -$labels['vacationaddr'] = 'My additional e-mail address(es):'; $labels['vacationdays'] = '多久回覆一次(單位:天):'; -$labels['vacationinterval'] = 'How often send messages:'; -$labels['days'] = 'days'; -$labels['seconds'] = 'seconds'; $labels['vacationreason'] = '信件內容(休假原因):'; $labels['vacationsubject'] = '訊息主旨:'; $labels['rulestop'] = '停止評估規則'; @@ -84,13 +78,11 @@ $labels['countisgreaterthanequal'] = '計數大於或等於'; $labels['countislessthan'] = '計數小於'; $labels['countislessthanequal'] = '數量小於或等於'; $labels['countequals'] = '數量等於'; -$labels['countnotequals'] = 'count is not equal to'; $labels['valueisgreaterthan'] = '值大於'; $labels['valueisgreaterthanequal'] = '值大於等於'; $labels['valueislessthan'] = '值小於'; $labels['valueislessthanequal'] = '值小於或等於'; $labels['valueequals'] = '值等於'; -$labels['valuenotequals'] = 'value is not equal to'; $labels['setflags'] = '設定標幟'; $labels['addflags'] = '新增標記到訊息'; $labels['removeflags'] = '移除訊息標記'; @@ -122,22 +114,12 @@ $labels['filtercreate'] = '建立郵件規則'; $labels['usedata'] = '於規則中使用轉寄時間'; $labels['nextstep'] = '下一步'; $labels['...'] = '…'; -$labels['currdate'] = 'Current date'; -$labels['datetest'] = 'Date'; -$labels['dateheader'] = 'header:'; -$labels['year'] = 'year'; -$labels['month'] = 'month'; -$labels['day'] = 'day'; $labels['date'] = '日期 (yyyy-mm-dd)'; $labels['julian'] = '日期 (Julian Day)'; -$labels['hour'] = 'hour'; -$labels['minute'] = 'minute'; -$labels['second'] = 'second'; $labels['time'] = '時間 (hh:mm:ss)'; $labels['iso8601'] = '日期 (ISO8601)'; $labels['std11'] = '日期 (RFC2822)'; $labels['zone'] = '時區'; -$labels['weekday'] = 'weekday (0-6)'; $labels['advancedopts'] = '進階選項'; $labels['body'] = '內文'; $labels['address'] = '郵件位址'; @@ -157,38 +139,26 @@ $labels['default'] = '預設'; $labels['octet'] = '嚴謹模式(八位元組)'; $labels['asciicasemap'] = '不區分大小寫(採用ASCII-Casemap)'; $labels['asciinumeric'] = '數字類型(ascii-numeric)'; -$labels['index'] = 'index:'; -$labels['indexlast'] = 'backwards'; $messages['filterunknownerror'] = '未知的伺服器錯誤'; $messages['filterconnerror'] = '無法與伺服器連線'; -$messages['filterdeleteerror'] = '無法刪除篩選器。發生伺服器錯誤'; $messages['filterdeleted'] = '成功刪除篩選器'; $messages['filtersaved'] = '成功儲存篩選器。'; -$messages['filtersaveerror'] = '無法儲存篩選器。發生伺服器錯誤'; $messages['filterdeleteconfirm'] = '您確定要刪除選擇的郵件規則嗎?'; $messages['ruledeleteconfirm'] = '您確定要刪除選的規則嗎?'; $messages['actiondeleteconfirm'] = '您確定要刪除選擇的動作嗎?'; $messages['forbiddenchars'] = '內容包含禁用字元'; $messages['cannotbeempty'] = '內容不能為空白'; $messages['ruleexist'] = '規則名稱重複'; -$messages['setactivateerror'] = '無法啟用選擇的篩選器集合。 伺服器發生錯誤'; -$messages['setdeactivateerror'] = '無法停用選擇的篩選器集合。 伺服器發生錯誤'; -$messages['setdeleteerror'] = '無法刪除選擇的篩選器集合。 伺服器發生錯誤'; $messages['setactivated'] = '篩選器集合成功啟用'; $messages['setdeactivated'] = '篩選器集合成功停用'; $messages['setdeleted'] = '篩選器集合成功刪除'; $messages['setdeleteconfirm'] = '你確定要刪除選擇的篩選器集合嗎?'; -$messages['setcreateerror'] = '無法建立篩選器集合。 伺服器發生錯誤'; $messages['setcreated'] = '篩選器集合成功建立'; -$messages['activateerror'] = '無法啟用選擇的篩選器。伺服器錯誤'; -$messages['deactivateerror'] = '無法停用選擇的篩選器。伺服器錯誤'; $messages['deactivated'] = '篩選器已啟用'; $messages['activated'] = '篩選器已停用'; $messages['moved'] = '篩選器已移動'; -$messages['moveerror'] = '無法移動選擇的篩選器。伺服器錯誤。'; $messages['nametoolong'] = '名稱太長。'; $messages['namereserved'] = '保留名稱.'; $messages['setexist'] = '設定已存在'; $messages['nodata'] = '至少要選擇一個位置'; -$messages['invaliddateformat'] = 'Invalid date or date part format'; ?> diff --git a/plugins/markasjunk/localization/ar.inc b/plugins/markasjunk/localization/ar.inc index 335ea3126..1915e97fb 100644 --- a/plugins/markasjunk/localization/ar.inc +++ b/plugins/markasjunk/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'غير المرغوب'; $labels['buttontitle'] = 'حدد كغير مرغوب'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/az_AZ.inc b/plugins/markasjunk/localization/az_AZ.inc index abf6cdce3..407db71c2 100644 --- a/plugins/markasjunk/localization/az_AZ.inc +++ b/plugins/markasjunk/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Spam qovluğuna köçür'; $labels['reportedasjunk'] = 'Spam qovluğuna köçürüldü'; diff --git a/plugins/markasjunk/localization/be_BE.inc b/plugins/markasjunk/localization/be_BE.inc index 095c0d8b8..3f4a5f9a6 100644 --- a/plugins/markasjunk/localization/be_BE.inc +++ b/plugins/markasjunk/localization/be_BE.inc @@ -15,8 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Непажаданыя'; -$labels['buttontitle'] = 'Пазначыць як непажаданы'; -$labels['reportedasjunk'] = 'Паспяхова пазначаны як напажаданы'; +$labels['buttontext'] = 'Спам'; +$labels['buttontitle'] = 'Пазначыць як спам'; +$labels['reportedasjunk'] = 'Пазначаны як спам'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/bg_BG.inc b/plugins/markasjunk/localization/bg_BG.inc index a672476bb..c49bafaab 100644 --- a/plugins/markasjunk/localization/bg_BG.inc +++ b/plugins/markasjunk/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Спам'; $labels['buttontitle'] = 'Маркирай като спам'; $labels['reportedasjunk'] = 'Писмото е маркирано като спам успешно'; diff --git a/plugins/markasjunk/localization/br.inc b/plugins/markasjunk/localization/br.inc index febdfa9b1..3980bc2e3 100644 --- a/plugins/markasjunk/localization/br.inc +++ b/plugins/markasjunk/localization/br.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Lastez'; $labels['buttontitle'] = 'Merkañ evel lastez'; $labels['reportedasjunk'] = 'Danevellet evel lastez gant berzh'; diff --git a/plugins/markasjunk/localization/bs_BA.inc b/plugins/markasjunk/localization/bs_BA.inc index 7eaaf8811..6a32ee099 100644 --- a/plugins/markasjunk/localization/bs_BA.inc +++ b/plugins/markasjunk/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označi kao spam'; $labels['reportedasjunk'] = 'Uspješno označeno kao spam'; diff --git a/plugins/markasjunk/localization/ca_ES.inc b/plugins/markasjunk/localization/ca_ES.inc index f10aa7a67..18fef58a8 100644 --- a/plugins/markasjunk/localization/ca_ES.inc +++ b/plugins/markasjunk/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Correu brossa'; $labels['buttontitle'] = 'Marca com a Spam'; $labels['reportedasjunk'] = 'S\'ha reportat correctament com a Spam'; diff --git a/plugins/markasjunk/localization/cs_CZ.inc b/plugins/markasjunk/localization/cs_CZ.inc index 81ec3938e..d0dbc6cd0 100644 --- a/plugins/markasjunk/localization/cs_CZ.inc +++ b/plugins/markasjunk/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označit jako Spam'; $labels['reportedasjunk'] = 'Úspěšně nahlášeno jako Spam'; diff --git a/plugins/markasjunk/localization/cy_GB.inc b/plugins/markasjunk/localization/cy_GB.inc index b0896256d..9ea2c9d21 100644 --- a/plugins/markasjunk/localization/cy_GB.inc +++ b/plugins/markasjunk/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Sothach'; $labels['buttontitle'] = 'Nodi fel Sbwriel'; $labels['reportedasjunk'] = 'Adroddwyd yn llwyddiannus fel Sbwriel'; diff --git a/plugins/markasjunk/localization/da_DK.inc b/plugins/markasjunk/localization/da_DK.inc index fec4cbb3e..ac2a4c85c 100644 --- a/plugins/markasjunk/localization/da_DK.inc +++ b/plugins/markasjunk/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marker som spam mail'; $labels['reportedasjunk'] = 'Successfuldt rapporteret som spam mail'; diff --git a/plugins/markasjunk/localization/de_CH.inc b/plugins/markasjunk/localization/de_CH.inc index 30ba40126..c61028510 100644 --- a/plugins/markasjunk/localization/de_CH.inc +++ b/plugins/markasjunk/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Als SPAM markieren'; $labels['reportedasjunk'] = 'Erfolgreich als SPAM gemeldet'; diff --git a/plugins/markasjunk/localization/de_DE.inc b/plugins/markasjunk/localization/de_DE.inc index 0bab30013..28abacf63 100644 --- a/plugins/markasjunk/localization/de_DE.inc +++ b/plugins/markasjunk/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'als SPAM markieren'; $labels['reportedasjunk'] = 'Erfolgreich als SPAM gemeldet'; diff --git a/plugins/markasjunk/localization/el_GR.inc b/plugins/markasjunk/localization/el_GR.inc index 1c7498786..d63ecd57d 100644 --- a/plugins/markasjunk/localization/el_GR.inc +++ b/plugins/markasjunk/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Ανεπιθύμητα'; $labels['buttontitle'] = 'Σήμανση ως Ανεπιθύμητου'; $labels['reportedasjunk'] = 'Αναφέρθηκε ως Ανεπιθήμητο'; diff --git a/plugins/markasjunk/localization/en_GB.inc b/plugins/markasjunk/localization/en_GB.inc index d51efd461..92c041948 100644 --- a/plugins/markasjunk/localization/en_GB.inc +++ b/plugins/markasjunk/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Mark as Junk'; $labels['reportedasjunk'] = 'Successfully reported as Junk'; diff --git a/plugins/markasjunk/localization/eo.inc b/plugins/markasjunk/localization/eo.inc index af42a32ce..d92e48952 100644 --- a/plugins/markasjunk/localization/eo.inc +++ b/plugins/markasjunk/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Rubaĵo'; $labels['buttontitle'] = 'Marki kiel rubaĵo'; $labels['reportedasjunk'] = 'Sukcese raportita kiel rubaĵo'; diff --git a/plugins/markasjunk/localization/es_AR.inc b/plugins/markasjunk/localization/es_AR.inc index e2dbdc34d..b9c452bf1 100644 --- a/plugins/markasjunk/localization/es_AR.inc +++ b/plugins/markasjunk/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Correo no deseado'; $labels['buttontitle'] = 'Marcar como SPAM'; $labels['reportedasjunk'] = 'Mensaje reportado como SPAM'; diff --git a/plugins/markasjunk/localization/es_ES.inc b/plugins/markasjunk/localization/es_ES.inc index fadf30492..e1f7f1750 100644 --- a/plugins/markasjunk/localization/es_ES.inc +++ b/plugins/markasjunk/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'SPAM'; $labels['buttontitle'] = 'Marcar como SPAM'; $labels['reportedasjunk'] = 'Mensaje informado como SPAM'; diff --git a/plugins/markasjunk/localization/et_EE.inc b/plugins/markasjunk/localization/et_EE.inc index c582f3c65..2b1d1f8e7 100644 --- a/plugins/markasjunk/localization/et_EE.inc +++ b/plugins/markasjunk/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Rämps'; $labels['buttontitle'] = 'Märgista Rämpsuks'; $labels['reportedasjunk'] = 'Edukalt Rämpsuks märgitud'; diff --git a/plugins/markasjunk/localization/eu_ES.inc b/plugins/markasjunk/localization/eu_ES.inc index 6101da51d..ade169b70 100644 --- a/plugins/markasjunk/localization/eu_ES.inc +++ b/plugins/markasjunk/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Zabor-mezua'; $labels['buttontitle'] = 'Markatu zabor-mezu bezala'; $labels['reportedasjunk'] = 'Zabor bezala markatu da'; diff --git a/plugins/markasjunk/localization/fa_IR.inc b/plugins/markasjunk/localization/fa_IR.inc index 50fbd41ef..f0ba38985 100644 --- a/plugins/markasjunk/localization/fa_IR.inc +++ b/plugins/markasjunk/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'بنجل'; $labels['buttontitle'] = 'علامت گذاری به عنوان بنجل'; $labels['reportedasjunk'] = 'با موفقیت به عنوان بنجل گزارش شد'; diff --git a/plugins/markasjunk/localization/fi_FI.inc b/plugins/markasjunk/localization/fi_FI.inc index e343116d4..adf71ea92 100644 --- a/plugins/markasjunk/localization/fi_FI.inc +++ b/plugins/markasjunk/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Roskaposti'; $labels['buttontitle'] = 'Merkitse roskapostiksi'; $labels['reportedasjunk'] = 'Roskapostista on ilmoitettu onnistuneesti'; diff --git a/plugins/markasjunk/localization/fr_FR.inc b/plugins/markasjunk/localization/fr_FR.inc index 7054d0948..1eaa48074 100644 --- a/plugins/markasjunk/localization/fr_FR.inc +++ b/plugins/markasjunk/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Indésirables'; $labels['buttontitle'] = 'Marquer comme indésirable'; $labels['reportedasjunk'] = 'Notification de message indésirable envoyée'; diff --git a/plugins/markasjunk/localization/gl_ES.inc b/plugins/markasjunk/localization/gl_ES.inc index 35fe0841d..336c0108f 100644 --- a/plugins/markasjunk/localization/gl_ES.inc +++ b/plugins/markasjunk/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Correo lixo'; $labels['buttontitle'] = 'Marcar como correo lixo'; $labels['reportedasjunk'] = 'Mensaxe marcada como correo lixo'; diff --git a/plugins/markasjunk/localization/he_IL.inc b/plugins/markasjunk/localization/he_IL.inc index 13f635078..d672e4bb7 100644 --- a/plugins/markasjunk/localization/he_IL.inc +++ b/plugins/markasjunk/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'זבל'; $labels['buttontitle'] = 'סמן כדואר זבל'; $labels['reportedasjunk'] = 'דואר הזבל דווח בהצלחה'; diff --git a/plugins/markasjunk/localization/hr_HR.inc b/plugins/markasjunk/localization/hr_HR.inc index 4fe971893..86c72b898 100644 --- a/plugins/markasjunk/localization/hr_HR.inc +++ b/plugins/markasjunk/localization/hr_HR.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Označi kao smeće (spam)'; $labels['reportedasjunk'] = 'Uspješno prijavljeno kao smeće (spam)'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/hu_HU.inc b/plugins/markasjunk/localization/hu_HU.inc index 7d38610d1..aaccbd461 100644 --- a/plugins/markasjunk/localization/hu_HU.inc +++ b/plugins/markasjunk/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Levélszemét'; $labels['buttontitle'] = 'Szemétnek jelölés'; $labels['reportedasjunk'] = 'Sikeresen szemétnek jelentve'; diff --git a/plugins/markasjunk/localization/hy_AM.inc b/plugins/markasjunk/localization/hy_AM.inc index b562e5c9f..f08421241 100644 --- a/plugins/markasjunk/localization/hy_AM.inc +++ b/plugins/markasjunk/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Թափոն'; $labels['buttontitle'] = 'Նշել որպես Թափոն'; $labels['reportedasjunk'] = 'Բարեհաջող հաղորդվեց որպես Թափոն'; diff --git a/plugins/markasjunk/localization/id_ID.inc b/plugins/markasjunk/localization/id_ID.inc index 7063bda7b..e2988fb96 100644 --- a/plugins/markasjunk/localization/id_ID.inc +++ b/plugins/markasjunk/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Sampah'; $labels['buttontitle'] = 'Tandai sebagai sampah'; $labels['reportedasjunk'] = 'Berhasil dilaporkan sebagai sampah'; diff --git a/plugins/markasjunk/localization/it_IT.inc b/plugins/markasjunk/localization/it_IT.inc index b787536af..86db382a1 100644 --- a/plugins/markasjunk/localization/it_IT.inc +++ b/plugins/markasjunk/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marca come Spam'; $labels['reportedasjunk'] = 'Messaggio marcato come Spam'; diff --git a/plugins/markasjunk/localization/ja_JP.inc b/plugins/markasjunk/localization/ja_JP.inc index abd84d8e5..a90e6be99 100644 --- a/plugins/markasjunk/localization/ja_JP.inc +++ b/plugins/markasjunk/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = '迷惑メール'; $labels['buttontitle'] = '迷惑メールとして設定'; $labels['reportedasjunk'] = '迷惑メールとして報告しました。'; diff --git a/plugins/markasjunk/localization/km_KH.inc b/plugins/markasjunk/localization/km_KH.inc index a102c004a..ca4ceed66 100644 --- a/plugins/markasjunk/localization/km_KH.inc +++ b/plugins/markasjunk/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'សំបុត្រមិនល្អ'; $labels['buttontitle'] = 'ចាត់ជា សំបុត្រមិនល្អ'; $labels['reportedasjunk'] = 'រាយការណ៏ថាជា សំបុត្រមិនល្អ បានសំរេច'; diff --git a/plugins/markasjunk/localization/ko_KR.inc b/plugins/markasjunk/localization/ko_KR.inc index 2df78d4d2..209f530a1 100644 --- a/plugins/markasjunk/localization/ko_KR.inc +++ b/plugins/markasjunk/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = '정크메일'; $labels['buttontitle'] = '정크메일로 표시'; $labels['reportedasjunk'] = '성공적으로, 정크메일이라 보고 됨'; diff --git a/plugins/markasjunk/localization/ku.inc b/plugins/markasjunk/localization/ku.inc index 562147696..0bb30fa59 100644 --- a/plugins/markasjunk/localization/ku.inc +++ b/plugins/markasjunk/localization/ku.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'nawnişani bka ba şkaw'; $labels['reportedasjunk'] = 'ba gşti raport kra'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/lb_LU.inc b/plugins/markasjunk/localization/lb_LU.inc index e4a4f7298..c6f1081e2 100644 --- a/plugins/markasjunk/localization/lb_LU.inc +++ b/plugins/markasjunk/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Als Spam markéieren'; $labels['reportedasjunk'] = 'Erfollegräich als Spam gemellt'; diff --git a/plugins/markasjunk/localization/lt_LT.inc b/plugins/markasjunk/localization/lt_LT.inc index 0d7144ddd..b93e85d0f 100644 --- a/plugins/markasjunk/localization/lt_LT.inc +++ b/plugins/markasjunk/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Brukalas'; $labels['buttontitle'] = 'Žymėti kaip brukalą'; $labels['reportedasjunk'] = 'Sėkmingai pranešta, jog laiškas yra brukalas'; diff --git a/plugins/markasjunk/localization/lv_LV.inc b/plugins/markasjunk/localization/lv_LV.inc index d29e60d91..6c56c54ed 100644 --- a/plugins/markasjunk/localization/lv_LV.inc +++ b/plugins/markasjunk/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Mēstules'; $labels['buttontitle'] = 'Atzīmēt kā mēstuli'; $labels['reportedasjunk'] = 'Sekmīgi iatzīmēta kā mēstule'; diff --git a/plugins/markasjunk/localization/ml_IN.inc b/plugins/markasjunk/localization/ml_IN.inc index c6654709e..aaa736b98 100644 --- a/plugins/markasjunk/localization/ml_IN.inc +++ b/plugins/markasjunk/localization/ml_IN.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'സ്പാം ആയി അടയാളപ്പെടുത്തുക'; $labels['reportedasjunk'] = 'സ്പാം ആയി അടയാളപ്പെടുത്തി'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/mr_IN.inc b/plugins/markasjunk/localization/mr_IN.inc index 7c4611bc0..232b4b33e 100644 --- a/plugins/markasjunk/localization/mr_IN.inc +++ b/plugins/markasjunk/localization/mr_IN.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'नको असलेला अशी खूण करा'; $labels['reportedasjunk'] = 'नको आहे असे यशस्वीरीत्या नक्की केले'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/nb_NO.inc b/plugins/markasjunk/localization/nb_NO.inc index 155dbf85a..af1b2cbf9 100644 --- a/plugins/markasjunk/localization/nb_NO.inc +++ b/plugins/markasjunk/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Useriøs e-post'; $labels['buttontitle'] = 'Marker som useriøs e-post'; $labels['reportedasjunk'] = 'Rapportering av useriøs e-post var vellykket'; diff --git a/plugins/markasjunk/localization/nl_NL.inc b/plugins/markasjunk/localization/nl_NL.inc index 49f40ec57..e1ed11568 100644 --- a/plugins/markasjunk/localization/nl_NL.inc +++ b/plugins/markasjunk/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Markeer als spam'; $labels['reportedasjunk'] = 'Succesvol gemarkeerd als spam'; diff --git a/plugins/markasjunk/localization/nn_NO.inc b/plugins/markasjunk/localization/nn_NO.inc index 9b08089ad..f198c5633 100644 --- a/plugins/markasjunk/localization/nn_NO.inc +++ b/plugins/markasjunk/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Useriøs e-post'; $labels['buttontitle'] = 'Marker som useriøs e-post'; $labels['reportedasjunk'] = 'Rapportering av useriøs e-post var vellykka'; diff --git a/plugins/markasjunk/localization/pl_PL.inc b/plugins/markasjunk/localization/pl_PL.inc index b3d4b4534..a23a8de2f 100644 --- a/plugins/markasjunk/localization/pl_PL.inc +++ b/plugins/markasjunk/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Oznacz jako SPAM'; $labels['reportedasjunk'] = 'Pomyślnie oznaczono jako SPAM'; diff --git a/plugins/markasjunk/localization/pt_BR.inc b/plugins/markasjunk/localization/pt_BR.inc index 83252ab15..001d4639c 100644 --- a/plugins/markasjunk/localization/pt_BR.inc +++ b/plugins/markasjunk/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Marcar como Spam'; $labels['reportedasjunk'] = 'Marcado como Spam com sucesso'; diff --git a/plugins/markasjunk/localization/pt_PT.inc b/plugins/markasjunk/localization/pt_PT.inc index eabde40a5..fd26a38da 100644 --- a/plugins/markasjunk/localization/pt_PT.inc +++ b/plugins/markasjunk/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Lixo'; $labels['buttontitle'] = 'Marcar como Lixo'; $labels['reportedasjunk'] = 'Reportado como Lixo com sucesso'; diff --git a/plugins/markasjunk/localization/ro_RO.inc b/plugins/markasjunk/localization/ro_RO.inc index 199edddae..b843fa590 100644 --- a/plugins/markasjunk/localization/ro_RO.inc +++ b/plugins/markasjunk/localization/ro_RO.inc @@ -15,8 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Vechituri'; -$labels['buttontitle'] = 'Marchează ca SPAM'; -$labels['reportedasjunk'] = 'Raportat cu succes ca SPAM'; +$labels['buttontext'] = 'Spam'; +$labels['buttontitle'] = 'Marchează ca Spam'; +$labels['reportedasjunk'] = 'Raportat cu succes ca Spam'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/ru_RU.inc b/plugins/markasjunk/localization/ru_RU.inc index 7efa50406..78e269543 100644 --- a/plugins/markasjunk/localization/ru_RU.inc +++ b/plugins/markasjunk/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'СПАМ'; $labels['buttontitle'] = 'Переместить в СПАМ'; $labels['reportedasjunk'] = 'Перемещено в СПАМ'; diff --git a/plugins/markasjunk/localization/si_LK.inc b/plugins/markasjunk/localization/si_LK.inc index 807eee56a..06283ef87 100644 --- a/plugins/markasjunk/localization/si_LK.inc +++ b/plugins/markasjunk/localization/si_LK.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'සුන්බුන් ලෙස සලකුණු කරන්න'; $labels['reportedasjunk'] = 'සුන්බුන් ලෙස වාර්තා කිරීම සාර්ථකයි'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/sk_SK.inc b/plugins/markasjunk/localization/sk_SK.inc index bfbc14fa6..101b57ab7 100644 --- a/plugins/markasjunk/localization/sk_SK.inc +++ b/plugins/markasjunk/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Spam'; $labels['buttontitle'] = 'Označiť ako Spam'; $labels['reportedasjunk'] = 'Úspešne nahlásené ako Spam'; diff --git a/plugins/markasjunk/localization/sl_SI.inc b/plugins/markasjunk/localization/sl_SI.inc index af2f41aaf..538bb7f23 100644 --- a/plugins/markasjunk/localization/sl_SI.inc +++ b/plugins/markasjunk/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Nezaželena sporočila'; $labels['buttontitle'] = 'Označi kot spam'; $labels['reportedasjunk'] = 'Uspešno označeno kot spam'; diff --git a/plugins/markasjunk/localization/sr_CS.inc b/plugins/markasjunk/localization/sr_CS.inc index b8d468b64..6977bdcbd 100644 --- a/plugins/markasjunk/localization/sr_CS.inc +++ b/plugins/markasjunk/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Смеће'; $labels['buttontitle'] = 'Означи као cмеће'; $labels['reportedasjunk'] = 'Успешно пријављени као cмеће'; diff --git a/plugins/markasjunk/localization/sv_SE.inc b/plugins/markasjunk/localization/sv_SE.inc index 6f4c583ed..369821e1d 100644 --- a/plugins/markasjunk/localization/sv_SE.inc +++ b/plugins/markasjunk/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Skräp'; $labels['buttontitle'] = 'Märk som skräp'; $labels['reportedasjunk'] = 'Framgångsrikt rapporterat som skräp'; diff --git a/plugins/markasjunk/localization/tr_TR.inc b/plugins/markasjunk/localization/tr_TR.inc index 85a5aed3e..c4230799f 100644 --- a/plugins/markasjunk/localization/tr_TR.inc +++ b/plugins/markasjunk/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'İstenmeyen'; $labels['buttontitle'] = 'Çöp olarak işaretle'; $labels['reportedasjunk'] = 'Spam olarak rapor edildi'; diff --git a/plugins/markasjunk/localization/uk_UA.inc b/plugins/markasjunk/localization/uk_UA.inc index 0666d0807..34e627f1f 100644 --- a/plugins/markasjunk/localization/uk_UA.inc +++ b/plugins/markasjunk/localization/uk_UA.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - -$labels['buttontext'] = 'Junk'; $labels['buttontitle'] = 'Перемістити в "Спам'; $labels['reportedasjunk'] = 'Переміщено до "Спаму'; ?> \ No newline at end of file diff --git a/plugins/markasjunk/localization/vi_VN.inc b/plugins/markasjunk/localization/vi_VN.inc index 8de71615e..cd0909820 100644 --- a/plugins/markasjunk/localization/vi_VN.inc +++ b/plugins/markasjunk/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = 'Thư rác'; $labels['buttontitle'] = 'Đánh dấu để được xem là thư rác'; $labels['reportedasjunk'] = 'Đánh dấu để được xem là thư rác thành công'; diff --git a/plugins/markasjunk/localization/zh_CN.inc b/plugins/markasjunk/localization/zh_CN.inc index 465643246..1f2250e2b 100644 --- a/plugins/markasjunk/localization/zh_CN.inc +++ b/plugins/markasjunk/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = '垃圾邮件'; $labels['buttontitle'] = '标记为垃圾邮件'; $labels['reportedasjunk'] = '成功报告该邮件为垃圾邮件'; diff --git a/plugins/markasjunk/localization/zh_TW.inc b/plugins/markasjunk/localization/zh_TW.inc index da0b57cba..a42fd119d 100644 --- a/plugins/markasjunk/localization/zh_TW.inc +++ b/plugins/markasjunk/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-markasjunk/ */ - $labels['buttontext'] = '垃圾郵件'; $labels['buttontitle'] = '標示為垃圾信'; $labels['reportedasjunk'] = '成功回報垃圾信'; diff --git a/plugins/new_user_dialog/localization/ar.inc b/plugins/new_user_dialog/localization/ar.inc index 7016e5520..110b6c429 100644 --- a/plugins/new_user_dialog/localization/ar.inc +++ b/plugins/new_user_dialog/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'يرجى إكمال هوية المرسل'; $labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند تسجيل الدخول أول مرة .'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ar_SA.inc b/plugins/new_user_dialog/localization/ar_SA.inc index 9bfd24976..ea65a059c 100644 --- a/plugins/new_user_dialog/localization/ar_SA.inc +++ b/plugins/new_user_dialog/localization/ar_SA.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialoghint'] = 'يظهر هذا المربع مرة واحدة فقط عند أول الدخول'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ast.inc b/plugins/new_user_dialog/localization/ast.inc index 1d4c9fc1c..0ec826dee 100644 --- a/plugins/new_user_dialog/localization/ast.inc +++ b/plugins/new_user_dialog/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor, completa los tos datos personales'; $labels['identitydialoghint'] = 'Esti diálogu namái va apaecer la primer vegada que te coneutes al corréu.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/az_AZ.inc b/plugins/new_user_dialog/localization/az_AZ.inc index d3c7f89f7..c5196dd99 100644 --- a/plugins/new_user_dialog/localization/az_AZ.inc +++ b/plugins/new_user_dialog/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Lütfən, adınızı yazın.'; $labels['identitydialoghint'] = 'Bu məlumat yalnız ilk girişdə göstərilir.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/be_BE.inc b/plugins/new_user_dialog/localization/be_BE.inc index 390180634..9986d4320 100644 --- a/plugins/new_user_dialog/localization/be_BE.inc +++ b/plugins/new_user_dialog/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - -$labels['identitydialogtitle'] = 'Калі ласка, запоўніце асабістыя звесткі'; -$labels['identitydialoghint'] = 'Гэтае вакно з\'яўляецца толькі аднойчы, у час першага ўваходу.'; +$labels['identitydialogtitle'] = 'Калі ласка, запоўніце тоеснасць адпраўніка'; +$labels['identitydialoghint'] = 'Гэтае акно з\'яўляецца толькі аднойчы, у час першага ўваходу.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/bg_BG.inc b/plugins/new_user_dialog/localization/bg_BG.inc index 708f8f4ba..38b2c3a10 100644 --- a/plugins/new_user_dialog/localization/bg_BG.inc +++ b/plugins/new_user_dialog/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Моля попълнете Вашите данни за идентичност на подател'; $labels['identitydialoghint'] = 'Този диалог се появява само при първоначално регистриране.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/bs_BA.inc b/plugins/new_user_dialog/localization/bs_BA.inc index f8cc93c1d..ade75f28f 100644 --- a/plugins/new_user_dialog/localization/bs_BA.inc +++ b/plugins/new_user_dialog/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Molimo vas da kompletirate vaš identitet pošiljaoca'; $labels['identitydialoghint'] = 'Ovaj okvir se pojavljuje samo jednom prilikom prve prijave.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ca_ES.inc b/plugins/new_user_dialog/localization/ca_ES.inc index 3675954ec..148bd440c 100644 --- a/plugins/new_user_dialog/localization/ca_ES.inc +++ b/plugins/new_user_dialog/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Si us plau, completeu la identitat del vostre remitent'; $labels['identitydialoghint'] = 'Aquest quadre només apareix un cop a la primera entrada.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/cs_CZ.inc b/plugins/new_user_dialog/localization/cs_CZ.inc index 7b4a25b38..ccc9b1023 100644 --- a/plugins/new_user_dialog/localization/cs_CZ.inc +++ b/plugins/new_user_dialog/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Prosím doplňte své jméno a e-mail'; $labels['identitydialoghint'] = 'Tento dialog se objeví pouze při prvním přihlášení.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/cy_GB.inc b/plugins/new_user_dialog/localization/cy_GB.inc index 7d935d0de..33eb284e2 100644 --- a/plugins/new_user_dialog/localization/cy_GB.inc +++ b/plugins/new_user_dialog/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Cwblhewch eich enw danfonwr'; $labels['identitydialoghint'] = 'Mae\'r bocs hwn yn ymddangos unwaith ar eich mewngofnodiad cyntaf.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/da_DK.inc b/plugins/new_user_dialog/localization/da_DK.inc index e5a69dd66..a34282a3a 100644 --- a/plugins/new_user_dialog/localization/da_DK.inc +++ b/plugins/new_user_dialog/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Udfyld din afsender identitet'; $labels['identitydialoghint'] = 'Denne boks vises kun én gang ved første login'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/de_CH.inc b/plugins/new_user_dialog/localization/de_CH.inc index 195fdc23d..b5aed0519 100644 --- a/plugins/new_user_dialog/localization/de_CH.inc +++ b/plugins/new_user_dialog/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Bitte vervollständigen Sie Ihre Absender-Informationen'; $labels['identitydialoghint'] = 'Dieser Dialog erscheint nur einmal beim ersten Login.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/de_DE.inc b/plugins/new_user_dialog/localization/de_DE.inc index 195fdc23d..b5aed0519 100644 --- a/plugins/new_user_dialog/localization/de_DE.inc +++ b/plugins/new_user_dialog/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Bitte vervollständigen Sie Ihre Absender-Informationen'; $labels['identitydialoghint'] = 'Dieser Dialog erscheint nur einmal beim ersten Login.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/el_GR.inc b/plugins/new_user_dialog/localization/el_GR.inc index 01028689d..761ec363e 100644 --- a/plugins/new_user_dialog/localization/el_GR.inc +++ b/plugins/new_user_dialog/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Παρακαλώ συμπληρώστε την ταυτότητα του αποστολέα'; $labels['identitydialoghint'] = 'Αυτό το πλαίσιο εμφανίζεται μια φορά κατά την πρώτη σύνδεση'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/en_GB.inc b/plugins/new_user_dialog/localization/en_GB.inc index 4c7b59301..37043cb52 100644 --- a/plugins/new_user_dialog/localization/en_GB.inc +++ b/plugins/new_user_dialog/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Please complete your sender identity.'; $labels['identitydialoghint'] = 'This box only appears once at the first login.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/eo.inc b/plugins/new_user_dialog/localization/eo.inc index 5ac957e0e..5eff25356 100644 --- a/plugins/new_user_dialog/localization/eo.inc +++ b/plugins/new_user_dialog/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Bonvole plenumu vian identon pri sendanto'; $labels['identitydialoghint'] = 'Ĉi tiu kesto aperas nur unufoje je la unua ensaluto.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/es_AR.inc b/plugins/new_user_dialog/localization/es_AR.inc index a1e42c992..bda1c7477 100644 --- a/plugins/new_user_dialog/localization/es_AR.inc +++ b/plugins/new_user_dialog/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor, seleccione una identidad para los mensajes salientes'; $labels['identitydialoghint'] = 'Este diálogo aparecerá sólo una vez durante el primer ingreso'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/es_ES.inc b/plugins/new_user_dialog/localization/es_ES.inc index 7f005f111..45f55d8f3 100644 --- a/plugins/new_user_dialog/localization/es_ES.inc +++ b/plugins/new_user_dialog/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor, complete sus datos personales'; $labels['identitydialoghint'] = 'Este diálogo sólo aparecerá la primera vez que se conecte al correo.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/et_EE.inc b/plugins/new_user_dialog/localization/et_EE.inc index 295e57f9e..2f2d5e70c 100644 --- a/plugins/new_user_dialog/localization/et_EE.inc +++ b/plugins/new_user_dialog/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Palun täida oma saatja identiteet'; $labels['identitydialoghint'] = 'See kast ilmub ainult esimesel sisselogimisel.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/eu_ES.inc b/plugins/new_user_dialog/localization/eu_ES.inc index 4e0f5ec76..1276ea70c 100644 --- a/plugins/new_user_dialog/localization/eu_ES.inc +++ b/plugins/new_user_dialog/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Osatu zure bidaltzaile-identitatea'; $labels['identitydialoghint'] = 'Kutxa hau behin bakarri agertzen da lehenengoz sartzean.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fa_AF.inc b/plugins/new_user_dialog/localization/fa_AF.inc index 23867ba3f..d66d4cbcf 100644 --- a/plugins/new_user_dialog/localization/fa_AF.inc +++ b/plugins/new_user_dialog/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'لطفا مشخصات فرستنده را کامل کنید'; $labels['identitydialoghint'] = 'این متن تنها هنگام اولین ورود نمایش داده خواهد شد'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fa_IR.inc b/plugins/new_user_dialog/localization/fa_IR.inc index c75ac5909..b1f89f253 100644 --- a/plugins/new_user_dialog/localization/fa_IR.inc +++ b/plugins/new_user_dialog/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'لطفا شناسنه ارسالی‌تان را کامل کنید'; $labels['identitydialoghint'] = 'این جعبه فقط یک بار در اولین ورود ظاهر می‌شود.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fi_FI.inc b/plugins/new_user_dialog/localization/fi_FI.inc index 974a62793..882df9653 100644 --- a/plugins/new_user_dialog/localization/fi_FI.inc +++ b/plugins/new_user_dialog/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Täydennä lähettäjätietosi'; $labels['identitydialoghint'] = 'Tämä kohta näkyy vain ensimmäisellä kirjautumiskerralla.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/fr_FR.inc b/plugins/new_user_dialog/localization/fr_FR.inc index 10021dbe7..e34f0bcd0 100644 --- a/plugins/new_user_dialog/localization/fr_FR.inc +++ b/plugins/new_user_dialog/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Veuillez saisir votre identité d\'expéditeur'; $labels['identitydialoghint'] = 'Cette fenêtre de dialogue ne s\'affiche qu\'une seule fois à la première connexion.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/gl_ES.inc b/plugins/new_user_dialog/localization/gl_ES.inc index f829cf4c6..83c73b90d 100644 --- a/plugins/new_user_dialog/localization/gl_ES.inc +++ b/plugins/new_user_dialog/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor, complete os seus datos persoais'; $labels['identitydialoghint'] = 'Este diálogo só aparecerá a primera vez que se conecte ao correo.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/he_IL.inc b/plugins/new_user_dialog/localization/he_IL.inc index 470294939..e4a7472f2 100644 --- a/plugins/new_user_dialog/localization/he_IL.inc +++ b/plugins/new_user_dialog/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'נא להשלים את פרטי זהותך'; $labels['identitydialoghint'] = 'תיבה זו מופיעה פעם אחת בזמן הכניסה הראשונה למערכת'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hr_HR.inc b/plugins/new_user_dialog/localization/hr_HR.inc index 6c3f11252..136d9c5ad 100644 --- a/plugins/new_user_dialog/localization/hr_HR.inc +++ b/plugins/new_user_dialog/localization/hr_HR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Molim dovršite vaš identitet za slanje poruka'; $labels['identitydialoghint'] = 'Ova poruka će se pojaviti samo kod prve prijave.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hu_HU.inc b/plugins/new_user_dialog/localization/hu_HU.inc index b07d9f13b..b793b4b3e 100644 --- a/plugins/new_user_dialog/localization/hu_HU.inc +++ b/plugins/new_user_dialog/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Kérem töltse ki a küldő azonosítóját'; $labels['identitydialoghint'] = 'Ez az ablak csak az első belépéskor jelenik meg.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/hy_AM.inc b/plugins/new_user_dialog/localization/hy_AM.inc index f6e53ee4a..be3a1d9a4 100644 --- a/plugins/new_user_dialog/localization/hy_AM.inc +++ b/plugins/new_user_dialog/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Լրացրեք Ձեր ինքնությունը'; $labels['identitydialoghint'] = 'Այս նշումը երևում է միայն առաջին մուտքի ժամանակ մեկ անգամ'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/id_ID.inc b/plugins/new_user_dialog/localization/id_ID.inc index c33958284..e0b2e7b23 100644 --- a/plugins/new_user_dialog/localization/id_ID.inc +++ b/plugins/new_user_dialog/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Tolong lengkapi identitas pengirim Anda'; $labels['identitydialoghint'] = 'Kotak ini hanya muncul sekali saat masuk pertama kali.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/it_IT.inc b/plugins/new_user_dialog/localization/it_IT.inc index 16af9bce7..b8f8df57e 100644 --- a/plugins/new_user_dialog/localization/it_IT.inc +++ b/plugins/new_user_dialog/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Per favore completa le informazioni riguardo la tua identità'; $labels['identitydialoghint'] = 'Questa finestra comparirà una volta sola al primo accesso'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ja_JP.inc b/plugins/new_user_dialog/localization/ja_JP.inc index 98a0694b6..5f2430190 100644 --- a/plugins/new_user_dialog/localization/ja_JP.inc +++ b/plugins/new_user_dialog/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = '送信者情報の入力を完了してください。'; $labels['identitydialoghint'] = 'このボックスは最初のログイン時に一度だけ表示されます。'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/km_KH.inc b/plugins/new_user_dialog/localization/km_KH.inc index 970a19ac1..cbb87713e 100644 --- a/plugins/new_user_dialog/localization/km_KH.inc +++ b/plugins/new_user_dialog/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'សូមបំពេញអ្តសញ្ញាណអ្នកផ្ញើ'; $labels['identitydialoghint'] = 'ប្រអប់នេះបង្ហាញតែម្តងទេ ពេលចូលលើកទីមួយ'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ko_KR.inc b/plugins/new_user_dialog/localization/ko_KR.inc index e8f8e3b48..2f14b0fc8 100644 --- a/plugins/new_user_dialog/localization/ko_KR.inc +++ b/plugins/new_user_dialog/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = '수신인의 신원을 완성하시기 바랍니다.'; $labels['identitydialoghint'] = '이 상자는 최초로 로그인할 때만 나타납니다.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ku.inc b/plugins/new_user_dialog/localization/ku.inc index d151ed14f..2ca2654df 100644 --- a/plugins/new_user_dialog/localization/ku.inc +++ b/plugins/new_user_dialog/localization/ku.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'tkaya nawnişani nenar ba tawawi bnwsa'; $labels['identitydialoghint'] = 'am qtwia wadiara yak jar la sarata krawatawa'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lb_LU.inc b/plugins/new_user_dialog/localization/lb_LU.inc index de6de2fc8..4fe55546a 100644 --- a/plugins/new_user_dialog/localization/lb_LU.inc +++ b/plugins/new_user_dialog/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Vervollstänneg w.e.gl deng Sender-Identitéit'; $labels['identitydialoghint'] = 'Dës Këscht erschéngt just beim éischte Login.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lt_LT.inc b/plugins/new_user_dialog/localization/lt_LT.inc index 5005cd570..dc982ba97 100644 --- a/plugins/new_user_dialog/localization/lt_LT.inc +++ b/plugins/new_user_dialog/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Prašom užpildyti trūkstamą informaciją apie save'; $labels['identitydialoghint'] = 'Šis langas rodomas tik prisijungus pirmąjį kartą.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/lv_LV.inc b/plugins/new_user_dialog/localization/lv_LV.inc index 513ab613e..037f7cb1e 100644 --- a/plugins/new_user_dialog/localization/lv_LV.inc +++ b/plugins/new_user_dialog/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Lūdzu aizpildiet Jūsu, kā sūtītāja, identitātes informāciju'; $labels['identitydialoghint'] = 'Šis logs parādīsies tikai pirmajā autorizācijas reizē.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ml_IN.inc b/plugins/new_user_dialog/localization/ml_IN.inc index 09471b089..d97ad9989 100644 --- a/plugins/new_user_dialog/localization/ml_IN.inc +++ b/plugins/new_user_dialog/localization/ml_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'സ്വീകര്‍ത്താവിന്റെ വ്യക്തിത്വം പൂര്‍ത്തീകരിക്കുക'; $labels['identitydialoghint'] = 'ആദ്യത്തെ പ്രവേശനത്തില്‍ മാത്രമേ ഈ പെട്ടി വരികയുള്ളു'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/mr_IN.inc b/plugins/new_user_dialog/localization/mr_IN.inc index 535588ea5..d78f2b010 100644 --- a/plugins/new_user_dialog/localization/mr_IN.inc +++ b/plugins/new_user_dialog/localization/mr_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'कृपया पाठवणा-याची ओळख पूर्ण करा'; $labels['identitydialoghint'] = 'हा चौकोन पहिल्यांदा लॉगिन करताना एकदाच दिसेल.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nb_NO.inc b/plugins/new_user_dialog/localization/nb_NO.inc index 963fcc206..320bd9a8d 100644 --- a/plugins/new_user_dialog/localization/nb_NO.inc +++ b/plugins/new_user_dialog/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Vennligst fullfør din avvsender identitet.'; $labels['identitydialoghint'] = 'Denne boksen kommer kun ved første pålogging.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nl_NL.inc b/plugins/new_user_dialog/localization/nl_NL.inc index f18a8775f..450b4f6a7 100644 --- a/plugins/new_user_dialog/localization/nl_NL.inc +++ b/plugins/new_user_dialog/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Vul alstublieft uw afzendergegevens in.'; $labels['identitydialoghint'] = 'Dit scherm verschijnt eenmalig bij uw eerste aanmelding.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/nn_NO.inc b/plugins/new_user_dialog/localization/nn_NO.inc index fc4cda2e5..a1122bc03 100644 --- a/plugins/new_user_dialog/localization/nn_NO.inc +++ b/plugins/new_user_dialog/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Fullfør avsendaridentiteten din.'; $labels['identitydialoghint'] = 'Denne boksen kjem berre fram ved første pålogging.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pl_PL.inc b/plugins/new_user_dialog/localization/pl_PL.inc index 60c5da1cb..be7ed19e5 100644 --- a/plugins/new_user_dialog/localization/pl_PL.inc +++ b/plugins/new_user_dialog/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Uzupełnij tożsamość nadawcy'; $labels['identitydialoghint'] = 'To okno pojawia się tylko przy pierwszym logowaniu.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pt_BR.inc b/plugins/new_user_dialog/localization/pt_BR.inc index b6babccbd..32640f44e 100644 --- a/plugins/new_user_dialog/localization/pt_BR.inc +++ b/plugins/new_user_dialog/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor complete a sua identidade'; $labels['identitydialoghint'] = 'Esta tela aparece somente no primeiro acesso.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/pt_PT.inc b/plugins/new_user_dialog/localization/pt_PT.inc index cb7cdbc0a..5eeff7e10 100644 --- a/plugins/new_user_dialog/localization/pt_PT.inc +++ b/plugins/new_user_dialog/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Por favor, complete a sua identidade'; $labels['identitydialoghint'] = 'Esta caixa aparece apenas uma vez no primeiro acesso.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ro_RO.inc b/plugins/new_user_dialog/localization/ro_RO.inc index d840908b0..e765212e5 100644 --- a/plugins/new_user_dialog/localization/ro_RO.inc +++ b/plugins/new_user_dialog/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - -$labels['identitydialogtitle'] = 'Te rog completează identitatea de expeditor.'; -$labels['identitydialoghint'] = 'Această căsuţă apare o data la prima autentificare.'; +$labels['identitydialogtitle'] = 'Te rog completează identitatea expeditorului.'; +$labels['identitydialoghint'] = 'Această căsuţă apare doar la prima autentificare.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/ru_RU.inc b/plugins/new_user_dialog/localization/ru_RU.inc index 5fa87ab51..0b408858f 100644 --- a/plugins/new_user_dialog/localization/ru_RU.inc +++ b/plugins/new_user_dialog/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Пожалуйста, укажите Ваше имя.'; $labels['identitydialoghint'] = 'Данное сообщение отображается только при первом входе.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sk_SK.inc b/plugins/new_user_dialog/localization/sk_SK.inc index 92e87b356..236c1d893 100644 --- a/plugins/new_user_dialog/localization/sk_SK.inc +++ b/plugins/new_user_dialog/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Doplňte prosím Vašu identifikáciu odosielateľa'; $labels['identitydialoghint'] = 'Toto okno sa objaví len pri prvom prihlásení.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sl_SI.inc b/plugins/new_user_dialog/localization/sl_SI.inc index 0bfea6143..12d115ad4 100644 --- a/plugins/new_user_dialog/localization/sl_SI.inc +++ b/plugins/new_user_dialog/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Izberite identiteto za pošiljanje'; $labels['identitydialoghint'] = 'To okno se prikaže le ob prvi prijavi v spletno pošto.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sr_CS.inc b/plugins/new_user_dialog/localization/sr_CS.inc index 9ae4811e2..25298a175 100644 --- a/plugins/new_user_dialog/localization/sr_CS.inc +++ b/plugins/new_user_dialog/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Молимо вас да попуните свој идентитет пошиљаоца'; $labels['identitydialoghint'] = 'Ово поље се појављује само једном у првом логовању'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/sv_SE.inc b/plugins/new_user_dialog/localization/sv_SE.inc index 08c70006a..2fb018005 100644 --- a/plugins/new_user_dialog/localization/sv_SE.inc +++ b/plugins/new_user_dialog/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Fyll i namn och avsändaradress under personliga inställningar'; $labels['identitydialoghint'] = 'Informationen visas endast vid första inloggningen.'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/tr_TR.inc b/plugins/new_user_dialog/localization/tr_TR.inc index ae560f9de..982a5b6de 100644 --- a/plugins/new_user_dialog/localization/tr_TR.inc +++ b/plugins/new_user_dialog/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Lütfen gönderici kimliğinizi tamamlayın'; $labels['identitydialoghint'] = 'Bu ekran ilk girişte bir kereliğine gözükür'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/uk_UA.inc b/plugins/new_user_dialog/localization/uk_UA.inc index 6d5349c11..b6caef051 100644 --- a/plugins/new_user_dialog/localization/uk_UA.inc +++ b/plugins/new_user_dialog/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Будь ласка, вкажіть Ваше ім’я'; $labels['identitydialoghint'] = 'Це повідомлення відображається тільки під час першого заходу'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/vi_VN.inc b/plugins/new_user_dialog/localization/vi_VN.inc index 1be657073..a6947810b 100644 --- a/plugins/new_user_dialog/localization/vi_VN.inc +++ b/plugins/new_user_dialog/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = 'Xin điền nhận diện người gửi của bạn'; $labels['identitydialoghint'] = 'Hộp này chỉ xuất hiện 1 lần khi đăng nhập lần đầu tiên'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/zh_CN.inc b/plugins/new_user_dialog/localization/zh_CN.inc index 990670ebd..16fc0d4a2 100644 --- a/plugins/new_user_dialog/localization/zh_CN.inc +++ b/plugins/new_user_dialog/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = '请填写发送人身份'; $labels['identitydialoghint'] = '本提示仅在第一次登录时显示。'; ?> \ No newline at end of file diff --git a/plugins/new_user_dialog/localization/zh_TW.inc b/plugins/new_user_dialog/localization/zh_TW.inc index 52998eabc..25f5883f7 100644 --- a/plugins/new_user_dialog/localization/zh_TW.inc +++ b/plugins/new_user_dialog/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-new_user_dialog/ */ - $labels['identitydialogtitle'] = '請完成您的身份資訊'; $labels['identitydialoghint'] = '此視窗只會於第一次登入時出現。'; ?> \ No newline at end of file diff --git a/plugins/newmail_notifier/localization/ar_SA.inc b/plugins/newmail_notifier/localization/ar_SA.inc index 4e04d4fd4..7ea3d2e52 100644 --- a/plugins/newmail_notifier/localization/ar_SA.inc +++ b/plugins/newmail_notifier/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'إظهار رسالة تنبيه فى المتصفح عند وصول رسالة جديدة'; $labels['desktop'] = 'إظهار رسالة تنبيه على سطح المكتب عند وصول رسالة جديدة'; $labels['sound'] = 'التنبيه الصوتى عند وصول رسالة جديدة'; @@ -25,5 +24,4 @@ $labels['body'] = 'لديك رسالة جديدة'; $labels['testbody'] = 'هذه رسالة تجربية'; $labels['desktopdisabled'] = 'رسائل التنبيه على سطح المكتب غير مفعلة فى متصفح الانترنت الخاص بك'; $labels['desktopunsupported'] = 'المتصفح الخاص بك لا يدعم رسائل سطح المكتب'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/ast.inc b/plugins/newmail_notifier/localization/ast.inc index 63f4ad003..3c5c192e0 100644 --- a/plugins/newmail_notifier/localization/ast.inc +++ b/plugins/newmail_notifier/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Amosar notificaciones del navegador cuando aporte un mensaxe nuevu'; $labels['desktop'] = 'Amosar notificaciones del escritoriu cuando aporte un mensaxe nuevu'; $labels['sound'] = 'Reproducir soníu cuando aporte un mensaxe nuevu'; diff --git a/plugins/newmail_notifier/localization/az_AZ.inc b/plugins/newmail_notifier/localization/az_AZ.inc index 16d9a2e51..94283f9dc 100644 --- a/plugins/newmail_notifier/localization/az_AZ.inc +++ b/plugins/newmail_notifier/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Yeni məktubun gəlməsi haqda brauzerdə xəbər ver'; $labels['desktop'] = 'Yeni məktubun gəlməsi haqda iş masasında xəbər ver'; $labels['sound'] = 'Yeni məktubun gəlməsi haqda səs siqnalı ver'; @@ -25,5 +24,4 @@ $labels['body'] = 'Sizə məktub gəldi'; $labels['testbody'] = 'Bu sınaq bildirişidir'; $labels['desktopdisabled'] = 'Sizin brauzerdə iş masasında bildiriş söndürülüb'; $labels['desktopunsupported'] = 'Sizin brauzer iş masasında bildiriş funksiyasını dəstəkləmir'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/be_BE.inc b/plugins/newmail_notifier/localization/be_BE.inc index b015470f5..e0b8e0bb9 100644 --- a/plugins/newmail_notifier/localization/be_BE.inc +++ b/plugins/newmail_notifier/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Паказваць апавяшчэнні аб атрыманні новых паведамленняў у браўзеры'; $labels['desktop'] = 'Паказваць апавяшчэнні аб атрыманні новых паведамленняў на працоўным стале'; $labels['sound'] = 'Агучваць атрыманне новых паведамленняў'; @@ -23,7 +22,7 @@ $labels['test'] = 'Праверыць'; $labels['title'] = 'Новы ліст!'; $labels['body'] = 'Вы атрымалі новае паведамленне.'; $labels['testbody'] = 'Гэта тэставае апавяшчэнне.'; -$labels['desktopdisabled'] = 'Інфармаванне працоўнага стала адлкючана ў вашым азіральніку'; -$labels['desktopunsupported'] = 'Ваш азіральнік не падтрымлівае інфармаванне працоўнага стала.'; +$labels['desktopdisabled'] = 'Апавяшчэнні на працоўным стале адключаныя ў браўзеры.'; +$labels['desktopunsupported'] = 'Ваш браўзер не падтрымлівае апавяшчэнні на працоўным стале.'; $labels['desktoptimeout'] = 'Зачыніць апавяшчэнне на працоўным стале'; ?> diff --git a/plugins/newmail_notifier/localization/bg_BG.inc b/plugins/newmail_notifier/localization/bg_BG.inc index 3abf9f79d..15791dd93 100644 --- a/plugins/newmail_notifier/localization/bg_BG.inc +++ b/plugins/newmail_notifier/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Показва известия в браузъра при ново писмо'; $labels['desktop'] = 'Показва известия на работния плот при ново писмо'; $labels['sound'] = 'Възпроизведи звук при ново писмо'; diff --git a/plugins/newmail_notifier/localization/br.inc b/plugins/newmail_notifier/localization/br.inc index c4d447f0e..0ef3c86dd 100644 --- a/plugins/newmail_notifier/localization/br.inc +++ b/plugins/newmail_notifier/localization/br.inc @@ -15,15 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - -$labels['basic'] = 'Display browser notifications on new message'; -$labels['desktop'] = 'Display desktop notifications on new message'; $labels['sound'] = 'Seniñ ar son pa kemennadenn nevez'; -$labels['test'] = 'Test'; $labels['title'] = 'Kemennadenn nevez !'; -$labels['body'] = 'You\'ve received a new message.'; -$labels['testbody'] = 'This is a test notification.'; -$labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; -$labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/bs_BA.inc b/plugins/newmail_notifier/localization/bs_BA.inc index 4089f24b1..a849c64c8 100644 --- a/plugins/newmail_notifier/localization/bs_BA.inc +++ b/plugins/newmail_notifier/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Prikaži obavijesti za nove poruke u pregledniku'; $labels['desktop'] = 'Prikaži obavijesti za nove poruke na desktopu'; $labels['sound'] = 'Zvučni signal za novu poruku'; diff --git a/plugins/newmail_notifier/localization/ca_ES.inc b/plugins/newmail_notifier/localization/ca_ES.inc index bcafd4c48..bb510ae26 100644 --- a/plugins/newmail_notifier/localization/ca_ES.inc +++ b/plugins/newmail_notifier/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Mostra notificacions del navegador quan hi hagi un missatge nou'; $labels['desktop'] = 'Mostra notificacions de l\'escriptori quan hi hagi un missatge nou'; $labels['sound'] = 'Reprodueix el so quan hi hagi un missatge nou'; @@ -25,5 +24,4 @@ $labels['body'] = 'Heu rebut un missatge nou.'; $labels['testbody'] = 'Això és una notificació de prova.'; $labels['desktopdisabled'] = 'Les notificacions d\'escriptori estan deshabilitades al vostre navegador.'; $labels['desktopunsupported'] = 'El vostre navegador no permet les notificacions d\'escriptori.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/cs_CZ.inc b/plugins/newmail_notifier/localization/cs_CZ.inc index 065363d84..c7f2a8d09 100644 --- a/plugins/newmail_notifier/localization/cs_CZ.inc +++ b/plugins/newmail_notifier/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Zobrazit upozornění v prohlížeči při příchozí zprávě'; $labels['desktop'] = 'Zobrazit upozornění na ploše při příchozí zprávě'; $labels['sound'] = 'Přehrát zvuk při příchozí zprávě'; diff --git a/plugins/newmail_notifier/localization/cy_GB.inc b/plugins/newmail_notifier/localization/cy_GB.inc index a9ea1a3d7..126ddfdf9 100644 --- a/plugins/newmail_notifier/localization/cy_GB.inc +++ b/plugins/newmail_notifier/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Dangos hysbysiadau porwr ar neges newydd'; $labels['desktop'] = 'Dangos hysbysiadau penbwrdd ar neges newydd'; $labels['sound'] = 'Chwarae sŵn ar neges newydd'; diff --git a/plugins/newmail_notifier/localization/da_DK.inc b/plugins/newmail_notifier/localization/da_DK.inc index 615aa9b32..26e4e6a7b 100644 --- a/plugins/newmail_notifier/localization/da_DK.inc +++ b/plugins/newmail_notifier/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Vis browserbesked ved ny besked'; $labels['desktop'] = 'Vis skrivebordsbesked ved ny besked'; $labels['sound'] = 'Afspil en lyd ved ny besked'; @@ -25,5 +24,4 @@ $labels['body'] = 'Du har modtaget en ny besked.'; $labels['testbody'] = 'Dette er en test meddelelse.'; $labels['desktopdisabled'] = 'Skrivebordsbeskeder er deaktiveret i din browser.'; $labels['desktopunsupported'] = 'Din browser understøtter ikke skrivebordsbeskeder.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/de_CH.inc b/plugins/newmail_notifier/localization/de_CH.inc index b056306b3..1119e6a03 100644 --- a/plugins/newmail_notifier/localization/de_CH.inc +++ b/plugins/newmail_notifier/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Anzeige im Browser bei neuer Nachricht'; $labels['desktop'] = 'Desktop-Benachrichtigung bei neuer Nachricht'; $labels['sound'] = 'Akustische Meldung bei neuer Nachricht'; diff --git a/plugins/newmail_notifier/localization/de_DE.inc b/plugins/newmail_notifier/localization/de_DE.inc index 20cd11e2a..4ecb8a3c8 100644 --- a/plugins/newmail_notifier/localization/de_DE.inc +++ b/plugins/newmail_notifier/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Benachrichtigung im Browser bei neuer Nachricht'; $labels['desktop'] = 'Desktop-Benachrichtigung bei neuer Nachricht'; $labels['sound'] = 'Akustische Meldung bei neuer Nachricht'; diff --git a/plugins/newmail_notifier/localization/el_GR.inc b/plugins/newmail_notifier/localization/el_GR.inc index 18804dbca..5f41bc974 100644 --- a/plugins/newmail_notifier/localization/el_GR.inc +++ b/plugins/newmail_notifier/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Εμφανίση ειδοποιήσεων πρόγραμματος περιήγησης στο νέο μήνυμα'; $labels['desktop'] = 'Εμφάνιση ειδοποιήσεων στην επιφάνεια εργασίας για νέο μήνυμα '; $labels['sound'] = 'Ηχητική ειδοποίηση κατά την λήψη νέων μηνυμάτων'; diff --git a/plugins/newmail_notifier/localization/en_GB.inc b/plugins/newmail_notifier/localization/en_GB.inc index c8ddabf52..3ac79e594 100644 --- a/plugins/newmail_notifier/localization/en_GB.inc +++ b/plugins/newmail_notifier/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Display browser notifications on new message'; $labels['desktop'] = 'Display desktop notifications on new message'; $labels['sound'] = 'Play sound on new message'; @@ -25,5 +24,4 @@ $labels['body'] = 'You\'ve received a new message.'; $labels['testbody'] = 'This is a test notification.'; $labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; $labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/eo.inc b/plugins/newmail_notifier/localization/eo.inc index f895246ba..8a4657677 100644 --- a/plugins/newmail_notifier/localization/eo.inc +++ b/plugins/newmail_notifier/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Montri atentigojn de retumilo pri nova mesaĝo'; $labels['desktop'] = 'Montri atentigojn de komputilo pri nova mesaĝo'; $labels['sound'] = 'Ludi sonon por nova mesaĝo'; @@ -25,5 +24,4 @@ $labels['body'] = 'Vi ricevis novan mesaĝon.'; $labels['testbody'] = 'Tio estas testo pri atentigo.'; $labels['desktopdisabled'] = 'Atentigoj de komputilo estas malŝaltitaj en via retumilo.'; $labels['desktopunsupported'] = 'Via retumilo ne subtenas atentigojn de komputilo.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/es_AR.inc b/plugins/newmail_notifier/localization/es_AR.inc index 23c50d609..682d79ef4 100644 --- a/plugins/newmail_notifier/localization/es_AR.inc +++ b/plugins/newmail_notifier/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Mostrar notificación cuando haya nuevos mensajes'; $labels['desktop'] = 'Mostrar notificación en escritorio cuando haya nuevos mensajes'; $labels['sound'] = 'Reproducir sonido cuando haya nuevos mensajes'; diff --git a/plugins/newmail_notifier/localization/es_ES.inc b/plugins/newmail_notifier/localization/es_ES.inc index e20743970..8809aa03c 100644 --- a/plugins/newmail_notifier/localization/es_ES.inc +++ b/plugins/newmail_notifier/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Mostrar notificaciones del navegador cuando llegue un nuevo mensaje'; $labels['desktop'] = 'Mostrar notificaciones del escritorio cuando llegue un nuevo mensaje'; $labels['sound'] = 'Reproducir sonido cuando llegue un nuevo mensaje'; @@ -25,5 +24,5 @@ $labels['body'] = 'Has recibido un mensaje nuevo.'; $labels['testbody'] = 'Esta es una notificación de pruebas.'; $labels['desktopdisabled'] = 'Las notificaciones de escritorio están deshabilitadas en tu navegador.'; $labels['desktopunsupported'] = 'Tu navegador no soporta notificaciones de escritorio.'; -$labels['desktoptimeout'] = 'Close desktop notification'; +$labels['desktoptimeout'] = 'Cerrar notificación de escritorio'; ?> diff --git a/plugins/newmail_notifier/localization/et_EE.inc b/plugins/newmail_notifier/localization/et_EE.inc index 07bd0b6e8..22bdde908 100644 --- a/plugins/newmail_notifier/localization/et_EE.inc +++ b/plugins/newmail_notifier/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Uue kirja saabumisel näita lehitsejas teavitust'; $labels['desktop'] = 'Uue kirja saabumisel näita töölaua teavitust'; $labels['sound'] = 'Uue kirja saabumisel mängi heli'; @@ -25,5 +24,4 @@ $labels['body'] = 'Saabus uus kiri.'; $labels['testbody'] = 'See on teavituse proov.'; $labels['desktopdisabled'] = 'Töölaua märguanded on su veebilehitsejas keelatud.'; $labels['desktopunsupported'] = 'Sinu veebilehitseja ei toeta töölaua märguandeid.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/eu_ES.inc b/plugins/newmail_notifier/localization/eu_ES.inc index a08704859..7d7d90408 100644 --- a/plugins/newmail_notifier/localization/eu_ES.inc +++ b/plugins/newmail_notifier/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Bistaratu nabigatzailearen jakinarazpenak mezu berrian'; $labels['desktop'] = 'Bistaratu sistemaren jakinarazpenak mezu berrian'; $labels['sound'] = 'Jo soinu bat mezu berriarekin'; diff --git a/plugins/newmail_notifier/localization/fa_IR.inc b/plugins/newmail_notifier/localization/fa_IR.inc index 4cc32dce6..af58aeed2 100644 --- a/plugins/newmail_notifier/localization/fa_IR.inc +++ b/plugins/newmail_notifier/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'نمایش تذکرهای مرورگر برای پیغام جدید'; $labels['desktop'] = 'نمایش تذکرهای رومیزی برای پیغام جدید'; $labels['sound'] = 'پخش صدا برای پیغام جدید'; @@ -25,5 +24,4 @@ $labels['body'] = 'شما یک پیغام جدید دریافت کرده‌ای $labels['testbody'] = 'این یک تذکر آزمایشی است.'; $labels['desktopdisabled'] = 'تذکرهای رومیزی در مرورگر شما غیرفعال شده‌اند.'; $labels['desktopunsupported'] = 'مرورگر شما تذکرهای رومیزی را پشتیبانی نمی‌کند.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/fi_FI.inc b/plugins/newmail_notifier/localization/fi_FI.inc index 2488c7d19..8d5c01243 100644 --- a/plugins/newmail_notifier/localization/fi_FI.inc +++ b/plugins/newmail_notifier/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Näytä selainilmoitus uuden viestin saapuessa'; $labels['desktop'] = 'Näytä työpöytäilmoitus uuden viestin saapuessa'; $labels['sound'] = 'Toista ääni uuden viestin saapuessa'; diff --git a/plugins/newmail_notifier/localization/fr_FR.inc b/plugins/newmail_notifier/localization/fr_FR.inc index ff9d7ed7e..613b409ae 100644 --- a/plugins/newmail_notifier/localization/fr_FR.inc +++ b/plugins/newmail_notifier/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Afficher une notification dans le navigateur à réception d\'un nouveau message'; $labels['desktop'] = 'Afficher une notification sur le bureau à réception d\'un nouveau message'; $labels['sound'] = 'Jouer un son à réception d\'un nouveau message'; diff --git a/plugins/newmail_notifier/localization/gl_ES.inc b/plugins/newmail_notifier/localization/gl_ES.inc index a34eb2cf5..1dae35297 100644 --- a/plugins/newmail_notifier/localization/gl_ES.inc +++ b/plugins/newmail_notifier/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Amosar notificacións no navegador cando entre unha mensaxe nova'; $labels['desktop'] = 'Amosar notificacións no escritorio cando chegue unha mensaxe nova'; $labels['sound'] = 'Tocar un son cando chegue unha mensaxe nova'; @@ -25,5 +24,4 @@ $labels['body'] = 'Recibiu unha mensaxe nova'; $labels['testbody'] = 'Esta é unha notificación de proba'; $labels['desktopdisabled'] = 'As notificacións de escritorio están desactivadas no seu navegador'; $labels['desktopunsupported'] = 'O teu navegador non soporta notificacións de escritorio.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/he_IL.inc b/plugins/newmail_notifier/localization/he_IL.inc index 5d907d55a..9002d7c6d 100644 --- a/plugins/newmail_notifier/localization/he_IL.inc +++ b/plugins/newmail_notifier/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'איתות מהדפדפן על הגעת הודעות חדשות'; $labels['desktop'] = 'איתות משולחן העבודה על הגעת הודעות חדשות'; $labels['sound'] = 'השמעת איתות קולי בעת הגעה של הודעה חדשה'; @@ -25,5 +24,4 @@ $labels['body'] = 'התקבלה הודעה חדשה'; $labels['testbody'] = 'זה איתות לנסיון'; $labels['desktopdisabled'] = 'איתותים משולחן העבודה אינם פעילים בדפדפן שלך'; $labels['desktopunsupported'] = 'הדפדפן שלך אינו תומך באיתותים משולחן העבודה'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/hr_HR.inc b/plugins/newmail_notifier/localization/hr_HR.inc index 97eea8b4d..3ee6cff3b 100644 --- a/plugins/newmail_notifier/localization/hr_HR.inc +++ b/plugins/newmail_notifier/localization/hr_HR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Prikaži dojave preglednika kada dođe nova poruka'; $labels['desktop'] = 'Prikaži dojave na desktopu kada dođe nova poruka'; $labels['sound'] = 'Pusti zvuk kada dođe nova poruka'; @@ -25,5 +24,4 @@ $labels['body'] = 'Primili ste novu poruku'; $labels['testbody'] = 'Ovo je probna dojava.'; $labels['desktopdisabled'] = 'Dojave na desktopu su onemogućene u vašem pregledniku.'; $labels['desktopunsupported'] = 'Vaš preglednik ne podržava dojave na desktopu.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/hu_HU.inc b/plugins/newmail_notifier/localization/hu_HU.inc index 7aa0329c6..59464f27c 100644 --- a/plugins/newmail_notifier/localization/hu_HU.inc +++ b/plugins/newmail_notifier/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Értesítés megjelenítése böngészőben amikor új üzenet érkezik'; $labels['desktop'] = 'Asztali értesítés megjelenítése új üzenet érkezésekor'; $labels['sound'] = 'Hang lejátszása új üzenet érkezésekor'; diff --git a/plugins/newmail_notifier/localization/hy_AM.inc b/plugins/newmail_notifier/localization/hy_AM.inc index 1254e4b49..23fdbed65 100644 --- a/plugins/newmail_notifier/localization/hy_AM.inc +++ b/plugins/newmail_notifier/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Ցուցադրել զննարկչի ծանուցում նոր հաղորդագրություն ստանալիս'; $labels['desktop'] = 'Ցուցադրել սեղանադրի ծանուցում նոր հաղորդագրություն ստանալիս'; $labels['sound'] = 'Ձայն հանել նոր հաղորդագրություն ստանալիս'; @@ -25,5 +24,4 @@ $labels['body'] = 'Դուք ստացաք նոր հաղորդագրություն $labels['testbody'] = 'Սա փորձնական ծանուցում է'; $labels['desktopdisabled'] = 'Սեղանադրի ծանուցումները Ձեր զննարկչում անջատված են'; $labels['desktopunsupported'] = 'Ձեր զննարկիչը չունի սեղանադրի ծանուցումների հնարավորություն։'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/ia.inc b/plugins/newmail_notifier/localization/ia.inc index f20670761..cf83712ec 100644 --- a/plugins/newmail_notifier/localization/ia.inc +++ b/plugins/newmail_notifier/localization/ia.inc @@ -15,15 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Monstrar notificationes de navigator in cata nove message'; -$labels['desktop'] = 'Display desktop notifications on new message'; -$labels['sound'] = 'Play the sound on new message'; $labels['test'] = 'Prova'; $labels['title'] = 'Nove message!'; -$labels['body'] = 'You\'ve received a new message.'; $labels['testbody'] = 'Iste es un notification de prova.'; -$labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; -$labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/id_ID.inc b/plugins/newmail_notifier/localization/id_ID.inc index 7c0594dd7..1f32afa7c 100644 --- a/plugins/newmail_notifier/localization/id_ID.inc +++ b/plugins/newmail_notifier/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Tampilkan pemberitahuan pada peramban saat ada pesan baru'; $labels['desktop'] = 'Tampilkan pemberitahuan pada desktop saat ada pesan baru'; $labels['sound'] = 'Mainkan suara saat ada pesan baru'; @@ -25,5 +24,4 @@ $labels['body'] = 'Anda telah menerima sebuah pesan baru.'; $labels['testbody'] = 'Ini adalah percobaan pemberitahuan.'; $labels['desktopdisabled'] = 'Pemberitahuan di desktop dimatikan pada peramban Anda.'; $labels['desktopunsupported'] = 'Peramban Anda tidak mendukung pemberitahuan pada desktop'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/it_IT.inc b/plugins/newmail_notifier/localization/it_IT.inc index b51603886..8e3843b81 100644 --- a/plugins/newmail_notifier/localization/it_IT.inc +++ b/plugins/newmail_notifier/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'visualizza notifica nel browser per nuovi messaggi'; $labels['desktop'] = 'visualizza notifiche sul desktop per nuovi messaggi'; $labels['sound'] = 'riproduci il suono per nuovi messaggi'; diff --git a/plugins/newmail_notifier/localization/ja_JP.inc b/plugins/newmail_notifier/localization/ja_JP.inc index b8dda364a..6efcb6985 100644 --- a/plugins/newmail_notifier/localization/ja_JP.inc +++ b/plugins/newmail_notifier/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = '新しいメッセージの通知をブラウザーに表示'; $labels['desktop'] = '新しいメッセージの通知をデスクトップに表示'; $labels['sound'] = '新しいメッセージが届くと音を再生'; @@ -25,5 +24,5 @@ $labels['body'] = '新しいメッセージを受信しました。'; $labels['testbody'] = 'これはテストの通知です。'; $labels['desktopdisabled'] = 'ブラウザーでデスクトップ通知が無効になっています。'; $labels['desktopunsupported'] = 'ブラウザーがデスクトップ通知をサポートしていません。'; -$labels['desktoptimeout'] = 'Close desktop notification'; +$labels['desktoptimeout'] = 'デスクトップ通知を閉じる'; ?> diff --git a/plugins/newmail_notifier/localization/km_KH.inc b/plugins/newmail_notifier/localization/km_KH.inc index 00d5c0b68..fdad4b302 100644 --- a/plugins/newmail_notifier/localization/km_KH.inc +++ b/plugins/newmail_notifier/localization/km_KH.inc @@ -15,15 +15,9 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - -$labels['basic'] = 'Display browser notifications on new message'; -$labels['desktop'] = 'Display desktop notifications on new message'; $labels['sound'] = 'បន្លឹសម្កេងពេលមានសារថ្មី'; $labels['test'] = 'សាកល្បង'; $labels['title'] = 'មានសារថ្មី'; $labels['body'] = 'អ្នកបានទទួលសារថ្មី'; $labels['testbody'] = 'នេះជាការសាក្បងដំណឹង'; -$labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; -$labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/ko_KR.inc b/plugins/newmail_notifier/localization/ko_KR.inc index f38b0e612..81abd55b9 100644 --- a/plugins/newmail_notifier/localization/ko_KR.inc +++ b/plugins/newmail_notifier/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = '새로운 메시지가 도착 시에 브라우저의 알림에 표시'; $labels['desktop'] = '새로운 메시지가 도착 시에 데스크탑의 알림에 표시'; $labels['sound'] = '새로운 메시지가 도착 시에 소리 재생'; @@ -25,5 +24,4 @@ $labels['body'] = '새로운 메시지를 수신하였습니다.'; $labels['testbody'] = '이 것은 시험용 알림입니다.'; $labels['desktopdisabled'] = '당신의 브라우져에서는 데스크탑의 알림이 불가능하도록 되어있습니다.'; $labels['desktopunsupported'] = '당신의 브라우져에서는 데스크탑의 알림을 지원하지 않습니다.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/lb_LU.inc b/plugins/newmail_notifier/localization/lb_LU.inc index 69d8fa5da..8e6f5f603 100644 --- a/plugins/newmail_notifier/localization/lb_LU.inc +++ b/plugins/newmail_notifier/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Browser-Notifikatioun bei neiem Message uweisen'; $labels['desktop'] = 'Desktop-Notifikatioun bei neiem Message uweisen'; $labels['sound'] = 'Dësen Toun bei neiem Message spillen'; @@ -25,4 +24,5 @@ $labels['body'] = 'Du hues en neie Message kritt.'; $labels['testbody'] = 'Dëst ass eng Test-Benoorichtegung.'; $labels['desktopdisabled'] = 'Desktop-Notifikatioune sinn an dengem Browser ausgeschalt.'; $labels['desktopunsupported'] = 'Däi Browser ënnerstëtzt keng Desktop-Notifikatiounen.'; +$labels['desktoptimeout'] = 'Browser-Notifikatioun zoumaachen'; ?> diff --git a/plugins/newmail_notifier/localization/lt_LT.inc b/plugins/newmail_notifier/localization/lt_LT.inc index dcf3351d4..6db304f90 100644 --- a/plugins/newmail_notifier/localization/lt_LT.inc +++ b/plugins/newmail_notifier/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Pranešti apie naujus laiškus naršyklėje'; $labels['desktop'] = 'Pranešti apie naujus laiškus sistemos pranešimu'; $labels['sound'] = 'Pranešti apie naujus laiškus garsu'; @@ -25,5 +24,4 @@ $labels['body'] = 'Jūs gavote naują laišką.'; $labels['testbody'] = 'Tai – bandomasis pranešimas.'; $labels['desktopdisabled'] = 'Jūsų naršyklėje sistemos pranešimai išjungti.'; $labels['desktopunsupported'] = 'Jūsų naršyklėje sistemos pranešimai nepalaikomi.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/lv_LV.inc b/plugins/newmail_notifier/localization/lv_LV.inc index 0c5a65eb6..60d951e5e 100644 --- a/plugins/newmail_notifier/localization/lv_LV.inc +++ b/plugins/newmail_notifier/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Saņemot jaunu vēstuli, parādīt paziņojumu'; $labels['desktop'] = 'Saņemot jaunu vēstuli, parādīt darbavirsmas paziņojumu'; $labels['sound'] = 'Saņemot jaunu vēstuli, atskaņot skaņas signālu'; diff --git a/plugins/newmail_notifier/localization/ml_IN.inc b/plugins/newmail_notifier/localization/ml_IN.inc index f5dea26c1..44ec26e69 100644 --- a/plugins/newmail_notifier/localization/ml_IN.inc +++ b/plugins/newmail_notifier/localization/ml_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'ബ്രൌസര്‍ അറിയിപ്പുകള്‍ പുതിയ സന്ദേശത്തില്‍ കാണിക്കുക'; $labels['desktop'] = 'ഡെസ്ക്ക്ടോപ്പ് അറിയിപ്പുകള്‍ പുതിയ സന്ദേശത്തില്‍ കാണിക്കുക'; $labels['sound'] = 'പുതിയ സന്ദേശത്തില്‍ സബ്ദം കേള്‍പ്പിക്കുക'; @@ -25,5 +24,4 @@ $labels['body'] = 'താങ്കള്‍ക്ക് ഒരു പുതി $labels['testbody'] = 'ഇത് ഒരു പരീക്ഷണ അറിയിപ്പാണ്.'; $labels['desktopdisabled'] = 'താങ്കളുടെ ബ്രൌസറില്‍ ഡെസ്ക്ക്ടോപ്പ് നോട്ടിഫിക്കേഷന്‍ പ്രവര്‍ത്തനരഹിതമാണ്.'; $labels['desktopunsupported'] = 'താങ്കളുടെ ബ്രൌസ്സര്‍ ഡെസ്ക്ടോപ്പ് അറിയിപ്പുകള്‍ പിന്‍തുണയ്ക്കുന്നില്ല.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/mr_IN.inc b/plugins/newmail_notifier/localization/mr_IN.inc index 80f6e09dc..14b453a1d 100644 --- a/plugins/newmail_notifier/localization/mr_IN.inc +++ b/plugins/newmail_notifier/localization/mr_IN.inc @@ -15,15 +15,9 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - -$labels['basic'] = 'Display browser notifications on new message'; -$labels['desktop'] = 'Display desktop notifications on new message'; $labels['sound'] = 'नवीन संदेश आल्यास नाद करा'; $labels['test'] = 'चाचणी'; $labels['title'] = 'नवीन ईमेल'; $labels['body'] = 'तुमच्यासाठी नवीन संदेश आला आहे'; $labels['testbody'] = 'हा एक चाचणी निर्देश आहे'; -$labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; -$labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/nb_NO.inc b/plugins/newmail_notifier/localization/nb_NO.inc index 71dbc4225..7174da15f 100644 --- a/plugins/newmail_notifier/localization/nb_NO.inc +++ b/plugins/newmail_notifier/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Vis varsel i nettleseren ved ny melding'; $labels['desktop'] = 'Vis varsel på skrivebordet ved ny melding'; $labels['sound'] = 'Spill av lyd ved ny melding'; @@ -25,5 +24,4 @@ $labels['body'] = 'Du har mottatt en ny melding'; $labels['testbody'] = 'Dette er et testvarsel.'; $labels['desktopdisabled'] = 'Skrivebordsvarsel er slått av i din nettleser.'; $labels['desktopunsupported'] = 'Din nettleser støtter ikke visning av varsel på skrivebordet.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/nl_NL.inc b/plugins/newmail_notifier/localization/nl_NL.inc index b4c7998f8..83901597f 100644 --- a/plugins/newmail_notifier/localization/nl_NL.inc +++ b/plugins/newmail_notifier/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Toon melding in browser bij nieuw bericht'; $labels['desktop'] = 'Toon melding op bureaublad bij nieuw bericht'; $labels['sound'] = 'Geluid afspelen bij nieuw bericht'; diff --git a/plugins/newmail_notifier/localization/nn_NO.inc b/plugins/newmail_notifier/localization/nn_NO.inc index 8e1d58f17..4d42182b5 100644 --- a/plugins/newmail_notifier/localization/nn_NO.inc +++ b/plugins/newmail_notifier/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Vis varsel i nettlesaren ved ny melding'; $labels['desktop'] = 'Vis varsel på skrivebordet ved ny melding'; $labels['sound'] = 'Spill av lyd ved ny melding'; @@ -25,5 +24,4 @@ $labels['body'] = 'Du har mottatt ei ny melding.'; $labels['testbody'] = 'Dette er eit testvarsel.'; $labels['desktopdisabled'] = 'Skrivebordsvarsel er slått av i din nettlesar.'; $labels['desktopunsupported'] = 'Din nettlesar støttar ikkje vising av varsel på skrivebordet.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/pl_PL.inc b/plugins/newmail_notifier/localization/pl_PL.inc index ed44cc860..5aa9f055c 100644 --- a/plugins/newmail_notifier/localization/pl_PL.inc +++ b/plugins/newmail_notifier/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Wyświetlaj powiadomienia o nadejściu nowej wiadomości w przeglądarce'; $labels['desktop'] = 'Wyświetlaj powiadomienia o nadejściu nowej wiadomości na pulpicie'; $labels['sound'] = 'Odtwarzaj dźwięk o nadejściu nowej wiadomości'; diff --git a/plugins/newmail_notifier/localization/pt_BR.inc b/plugins/newmail_notifier/localization/pt_BR.inc index 1ef45c658..6982e2193 100644 --- a/plugins/newmail_notifier/localization/pt_BR.inc +++ b/plugins/newmail_notifier/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Exibir notificação quando uma nova mensagem chegar'; $labels['desktop'] = 'Exibir notificação no desktop quando uma nova mensagem chegar'; $labels['sound'] = 'Alerta sonoro quando uma nova mensagem chegar'; diff --git a/plugins/newmail_notifier/localization/pt_PT.inc b/plugins/newmail_notifier/localization/pt_PT.inc index c2c19dc46..622fc1c92 100644 --- a/plugins/newmail_notifier/localization/pt_PT.inc +++ b/plugins/newmail_notifier/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Mostrar notificação quando uma nova mensagem chegar'; $labels['desktop'] = 'Mostrar alerta no ambiente de trabalho de nova mensagem'; $labels['sound'] = 'Alerta sonoro para nova mensagem'; diff --git a/plugins/newmail_notifier/localization/ro_RO.inc b/plugins/newmail_notifier/localization/ro_RO.inc index f17f65bf7..b039dd2f4 100644 --- a/plugins/newmail_notifier/localization/ro_RO.inc +++ b/plugins/newmail_notifier/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Afişează notificări în browser la mesaj nou.'; $labels['desktop'] = 'Afişează notificări desktop la mesaj nou.'; $labels['sound'] = 'Redă un sunet la mesaj nou.'; diff --git a/plugins/newmail_notifier/localization/ru_RU.inc b/plugins/newmail_notifier/localization/ru_RU.inc index db8a8dc26..d7ae6a7ed 100644 --- a/plugins/newmail_notifier/localization/ru_RU.inc +++ b/plugins/newmail_notifier/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Показывать в браузере уведомление о приходе нового сообщения'; $labels['desktop'] = 'Показывать на рабочем столе уведомление о приходе нового сообщения'; $labels['sound'] = 'Подавать звуковой сигнал о приходе нового сообщения'; diff --git a/plugins/newmail_notifier/localization/si_LK.inc b/plugins/newmail_notifier/localization/si_LK.inc index a16d83669..cc139aa48 100644 --- a/plugins/newmail_notifier/localization/si_LK.inc +++ b/plugins/newmail_notifier/localization/si_LK.inc @@ -15,15 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - -$labels['basic'] = 'Display browser notifications on new message'; -$labels['desktop'] = 'Display desktop notifications on new message'; -$labels['sound'] = 'Play the sound on new message'; $labels['test'] = 'පිරික්සන්න'; -$labels['title'] = 'New Email!'; -$labels['body'] = 'You\'ve received a new message.'; -$labels['testbody'] = 'This is a test notification.'; -$labels['desktopdisabled'] = 'Desktop notifications are disabled in your browser.'; -$labels['desktopunsupported'] = 'Your browser does not support desktop notifications.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/sk_SK.inc b/plugins/newmail_notifier/localization/sk_SK.inc index 97af9995a..b60447c36 100644 --- a/plugins/newmail_notifier/localization/sk_SK.inc +++ b/plugins/newmail_notifier/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Zobraziť upozornenie v prehliadači pri novej správe'; $labels['desktop'] = 'Zobraziť upozornenie na ploche pri novej správe'; $labels['sound'] = 'Prehrať zvuk pri novej správe'; diff --git a/plugins/newmail_notifier/localization/sl_SI.inc b/plugins/newmail_notifier/localization/sl_SI.inc index 23bd75177..32f36f7d9 100644 --- a/plugins/newmail_notifier/localization/sl_SI.inc +++ b/plugins/newmail_notifier/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Prikaži obvestilo za nova sporočila'; $labels['desktop'] = 'Prikaži obvestila na namizju za vsa nova sporočila'; $labels['sound'] = 'Ob novem sporočilu predvajaj zvok'; @@ -25,5 +24,4 @@ $labels['body'] = 'Prejeli ste novo sporočilo.'; $labels['testbody'] = 'To je testno obvestilo.'; $labels['desktopdisabled'] = 'Obvestila na namizju so v vašem brskalniku onemogočena.'; $labels['desktopunsupported'] = 'Vaš brskalnik ne podpira izpis obvestil na namizju.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/sr_CS.inc b/plugins/newmail_notifier/localization/sr_CS.inc index 66df076fc..bc587bf66 100644 --- a/plugins/newmail_notifier/localization/sr_CS.inc +++ b/plugins/newmail_notifier/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Прикажи обавештења о новим порукама у прегледачу'; $labels['desktop'] = 'Прикажи обавештења о новим порукама у систему'; $labels['sound'] = 'Пусти звук по пријему поруке'; @@ -25,5 +24,4 @@ $labels['body'] = 'Примили сте нову поруку.'; $labels['testbody'] = 'Ово је пробно обавештење.'; $labels['desktopdisabled'] = 'Обавештења у систему су искључена у вашем прегледачу'; $labels['desktopunsupported'] = 'Ваш прегледач не подржава обавештења у систему.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/sv_SE.inc b/plugins/newmail_notifier/localization/sv_SE.inc index 091118f59..5e0c9fc29 100644 --- a/plugins/newmail_notifier/localization/sv_SE.inc +++ b/plugins/newmail_notifier/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Avisera nytt meddelande i webbläsaren'; $labels['desktop'] = 'Avisera nytt meddelande på skrivbordet'; $labels['sound'] = 'Avisera nytt meddelande med ljudsignal'; diff --git a/plugins/newmail_notifier/localization/ti.inc b/plugins/newmail_notifier/localization/ti.inc index efb79d0b6..17b8e7361 100644 --- a/plugins/newmail_notifier/localization/ti.inc +++ b/plugins/newmail_notifier/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'ሓዱሽ መል እኽቲ ጠቆምቲ አብ ጎስጓሲ ይርአ'; $labels['desktop'] = 'ሓዱሽ መል እኽቲ ጠቆምቲ ኣብ ደስክቶፕ ይርአ'; $labels['sound'] = 'ሓዱሽ መል እኽቲ ምስዝመጽእ ድምጺ ይሰማዕ'; diff --git a/plugins/newmail_notifier/localization/tr_TR.inc b/plugins/newmail_notifier/localization/tr_TR.inc index 23a366cf0..8c4e0c158 100644 --- a/plugins/newmail_notifier/localization/tr_TR.inc +++ b/plugins/newmail_notifier/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Yeni mesajlarda web tarayıcı bildirimlerini göster'; $labels['desktop'] = 'Yeni mesajlarda masa üstü bildirimlerini göster'; $labels['sound'] = 'Yeni mesajlarda muzik çal'; @@ -25,5 +24,5 @@ $labels['body'] = 'Yeni bir mesaj aldınız'; $labels['testbody'] = 'Bu bir test bildirimidir.'; $labels['desktopdisabled'] = 'Web tarayıcınızda masa üstü bildirimi iptal edildi'; $labels['desktopunsupported'] = 'Web tarayıcınız masa üstü bildidrimleri desteklemiyor'; -$labels['desktoptimeout'] = 'Close desktop notification'; +$labels['desktoptimeout'] = 'Masaüstü bildirimini kapat'; ?> diff --git a/plugins/newmail_notifier/localization/uk_UA.inc b/plugins/newmail_notifier/localization/uk_UA.inc index 8bc08202d..06fb8b964 100644 --- a/plugins/newmail_notifier/localization/uk_UA.inc +++ b/plugins/newmail_notifier/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Показувати у браузері сповіщення про нові повідомлення'; $labels['desktop'] = 'Показувати на робочому столі сповіщення про нові повідомлення'; $labels['sound'] = 'Програвати звук при появленні нового повідомлення'; @@ -25,5 +24,4 @@ $labels['body'] = 'Ви отримали нове повідомлення.'; $labels['testbody'] = 'Це тестове сповіщення'; $labels['desktopdisabled'] = 'Повідомлення на робочому столі відключені у вашому браузері.'; $labels['desktopunsupported'] = 'Ваш браузер не підтримує повідомлення на робочому столі.'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/vi_VN.inc b/plugins/newmail_notifier/localization/vi_VN.inc index bda752564..e8ce68b69 100644 --- a/plugins/newmail_notifier/localization/vi_VN.inc +++ b/plugins/newmail_notifier/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = 'Hiển thị thông báo trên trình duyệt là có thư mới'; $labels['desktop'] = 'Hiển thị thông báo trên màn hình là có thư mới'; $labels['sound'] = 'Mở tính năng âm thanh trên thư mới'; @@ -25,5 +24,4 @@ $labels['body'] = 'Bạn vừa nhận một thư mới'; $labels['testbody'] = 'Đây là thông báo kiểm tra'; $labels['desktopdisabled'] = 'Thông báo máy tính bị tắt trên trình duyệt của bạn'; $labels['desktopunsupported'] = 'Trình duyệt của bạn không hỗ trợ thông báo trên máy tính'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/zh_CN.inc b/plugins/newmail_notifier/localization/zh_CN.inc index e1a869244..cc405773b 100644 --- a/plugins/newmail_notifier/localization/zh_CN.inc +++ b/plugins/newmail_notifier/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = '在浏览器中显示新邮件提醒'; $labels['desktop'] = '在桌面显示新邮件提醒'; $labels['sound'] = '收到新邮件时播放声音'; @@ -25,5 +24,4 @@ $labels['body'] = '您收到一封新邮件。'; $labels['testbody'] = '这是一个提醒测试。'; $labels['desktopdisabled'] = '您的浏览器已禁止桌面提醒功能。'; $labels['desktopunsupported'] = '您的浏览器不支持桌面提醒功能。'; -$labels['desktoptimeout'] = 'Close desktop notification'; ?> diff --git a/plugins/newmail_notifier/localization/zh_TW.inc b/plugins/newmail_notifier/localization/zh_TW.inc index 7dac7cc95..c6d6c8a8f 100644 --- a/plugins/newmail_notifier/localization/zh_TW.inc +++ b/plugins/newmail_notifier/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-newmail_notifier/ */ - $labels['basic'] = '當有新郵件顯示瀏覽器通知'; $labels['desktop'] = '當有新郵件顯示桌面通知'; $labels['sound'] = '當有新郵件播放音效'; diff --git a/plugins/password/localization/ar.inc b/plugins/password/localization/ar.inc index 1d4440ffa..521127a8f 100644 --- a/plugins/password/localization/ar.inc +++ b/plugins/password/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'تغيير كلمة المرور'; $labels['curpasswd'] = 'كلمة المرور الحالية:'; $labels['newpasswd'] = 'كلمة المرور الجديدة:'; diff --git a/plugins/password/localization/ar_SA.inc b/plugins/password/localization/ar_SA.inc index 236303b56..990505bac 100644 --- a/plugins/password/localization/ar_SA.inc +++ b/plugins/password/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'تغيير كلمة المرور'; $labels['curpasswd'] = 'كلمة المرور الحالية'; $labels['newpasswd'] = 'كلمة المرور الجديدة'; diff --git a/plugins/password/localization/ast.inc b/plugins/password/localization/ast.inc index cce1021fe..99b283ec5 100644 --- a/plugins/password/localization/ast.inc +++ b/plugins/password/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Camudar contraseña'; $labels['curpasswd'] = 'Contraseña actual:'; $labels['newpasswd'] = 'Contraseña nueva:'; diff --git a/plugins/password/localization/az_AZ.inc b/plugins/password/localization/az_AZ.inc index 20f337785..18fa758f4 100644 --- a/plugins/password/localization/az_AZ.inc +++ b/plugins/password/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Şifrəni dəyiş'; $labels['curpasswd'] = 'Hal-hazırki şifrə:'; $labels['newpasswd'] = 'Yeni şifrə:'; diff --git a/plugins/password/localization/be_BE.inc b/plugins/password/localization/be_BE.inc index 3ac8f19dd..457e67e9e 100644 --- a/plugins/password/localization/be_BE.inc +++ b/plugins/password/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Змяніць пароль'; $labels['curpasswd'] = 'Бягучы пароль:'; $labels['newpasswd'] = 'Новы пароль:'; diff --git a/plugins/password/localization/bg_BG.inc b/plugins/password/localization/bg_BG.inc index ec695f45e..c1c8b9b7a 100644 --- a/plugins/password/localization/bg_BG.inc +++ b/plugins/password/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Промяна на парола'; $labels['curpasswd'] = 'Текуща парола:'; $labels['newpasswd'] = 'Нова парола:'; diff --git a/plugins/password/localization/br.inc b/plugins/password/localization/br.inc index 0e7f79904..423fc74df 100644 --- a/plugins/password/localization/br.inc +++ b/plugins/password/localization/br.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Kemmañ ar ger-tremen'; $labels['curpasswd'] = 'Ger-tremen red :'; $labels['newpasswd'] = 'Ger-tremen nevez :'; @@ -28,6 +27,5 @@ $messages['crypterror'] = 'N\'haller ket enrollañ ar ger-tremen nevez. Arc\'hwe $messages['connecterror'] = 'N\'haller ket enrollañ ar ger-tremen nevez. Fazi gant ar c\'hennask.'; $messages['internalerror'] = 'N\'haller ket enrollañ ar ger-tremen nevez.'; $messages['passwordshort'] = 'Ret eo d\'ar ger-tremen bezañ hiroc\'h eget $length arouezenn.'; -$messages['passwordweak'] = 'Password must include at least one number and one punctuation character.'; $messages['passwordforbidden'] = 'Arouezennoù difennet zo er ger-tremen.'; ?> diff --git a/plugins/password/localization/bs_BA.inc b/plugins/password/localization/bs_BA.inc index 136d66657..f030fef87 100644 --- a/plugins/password/localization/bs_BA.inc +++ b/plugins/password/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Promijeni šifru'; $labels['curpasswd'] = 'Trenutna šifra:'; $labels['newpasswd'] = 'Nova šifra:'; diff --git a/plugins/password/localization/ca_ES.inc b/plugins/password/localization/ca_ES.inc index 694255d4a..3ab4ed1ad 100644 --- a/plugins/password/localization/ca_ES.inc +++ b/plugins/password/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Canvia la contrasenya'; $labels['curpasswd'] = 'Contrasenya actual:'; $labels['newpasswd'] = 'Nova contrasenya:'; diff --git a/plugins/password/localization/cs_CZ.inc b/plugins/password/localization/cs_CZ.inc index 2b88c22a7..46076b0a0 100644 --- a/plugins/password/localization/cs_CZ.inc +++ b/plugins/password/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Změna hesla'; $labels['curpasswd'] = 'Aktuální heslo:'; $labels['newpasswd'] = 'Nové heslo:'; diff --git a/plugins/password/localization/cy_GB.inc b/plugins/password/localization/cy_GB.inc index 0fb249fad..16fc65447 100644 --- a/plugins/password/localization/cy_GB.inc +++ b/plugins/password/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Newid Cyfrinair'; $labels['curpasswd'] = 'Cyfrinair Presennol:'; $labels['newpasswd'] = 'Cyfrinair Newydd:'; diff --git a/plugins/password/localization/da_DK.inc b/plugins/password/localization/da_DK.inc index 7b98e6e92..76e161db4 100644 --- a/plugins/password/localization/da_DK.inc +++ b/plugins/password/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Skift adgangskode'; $labels['curpasswd'] = 'Nuværende adgangskode:'; $labels['newpasswd'] = 'Ny adgangskode:'; diff --git a/plugins/password/localization/de_CH.inc b/plugins/password/localization/de_CH.inc index 29e5cf007..a446e1b52 100644 --- a/plugins/password/localization/de_CH.inc +++ b/plugins/password/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Passwort ändern'; $labels['curpasswd'] = 'Aktuelles Passwort'; $labels['newpasswd'] = 'Neues Passwort'; diff --git a/plugins/password/localization/de_DE.inc b/plugins/password/localization/de_DE.inc index 027fcadcc..fab78fce9 100644 --- a/plugins/password/localization/de_DE.inc +++ b/plugins/password/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Kennwort ändern'; $labels['curpasswd'] = 'Aktuelles Kennwort:'; $labels['newpasswd'] = 'Neues Kennwort:'; diff --git a/plugins/password/localization/el_GR.inc b/plugins/password/localization/el_GR.inc index 214126383..b1c72ab69 100644 --- a/plugins/password/localization/el_GR.inc +++ b/plugins/password/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Αλλαγη κωδικου προσβασης'; $labels['curpasswd'] = 'Τρεχων κωδικος προσβασης:'; $labels['newpasswd'] = 'Νεος κωδικος προσβασης:'; diff --git a/plugins/password/localization/en_GB.inc b/plugins/password/localization/en_GB.inc index 66746a2b2..1f1b4e286 100644 --- a/plugins/password/localization/en_GB.inc +++ b/plugins/password/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Change Password'; $labels['curpasswd'] = 'Current Password:'; $labels['newpasswd'] = 'New Password:'; diff --git a/plugins/password/localization/eo.inc b/plugins/password/localization/eo.inc index f9205bfc0..d985c18e6 100644 --- a/plugins/password/localization/eo.inc +++ b/plugins/password/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Ŝanĝi pasvorton'; $labels['curpasswd'] = 'Nuna pasvorto:'; $labels['newpasswd'] = 'Nova pasvorto:'; diff --git a/plugins/password/localization/es_AR.inc b/plugins/password/localization/es_AR.inc index cb4e24969..47589cfc7 100644 --- a/plugins/password/localization/es_AR.inc +++ b/plugins/password/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Cambiar Contraseña'; $labels['curpasswd'] = 'Contraseña Actual:'; $labels['newpasswd'] = 'Contraseña Nueva:'; diff --git a/plugins/password/localization/es_ES.inc b/plugins/password/localization/es_ES.inc index 7e89477d6..80ee2e9a1 100644 --- a/plugins/password/localization/es_ES.inc +++ b/plugins/password/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Cambiar contraseña'; $labels['curpasswd'] = 'Contraseña actual:'; $labels['newpasswd'] = 'Contraseña nueva:'; diff --git a/plugins/password/localization/et_EE.inc b/plugins/password/localization/et_EE.inc index a216e30d1..e1c524dcf 100644 --- a/plugins/password/localization/et_EE.inc +++ b/plugins/password/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Muuda parooli'; $labels['curpasswd'] = 'Vana parool:'; $labels['newpasswd'] = 'Uus parool:'; diff --git a/plugins/password/localization/eu_ES.inc b/plugins/password/localization/eu_ES.inc index f613cd281..b814d2983 100644 --- a/plugins/password/localization/eu_ES.inc +++ b/plugins/password/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Pasahitza aldatu'; $labels['curpasswd'] = 'Oraingo pasahitza:'; $labels['newpasswd'] = 'Pasahitz berria:'; diff --git a/plugins/password/localization/fa_AF.inc b/plugins/password/localization/fa_AF.inc index 6fe342753..5bf7c3a8f 100644 --- a/plugins/password/localization/fa_AF.inc +++ b/plugins/password/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'تغییر رمز عبور'; $labels['curpasswd'] = 'رمز عبور کنونی'; $labels['newpasswd'] = 'رمز عبور جدید'; diff --git a/plugins/password/localization/fa_IR.inc b/plugins/password/localization/fa_IR.inc index 1cff47f45..5f9285770 100644 --- a/plugins/password/localization/fa_IR.inc +++ b/plugins/password/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'تغییر گذرواژه'; $labels['curpasswd'] = 'گذرواژه فعلی'; $labels['newpasswd'] = 'گذرواژه جدید'; diff --git a/plugins/password/localization/fi_FI.inc b/plugins/password/localization/fi_FI.inc index 7532eff03..3b6735bec 100644 --- a/plugins/password/localization/fi_FI.inc +++ b/plugins/password/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Vaihda salasana'; $labels['curpasswd'] = 'Nykyinen salasana:'; $labels['newpasswd'] = 'Uusi salasana:'; diff --git a/plugins/password/localization/fr_FR.inc b/plugins/password/localization/fr_FR.inc index 3807a51e2..c38abc558 100644 --- a/plugins/password/localization/fr_FR.inc +++ b/plugins/password/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Changer le mot de passe'; $labels['curpasswd'] = 'Mot de passe actuel:'; $labels['newpasswd'] = 'Nouveau mot de passe:'; diff --git a/plugins/password/localization/gl_ES.inc b/plugins/password/localization/gl_ES.inc index 24a4da5af..f738c62a0 100644 --- a/plugins/password/localization/gl_ES.inc +++ b/plugins/password/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Cambiar contrasinal'; $labels['curpasswd'] = 'Contrasinal actual:'; $labels['newpasswd'] = 'Contrasinal novo:'; diff --git a/plugins/password/localization/he_IL.inc b/plugins/password/localization/he_IL.inc index 0b813e95e..ce05ea59c 100644 --- a/plugins/password/localization/he_IL.inc +++ b/plugins/password/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'שינוי סיסמה'; $labels['curpasswd'] = 'סיסמה נוכחית:'; $labels['newpasswd'] = 'סיסמה חדשה:'; diff --git a/plugins/password/localization/hr_HR.inc b/plugins/password/localization/hr_HR.inc index b66abaae7..44b62b2af 100644 --- a/plugins/password/localization/hr_HR.inc +++ b/plugins/password/localization/hr_HR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Promijeni zaporku'; $labels['curpasswd'] = 'Važeća zaporka:'; $labels['newpasswd'] = 'Nova zaporka:'; diff --git a/plugins/password/localization/hu_HU.inc b/plugins/password/localization/hu_HU.inc index 987bdccc7..e9167b0c9 100644 --- a/plugins/password/localization/hu_HU.inc +++ b/plugins/password/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Jelszó módosítás'; $labels['curpasswd'] = 'Jelenlegi jelszó:'; $labels['newpasswd'] = 'Új jelszó:'; diff --git a/plugins/password/localization/hy_AM.inc b/plugins/password/localization/hy_AM.inc index b55e95531..ebca6cd85 100644 --- a/plugins/password/localization/hy_AM.inc +++ b/plugins/password/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Գաղտնաբառի փոփոխում'; $labels['curpasswd'] = 'Առկա գաղտնաբառը`'; $labels['newpasswd'] = 'Նոր գաղտնաբառը`'; diff --git a/plugins/password/localization/id_ID.inc b/plugins/password/localization/id_ID.inc index 614aee4d6..b7b0cde8c 100644 --- a/plugins/password/localization/id_ID.inc +++ b/plugins/password/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Ubah Sandi'; $labels['curpasswd'] = 'Sandi saat ini:'; $labels['newpasswd'] = 'Sandi Baru:'; diff --git a/plugins/password/localization/it_IT.inc b/plugins/password/localization/it_IT.inc index 698b491c4..ddb83ca82 100644 --- a/plugins/password/localization/it_IT.inc +++ b/plugins/password/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Modifica la Password'; $labels['curpasswd'] = 'Password corrente:'; $labels['newpasswd'] = 'Nuova password:'; diff --git a/plugins/password/localization/ja_JP.inc b/plugins/password/localization/ja_JP.inc index 9b445f3cf..cc5a1173d 100644 --- a/plugins/password/localization/ja_JP.inc +++ b/plugins/password/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'パスワードの変更'; $labels['curpasswd'] = '現在のパスワード:'; $labels['newpasswd'] = '新しいパスワード:'; diff --git a/plugins/password/localization/ko_KR.inc b/plugins/password/localization/ko_KR.inc index ba113b2b9..21e2dbbf8 100644 --- a/plugins/password/localization/ko_KR.inc +++ b/plugins/password/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = '암호 변경'; $labels['curpasswd'] = '현재 암호:'; $labels['newpasswd'] = '새 암호:'; diff --git a/plugins/password/localization/ku.inc b/plugins/password/localization/ku.inc index 4ec48bf6f..544626846 100644 --- a/plugins/password/localization/ku.inc +++ b/plugins/password/localization/ku.inc @@ -15,19 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'گۆڕینی ووشەی نهێنی'; -$labels['curpasswd'] = 'Current Password:'; -$labels['newpasswd'] = 'New Password:'; -$labels['confpasswd'] = 'Confirm New Password:'; -$messages['nopassword'] = 'Please input new password.'; -$messages['nocurpassword'] = 'Please input current password.'; -$messages['passwordincorrect'] = 'Current password incorrect.'; -$messages['passwordinconsistency'] = 'Passwords do not match, please try again.'; -$messages['crypterror'] = 'Could not save new password. Encryption function missing.'; -$messages['connecterror'] = 'Could not save new password. Connection error.'; -$messages['internalerror'] = 'Could not save new password.'; -$messages['passwordshort'] = 'Password must be at least $length characters long.'; -$messages['passwordweak'] = 'Password must include at least one number and one punctuation character.'; -$messages['passwordforbidden'] = 'Password contains forbidden characters.'; ?> diff --git a/plugins/password/localization/lb_LU.inc b/plugins/password/localization/lb_LU.inc index 6e8f8a097..08026f242 100644 --- a/plugins/password/localization/lb_LU.inc +++ b/plugins/password/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Passwuert änneren'; $labels['curpasswd'] = 'Aktuellt Passwuert:'; $labels['newpasswd'] = 'Neit Passwuert:'; diff --git a/plugins/password/localization/lt_LT.inc b/plugins/password/localization/lt_LT.inc index 470cff2f3..4425d63e0 100644 --- a/plugins/password/localization/lt_LT.inc +++ b/plugins/password/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Slaptažodžio keitimas'; $labels['curpasswd'] = 'Dabartinis slaptažodis:'; $labels['newpasswd'] = 'Naujasis slaptažodis:'; diff --git a/plugins/password/localization/lv_LV.inc b/plugins/password/localization/lv_LV.inc index cd743202c..c45bc8314 100644 --- a/plugins/password/localization/lv_LV.inc +++ b/plugins/password/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Nomainīt paroli'; $labels['curpasswd'] = 'Pašreizējā parole:'; $labels['newpasswd'] = 'Jaunā parole:'; diff --git a/plugins/password/localization/nb_NO.inc b/plugins/password/localization/nb_NO.inc index 46ddf5bce..9901303d2 100644 --- a/plugins/password/localization/nb_NO.inc +++ b/plugins/password/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Bytt passord'; $labels['curpasswd'] = 'Nåværende passord:'; $labels['newpasswd'] = 'Nytt passord:'; diff --git a/plugins/password/localization/nl_NL.inc b/plugins/password/localization/nl_NL.inc index c54508989..1b5f0b15b 100644 --- a/plugins/password/localization/nl_NL.inc +++ b/plugins/password/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Wachtwoord wijzigen'; $labels['curpasswd'] = 'Huidig wachtwoord:'; $labels['newpasswd'] = 'Nieuw wachtwoord:'; diff --git a/plugins/password/localization/nn_NO.inc b/plugins/password/localization/nn_NO.inc index 0a56e0fb8..89d0ad1c1 100644 --- a/plugins/password/localization/nn_NO.inc +++ b/plugins/password/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Bytt passord'; $labels['curpasswd'] = 'Noverande passord:'; $labels['newpasswd'] = 'Nytt passord:'; diff --git a/plugins/password/localization/pl_PL.inc b/plugins/password/localization/pl_PL.inc index 975c40a80..b3ce3726f 100644 --- a/plugins/password/localization/pl_PL.inc +++ b/plugins/password/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Zmiana hasła'; $labels['curpasswd'] = 'Aktualne hasło:'; $labels['newpasswd'] = 'Nowe hasło:'; diff --git a/plugins/password/localization/pt_BR.inc b/plugins/password/localization/pt_BR.inc index 0b2843715..ac714764f 100644 --- a/plugins/password/localization/pt_BR.inc +++ b/plugins/password/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Alterar senha'; $labels['curpasswd'] = 'Senha atual:'; $labels['newpasswd'] = 'Nova senha:'; diff --git a/plugins/password/localization/pt_PT.inc b/plugins/password/localization/pt_PT.inc index 13fe83c01..fc5b28899 100644 --- a/plugins/password/localization/pt_PT.inc +++ b/plugins/password/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Alterar password'; $labels['curpasswd'] = 'Password atual:'; $labels['newpasswd'] = 'Nova password:'; diff --git a/plugins/password/localization/ro_RO.inc b/plugins/password/localization/ro_RO.inc index fcc048f3d..004254382 100644 --- a/plugins/password/localization/ro_RO.inc +++ b/plugins/password/localization/ro_RO.inc @@ -15,19 +15,18 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Schimbați parola'; $labels['curpasswd'] = 'Parola curentă:'; $labels['newpasswd'] = 'Parola nouă:'; -$labels['confpasswd'] = 'Confirmați parola nouă:'; +$labels['confpasswd'] = 'Confirmare parola nouă:'; $messages['nopassword'] = 'Te rog să introduci noua parolă.'; $messages['nocurpassword'] = 'Te rog să introduci parola curentă'; $messages['passwordincorrect'] = 'Parola curentă este incorectă.'; -$messages['passwordinconsistency'] = 'Parolele nu se potrivesc, vă rugăm să mai încercați'; -$messages['crypterror'] = 'Nu am reușit să salvez noua parolă. Lipsa funcției de criptare.'; +$messages['passwordinconsistency'] = 'Parolele nu se potrivesc, te rog să mai încerci'; +$messages['crypterror'] = 'Nu am reușit să salvez noua parolă. Funcția de criptare lipsește.'; $messages['connecterror'] = 'Nu am reușit să salvez noua parolă. Eroare connexiune.'; $messages['internalerror'] = 'Nu am reușit să salvez noua parolă.'; -$messages['passwordshort'] = 'Parola trebuie să aibă $length caractere.'; -$messages['passwordweak'] = 'Parola trebuie să conțina cel puțin un număr si un semn de punctuație'; +$messages['passwordshort'] = 'Parola trebuie să aibă minim $length caractere.'; +$messages['passwordweak'] = 'Parola trebuie să conțina cel puțin un număr si un semn de punctuație.'; $messages['passwordforbidden'] = 'Parola conține caractere nepermise.'; ?> diff --git a/plugins/password/localization/ru_RU.inc b/plugins/password/localization/ru_RU.inc index e07e52791..85b7bf2c4 100644 --- a/plugins/password/localization/ru_RU.inc +++ b/plugins/password/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Изменить пароль'; $labels['curpasswd'] = 'Текущий пароль:'; $labels['newpasswd'] = 'Новый пароль:'; diff --git a/plugins/password/localization/sk_SK.inc b/plugins/password/localization/sk_SK.inc index eb7301fa2..fd0210285 100644 --- a/plugins/password/localization/sk_SK.inc +++ b/plugins/password/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Zmeniť heslo'; $labels['curpasswd'] = 'Súčasné heslo:'; $labels['newpasswd'] = 'Nové heslo:'; diff --git a/plugins/password/localization/sl_SI.inc b/plugins/password/localization/sl_SI.inc index 19980871e..99af3c9f5 100644 --- a/plugins/password/localization/sl_SI.inc +++ b/plugins/password/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Spremeni geslo'; $labels['curpasswd'] = 'Obstoječe geslo:'; $labels['newpasswd'] = 'Novo geslo:'; diff --git a/plugins/password/localization/sr_CS.inc b/plugins/password/localization/sr_CS.inc index d30b76e3e..0900b3112 100644 --- a/plugins/password/localization/sr_CS.inc +++ b/plugins/password/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Промијени лозинку'; $labels['curpasswd'] = 'Тренутна лозинка:'; $labels['newpasswd'] = 'Нова лозинка:'; diff --git a/plugins/password/localization/sv_SE.inc b/plugins/password/localization/sv_SE.inc index fdef48660..0aee9da81 100644 --- a/plugins/password/localization/sv_SE.inc +++ b/plugins/password/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Ändra lösenord'; $labels['curpasswd'] = 'Nuvarande lösenord:'; $labels['newpasswd'] = 'Nytt lösenord:'; diff --git a/plugins/password/localization/ti.inc b/plugins/password/localization/ti.inc index cb8da480c..9453318f0 100644 --- a/plugins/password/localization/ti.inc +++ b/plugins/password/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'መሕለፊ ቃል ይለወጥ'; $labels['curpasswd'] = 'ህልው መሕለፊ ቃል:'; $labels['newpasswd'] = 'ሓዱሽ መሕለፊ ቃል:'; diff --git a/plugins/password/localization/tr_TR.inc b/plugins/password/localization/tr_TR.inc index 3b0cfaf4a..75ee30f6d 100644 --- a/plugins/password/localization/tr_TR.inc +++ b/plugins/password/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Parolayı Değiştir'; $labels['curpasswd'] = 'Şimdiki Parola:'; $labels['newpasswd'] = 'Yeni Parola:'; diff --git a/plugins/password/localization/uk_UA.inc b/plugins/password/localization/uk_UA.inc index b01c58d31..0d102e528 100644 --- a/plugins/password/localization/uk_UA.inc +++ b/plugins/password/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Змінити пароль'; $labels['curpasswd'] = 'Поточний пароль:'; $labels['newpasswd'] = 'Новий пароль:'; diff --git a/plugins/password/localization/vi_VN.inc b/plugins/password/localization/vi_VN.inc index 0c9a930ac..3e5745f4d 100644 --- a/plugins/password/localization/vi_VN.inc +++ b/plugins/password/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = 'Thay đổi mật khẩu'; $labels['curpasswd'] = 'Mật khẩu hiện tại'; $labels['newpasswd'] = 'Mật khẩu mới:'; diff --git a/plugins/password/localization/zh_CN.inc b/plugins/password/localization/zh_CN.inc index 22c14f25a..02db6e83e 100644 --- a/plugins/password/localization/zh_CN.inc +++ b/plugins/password/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = '修改密码'; $labels['curpasswd'] = '当前密码:'; $labels['newpasswd'] = '新密码:'; diff --git a/plugins/password/localization/zh_TW.inc b/plugins/password/localization/zh_TW.inc index ea7abb759..e5e2414f2 100644 --- a/plugins/password/localization/zh_TW.inc +++ b/plugins/password/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-password/ */ - $labels['changepasswd'] = '更改密碼'; $labels['curpasswd'] = '目前的密碼'; $labels['newpasswd'] = '新密碼'; diff --git a/plugins/subscriptions_option/localization/az_AZ.inc b/plugins/subscriptions_option/localization/az_AZ.inc index 6a8cc1ec5..27ee6a54e 100644 --- a/plugins/subscriptions_option/localization/az_AZ.inc +++ b/plugins/subscriptions_option/localization/az_AZ.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP göndərişi istifadə et'; ?> diff --git a/plugins/subscriptions_option/localization/be_BE.inc b/plugins/subscriptions_option/localization/be_BE.inc index 7996f7518..470336838 100644 --- a/plugins/subscriptions_option/localization/be_BE.inc +++ b/plugins/subscriptions_option/localization/be_BE.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Выкарыстоўваць IMAP-падпіскі'; ?> diff --git a/plugins/subscriptions_option/localization/bg_BG.inc b/plugins/subscriptions_option/localization/bg_BG.inc index 520cf67ac..fd025e7dc 100644 --- a/plugins/subscriptions_option/localization/bg_BG.inc +++ b/plugins/subscriptions_option/localization/bg_BG.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Използвай IMAP абонаменти'; ?> diff --git a/plugins/subscriptions_option/localization/bs_BA.inc b/plugins/subscriptions_option/localization/bs_BA.inc index 63798c20e..6900cf568 100644 --- a/plugins/subscriptions_option/localization/bs_BA.inc +++ b/plugins/subscriptions_option/localization/bs_BA.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Koristi IMAP pretplate'; - ?> diff --git a/plugins/subscriptions_option/localization/ca_ES.inc b/plugins/subscriptions_option/localization/ca_ES.inc index 8cdb1d69b..3a723968b 100644 --- a/plugins/subscriptions_option/localization/ca_ES.inc +++ b/plugins/subscriptions_option/localization/ca_ES.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Fes servir subscripcions IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/cs_CZ.inc b/plugins/subscriptions_option/localization/cs_CZ.inc index e24d110bf..60dafa75c 100644 --- a/plugins/subscriptions_option/localization/cs_CZ.inc +++ b/plugins/subscriptions_option/localization/cs_CZ.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Používat odebírání IMAP složek'; - ?> diff --git a/plugins/subscriptions_option/localization/cy_GB.inc b/plugins/subscriptions_option/localization/cy_GB.inc index 2fb980b2b..229524f17 100644 --- a/plugins/subscriptions_option/localization/cy_GB.inc +++ b/plugins/subscriptions_option/localization/cy_GB.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Defnyddio tanysgrifiadau IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/da_DK.inc b/plugins/subscriptions_option/localization/da_DK.inc index aee9d26ba..06ed8f7a3 100644 --- a/plugins/subscriptions_option/localization/da_DK.inc +++ b/plugins/subscriptions_option/localization/da_DK.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Brug IMAP abonnementer'; - ?> diff --git a/plugins/subscriptions_option/localization/de_CH.inc b/plugins/subscriptions_option/localization/de_CH.inc index 6433a98ec..6253f87d2 100644 --- a/plugins/subscriptions_option/localization/de_CH.inc +++ b/plugins/subscriptions_option/localization/de_CH.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Nur abonnierte Ordner anzeigen'; - ?> diff --git a/plugins/subscriptions_option/localization/de_DE.inc b/plugins/subscriptions_option/localization/de_DE.inc index 6433a98ec..6253f87d2 100644 --- a/plugins/subscriptions_option/localization/de_DE.inc +++ b/plugins/subscriptions_option/localization/de_DE.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Nur abonnierte Ordner anzeigen'; - ?> diff --git a/plugins/subscriptions_option/localization/el_GR.inc b/plugins/subscriptions_option/localization/el_GR.inc index 9eb90cb30..aae45c2a6 100644 --- a/plugins/subscriptions_option/localization/el_GR.inc +++ b/plugins/subscriptions_option/localization/el_GR.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Χρησιμοποιήστε IMAP Συνδρομές'; ?> diff --git a/plugins/subscriptions_option/localization/en_GB.inc b/plugins/subscriptions_option/localization/en_GB.inc index 17a4861f9..4895fdd30 100644 --- a/plugins/subscriptions_option/localization/en_GB.inc +++ b/plugins/subscriptions_option/localization/en_GB.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Use IMAP Subscriptions'; - ?> diff --git a/plugins/subscriptions_option/localization/eo.inc b/plugins/subscriptions_option/localization/eo.inc index d315c46dc..aefdac830 100644 --- a/plugins/subscriptions_option/localization/eo.inc +++ b/plugins/subscriptions_option/localization/eo.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Uzi IMAP-abonojn'; - ?> diff --git a/plugins/subscriptions_option/localization/es_AR.inc b/plugins/subscriptions_option/localization/es_AR.inc index 327e500b8..d062f1934 100644 --- a/plugins/subscriptions_option/localization/es_AR.inc +++ b/plugins/subscriptions_option/localization/es_AR.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Usar suscripción a carpetas IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/es_ES.inc b/plugins/subscriptions_option/localization/es_ES.inc index 9acd159bf..48a20fe43 100644 --- a/plugins/subscriptions_option/localization/es_ES.inc +++ b/plugins/subscriptions_option/localization/es_ES.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Usar suscripciones IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/et_EE.inc b/plugins/subscriptions_option/localization/et_EE.inc index 9e3b15d87..2d7789dbc 100644 --- a/plugins/subscriptions_option/localization/et_EE.inc +++ b/plugins/subscriptions_option/localization/et_EE.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Kasuta IMAP tellimusi'; - ?> diff --git a/plugins/subscriptions_option/localization/eu_ES.inc b/plugins/subscriptions_option/localization/eu_ES.inc index bcbacf800..a6d349e11 100644 --- a/plugins/subscriptions_option/localization/eu_ES.inc +++ b/plugins/subscriptions_option/localization/eu_ES.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Erabili IMAP harpidetzak'; ?> diff --git a/plugins/subscriptions_option/localization/fa_AF.inc b/plugins/subscriptions_option/localization/fa_AF.inc index a9e8c5bd3..696fbdc0b 100644 --- a/plugins/subscriptions_option/localization/fa_AF.inc +++ b/plugins/subscriptions_option/localization/fa_AF.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'از ثبت نام های IMAP استفاده کنید'; ?> diff --git a/plugins/subscriptions_option/localization/fa_IR.inc b/plugins/subscriptions_option/localization/fa_IR.inc index f8cf5df27..8909b2e6f 100644 --- a/plugins/subscriptions_option/localization/fa_IR.inc +++ b/plugins/subscriptions_option/localization/fa_IR.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'استفاده از عضویت IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/fi_FI.inc b/plugins/subscriptions_option/localization/fi_FI.inc index 904d028c9..7e8ee43e8 100644 --- a/plugins/subscriptions_option/localization/fi_FI.inc +++ b/plugins/subscriptions_option/localization/fi_FI.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Käytä IMAP-tilauksia'; - ?> diff --git a/plugins/subscriptions_option/localization/fr_FR.inc b/plugins/subscriptions_option/localization/fr_FR.inc index 0b2ea9f67..9b06d4614 100644 --- a/plugins/subscriptions_option/localization/fr_FR.inc +++ b/plugins/subscriptions_option/localization/fr_FR.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Utiliser les abonnements IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/gl_ES.inc b/plugins/subscriptions_option/localization/gl_ES.inc index 376b2d39b..3b22d8dbe 100644 --- a/plugins/subscriptions_option/localization/gl_ES.inc +++ b/plugins/subscriptions_option/localization/gl_ES.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Usar subscricións IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/he_IL.inc b/plugins/subscriptions_option/localization/he_IL.inc index 897bdd5d7..c44a1edb3 100644 --- a/plugins/subscriptions_option/localization/he_IL.inc +++ b/plugins/subscriptions_option/localization/he_IL.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'שימוש ברישום לתיקיות IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/hu_HU.inc b/plugins/subscriptions_option/localization/hu_HU.inc index 368997b84..1fee1bb91 100644 --- a/plugins/subscriptions_option/localization/hu_HU.inc +++ b/plugins/subscriptions_option/localization/hu_HU.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP előfizetések használata.'; - ?> diff --git a/plugins/subscriptions_option/localization/hy_AM.inc b/plugins/subscriptions_option/localization/hy_AM.inc index 1ecaa9af3..844478884 100644 --- a/plugins/subscriptions_option/localization/hy_AM.inc +++ b/plugins/subscriptions_option/localization/hy_AM.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Օգտագործել IMAP-ի բաժանորդագրությունները'; - ?> diff --git a/plugins/subscriptions_option/localization/id_ID.inc b/plugins/subscriptions_option/localization/id_ID.inc index eda794ff1..4232379c2 100644 --- a/plugins/subscriptions_option/localization/id_ID.inc +++ b/plugins/subscriptions_option/localization/id_ID.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Gunakan Langganan IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/it_IT.inc b/plugins/subscriptions_option/localization/it_IT.inc index 004311c6d..37a9ab226 100644 --- a/plugins/subscriptions_option/localization/it_IT.inc +++ b/plugins/subscriptions_option/localization/it_IT.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Usa sottoscrizioni IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/ja_JP.inc b/plugins/subscriptions_option/localization/ja_JP.inc index 62592844e..4de8a70c8 100644 --- a/plugins/subscriptions_option/localization/ja_JP.inc +++ b/plugins/subscriptions_option/localization/ja_JP.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP 購読リストを使う'; - ?> diff --git a/plugins/subscriptions_option/localization/ko_KR.inc b/plugins/subscriptions_option/localization/ko_KR.inc index ea539dc84..09f5634d3 100644 --- a/plugins/subscriptions_option/localization/ko_KR.inc +++ b/plugins/subscriptions_option/localization/ko_KR.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP 구독 사용'; - ?> diff --git a/plugins/subscriptions_option/localization/lb_LU.inc b/plugins/subscriptions_option/localization/lb_LU.inc index 100801ee9..8c1114e85 100644 --- a/plugins/subscriptions_option/localization/lb_LU.inc +++ b/plugins/subscriptions_option/localization/lb_LU.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP-Abonnementer benotzen'; - ?> diff --git a/plugins/subscriptions_option/localization/lt_LT.inc b/plugins/subscriptions_option/localization/lt_LT.inc index b8fd0a1c2..1ff410fae 100644 --- a/plugins/subscriptions_option/localization/lt_LT.inc +++ b/plugins/subscriptions_option/localization/lt_LT.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Naudoti IMAP prenumeratas'; - ?> diff --git a/plugins/subscriptions_option/localization/lv_LV.inc b/plugins/subscriptions_option/localization/lv_LV.inc index 750707532..1b22bd148 100644 --- a/plugins/subscriptions_option/localization/lv_LV.inc +++ b/plugins/subscriptions_option/localization/lv_LV.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Izmantot IMAP abonēšanas iestatījumus'; ?> diff --git a/plugins/subscriptions_option/localization/nb_NO.inc b/plugins/subscriptions_option/localization/nb_NO.inc index eaf0ff0bc..f27889b7f 100644 --- a/plugins/subscriptions_option/localization/nb_NO.inc +++ b/plugins/subscriptions_option/localization/nb_NO.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Bruk IMAP-abonnementer'; - ?> diff --git a/plugins/subscriptions_option/localization/nl_NL.inc b/plugins/subscriptions_option/localization/nl_NL.inc index 79f09c4dc..00a589967 100644 --- a/plugins/subscriptions_option/localization/nl_NL.inc +++ b/plugins/subscriptions_option/localization/nl_NL.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Gebruik IMAP-abonneringen'; - ?> diff --git a/plugins/subscriptions_option/localization/nn_NO.inc b/plugins/subscriptions_option/localization/nn_NO.inc index 882a9ad3f..c679eac90 100644 --- a/plugins/subscriptions_option/localization/nn_NO.inc +++ b/plugins/subscriptions_option/localization/nn_NO.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Bruk IMAP-abonnement'; ?> diff --git a/plugins/subscriptions_option/localization/pl_PL.inc b/plugins/subscriptions_option/localization/pl_PL.inc index e6e740813..8aeed3347 100644 --- a/plugins/subscriptions_option/localization/pl_PL.inc +++ b/plugins/subscriptions_option/localization/pl_PL.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Używaj subskrypcji IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/pt_BR.inc b/plugins/subscriptions_option/localization/pt_BR.inc index ee7da7d9b..d5d90a52e 100644 --- a/plugins/subscriptions_option/localization/pt_BR.inc +++ b/plugins/subscriptions_option/localization/pt_BR.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Usar função de inscrição em pastas IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/pt_PT.inc b/plugins/subscriptions_option/localization/pt_PT.inc index abcfe329a..8b46da7dc 100644 --- a/plugins/subscriptions_option/localization/pt_PT.inc +++ b/plugins/subscriptions_option/localization/pt_PT.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Use subscrições IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/ro_RO.inc b/plugins/subscriptions_option/localization/ro_RO.inc index ccbcda358..82053c1a3 100644 --- a/plugins/subscriptions_option/localization/ro_RO.inc +++ b/plugins/subscriptions_option/localization/ro_RO.inc @@ -15,6 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Utilizare abonări IMAP'; ?> diff --git a/plugins/subscriptions_option/localization/ru_RU.inc b/plugins/subscriptions_option/localization/ru_RU.inc index 3d898b2e4..5cecfd86c 100644 --- a/plugins/subscriptions_option/localization/ru_RU.inc +++ b/plugins/subscriptions_option/localization/ru_RU.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Использовать IMAP подписки'; - ?> diff --git a/plugins/subscriptions_option/localization/sk_SK.inc b/plugins/subscriptions_option/localization/sk_SK.inc index fe5463ef8..f65a508d4 100644 --- a/plugins/subscriptions_option/localization/sk_SK.inc +++ b/plugins/subscriptions_option/localization/sk_SK.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Použi IMAP nastavenia'; - ?> diff --git a/plugins/subscriptions_option/localization/sl_SI.inc b/plugins/subscriptions_option/localization/sl_SI.inc index 6e23f4103..ea53eb297 100644 --- a/plugins/subscriptions_option/localization/sl_SI.inc +++ b/plugins/subscriptions_option/localization/sl_SI.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Uporabi IMAP-naročnino'; - ?> diff --git a/plugins/subscriptions_option/localization/sr_CS.inc b/plugins/subscriptions_option/localization/sr_CS.inc index 6d94cc281..3bce30b50 100644 --- a/plugins/subscriptions_option/localization/sr_CS.inc +++ b/plugins/subscriptions_option/localization/sr_CS.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Користите ИМАП Уписивање'; - ?> diff --git a/plugins/subscriptions_option/localization/sv_SE.inc b/plugins/subscriptions_option/localization/sv_SE.inc index 9d2e3fbcd..2d03fe48b 100644 --- a/plugins/subscriptions_option/localization/sv_SE.inc +++ b/plugins/subscriptions_option/localization/sv_SE.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Använd IMAP-prenumerationer'; - ?> diff --git a/plugins/subscriptions_option/localization/tr_TR.inc b/plugins/subscriptions_option/localization/tr_TR.inc index 4b2ca19c0..83bf38453 100644 --- a/plugins/subscriptions_option/localization/tr_TR.inc +++ b/plugins/subscriptions_option/localization/tr_TR.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'IMAP Aboneliklerini kullan'; - ?> diff --git a/plugins/subscriptions_option/localization/vi_VN.inc b/plugins/subscriptions_option/localization/vi_VN.inc index 4dd6ef9cc..c48a0f771 100644 --- a/plugins/subscriptions_option/localization/vi_VN.inc +++ b/plugins/subscriptions_option/localization/vi_VN.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = 'Đăng ký dùng cách thức IMAP'; - ?> diff --git a/plugins/subscriptions_option/localization/zh_CN.inc b/plugins/subscriptions_option/localization/zh_CN.inc index 94b9172c5..efa85b841 100644 --- a/plugins/subscriptions_option/localization/zh_CN.inc +++ b/plugins/subscriptions_option/localization/zh_CN.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = '使用 IMAP 订阅'; - ?> diff --git a/plugins/subscriptions_option/localization/zh_TW.inc b/plugins/subscriptions_option/localization/zh_TW.inc index 9fd0f81a0..fe8524a51 100644 --- a/plugins/subscriptions_option/localization/zh_TW.inc +++ b/plugins/subscriptions_option/localization/zh_TW.inc @@ -15,7 +15,5 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-subscriptions_option/ */ - $labels['useimapsubscriptions'] = '使用IMAP訂閱'; - ?> diff --git a/plugins/userinfo/localization/ar.inc b/plugins/userinfo/localization/ar.inc index 680832a1a..92d5194ee 100644 --- a/plugins/userinfo/localization/ar.inc +++ b/plugins/userinfo/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'معلومات المستخدم'; $labels['lastlogin'] = 'أخر تسجيل دخول'; $labels['defaultidentity'] = 'الهوية الافتراضية'; diff --git a/plugins/userinfo/localization/ar_SA.inc b/plugins/userinfo/localization/ar_SA.inc index bd3399c31..fbb44c5fa 100644 --- a/plugins/userinfo/localization/ar_SA.inc +++ b/plugins/userinfo/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'معلومات المستخدم'; $labels['created'] = 'أُنشئ في'; $labels['lastlogin'] = 'آخر دخول'; diff --git a/plugins/userinfo/localization/ast.inc b/plugins/userinfo/localization/ast.inc index a24deabe5..179c5ba29 100644 --- a/plugins/userinfo/localization/ast.inc +++ b/plugins/userinfo/localization/ast.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Información d\'usuariu'; $labels['created'] = 'Creáu'; $labels['lastlogin'] = 'Cabera conexón'; diff --git a/plugins/userinfo/localization/az_AZ.inc b/plugins/userinfo/localization/az_AZ.inc index 10a5448fb..f262ea305 100644 --- a/plugins/userinfo/localization/az_AZ.inc +++ b/plugins/userinfo/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Məlumat'; $labels['created'] = 'Yaradılma tarixi'; $labels['lastlogin'] = 'Sonuncu giriş'; diff --git a/plugins/userinfo/localization/be_BE.inc b/plugins/userinfo/localization/be_BE.inc index 4770d4837..724e8169d 100644 --- a/plugins/userinfo/localization/be_BE.inc +++ b/plugins/userinfo/localization/be_BE.inc @@ -15,9 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Асабістыя звесткі'; $labels['created'] = 'Створаны'; $labels['lastlogin'] = 'Апошні ўваход'; -$labels['defaultidentity'] = 'Стандартныя асабістыя звесткі'; +$labels['defaultidentity'] = 'Стандартная тоеснасць'; ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/bg_BG.inc b/plugins/userinfo/localization/bg_BG.inc index aca1bba61..078c89e4a 100644 --- a/plugins/userinfo/localization/bg_BG.inc +++ b/plugins/userinfo/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Потребителска информация'; $labels['created'] = 'Създаден'; $labels['lastlogin'] = 'Последен вход'; diff --git a/plugins/userinfo/localization/br.inc b/plugins/userinfo/localization/br.inc index 8336ed5e0..a751bd660 100644 --- a/plugins/userinfo/localization/br.inc +++ b/plugins/userinfo/localization/br.inc @@ -15,9 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Titouroù an arveriad'; $labels['created'] = 'Krouet'; $labels['lastlogin'] = 'Kennask diwezhañ'; -$labels['defaultidentity'] = 'Default Identity'; ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/bs_BA.inc b/plugins/userinfo/localization/bs_BA.inc index c58752cf6..9dd0d258a 100644 --- a/plugins/userinfo/localization/bs_BA.inc +++ b/plugins/userinfo/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Korisničke informacije'; $labels['created'] = 'Kreirano'; $labels['lastlogin'] = 'Zadnja prijava'; diff --git a/plugins/userinfo/localization/ca_ES.inc b/plugins/userinfo/localization/ca_ES.inc index 8b853ffa2..8c82c52a2 100644 --- a/plugins/userinfo/localization/ca_ES.inc +++ b/plugins/userinfo/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informació de l\'usuari/a'; $labels['created'] = 'Creat'; $labels['lastlogin'] = 'Última connexió'; diff --git a/plugins/userinfo/localization/cs_CZ.inc b/plugins/userinfo/localization/cs_CZ.inc index fc0ed0e3b..761926ce8 100644 --- a/plugins/userinfo/localization/cs_CZ.inc +++ b/plugins/userinfo/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Uživatel'; $labels['created'] = 'Vytvořen'; $labels['lastlogin'] = 'Naspoledy přihlášen'; diff --git a/plugins/userinfo/localization/cy_GB.inc b/plugins/userinfo/localization/cy_GB.inc index cff92b844..3ce86a65d 100644 --- a/plugins/userinfo/localization/cy_GB.inc +++ b/plugins/userinfo/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Gwybodaeth defnyddiwr'; $labels['created'] = 'Crëwyd'; $labels['lastlogin'] = 'Mewngofnodiad diwethaf'; diff --git a/plugins/userinfo/localization/da_DK.inc b/plugins/userinfo/localization/da_DK.inc index 4b534d256..be72a5b26 100644 --- a/plugins/userinfo/localization/da_DK.inc +++ b/plugins/userinfo/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Brugerinfo'; $labels['created'] = 'Oprettet'; $labels['lastlogin'] = 'Sidste login'; diff --git a/plugins/userinfo/localization/de_CH.inc b/plugins/userinfo/localization/de_CH.inc index 4501bcf62..695129a38 100644 --- a/plugins/userinfo/localization/de_CH.inc +++ b/plugins/userinfo/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Benutzerinfo'; $labels['created'] = 'Erstellt'; $labels['lastlogin'] = 'Letztes Login'; diff --git a/plugins/userinfo/localization/de_DE.inc b/plugins/userinfo/localization/de_DE.inc index df1f7c0de..8a1ab37a3 100644 --- a/plugins/userinfo/localization/de_DE.inc +++ b/plugins/userinfo/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Benutzer-Information'; $labels['created'] = 'angelegt'; $labels['lastlogin'] = 'letzte Anmeldung'; diff --git a/plugins/userinfo/localization/el_GR.inc b/plugins/userinfo/localization/el_GR.inc index 2ea902d36..61fa25aa3 100644 --- a/plugins/userinfo/localization/el_GR.inc +++ b/plugins/userinfo/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Πληροφορίες χρήστη '; $labels['created'] = 'Δημιουργηθηκε'; $labels['lastlogin'] = 'Τελευταια συνδεση'; diff --git a/plugins/userinfo/localization/en_GB.inc b/plugins/userinfo/localization/en_GB.inc index 79a6a6591..d2951a984 100644 --- a/plugins/userinfo/localization/en_GB.inc +++ b/plugins/userinfo/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'User info'; $labels['created'] = 'Created'; $labels['lastlogin'] = 'Last Login'; diff --git a/plugins/userinfo/localization/eo.inc b/plugins/userinfo/localization/eo.inc index 06af2d831..c7768552a 100644 --- a/plugins/userinfo/localization/eo.inc +++ b/plugins/userinfo/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informoj pri uzanto'; $labels['created'] = 'Kreita'; $labels['lastlogin'] = 'Lasta ensaluto'; diff --git a/plugins/userinfo/localization/es_AR.inc b/plugins/userinfo/localization/es_AR.inc index 74d6dc45b..fefbecef1 100644 --- a/plugins/userinfo/localization/es_AR.inc +++ b/plugins/userinfo/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Información de usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Ultimo ingreso'; diff --git a/plugins/userinfo/localization/es_ES.inc b/plugins/userinfo/localization/es_ES.inc index 821a06917..6dde3c59f 100644 --- a/plugins/userinfo/localization/es_ES.inc +++ b/plugins/userinfo/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Información de usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Última conexión'; diff --git a/plugins/userinfo/localization/et_EE.inc b/plugins/userinfo/localization/et_EE.inc index 913435815..64f53b2fa 100644 --- a/plugins/userinfo/localization/et_EE.inc +++ b/plugins/userinfo/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Kasutaja info'; $labels['created'] = 'Loodud'; $labels['lastlogin'] = 'Viimane logimine'; diff --git a/plugins/userinfo/localization/eu_ES.inc b/plugins/userinfo/localization/eu_ES.inc index e3172a5c9..38cce04bd 100644 --- a/plugins/userinfo/localization/eu_ES.inc +++ b/plugins/userinfo/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Erabiltzailearen informazioa'; $labels['created'] = 'Sortua'; $labels['lastlogin'] = 'Azken saioa'; diff --git a/plugins/userinfo/localization/fa_AF.inc b/plugins/userinfo/localization/fa_AF.inc index 0d130e911..8308a7f3c 100644 --- a/plugins/userinfo/localization/fa_AF.inc +++ b/plugins/userinfo/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'اطلاعات کاربر'; $labels['created'] = 'ایجاد شد'; $labels['lastlogin'] = 'آخرین ورود'; diff --git a/plugins/userinfo/localization/fa_IR.inc b/plugins/userinfo/localization/fa_IR.inc index 3c39d7150..3f2c3952f 100644 --- a/plugins/userinfo/localization/fa_IR.inc +++ b/plugins/userinfo/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'اطلاعات کاربر'; $labels['created'] = 'ایجاد شده'; $labels['lastlogin'] = 'آخرین ورود'; diff --git a/plugins/userinfo/localization/fi_FI.inc b/plugins/userinfo/localization/fi_FI.inc index b143d5512..a06855794 100644 --- a/plugins/userinfo/localization/fi_FI.inc +++ b/plugins/userinfo/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Käyttäjätiedot'; $labels['created'] = 'Luotu'; $labels['lastlogin'] = 'Viimeisin kirjautuminen'; diff --git a/plugins/userinfo/localization/fr_FR.inc b/plugins/userinfo/localization/fr_FR.inc index 448d081e9..828101c69 100644 --- a/plugins/userinfo/localization/fr_FR.inc +++ b/plugins/userinfo/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Info utilisateur'; $labels['created'] = 'Date de création'; $labels['lastlogin'] = 'Dernière connexion'; diff --git a/plugins/userinfo/localization/gl_ES.inc b/plugins/userinfo/localization/gl_ES.inc index c66371a9a..860c92673 100644 --- a/plugins/userinfo/localization/gl_ES.inc +++ b/plugins/userinfo/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Información do usuario'; $labels['created'] = 'Creado'; $labels['lastlogin'] = 'Última conexión'; diff --git a/plugins/userinfo/localization/he_IL.inc b/plugins/userinfo/localization/he_IL.inc index ef7f60ae1..6e7c3a931 100644 --- a/plugins/userinfo/localization/he_IL.inc +++ b/plugins/userinfo/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'פרטי המשתמש'; $labels['created'] = 'נוצר'; $labels['lastlogin'] = 'הכמיסה האחרונה למערכת'; diff --git a/plugins/userinfo/localization/hr_HR.inc b/plugins/userinfo/localization/hr_HR.inc index dcd3657fe..669d85ce0 100644 --- a/plugins/userinfo/localization/hr_HR.inc +++ b/plugins/userinfo/localization/hr_HR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informacije o korisniku'; $labels['created'] = 'Stvoreno'; $labels['lastlogin'] = 'Zadnja prijava (login)'; diff --git a/plugins/userinfo/localization/hu_HU.inc b/plugins/userinfo/localization/hu_HU.inc index 8854f081d..0b3334487 100644 --- a/plugins/userinfo/localization/hu_HU.inc +++ b/plugins/userinfo/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Felhasználói információ'; $labels['created'] = 'Létrehozva'; $labels['lastlogin'] = 'Utolsó bejelentkezés'; diff --git a/plugins/userinfo/localization/hy_AM.inc b/plugins/userinfo/localization/hy_AM.inc index ea3667ea0..42add9df9 100644 --- a/plugins/userinfo/localization/hy_AM.inc +++ b/plugins/userinfo/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Օգտվողի տվյալներ'; $labels['created'] = 'Ստեղծված'; $labels['lastlogin'] = 'Վերջին մուտքը`'; diff --git a/plugins/userinfo/localization/ia.inc b/plugins/userinfo/localization/ia.inc index 583ee6085..4532d9459 100644 --- a/plugins/userinfo/localization/ia.inc +++ b/plugins/userinfo/localization/ia.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Information de usator'; $labels['created'] = 'Create'; $labels['lastlogin'] = 'Ultime initio de session'; diff --git a/plugins/userinfo/localization/id_ID.inc b/plugins/userinfo/localization/id_ID.inc index c726536af..aa3bb661a 100644 --- a/plugins/userinfo/localization/id_ID.inc +++ b/plugins/userinfo/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informasi pengguna'; $labels['created'] = 'Telah dibuat'; $labels['lastlogin'] = 'Masuk Terakhir'; diff --git a/plugins/userinfo/localization/it_IT.inc b/plugins/userinfo/localization/it_IT.inc index 97cbaff25..76e0e156a 100644 --- a/plugins/userinfo/localization/it_IT.inc +++ b/plugins/userinfo/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informazioni utente'; $labels['created'] = 'Creato'; $labels['lastlogin'] = 'Ultimo Login'; diff --git a/plugins/userinfo/localization/ja_JP.inc b/plugins/userinfo/localization/ja_JP.inc index a9f11bd54..c9a79e10d 100644 --- a/plugins/userinfo/localization/ja_JP.inc +++ b/plugins/userinfo/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'ユーザー情報'; $labels['created'] = '作成日時'; $labels['lastlogin'] = '最後のログイン'; diff --git a/plugins/userinfo/localization/km_KH.inc b/plugins/userinfo/localization/km_KH.inc index bc9ca6034..ce7c0a18c 100644 --- a/plugins/userinfo/localization/km_KH.inc +++ b/plugins/userinfo/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'ព័តមានអ្នកប្រើប្រាស់'; $labels['created'] = 'បាន​បង្កើត'; $labels['lastlogin'] = 'ចុះឈ្មោះចូលចុងក្រោយ'; diff --git a/plugins/userinfo/localization/ko_KR.inc b/plugins/userinfo/localization/ko_KR.inc index 781e030a1..5a95d2e77 100644 --- a/plugins/userinfo/localization/ko_KR.inc +++ b/plugins/userinfo/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = '사용자 정보'; $labels['created'] = '생성됨'; $labels['lastlogin'] = '마지막 로그인'; diff --git a/plugins/userinfo/localization/ku.inc b/plugins/userinfo/localization/ku.inc index c03a482eb..7accf51ad 100644 --- a/plugins/userinfo/localization/ku.inc +++ b/plugins/userinfo/localization/ku.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'nawnişani bakar henar'; $labels['created'] = 'Hat afirandin'; $labels['lastlogin'] = 'axrin hatna jurawa'; diff --git a/plugins/userinfo/localization/lb_LU.inc b/plugins/userinfo/localization/lb_LU.inc index a4e4368b7..db2e0c8c7 100644 --- a/plugins/userinfo/localization/lb_LU.inc +++ b/plugins/userinfo/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Benotzer-Info'; $labels['created'] = 'Erstallt'; $labels['lastlogin'] = 'Leschte Login'; diff --git a/plugins/userinfo/localization/lt_LT.inc b/plugins/userinfo/localization/lt_LT.inc index f7651b33d..a7a00d076 100644 --- a/plugins/userinfo/localization/lt_LT.inc +++ b/plugins/userinfo/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informacija apie naudotoją'; $labels['created'] = 'Sukurtas'; $labels['lastlogin'] = 'Paskutinį kartą prisijungė'; diff --git a/plugins/userinfo/localization/lv_LV.inc b/plugins/userinfo/localization/lv_LV.inc index e5c227ca7..5bfb4059d 100644 --- a/plugins/userinfo/localization/lv_LV.inc +++ b/plugins/userinfo/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informācija par lietotāju'; $labels['created'] = 'Izveidots'; $labels['lastlogin'] = 'Pēdējā pieteikšanās'; diff --git a/plugins/userinfo/localization/ml_IN.inc b/plugins/userinfo/localization/ml_IN.inc index a9535121f..7968bc7e6 100644 --- a/plugins/userinfo/localization/ml_IN.inc +++ b/plugins/userinfo/localization/ml_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'ഉപയോക്താവിന്റെ വിവരം'; $labels['created'] = 'നിര്‍മ്മിച്ചു'; $labels['lastlogin'] = 'അവസാന പ്രവേശനം'; diff --git a/plugins/userinfo/localization/mr_IN.inc b/plugins/userinfo/localization/mr_IN.inc index ba9943bd4..71a06ab58 100644 --- a/plugins/userinfo/localization/mr_IN.inc +++ b/plugins/userinfo/localization/mr_IN.inc @@ -15,9 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'वापरकर्त्याची माहिती'; $labels['created'] = 'निर्माण केलेले'; -$labels['lastlogin'] = 'Last Login'; -$labels['defaultidentity'] = 'Default Identity'; ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/nb_NO.inc b/plugins/userinfo/localization/nb_NO.inc index 15e14bc39..b998bb577 100644 --- a/plugins/userinfo/localization/nb_NO.inc +++ b/plugins/userinfo/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Brukerinformasjon'; $labels['created'] = 'Opprettet'; $labels['lastlogin'] = 'Sist logget inn'; diff --git a/plugins/userinfo/localization/nl_NL.inc b/plugins/userinfo/localization/nl_NL.inc index 46323d6aa..18ca91688 100644 --- a/plugins/userinfo/localization/nl_NL.inc +++ b/plugins/userinfo/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Gebruikersinformatie'; $labels['created'] = 'Aangemaakt'; $labels['lastlogin'] = 'Laatste aanmelding'; diff --git a/plugins/userinfo/localization/nn_NO.inc b/plugins/userinfo/localization/nn_NO.inc index 06f45266b..61acd192a 100644 --- a/plugins/userinfo/localization/nn_NO.inc +++ b/plugins/userinfo/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Brukarinfo'; $labels['created'] = 'Laga'; $labels['lastlogin'] = 'Sist logga inn'; diff --git a/plugins/userinfo/localization/pl_PL.inc b/plugins/userinfo/localization/pl_PL.inc index 6f2568791..0f68ae847 100644 --- a/plugins/userinfo/localization/pl_PL.inc +++ b/plugins/userinfo/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informacje'; $labels['created'] = 'Utworzony'; $labels['lastlogin'] = 'Ostatnie logowanie'; diff --git a/plugins/userinfo/localization/pt_BR.inc b/plugins/userinfo/localization/pt_BR.inc index 00dd6b8b2..b261f6718 100644 --- a/plugins/userinfo/localization/pt_BR.inc +++ b/plugins/userinfo/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informações do usuário'; $labels['created'] = 'Criado'; $labels['lastlogin'] = 'Último Login'; diff --git a/plugins/userinfo/localization/pt_PT.inc b/plugins/userinfo/localization/pt_PT.inc index a24b9b741..85b3e8281 100644 --- a/plugins/userinfo/localization/pt_PT.inc +++ b/plugins/userinfo/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Informação do utilizador'; $labels['created'] = 'Criado'; $labels['lastlogin'] = 'Último acesso'; diff --git a/plugins/userinfo/localization/ro_RO.inc b/plugins/userinfo/localization/ro_RO.inc index b067b1ae5..64e0b3691 100644 --- a/plugins/userinfo/localization/ro_RO.inc +++ b/plugins/userinfo/localization/ro_RO.inc @@ -15,9 +15,8 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - -$labels['userinfo'] = 'Informatii utilisator'; -$labels['created'] = 'Data creatiei'; -$labels['lastlogin'] = 'Ultima conectare'; -$labels['defaultidentity'] = 'Identitate principala'; +$labels['userinfo'] = 'Informații utilizator'; +$labels['created'] = 'Data creării'; +$labels['lastlogin'] = 'Ultima autentificare'; +$labels['defaultidentity'] = 'Identitate principală'; ?> \ No newline at end of file diff --git a/plugins/userinfo/localization/ru_RU.inc b/plugins/userinfo/localization/ru_RU.inc index 166349d12..ca449d88c 100644 --- a/plugins/userinfo/localization/ru_RU.inc +++ b/plugins/userinfo/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Информация'; $labels['created'] = 'Создан'; $labels['lastlogin'] = 'Последний вход'; diff --git a/plugins/userinfo/localization/sk_SK.inc b/plugins/userinfo/localization/sk_SK.inc index 6a942e437..f6b0c63d2 100644 --- a/plugins/userinfo/localization/sk_SK.inc +++ b/plugins/userinfo/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Užívateľské informácie'; $labels['created'] = 'Vytvorené'; $labels['lastlogin'] = 'Posledné prihlásenie'; diff --git a/plugins/userinfo/localization/sl_SI.inc b/plugins/userinfo/localization/sl_SI.inc index f4712cf9e..a427a0945 100644 --- a/plugins/userinfo/localization/sl_SI.inc +++ b/plugins/userinfo/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Podatki o uporabniku'; $labels['created'] = 'Ustvarjen'; $labels['lastlogin'] = 'Zadnja prijava'; diff --git a/plugins/userinfo/localization/sr_CS.inc b/plugins/userinfo/localization/sr_CS.inc index b2e585cbb..70271e51c 100644 --- a/plugins/userinfo/localization/sr_CS.inc +++ b/plugins/userinfo/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Подаци о кориснику'; $labels['created'] = 'Направљено'; $labels['lastlogin'] = 'Последњи Логин'; diff --git a/plugins/userinfo/localization/sv_SE.inc b/plugins/userinfo/localization/sv_SE.inc index 9c9a4e3ad..5583a4e2c 100644 --- a/plugins/userinfo/localization/sv_SE.inc +++ b/plugins/userinfo/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Användarinfo'; $labels['created'] = 'Skapad'; $labels['lastlogin'] = 'Senast inloggad'; diff --git a/plugins/userinfo/localization/ti.inc b/plugins/userinfo/localization/ti.inc index 3775561eb..3799f66e4 100644 --- a/plugins/userinfo/localization/ti.inc +++ b/plugins/userinfo/localization/ti.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'ሓብሬታ በዓል ዋና '; $labels['created'] = 'እዋን ፍጥረት'; $labels['lastlogin'] = 'እዋን እታው'; diff --git a/plugins/userinfo/localization/tr_TR.inc b/plugins/userinfo/localization/tr_TR.inc index ceddca16e..5d876f4d2 100644 --- a/plugins/userinfo/localization/tr_TR.inc +++ b/plugins/userinfo/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Kullanıcı bilgisi'; $labels['created'] = 'Oluşturuldu'; $labels['lastlogin'] = 'Son Giriş'; diff --git a/plugins/userinfo/localization/uk_UA.inc b/plugins/userinfo/localization/uk_UA.inc index 2de8fc4a6..91c567047 100644 --- a/plugins/userinfo/localization/uk_UA.inc +++ b/plugins/userinfo/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Інформація'; $labels['created'] = 'Створено'; $labels['lastlogin'] = 'Останній захід'; diff --git a/plugins/userinfo/localization/vi_VN.inc b/plugins/userinfo/localization/vi_VN.inc index 11e725264..2a87163be 100644 --- a/plugins/userinfo/localization/vi_VN.inc +++ b/plugins/userinfo/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = 'Thông tin người dùng'; $labels['created'] = 'Được tạo'; $labels['lastlogin'] = 'Lần đăng nhập cuối'; diff --git a/plugins/userinfo/localization/zh_CN.inc b/plugins/userinfo/localization/zh_CN.inc index 1445d30c1..b497c10ca 100644 --- a/plugins/userinfo/localization/zh_CN.inc +++ b/plugins/userinfo/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = '用户信息'; $labels['created'] = '创建于'; $labels['lastlogin'] = '最近登录'; diff --git a/plugins/userinfo/localization/zh_TW.inc b/plugins/userinfo/localization/zh_TW.inc index b9caef974..811cbb996 100644 --- a/plugins/userinfo/localization/zh_TW.inc +++ b/plugins/userinfo/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-userinfo/ */ - $labels['userinfo'] = '使用者資訊'; $labels['created'] = '建立時間'; $labels['lastlogin'] = '上次登入'; diff --git a/plugins/vcard_attachments/localization/ar.inc b/plugins/vcard_attachments/localization/ar.inc index b7f547399..2d40d9bba 100644 --- a/plugins/vcard_attachments/localization/ar.inc +++ b/plugins/vcard_attachments/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'إضافة vCard إلى دفتر العناوين'; $labels['vcardsavefailed'] = 'غير قادر على حفظ بصيغة vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ar_SA.inc b/plugins/vcard_attachments/localization/ar_SA.inc index 0e126274d..47461898d 100644 --- a/plugins/vcard_attachments/localization/ar_SA.inc +++ b/plugins/vcard_attachments/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'إضافة صيغة vCard إلى دفتر العناوين'; $labels['vcardsavefailed'] = 'غير قادر على الحفظ بصيغة vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/az_AZ.inc b/plugins/vcard_attachments/localization/az_AZ.inc index 5d32d928b..7329c7f18 100644 --- a/plugins/vcard_attachments/localization/az_AZ.inc +++ b/plugins/vcard_attachments/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'vCard-ı kontakta daxil et'; $labels['vcardsavefailed'] = 'vCard-ı saxlamaq alınmadı'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/be_BE.inc b/plugins/vcard_attachments/localization/be_BE.inc index 1fb1416ea..57a48e12b 100644 --- a/plugins/vcard_attachments/localization/be_BE.inc +++ b/plugins/vcard_attachments/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Дадаць vCard у адрасную кнігу'; $labels['vcardsavefailed'] = 'Немагчыма захаваць vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/bg_BG.inc b/plugins/vcard_attachments/localization/bg_BG.inc index 2e5c78c6a..7e0b174e9 100644 --- a/plugins/vcard_attachments/localization/bg_BG.inc +++ b/plugins/vcard_attachments/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Добавяне на vCard към адресната книга'; $labels['vcardsavefailed'] = 'Невъзможен запис на vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/bs_BA.inc b/plugins/vcard_attachments/localization/bs_BA.inc index 2b15e3afc..32304d60c 100644 --- a/plugins/vcard_attachments/localization/bs_BA.inc +++ b/plugins/vcard_attachments/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Dodaj vCard u adresar'; $labels['vcardsavefailed'] = 'Nije moguće sačuvati vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ca_ES.inc b/plugins/vcard_attachments/localization/ca_ES.inc index 6ea53b879..c09315df3 100644 --- a/plugins/vcard_attachments/localization/ca_ES.inc +++ b/plugins/vcard_attachments/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Afegeix la vCard a la llibreta d\'adreces'; $labels['vcardsavefailed'] = 'No s\'ha pogut desar la vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/cs_CZ.inc b/plugins/vcard_attachments/localization/cs_CZ.inc index c1b32bdbf..372d650d9 100644 --- a/plugins/vcard_attachments/localization/cs_CZ.inc +++ b/plugins/vcard_attachments/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Přidat vCard do adresáře'; $labels['vcardsavefailed'] = 'Nelze uložit vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/cy_GB.inc b/plugins/vcard_attachments/localization/cy_GB.inc index 25030d89f..814ed0be4 100644 --- a/plugins/vcard_attachments/localization/cy_GB.inc +++ b/plugins/vcard_attachments/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Ychwanegu vCard i\'r llyfr cyfeiriadau'; $labels['vcardsavefailed'] = 'Methwyd cadw\'r vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/da_DK.inc b/plugins/vcard_attachments/localization/da_DK.inc index 76f1c815a..3107246e9 100644 --- a/plugins/vcard_attachments/localization/da_DK.inc +++ b/plugins/vcard_attachments/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Tilføj vCard til adressebogen'; $labels['vcardsavefailed'] = 'Kan ikke gemme dette vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/de_CH.inc b/plugins/vcard_attachments/localization/de_CH.inc index a4e2904aa..edee86fce 100644 --- a/plugins/vcard_attachments/localization/de_CH.inc +++ b/plugins/vcard_attachments/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Kontakt im Adressbuch speichern'; $labels['vcardsavefailed'] = 'Der Kontakt konnte nicht gespeichert werden'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/de_DE.inc b/plugins/vcard_attachments/localization/de_DE.inc index a4e2904aa..edee86fce 100644 --- a/plugins/vcard_attachments/localization/de_DE.inc +++ b/plugins/vcard_attachments/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Kontakt im Adressbuch speichern'; $labels['vcardsavefailed'] = 'Der Kontakt konnte nicht gespeichert werden'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/el_GR.inc b/plugins/vcard_attachments/localization/el_GR.inc index 820523b4b..a59f6f556 100644 --- a/plugins/vcard_attachments/localization/el_GR.inc +++ b/plugins/vcard_attachments/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Προσθήκη vCard στο βιβλίο διευθύνσεων'; $labels['vcardsavefailed'] = 'Δεν είναι δυνατή η αποθήκευση του vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/en_GB.inc b/plugins/vcard_attachments/localization/en_GB.inc index 34c5eeb10..ac21ef96b 100644 --- a/plugins/vcard_attachments/localization/en_GB.inc +++ b/plugins/vcard_attachments/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Add vCard to addressbook'; $labels['vcardsavefailed'] = 'Unable to save vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/eo.inc b/plugins/vcard_attachments/localization/eo.inc index 79f1aefcd..bcdfbb0d5 100644 --- a/plugins/vcard_attachments/localization/eo.inc +++ b/plugins/vcard_attachments/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Aldoni vCard al adresaro'; $labels['vcardsavefailed'] = 'vCard ne konserveblas'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/es_AR.inc b/plugins/vcard_attachments/localization/es_AR.inc index 1c15d6516..ee2f0c84b 100644 --- a/plugins/vcard_attachments/localization/es_AR.inc +++ b/plugins/vcard_attachments/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Agregar vCard a la libreta de direcciones'; $labels['vcardsavefailed'] = 'Imposible guardar vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/es_ES.inc b/plugins/vcard_attachments/localization/es_ES.inc index 8e92f81fb..8c777d2ed 100644 --- a/plugins/vcard_attachments/localization/es_ES.inc +++ b/plugins/vcard_attachments/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Añadir la tarjeta a la libreta de direcciones'; $labels['vcardsavefailed'] = 'No ha sido posible guardar la tarjeta'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/et_EE.inc b/plugins/vcard_attachments/localization/et_EE.inc index a18c5687f..73d2070eb 100644 --- a/plugins/vcard_attachments/localization/et_EE.inc +++ b/plugins/vcard_attachments/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Lisa vCard aadressiraamatusse'; $labels['vcardsavefailed'] = 'vCard salvestamine nurjus'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/eu_ES.inc b/plugins/vcard_attachments/localization/eu_ES.inc index ca9d22424..f60ac6efa 100644 --- a/plugins/vcard_attachments/localization/eu_ES.inc +++ b/plugins/vcard_attachments/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Gehitu vCard helbide-liburura'; $labels['vcardsavefailed'] = 'Ezin da vCard gorde'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fa_IR.inc b/plugins/vcard_attachments/localization/fa_IR.inc index 061280299..ea93d8c61 100644 --- a/plugins/vcard_attachments/localization/fa_IR.inc +++ b/plugins/vcard_attachments/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'افزودن vCard به دفترچه آدرس'; $labels['vcardsavefailed'] = 'ناتوان در ذخیره vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fi_FI.inc b/plugins/vcard_attachments/localization/fi_FI.inc index f063f1679..58aceb18d 100644 --- a/plugins/vcard_attachments/localization/fi_FI.inc +++ b/plugins/vcard_attachments/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Lisää vCard osoitekirjaan'; $labels['vcardsavefailed'] = 'vCardin tallennus epäonnistui'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/fr_FR.inc b/plugins/vcard_attachments/localization/fr_FR.inc index 3bbf7d3a5..243f6aea8 100644 --- a/plugins/vcard_attachments/localization/fr_FR.inc +++ b/plugins/vcard_attachments/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Ajouter la vCard au carnet d\'adresses'; $labels['vcardsavefailed'] = 'Impossible d\'enregistrer la vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/gl_ES.inc b/plugins/vcard_attachments/localization/gl_ES.inc index 03b8de2c7..af6f2842e 100644 --- a/plugins/vcard_attachments/localization/gl_ES.inc +++ b/plugins/vcard_attachments/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Engadir vCard ao caderno de enderezos'; $labels['vcardsavefailed'] = 'Non foi posible gardar a vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/he_IL.inc b/plugins/vcard_attachments/localization/he_IL.inc index 2f834be9f..4a0a4cd4a 100644 --- a/plugins/vcard_attachments/localization/he_IL.inc +++ b/plugins/vcard_attachments/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'הוספת כרטיס ביקור בפורמט vCard לספר הכתובות'; $labels['vcardsavefailed'] = 'לא ניתן לשמור את כרטיס הביקור vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hr_HR.inc b/plugins/vcard_attachments/localization/hr_HR.inc index 74319a53c..93fc17cb0 100644 --- a/plugins/vcard_attachments/localization/hr_HR.inc +++ b/plugins/vcard_attachments/localization/hr_HR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Dodaj vCard u imenik'; $labels['vcardsavefailed'] = 'Ne mogu pohraniti vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hu_HU.inc b/plugins/vcard_attachments/localization/hu_HU.inc index ca0a37f78..e4d609f01 100644 --- a/plugins/vcard_attachments/localization/hu_HU.inc +++ b/plugins/vcard_attachments/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'vCard hozzáadása a címjegyzékhez'; $labels['vcardsavefailed'] = 'Sikertelen a vCard mentése'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/hy_AM.inc b/plugins/vcard_attachments/localization/hy_AM.inc index 878b11d41..d565882ff 100644 --- a/plugins/vcard_attachments/localization/hy_AM.inc +++ b/plugins/vcard_attachments/localization/hy_AM.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Ավելացնել vCard-ը հասցեագրքում'; $labels['vcardsavefailed'] = 'vCard-ի պահպանումը ձախողվեց'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/id_ID.inc b/plugins/vcard_attachments/localization/id_ID.inc index b66c97565..ea3a31abf 100644 --- a/plugins/vcard_attachments/localization/id_ID.inc +++ b/plugins/vcard_attachments/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Tambahkan vCard ke buku alamat'; $labels['vcardsavefailed'] = 'Tidak dapat menyimpan vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/it_IT.inc b/plugins/vcard_attachments/localization/it_IT.inc index f6c0590f3..fbe498f88 100644 --- a/plugins/vcard_attachments/localization/it_IT.inc +++ b/plugins/vcard_attachments/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Aggiungi vCard alla Agenda'; $labels['vcardsavefailed'] = 'Abilita a salvare vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ja_JP.inc b/plugins/vcard_attachments/localization/ja_JP.inc index ede254219..4cd738b08 100644 --- a/plugins/vcard_attachments/localization/ja_JP.inc +++ b/plugins/vcard_attachments/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'vCardをアドレス帳に追加'; $labels['vcardsavefailed'] = 'vCardを保存できませんでした。'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/km_KH.inc b/plugins/vcard_attachments/localization/km_KH.inc index 84d226b89..f3909e0b5 100644 --- a/plugins/vcard_attachments/localization/km_KH.inc +++ b/plugins/vcard_attachments/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'បន្ថែម vCard ទៅសៀវភៅកត់ត្រា'; $labels['vcardsavefailed'] = 'មិនអាចរក្សាទុក vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ko_KR.inc b/plugins/vcard_attachments/localization/ko_KR.inc index 68277d27b..b9b6906d2 100644 --- a/plugins/vcard_attachments/localization/ko_KR.inc +++ b/plugins/vcard_attachments/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = '주소록에 vCard를 추가'; $labels['vcardsavefailed'] = 'vCard 저장이 불가능함'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lb_LU.inc b/plugins/vcard_attachments/localization/lb_LU.inc index e38111a89..005650fd7 100644 --- a/plugins/vcard_attachments/localization/lb_LU.inc +++ b/plugins/vcard_attachments/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'vCard an d\'Adressbuch setzen'; $labels['vcardsavefailed'] = 'vCard kann net gespäichert ginn'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lt_LT.inc b/plugins/vcard_attachments/localization/lt_LT.inc index 8cbb1af8b..468a9da70 100644 --- a/plugins/vcard_attachments/localization/lt_LT.inc +++ b/plugins/vcard_attachments/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Įtraukti vizitinę kortelę į adresų knygą'; $labels['vcardsavefailed'] = 'Įrašyti vizitinės kortelės nepavyko'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/lv_LV.inc b/plugins/vcard_attachments/localization/lv_LV.inc index 5d5cc6d1e..079e4f86d 100644 --- a/plugins/vcard_attachments/localization/lv_LV.inc +++ b/plugins/vcard_attachments/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Pievienot vizītkarti adrešu grāmatai'; $labels['vcardsavefailed'] = 'Nevarēja saglabāt vizītkarti'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ml_IN.inc b/plugins/vcard_attachments/localization/ml_IN.inc index 1e889eec8..0b7786544 100644 --- a/plugins/vcard_attachments/localization/ml_IN.inc +++ b/plugins/vcard_attachments/localization/ml_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'വിലാസപുസ്തകത്തിലേക്ക് വികാര്‍ഡ് ചേര്‍ക്കുക'; $labels['vcardsavefailed'] = 'വികാര്‍ഡ് ചേര്‍ക്കാന്‍ പറ്റിയില്ല'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/mr_IN.inc b/plugins/vcard_attachments/localization/mr_IN.inc index c4c5bd424..8dcf3c471 100644 --- a/plugins/vcard_attachments/localization/mr_IN.inc +++ b/plugins/vcard_attachments/localization/mr_IN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'व्हीकार्ड पत्ते नोंदवहीत समाविष्ट करा'; $labels['vcardsavefailed'] = 'व्हीकार्ड जतन करण्यास असमर्थ'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nb_NO.inc b/plugins/vcard_attachments/localization/nb_NO.inc index 8c531d0d3..5f6139267 100644 --- a/plugins/vcard_attachments/localization/nb_NO.inc +++ b/plugins/vcard_attachments/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Legg til vCard i adresseboken'; $labels['vcardsavefailed'] = 'Ikke i stand til å lagre vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nl_NL.inc b/plugins/vcard_attachments/localization/nl_NL.inc index b7bdcaaec..748d6219d 100644 --- a/plugins/vcard_attachments/localization/nl_NL.inc +++ b/plugins/vcard_attachments/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Voeg vCard toe aan adresboek'; $labels['vcardsavefailed'] = 'Kan vCard niet opslaan'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/nn_NO.inc b/plugins/vcard_attachments/localization/nn_NO.inc index e7723fbb1..09803d568 100644 --- a/plugins/vcard_attachments/localization/nn_NO.inc +++ b/plugins/vcard_attachments/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Legg til vCard i adresseboka'; $labels['vcardsavefailed'] = 'Klarte ikkje lagra vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pl_PL.inc b/plugins/vcard_attachments/localization/pl_PL.inc index 544766f99..8da94369e 100644 --- a/plugins/vcard_attachments/localization/pl_PL.inc +++ b/plugins/vcard_attachments/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Dodaj wizytówkę (vCard) do kontaktów'; $labels['vcardsavefailed'] = 'Nie można zapisać wizytówki (vCard)'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pt_BR.inc b/plugins/vcard_attachments/localization/pt_BR.inc index 5741dde63..3244bba10 100644 --- a/plugins/vcard_attachments/localization/pt_BR.inc +++ b/plugins/vcard_attachments/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Adicionar o vCard ao Catálogo de Endereços'; $labels['vcardsavefailed'] = 'Impossível salvar o vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/pt_PT.inc b/plugins/vcard_attachments/localization/pt_PT.inc index 15674b0e5..9e5e11027 100644 --- a/plugins/vcard_attachments/localization/pt_PT.inc +++ b/plugins/vcard_attachments/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Adicionar o vCard ao Livro de Endereços'; $labels['vcardsavefailed'] = 'Não foi possível guardar o vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ro_RO.inc b/plugins/vcard_attachments/localization/ro_RO.inc index 7bc02fbac..9aa9b0712 100644 --- a/plugins/vcard_attachments/localization/ro_RO.inc +++ b/plugins/vcard_attachments/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Adaugă vCard la agendă'; $labels['vcardsavefailed'] = 'Nu pot salva vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/ru_RU.inc b/plugins/vcard_attachments/localization/ru_RU.inc index 1c3d556a5..985cda443 100644 --- a/plugins/vcard_attachments/localization/ru_RU.inc +++ b/plugins/vcard_attachments/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Добавить в контакты'; $labels['vcardsavefailed'] = 'Не удалось сохранить vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/si_LK.inc b/plugins/vcard_attachments/localization/si_LK.inc index 88ce60b33..87da90e21 100644 --- a/plugins/vcard_attachments/localization/si_LK.inc +++ b/plugins/vcard_attachments/localization/si_LK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'vCard පත ලිපින පොතට එක් කරන්න'; $labels['vcardsavefailed'] = 'vCard පත සුරැකීම අසාර්ථකයි'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sk_SK.inc b/plugins/vcard_attachments/localization/sk_SK.inc index 50697f190..17aecb261 100644 --- a/plugins/vcard_attachments/localization/sk_SK.inc +++ b/plugins/vcard_attachments/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Pridať vCard do adresára'; $labels['vcardsavefailed'] = 'Nemôžem uložiť vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sl_SI.inc b/plugins/vcard_attachments/localization/sl_SI.inc index d6fc1b81d..3f5053dff 100644 --- a/plugins/vcard_attachments/localization/sl_SI.inc +++ b/plugins/vcard_attachments/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Dodaj vCard med Stike.'; $labels['vcardsavefailed'] = 'Stika vCard ni bilo mogoče shraniti.'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sr_CS.inc b/plugins/vcard_attachments/localization/sr_CS.inc index c873eb80f..d6cc94284 100644 --- a/plugins/vcard_attachments/localization/sr_CS.inc +++ b/plugins/vcard_attachments/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Додај вЦард у Адресар'; $labels['vcardsavefailed'] = 'немоћан сачувати вчард'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/sv_SE.inc b/plugins/vcard_attachments/localization/sv_SE.inc index 05620c700..2d0d928be 100644 --- a/plugins/vcard_attachments/localization/sv_SE.inc +++ b/plugins/vcard_attachments/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Lägg till vCard i adressbok'; $labels['vcardsavefailed'] = 'Kunde inte spara vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/tr_TR.inc b/plugins/vcard_attachments/localization/tr_TR.inc index ade7b4965..f52443338 100644 --- a/plugins/vcard_attachments/localization/tr_TR.inc +++ b/plugins/vcard_attachments/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Vcard\'ı adres deferine ekle'; $labels['vcardsavefailed'] = 'vCard kaydedilemedi'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/uk_UA.inc b/plugins/vcard_attachments/localization/uk_UA.inc index a0190e64f..b61ffc5f6 100644 --- a/plugins/vcard_attachments/localization/uk_UA.inc +++ b/plugins/vcard_attachments/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Додати vCard до контактів'; $labels['vcardsavefailed'] = 'Не вдалось зберегти vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/vi_VN.inc b/plugins/vcard_attachments/localization/vi_VN.inc index 19597a8d9..d63ad9652 100644 --- a/plugins/vcard_attachments/localization/vi_VN.inc +++ b/plugins/vcard_attachments/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = 'Thêm vCard vào sổ địa chỉ'; $labels['vcardsavefailed'] = 'Không thể lưu vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/zh_CN.inc b/plugins/vcard_attachments/localization/zh_CN.inc index fb4876276..b619210b5 100644 --- a/plugins/vcard_attachments/localization/zh_CN.inc +++ b/plugins/vcard_attachments/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = '添加 vCard 至地址簿中'; $labels['vcardsavefailed'] = '无法保存 vCard'; ?> \ No newline at end of file diff --git a/plugins/vcard_attachments/localization/zh_TW.inc b/plugins/vcard_attachments/localization/zh_TW.inc index 18ef8e4bc..639593bcf 100644 --- a/plugins/vcard_attachments/localization/zh_TW.inc +++ b/plugins/vcard_attachments/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-vcard_attachments/ */ - $labels['addvcardmsg'] = '加入 vCard 到通訊錄'; $labels['vcardsavefailed'] = '無法儲存 vCard'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar.inc b/plugins/zipdownload/localization/ar.inc index 83c0bc037..c5857c96c 100644 --- a/plugins/zipdownload/localization/ar.inc +++ b/plugins/zipdownload/localization/ar.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'تنزيل كل المرفقات'; $labels['downloadfolder'] = 'تنزيل المجلد'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ar_SA.inc b/plugins/zipdownload/localization/ar_SA.inc index 11593d386..dd5f5f349 100644 --- a/plugins/zipdownload/localization/ar_SA.inc +++ b/plugins/zipdownload/localization/ar_SA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'تحميل جميع المرفقات'; $labels['downloadfolder'] = 'تحميل المجلد'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/az_AZ.inc b/plugins/zipdownload/localization/az_AZ.inc index 73de9b94d..af785b48d 100644 --- a/plugins/zipdownload/localization/az_AZ.inc +++ b/plugins/zipdownload/localization/az_AZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Bütün qoşmaları endir'; $labels['downloadfolder'] = 'Qovluğu endir'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/be_BE.inc b/plugins/zipdownload/localization/be_BE.inc index ee3e04a48..7c6fb3876 100644 --- a/plugins/zipdownload/localization/be_BE.inc +++ b/plugins/zipdownload/localization/be_BE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Спампаваць усе далучэнні'; $labels['downloadfolder'] = 'Спампаваць папку'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/bg_BG.inc b/plugins/zipdownload/localization/bg_BG.inc index 0e8d12c4a..69f91f6f2 100644 --- a/plugins/zipdownload/localization/bg_BG.inc +++ b/plugins/zipdownload/localization/bg_BG.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Изтегляне на всички прикачени файлове'; $labels['downloadfolder'] = 'Изтегляне на папка'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/br.inc b/plugins/zipdownload/localization/br.inc index 29d4d7a59..0d7da382b 100644 --- a/plugins/zipdownload/localization/br.inc +++ b/plugins/zipdownload/localization/br.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Pellgargañ an holl stagadennoù'; $labels['downloadfolder'] = 'Pellgargañ an teuliad'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/bs_BA.inc b/plugins/zipdownload/localization/bs_BA.inc index 64fd83ae6..ea72831af 100644 --- a/plugins/zipdownload/localization/bs_BA.inc +++ b/plugins/zipdownload/localization/bs_BA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Preuzmi sve priloge'; $labels['downloadfolder'] = 'Preuzmi folder'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ca_ES.inc b/plugins/zipdownload/localization/ca_ES.inc index c51efd08f..665c53ad8 100644 --- a/plugins/zipdownload/localization/ca_ES.inc +++ b/plugins/zipdownload/localization/ca_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Descarregar tots els adjunts'; $labels['downloadfolder'] = 'Descarregar carpeta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/cs_CZ.inc b/plugins/zipdownload/localization/cs_CZ.inc index 4d7db470e..d96b1f570 100644 --- a/plugins/zipdownload/localization/cs_CZ.inc +++ b/plugins/zipdownload/localization/cs_CZ.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Stáhnout všechny přílohy'; $labels['downloadfolder'] = 'Stáhnout složku'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/cy_GB.inc b/plugins/zipdownload/localization/cy_GB.inc index 89956eaba..3c9fc7580 100644 --- a/plugins/zipdownload/localization/cy_GB.inc +++ b/plugins/zipdownload/localization/cy_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Llwytho lawr holl atodiadau'; $labels['downloadfolder'] = 'Ffolder llwytho lawr'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/da_DK.inc b/plugins/zipdownload/localization/da_DK.inc index bf927bccc..9e29018d5 100644 --- a/plugins/zipdownload/localization/da_DK.inc +++ b/plugins/zipdownload/localization/da_DK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Download alle som .zip-fil'; $labels['downloadfolder'] = 'Download folder som .zip-fil'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/de_CH.inc b/plugins/zipdownload/localization/de_CH.inc index 2d31a61bd..978c221b0 100644 --- a/plugins/zipdownload/localization/de_CH.inc +++ b/plugins/zipdownload/localization/de_CH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Alle Anhänge herunterladen'; $labels['downloadfolder'] = 'Ordner herunterladen'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/de_DE.inc b/plugins/zipdownload/localization/de_DE.inc index 2d31a61bd..978c221b0 100644 --- a/plugins/zipdownload/localization/de_DE.inc +++ b/plugins/zipdownload/localization/de_DE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Alle Anhänge herunterladen'; $labels['downloadfolder'] = 'Ordner herunterladen'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/el_GR.inc b/plugins/zipdownload/localization/el_GR.inc index 9ff390f06..2a12b5da0 100644 --- a/plugins/zipdownload/localization/el_GR.inc +++ b/plugins/zipdownload/localization/el_GR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Λυψη ολων των συννημενων'; $labels['downloadfolder'] = 'Λυψη φακελου'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/en_GB.inc b/plugins/zipdownload/localization/en_GB.inc index 1a9a329be..48a8d9bcb 100644 --- a/plugins/zipdownload/localization/en_GB.inc +++ b/plugins/zipdownload/localization/en_GB.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Download all attachments'; $labels['downloadfolder'] = 'Download folder'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eo.inc b/plugins/zipdownload/localization/eo.inc index b4571e4f8..bc6ef9d69 100644 --- a/plugins/zipdownload/localization/eo.inc +++ b/plugins/zipdownload/localization/eo.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Elŝuti ĉiujn kunsendaĵojn'; $labels['downloadfolder'] = 'Elŝuti dosierujon'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/es_AR.inc b/plugins/zipdownload/localization/es_AR.inc index ee6a7eae0..9f20f5561 100644 --- a/plugins/zipdownload/localization/es_AR.inc +++ b/plugins/zipdownload/localization/es_AR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Descargar Todo'; $labels['downloadfolder'] = 'Descargar carpeta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/es_ES.inc b/plugins/zipdownload/localization/es_ES.inc index 53404d7f1..22db2cda9 100644 --- a/plugins/zipdownload/localization/es_ES.inc +++ b/plugins/zipdownload/localization/es_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Descargar todos los adjuntos'; $labels['downloadfolder'] = 'Descargar carpeta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/et_EE.inc b/plugins/zipdownload/localization/et_EE.inc index 9b4dd56ee..969658bc2 100644 --- a/plugins/zipdownload/localization/et_EE.inc +++ b/plugins/zipdownload/localization/et_EE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Laadi alla kõik manused'; $labels['downloadfolder'] = 'Allalaadimiste kaust'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/eu_ES.inc b/plugins/zipdownload/localization/eu_ES.inc index 8707197fd..0be09c8b2 100644 --- a/plugins/zipdownload/localization/eu_ES.inc +++ b/plugins/zipdownload/localization/eu_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Deskargatu eranskin guztiak'; $labels['downloadfolder'] = 'Deskargatu karpeta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fa_AF.inc b/plugins/zipdownload/localization/fa_AF.inc index 65405d5b8..57bb55ea4 100644 --- a/plugins/zipdownload/localization/fa_AF.inc +++ b/plugins/zipdownload/localization/fa_AF.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'بارگزاری همه ضمیمه ها'; $labels['downloadfolder'] = 'بارگزاری پوشه'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fa_IR.inc b/plugins/zipdownload/localization/fa_IR.inc index b9ff0cc27..46007a0fb 100644 --- a/plugins/zipdownload/localization/fa_IR.inc +++ b/plugins/zipdownload/localization/fa_IR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'بارگیری همه پیوست‌ها'; $labels['downloadfolder'] = 'بارگیری پوشه'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fi_FI.inc b/plugins/zipdownload/localization/fi_FI.inc index 82c766a08..7e2c3137d 100644 --- a/plugins/zipdownload/localization/fi_FI.inc +++ b/plugins/zipdownload/localization/fi_FI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Lataa kaikki liitteet'; $labels['downloadfolder'] = 'Lataa kansio'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/fr_FR.inc b/plugins/zipdownload/localization/fr_FR.inc index be6e7cecf..993e1421b 100644 --- a/plugins/zipdownload/localization/fr_FR.inc +++ b/plugins/zipdownload/localization/fr_FR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Télécharger toutes les pièces jointes'; $labels['downloadfolder'] = 'Télécharger le répertoire'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/gl_ES.inc b/plugins/zipdownload/localization/gl_ES.inc index 7569aece6..599c8ffcb 100644 --- a/plugins/zipdownload/localization/gl_ES.inc +++ b/plugins/zipdownload/localization/gl_ES.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Descargar tódolos adxuntos'; $labels['downloadfolder'] = 'Descargar o cartafol'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/he_IL.inc b/plugins/zipdownload/localization/he_IL.inc index e0ed63521..0df6191fa 100644 --- a/plugins/zipdownload/localization/he_IL.inc +++ b/plugins/zipdownload/localization/he_IL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'להוריד את כל הצרופות'; $labels['downloadfolder'] = 'תיקיית צרופות'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/hu_HU.inc b/plugins/zipdownload/localization/hu_HU.inc index f7051957d..85179e5a6 100644 --- a/plugins/zipdownload/localization/hu_HU.inc +++ b/plugins/zipdownload/localization/hu_HU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Összes csatolmány letöltése'; $labels['downloadfolder'] = 'Könyvtár letöltése'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/id_ID.inc b/plugins/zipdownload/localization/id_ID.inc index f61e89f6c..2ff3c87df 100644 --- a/plugins/zipdownload/localization/id_ID.inc +++ b/plugins/zipdownload/localization/id_ID.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Unduh semua lampiran'; $labels['downloadfolder'] = 'Folder download'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/it_IT.inc b/plugins/zipdownload/localization/it_IT.inc index 776dae86e..882e354d9 100644 --- a/plugins/zipdownload/localization/it_IT.inc +++ b/plugins/zipdownload/localization/it_IT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Scarica tutti gli allegati'; $labels['downloadfolder'] = 'Scarica cartella'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ja_JP.inc b/plugins/zipdownload/localization/ja_JP.inc index 3fcc76bb5..a0388808d 100644 --- a/plugins/zipdownload/localization/ja_JP.inc +++ b/plugins/zipdownload/localization/ja_JP.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'すべての添付ファイルをダウンロード'; $labels['downloadfolder'] = 'ダウンロード先のフォルダー'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/km_KH.inc b/plugins/zipdownload/localization/km_KH.inc index cd48bc881..9a4593e18 100644 --- a/plugins/zipdownload/localization/km_KH.inc +++ b/plugins/zipdownload/localization/km_KH.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'ទាញយក ឯកសារភ្ជាប់ទាំងអស់'; $labels['downloadfolder'] = 'ទាញយក ថតឯកសារ'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ko_KR.inc b/plugins/zipdownload/localization/ko_KR.inc index 625be7a40..cae831353 100644 --- a/plugins/zipdownload/localization/ko_KR.inc +++ b/plugins/zipdownload/localization/ko_KR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = '모든 첨부파일을 다운로드'; $labels['downloadfolder'] = '다운로드 폴더'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lb_LU.inc b/plugins/zipdownload/localization/lb_LU.inc index 9aa9153bb..434b064dd 100644 --- a/plugins/zipdownload/localization/lb_LU.inc +++ b/plugins/zipdownload/localization/lb_LU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'All d\'Unhäng eroflueden'; $labels['downloadfolder'] = 'Dossier eroflueden'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lt_LT.inc b/plugins/zipdownload/localization/lt_LT.inc index 27f8d9761..9b4a13310 100644 --- a/plugins/zipdownload/localization/lt_LT.inc +++ b/plugins/zipdownload/localization/lt_LT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Atsisiųsti visus priedus'; $labels['downloadfolder'] = 'Atsisiųsti aplanką'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/lv_LV.inc b/plugins/zipdownload/localization/lv_LV.inc index 8f58f922c..b23417abc 100644 --- a/plugins/zipdownload/localization/lv_LV.inc +++ b/plugins/zipdownload/localization/lv_LV.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Lejupielādēt visus pielikumus'; $labels['downloadfolder'] = 'Lejupielādēt mapi'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nb_NO.inc b/plugins/zipdownload/localization/nb_NO.inc index 5cbde564b..a0b076bf4 100644 --- a/plugins/zipdownload/localization/nb_NO.inc +++ b/plugins/zipdownload/localization/nb_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Last ned alle vedlegg'; $labels['downloadfolder'] = 'Nedlastningsmappe'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nl_NL.inc b/plugins/zipdownload/localization/nl_NL.inc index 4e69115a7..43aa442f3 100644 --- a/plugins/zipdownload/localization/nl_NL.inc +++ b/plugins/zipdownload/localization/nl_NL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Alle bijlagen downloaden'; $labels['downloadfolder'] = 'Map downloaden'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/nn_NO.inc b/plugins/zipdownload/localization/nn_NO.inc index 5cbde564b..a0b076bf4 100644 --- a/plugins/zipdownload/localization/nn_NO.inc +++ b/plugins/zipdownload/localization/nn_NO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Last ned alle vedlegg'; $labels['downloadfolder'] = 'Nedlastningsmappe'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pl_PL.inc b/plugins/zipdownload/localization/pl_PL.inc index 78a76294e..7cf192e1d 100644 --- a/plugins/zipdownload/localization/pl_PL.inc +++ b/plugins/zipdownload/localization/pl_PL.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Pobierz wszystkie jako ZIP'; $labels['downloadfolder'] = 'Pobierz folder'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pt_BR.inc b/plugins/zipdownload/localization/pt_BR.inc index 4612e25fb..86dee11f2 100644 --- a/plugins/zipdownload/localization/pt_BR.inc +++ b/plugins/zipdownload/localization/pt_BR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Baixar todos os anexos'; $labels['downloadfolder'] = 'Pasta de baixar arquivos'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/pt_PT.inc b/plugins/zipdownload/localization/pt_PT.inc index bd77e81e8..4b7441927 100644 --- a/plugins/zipdownload/localization/pt_PT.inc +++ b/plugins/zipdownload/localization/pt_PT.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Guardar todos os anexos'; $labels['downloadfolder'] = 'Guardar pasta'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ro_RO.inc b/plugins/zipdownload/localization/ro_RO.inc index 925c75702..a676799d5 100644 --- a/plugins/zipdownload/localization/ro_RO.inc +++ b/plugins/zipdownload/localization/ro_RO.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - -$labels['downloadall'] = 'Descarca toate atasamentele.'; -$labels['downloadfolder'] = 'Dosar de descărcare'; +$labels['downloadall'] = 'Descarcă toate atașamentele'; +$labels['downloadfolder'] = 'Descarcă dosar'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/ru_RU.inc b/plugins/zipdownload/localization/ru_RU.inc index 205463450..b6286a177 100644 --- a/plugins/zipdownload/localization/ru_RU.inc +++ b/plugins/zipdownload/localization/ru_RU.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Загрузить все вложения'; $labels['downloadfolder'] = 'Загрузить папку'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sk_SK.inc b/plugins/zipdownload/localization/sk_SK.inc index fc02481f7..86c2b9a5f 100644 --- a/plugins/zipdownload/localization/sk_SK.inc +++ b/plugins/zipdownload/localization/sk_SK.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Stiahnuť všetky prílohy'; $labels['downloadfolder'] = 'Priečinok na sťahovanie'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sl_SI.inc b/plugins/zipdownload/localization/sl_SI.inc index 2d1da0bea..07caeacbc 100644 --- a/plugins/zipdownload/localization/sl_SI.inc +++ b/plugins/zipdownload/localization/sl_SI.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Prenesi vse priponke'; $labels['downloadfolder'] = 'Prenesi mapo'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sr_CS.inc b/plugins/zipdownload/localization/sr_CS.inc index 039a289aa..55d64b91f 100644 --- a/plugins/zipdownload/localization/sr_CS.inc +++ b/plugins/zipdownload/localization/sr_CS.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Преузми све прилоге'; $labels['downloadfolder'] = 'Фасцикла за преузимање'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/sv_SE.inc b/plugins/zipdownload/localization/sv_SE.inc index d674e623e..d9c4f5da6 100644 --- a/plugins/zipdownload/localization/sv_SE.inc +++ b/plugins/zipdownload/localization/sv_SE.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Hämta alla bifogade filer'; $labels['downloadfolder'] = 'Hämta katalog'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/tr_TR.inc b/plugins/zipdownload/localization/tr_TR.inc index 0a5ba7cc6..a4dbec57b 100644 --- a/plugins/zipdownload/localization/tr_TR.inc +++ b/plugins/zipdownload/localization/tr_TR.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Tüm ek dosyaları indir'; $labels['downloadfolder'] = 'klasörü indir'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/uk_UA.inc b/plugins/zipdownload/localization/uk_UA.inc index 9e68e19cb..6232e9a2c 100644 --- a/plugins/zipdownload/localization/uk_UA.inc +++ b/plugins/zipdownload/localization/uk_UA.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Завантажити всі вкладення'; $labels['downloadfolder'] = 'Завантажити теку'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/vi_VN.inc b/plugins/zipdownload/localization/vi_VN.inc index 06ae673b2..b9fdd3e43 100644 --- a/plugins/zipdownload/localization/vi_VN.inc +++ b/plugins/zipdownload/localization/vi_VN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = 'Tải tất cả đính kèm về'; $labels['downloadfolder'] = 'Tải giữ liệu về'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/zh_CN.inc b/plugins/zipdownload/localization/zh_CN.inc index 2efec2f9b..dfa8db34a 100644 --- a/plugins/zipdownload/localization/zh_CN.inc +++ b/plugins/zipdownload/localization/zh_CN.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = '下载全部附件'; $labels['downloadfolder'] = '下载文件夹'; ?> \ No newline at end of file diff --git a/plugins/zipdownload/localization/zh_TW.inc b/plugins/zipdownload/localization/zh_TW.inc index dab103bb8..44107c634 100644 --- a/plugins/zipdownload/localization/zh_TW.inc +++ b/plugins/zipdownload/localization/zh_TW.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/plugin-zipdownload/ */ - $labels['downloadall'] = '下載所有附件'; $labels['downloadfolder'] = '下載資料夾'; ?> \ No newline at end of file diff --git a/program/localization/ar_SA/labels.inc b/program/localization/ar_SA/labels.inc index 84369bdb4..4100f7c4a 100644 --- a/program/localization/ar_SA/labels.inc +++ b/program/localization/ar_SA/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'مرحباً بكم في $product'; $labels['username'] = 'اسم المستخدم'; $labels['password'] = 'كلمة المرور'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'المسودات'; $labels['sent'] = 'المرسل'; $labels['trash'] = 'المهملات'; $labels['junk'] = 'غير المرغوب'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'الموضوع'; $labels['from'] = 'المرسل'; -$labels['sender'] = 'Sender'; $labels['to'] = 'المستقبل'; $labels['cc'] = 'نسخة'; $labels['bcc'] = 'نسخة مخفية'; @@ -45,19 +41,15 @@ $labels['size'] = 'الحجم'; $labels['priority'] = 'الأولوية'; $labels['organization'] = 'المنظمة'; $labels['readstatus'] = 'حالة القراءة'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'مجلدات'; $labels['messagesfromto'] = 'الرسالة $from إلى $to من مجموع $count'; $labels['threadsfromto'] = 'جهات الإتصال $from إلى $to من مجموع $count'; $labels['messagenrof'] = 'الرسالة $nr من $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'نسخ'; $labels['move'] = 'نقل'; $labels['moveto'] = 'نقل إلى...'; $labels['download'] = 'تنزيل'; $labels['open'] = 'فتح'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'اسم الملف'; $labels['filesize'] = 'حجم الملف'; $labels['addtoaddressbook'] = 'إضافة إلى دفتر العناوين'; @@ -168,7 +160,6 @@ $labels['listmode'] = 'وضع طريقة السرد'; $labels['folderactions'] = 'إجراءات المجلد...'; $labels['compact'] = 'ضغط'; $labels['empty'] = 'تفريغ'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'المساحة المستخدمة'; $labels['unknown'] = 'مجهول'; $labels['unlimited'] = 'غير محدود'; @@ -176,13 +167,8 @@ $labels['quicksearch'] = 'البحث السريع'; $labels['resetsearch'] = 'استعادة البحث للافتراضي'; $labels['searchmod'] = 'أماكن البحث'; $labels['msgtext'] = 'كامل الرسالة'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['namex'] = 'Name'; $labels['openinextwin'] = 'افتح في نافذة جديدة'; $labels['emlsave'] = 'تنزيل (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'تعديل كجديد'; $labels['send'] = 'ارسل'; $labels['sendmessage'] = 'إرسال الرسالة الآن'; @@ -215,8 +201,6 @@ $labels['showimages'] = 'إظهار الصور'; $labels['alwaysshow'] = 'دائماً أظهر الصّور القادمة من $sender'; $labels['isdraft'] = 'هذه مسودّة رسالة'; $labels['andnmore'] = '$nr المزيد ...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'نص مجرد'; $labels['savesentmessagein'] = 'احفظ الرسالة المُرسلة في'; @@ -299,7 +283,6 @@ $labels['contactsfromto'] = 'المراسلون $from إلى $to من $count'; $labels['print'] = 'طباعة'; $labels['export'] = 'تصدير'; $labels['exportall'] = 'تصدير الكل'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'صدّر المراسلين بنسق vCard'; $labels['newcontactgroup'] = 'إنشاء مجموعة مراسلين جديدة'; $labels['grouprename'] = 'تغيير اسم المجموعة'; @@ -311,19 +294,13 @@ $labels['nextpage'] = 'عرض المجموعة التالية'; $labels['lastpage'] = 'عرض المجموعة الأخيرة'; $labels['group'] = 'مجموعة'; $labels['groups'] = 'المجموعات'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'العناوين الشخصية'; $labels['searchsave'] = 'حفظ البحث'; $labels['searchdelete'] = 'حذف البحث'; $labels['import'] = 'استورد'; $labels['importcontacts'] = 'استورد المراسلين'; $labels['importfromfile'] = 'استورد من ملف:'; -$labels['importtarget'] = 'Add contacts to'; $labels['importreplace'] = 'استبدل دفتر العناوين بأكمله'; -$labels['importgroups'] = 'Import group assignments'; -$labels['importgroupsall'] = 'All (create groups if necessary)'; -$labels['importgroupsexisting'] = 'Only for existing groups'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'تم'; $labels['settingsfor'] = 'إعدادات'; $labels['about'] = 'نبذة'; @@ -338,7 +315,6 @@ $labels['edititem'] = 'تحرير عنصر'; $labels['preferhtml'] = 'تفضيل صيغة HTML'; $labels['defaultcharset'] = 'ترميز المحارف الافتراضي'; $labels['htmlmessage'] = 'رسالة بنسق HTML'; -$labels['messagepart'] = 'Part'; $labels['digitalsig'] = 'التوقيع الالكتروني'; $labels['dateformat'] = 'نسق التاريخ'; $labels['timeformat'] = 'نسق الوقت'; @@ -354,9 +330,7 @@ $labels['showinextwin'] = 'فتح الرسالة فى نافذة جديدة'; $labels['composeextwin'] = 'أرسال عن طريق نافذة جديدة'; $labels['htmleditor'] = 'إنشاء رسائل بنسق HTML'; $labels['htmlonreply'] = 'حال الرد على الرسائل بصيغة HTML فقط'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'توقيع HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'إظهار قسم المعاينة'; $labels['skin'] = 'شكل الواجهة'; $labels['logoutclear'] = 'إفراغ سلة المحذوفات عند الخروج'; @@ -374,14 +348,12 @@ $labels['readwhendeleted'] = 'تحديد الرسالة كمقروءة عند ح $labels['flagfordeletion'] = 'وضع علامة على الرسالة لحذفها بدلاً منحذفها'; $labels['skipdeleted'] = 'لا تظهر الرسائل المحذوفة'; $labels['deletealways'] = 'حذف الرسائل مباشرة، إن تعذر نقلها إلىالمهملات'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'إظهار الصور الخارجية المدمجة'; $labels['fromknownsenders'] = 'للمرسلين المعلومين'; $labels['always'] = 'دائماً'; $labels['showinlineimages'] = 'إظهار الصّور المرفقة أسفل الرسالة'; $labels['autosavedraft'] = 'حفظ المسودة تلقائياً'; $labels['everynminutes'] = 'كل $n دقيقة'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'أبداً'; $labels['immediately'] = 'حالاً'; $labels['messagesdisplaying'] = 'إظهار الرسائل'; @@ -395,15 +367,12 @@ $labels['advancedoptions'] = 'خيارات متقدّمة'; $labels['focusonnewmessage'] = 'التركيز على نافذة المتصفح عند وجود رسالةجديدة'; $labels['checkallfolders'] = 'التحقق من وجود رسائل جديدة في جميعالمجلدات'; $labels['displaynext'] = 'إظهار الرسالة التالية بعد حذف/نقلالرسالة الحالية'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'الخيارات الأساسية'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'قسم'; $labels['maintenance'] = 'الصيانة'; $labels['newmessage'] = 'رسالة جديدة'; $labels['signatureoptions'] = 'خيارات التوقيع'; $labels['whenreplying'] = 'عند الرد'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'بدء رسالة جديدة ووضع النص أعلى الأصلية'; $labels['replybottomposting'] = 'بدء رسالة جديدة ووضع النص أسفل الأصلية'; $labels['replyremovesignature'] = 'إزالة التوقيع من الرسالة عند الرد'; @@ -416,20 +385,13 @@ $labels['afternseconds'] = 'بعد $n ثواني'; $labels['reqmdn'] = 'طلب إشعار استلام دائماً'; $labels['reqdsn'] = 'طلب تنويه لحالة التوصيل دائماً'; $labels['replysamefolder'] = 'وضع الردود في المجلد الذي يحوي الرسالةالمردود عليها'; -$labels['defaultabook'] = 'Default address book'; $labels['autocompletesingle'] = 'تجاهل عنوان البريد الإلكتروني البديل فيالتكملة التلقائية'; -$labels['listnamedisplay'] = 'List contacts as'; $labels['spellcheckbeforesend'] = 'تحقق من الإملاء قبل إرسال الرسائل'; $labels['spellcheckoptions'] = 'خيارات التدقيق الإملاءي'; $labels['spellcheckignoresyms'] = 'تجاهل الكلمات التي تحتوي رموز'; $labels['spellcheckignorenums'] = 'تجاهل الكلمات التي تحتوي أرقام'; $labels['spellcheckignorecaps'] = 'تجاهل الكلمات التي بها أحرف كبيرة'; $labels['addtodict'] = 'إضافة إلى القامس'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'مجلد'; $labels['folders'] = 'مجلدات'; $labels['foldername'] = 'اسم المجلد'; @@ -454,7 +416,6 @@ $labels['sortby'] = 'ترتيب بحسب'; $labels['sortasc'] = 'ترتيب تصاعدي'; $labels['sortdesc'] = 'ترتيب تنازلي'; $labels['undo'] = 'تراجع'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'إضافة'; $labels['version'] = 'النسخة'; $labels['source'] = 'المصدر'; diff --git a/program/localization/ar_SA/messages.inc b/program/localization/ar_SA/messages.inc index 41952ea50..7d9a7ac62 100644 --- a/program/localization/ar_SA/messages.inc +++ b/program/localization/ar_SA/messages.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'فشل تسجيل الدخول'; $messages['cookiesdisabled'] = 'المتصفح الخاص بك لا يقبل الكوكيز'; $messages['sessionerror'] = 'انتهت صلاحية الجلسة الحالية أو أنها غيرصالحة'; @@ -24,17 +22,12 @@ $messages['storageerror'] = 'فشل الاتصال بخادم IMAP'; $messages['servererror'] = 'خطأ في الخادم!'; $messages['servererrormsg'] = 'خطأ خادم: $msg'; $messages['dberror'] = 'خطأ في قاعدة البيانات!'; -$messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'تعذر تنفيذ العملية. المجلد للقراءة فقط.'; $messages['errornoperm'] = 'تعذر تنفيذ العملية. ليست لديك الصلاحية.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'طلب غير صالح! لم تحفظ أية بيانات.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'لم يعثر على أية رسائل في صندوق البريد هذا'; $messages['loggedout'] = 'قمت بإنهاء هذه الجلسة بنجاح. إلى اللقاء!'; $messages['mailboxempty'] = 'صندوق البريد فارغ'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'جاري العمل...'; $messages['uploading'] = 'جاري رفع الملف...'; $messages['uploadingmany'] = 'جاري تحميل الملفات...'; @@ -55,8 +48,6 @@ $messages['contactnotfound'] = 'تعذر العثور على المراسل ال $messages['contactsearchonly'] = 'اكتب بعض كلمات البحث للعثور علىالمُراسلين'; $messages['sendingfailed'] = 'فشل إرسال الرسالة'; $messages['senttooquickly'] = 'رجاء انتظر $sec ثوان قبل إرسال هذه الرسالة'; -$messages['errorsavingsent'] = 'حدث خطأ أثناء حفظ الرسالة المُرسلة'; -$messages['errorsaving'] = 'حدث خطأ أثناء الحفظ'; $messages['errormoving'] = 'تعذر نقل هذه الرسالة'; $messages['errorcopying'] = 'تعذر نسخ الرسائل'; $messages['errordeleting'] = 'تعذر حذف هذه الرسالة'; @@ -100,36 +91,26 @@ $messages['converting'] = 'إزالة التنسيق من الرسالة...'; $messages['messageopenerror'] = 'تعذرت قراءة الرسالة من الخادم'; $messages['fileuploaderror'] = 'فشل رفع الملف'; $messages['filesizeerror'] = 'حجم الملف الذي تحاول رفعه أكبر من الحجمالأقصى $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'لا يمكن تعديل مصدر العنوان هذا'; $messages['errorsavingcontact'] = 'تعذر حفظ عنوان المراسل'; $messages['movingmessage'] = 'جاري نقل الرسالة...'; $messages['copyingmessage'] = 'جاري نسخ الرسالة...'; $messages['copyingcontact'] = 'جاري نسخ المُراسلين...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'جاري حذف الرسائل...'; $messages['markingmessage'] = 'جاري تحديد الرسائل...'; $messages['addingmember'] = 'جاري إضافة المُراسلين إلى المجموعة...'; $messages['removingmember'] = 'جاري إزالة المراسلين من المجموعة...'; $messages['receiptsent'] = 'أرسل إيصال الاستلام بنجاح'; $messages['errorsendingreceipt'] = 'تعذر إرسال إيصال الاستلام'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'لا يمكن حذف هذا السجل حيث أنه الوحيدالمتبقي.'; $messages['forbiddencharacter'] = 'اسم المجلّد يحتوي حروفاً ممنوعة'; $messages['selectimportfile'] = 'رجاء اختر ملفاً لرفعه'; $messages['addresswriterror'] = 'دفتر العناوين المحدد غير قابل للكتابة'; $messages['contactaddedtogroup'] = 'تمت إضافة المراسلين إلى هذه المجموعةبنجاح'; $messages['contactremovedfromgroup'] = 'تمت إزالة المراسلين من هذه المجموعةبنجاح'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'جاري الاستيراد، رجاء انتظر...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'تم استيراد $inserted مراسلين بنجاح، وتجاهل$skipped موجودين مسبقاً:

$names

'; $messages['importconfirmskipped'] = 'تم تجاهل $skipped عناصر موجودة'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'العملية ممنوعة!'; $messages['nofromaddress'] = 'عنوان البريد الالكتروني غير محدد فيالهويّة المنتقاة'; $messages['editorwarning'] = 'يتسبب الانتقال إلى محرر النص البسيط بضياع جميع التنسيق. هل تريد الاستمرار؟'; @@ -143,7 +124,6 @@ $messages['smtperror'] = 'خطأ SMTP: $msg'; $messages['emailformaterror'] = 'عنوان بريد إلكتروني غير صالح: $email'; $messages['toomanyrecipients'] = 'عدد المرسل إليهم كبير. قلص العدد إلى $max.'; $messages['maxgroupmembersreached'] = 'عدد أعضاء المجموعة أكثر من $max'; -$messages['internalerror'] = 'حدث خطأ داخلي. الرجاء المحاولة مرة أخرى'; $messages['contactdelerror'] = 'تعذر حذف أسماء جهات الإتصال'; $messages['contactdeleted'] = 'تم حذف أسماء جهات الإتصال بنجاح'; $messages['contactrestoreerror'] = 'تعذر استعادة المُراسل المحذوف.'; @@ -169,6 +149,4 @@ $messages['invalidimageformat'] = 'ليست صيغة صورة صحيحة'; $messages['mispellingsfound'] = 'عُثر على أخطاء إملائية في الرسالة'; $messages['parentnotwritable'] = 'تعذر إنشاء/نقل المجلد إلى المجلد المحدد.ليست لديك الصلاحية.'; $messages['messagetoobig'] = 'جزء الرسالة أكبر بكثير مما يمكن معالجته.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ast/labels.inc b/program/localization/ast/labels.inc index b6b089d79..7a60238b7 100644 --- a/program/localization/ast/labels.inc +++ b/program/localization/ast/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bienllegáu a $product'; $labels['username'] = 'Usuariu'; $labels['password'] = 'Clave'; diff --git a/program/localization/ast/messages.inc b/program/localization/ast/messages.inc index 3c68a950e..35a850e57 100644 --- a/program/localization/ast/messages.inc +++ b/program/localization/ast/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = '¡Hebo un fallu!'; $messages['loginfailed'] = 'Contraseña o nome d\'usuariu incorreutu.'; $messages['cookiesdisabled'] = 'El to navegador nun aceuta "cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Nun s\'atopa\'l contautu solicitáu.'; $messages['contactsearchonly'] = 'Introduz dalgún criteriu pa guetar contautos'; $messages['sendingfailed'] = 'Falló l\'unviu del mensaxe'; $messages['senttooquickly'] = 'Por favor espera $sec segundu/os enantes d\'unviar esti mensaxe.'; -$messages['errorsavingsent'] = 'Hebo un fallu al guardar el mensaxe unviáu.'; -$messages['errorsaving'] = 'Falló al guardase.'; $messages['errormoving'] = 'Nun pudo movese el/los mensaxe(s).'; $messages['errorcopying'] = 'Nun pudo copiase el/los mensaxe(s).'; $messages['errordeleting'] = 'Nun pudo desaniciase el/los mensaxe(s)'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Fallu SMTP: $msg'; $messages['emailformaterror'] = 'Direición de corréu incorreuta: $email'; $messages['toomanyrecipients'] = 'Hai munchos destinatarios. Amenorga\'l númberu de destinatarios a $max.'; $messages['maxgroupmembersreached'] = 'El númberu de miembros del grupu perpasa\'l máximu de $max.'; -$messages['internalerror'] = 'Hebo un fallu internu. Por favor, inténtalo de nueves.'; $messages['contactdelerror'] = 'Nun pudo desaniciase el/los contautu(os).'; $messages['contactdeleted'] = 'Contautu(os) desaniciáu(os) correchamente.'; $messages['contactrestoreerror'] = 'Nun pudieron restaurase los contautos desaniciaos.'; diff --git a/program/localization/az_AZ/labels.inc b/program/localization/az_AZ/labels.inc index 935cb54cc..60930a49d 100644 --- a/program/localization/az_AZ/labels.inc +++ b/program/localization/az_AZ/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product-a xoş gəldiniz!'; $labels['username'] = 'İstifadəçi adı'; $labels['password'] = 'Şifrə'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Qaralamalar'; $labels['sent'] = 'Göndərilənlər'; $labels['trash'] = 'Səbət'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Xüsusi qovluqlar üçün real adları göstər'; $labels['subject'] = 'Mövzu'; $labels['from'] = 'Kimdən'; $labels['sender'] = 'Göndərən'; @@ -139,7 +137,7 @@ $labels['currpage'] = 'Hazırki səhifəni'; $labels['unread'] = 'Oxunmamışları'; $labels['flagged'] = 'İşarəliləri'; $labels['unanswered'] = 'Cavabsızları'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = 'Qoşma ilə'; $labels['deleted'] = 'Silinmişləri'; $labels['undeleted'] = 'Silinməyib'; $labels['invert'] = 'İnvertliləri'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Görünüş rejimi'; $labels['folderactions'] = 'Qovluq işləri...'; $labels['compact'] = 'Sıx'; $labels['empty'] = 'Boşalt'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Mesajların idxalı'; $labels['quota'] = 'Disk istifadəsi'; $labels['unknown'] = 'naməlum'; $labels['unlimited'] = 'limitsiz'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Axtarışı yenilə'; $labels['searchmod'] = 'Axtarış variantları'; $labels['msgtext'] = 'Bütün məktub'; $labels['body'] = 'Mətn'; -$labels['type'] = 'Type'; +$labels['type'] = 'Növ'; +$labels['namex'] = 'Ad'; $labels['openinextwin'] = 'Yeni pəncərədə aç'; $labels['emlsave'] = 'Saxla (.eml)'; $labels['changeformattext'] = 'Sadə mətn formatında göstər'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'Sonrakını göstər'; $labels['lastpage'] = 'Sonuncunu göstər'; $labels['group'] = 'Qrup'; $labels['groups'] = 'Qruplar'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Qrup üzvlərinin siyahısı'; $labels['personaladrbook'] = 'Şəxsi ünvanlar'; $labels['searchsave'] = 'Sorğunu saxla'; $labels['searchdelete'] = 'Sorğunu sil'; $labels['import'] = 'İdxal'; $labels['importcontacts'] = 'Ünvanların idxalı'; $labels['importfromfile'] = 'Fayldan idxal:'; -$labels['importtarget'] = 'Əlaqə kitabçasına yeni kontaktları əlavə et'; $labels['importreplace'] = 'Ünvan kitabçasını dəyiş'; $labels['importdesc'] = 'Siz kontaktları mövcud ünvan kitabçasından yükləyə bilərsiniz.
Hal-hazırda biz ünvanların idxalını vCard və ya CSV (vergüllə bölünmüş) formatında olan vizit kartları dəstəkləyirik.'; $labels['done'] = 'Bitdi'; @@ -352,7 +350,7 @@ $labels['htmleditor'] = 'HTML-də mesaj yaz'; $labels['htmlonreply'] = 'yalnız HTML mesajlar ilə cavab'; $labels['htmlonreplyandforward'] = 'HTML məktuba cavab və yönəltmə zamanı'; $labels['htmlsignature'] = 'HTML imza'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'E-poçt ünvanları displey adları ilə göstər'; $labels['previewpane'] = 'Prevyu paneli göstər'; $labels['skin'] = 'İnterfeys stili'; $labels['logoutclear'] = 'Poçtdan çıxan zaman səbəti təmizlə'; @@ -422,7 +420,7 @@ $labels['spellcheckignorenums'] = 'Rəqəmlər ilə sözləri keç'; $labels['spellcheckignorecaps'] = 'Böyük hərfləri olan sözlərdən keç'; $labels['addtodict'] = 'Lüğətə əlavə et'; $labels['mailtoprotohandler'] = 'mailto: keçid üçün protokol qeyd et'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'Handle popapsı standart pəncərələr kimi'; $labels['forwardmode'] = 'Məktubların yönəldilməsi'; $labels['inline'] = 'mətndə'; $labels['asattachment'] = 'fayl kimi'; diff --git a/program/localization/az_AZ/messages.inc b/program/localization/az_AZ/messages.inc index 31b4f6acd..ddab8d702 100644 --- a/program/localization/az_AZ/messages.inc +++ b/program/localization/az_AZ/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Xəta baş verdi!'; $messages['loginfailed'] = 'Giriş uğursuz oldu.'; $messages['cookiesdisabled'] = 'Sizin brauzer kukiləri qəbul etmir.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Tələb olunan ünvan tapılmadı'; $messages['contactsearchonly'] = 'Kontaqların axtarışı üçün şərti daxil edin'; $messages['sendingfailed'] = 'Məktub göndərilmədi'; $messages['senttooquickly'] = 'Məktub göndərmək üçün $sec saniyə gözləmək gərəkir'; -$messages['errorsavingsent'] = 'Göndərilən məktub saxlanılan zaman xəta baş verdi'; -$messages['errorsaving'] = 'Saxlanma prosesi zamanı problem baş verdi'; $messages['errormoving'] = 'Məktubu (məktubları) köçürmək alnmadı'; $messages['errorcopying'] = 'Məktubu (məktubları) kopyalamaq alınmadı'; $messages['errordeleting'] = 'Məktubu (məktubları) silmək alınmadı'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP Error ($code): $msg'; $messages['emailformaterror'] = 'Səhv ünvan: $email'; $messages['toomanyrecipients'] = 'Qəbul edənlər həddindən artıq çoxdur. Lütfən, $max qədər azaldın.'; $messages['maxgroupmembersreached'] = 'Qrupun ölçüsü imkan verilən maksimumdan artıqdır - $max'; -$messages['internalerror'] = 'Daxili xəta baş verdi. Lütfən, bir daha cəhd edin'; $messages['contactdelerror'] = 'Kontak(lar)ı silmək alınmadı'; $messages['contactdeleted'] = 'Kontak(lar) uğurla silindi'; $messages['contactrestoreerror'] = 'Silinmiş kontakt(lar)ın bərpası alınmadı'; diff --git a/program/localization/be_BE/labels.inc b/program/localization/be_BE/labels.inc index 82fb11121..b5a3ed6d8 100644 --- a/program/localization/be_BE/labels.inc +++ b/program/localization/be_BE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Вітаем у $product'; $labels['username'] = 'Карыстальнік'; $labels['password'] = 'Пароль'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Чарнавікі'; $labels['sent'] = 'Дасланыя'; $labels['trash'] = 'Сметніца'; $labels['junk'] = 'Спам'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Паказваць сапраўдныя імёны для адмысловых папак'; $labels['subject'] = 'Тэма'; $labels['from'] = 'Ад каго'; $labels['sender'] = 'Адпраўнік'; @@ -45,29 +43,29 @@ $labels['size'] = 'Памер'; $labels['priority'] = 'Прыярытэт'; $labels['organization'] = 'Установа'; $labels['readstatus'] = 'Не прачытанае'; -$labels['listoptions'] = 'List options...'; +$labels['listoptions'] = 'Параметры спісу...'; $labels['mailboxlist'] = 'Тэчкі'; -$labels['messagesfromto'] = 'Messages $from to $to of $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; -$labels['messagenrof'] = 'Message $nr of $count'; -$labels['fromtoshort'] = '$from – $to of $count'; +$labels['messagesfromto'] = 'Паведамленні $from—$to з $count'; +$labels['threadsfromto'] = 'Абмеркаванні $from—$to з $count'; +$labels['messagenrof'] = 'Паведамленне $nr з $count'; +$labels['fromtoshort'] = '$from—$to з $count'; $labels['copy'] = 'Капіраваць'; $labels['move'] = 'Перамясціць'; $labels['moveto'] = 'Перамясціць у...'; $labels['download'] = 'Спампаваць'; -$labels['open'] = 'Open'; +$labels['open'] = 'Адчыніць'; $labels['showattachment'] = 'Паказаць'; -$labels['showanyway'] = 'Show it anyway'; +$labels['showanyway'] = 'Усё адно паказваць'; $labels['filename'] = 'Імя файла'; $labels['filesize'] = 'Памер файла'; $labels['addtoaddressbook'] = 'Дадаць у адрасную кнігу'; -$labels['sun'] = 'Ндз'; -$labels['mon'] = 'Пн'; -$labels['tue'] = 'Аўт'; -$labels['wed'] = 'Сер'; -$labels['thu'] = 'Чц'; -$labels['fri'] = 'Пт'; -$labels['sat'] = 'Сб'; +$labels['sun'] = 'нд'; +$labels['mon'] = 'пн'; +$labels['tue'] = 'аў'; +$labels['wed'] = 'ср'; +$labels['thu'] = 'чц'; +$labels['fri'] = 'пт'; +$labels['sat'] = 'сб'; $labels['sunday'] = 'нядзеля'; $labels['monday'] = 'панядзелак'; $labels['tuesday'] = 'аўторак'; @@ -75,411 +73,411 @@ $labels['wednesday'] = 'серада'; $labels['thursday'] = 'чацвер'; $labels['friday'] = 'пятніца'; $labels['saturday'] = 'субота'; -$labels['jan'] = 'Jan'; -$labels['feb'] = 'Feb'; -$labels['mar'] = 'Mar'; -$labels['apr'] = 'Apr'; -$labels['may'] = 'May'; -$labels['jun'] = 'Jun'; -$labels['jul'] = 'Jul'; -$labels['aug'] = 'Aug'; -$labels['sep'] = 'Sep'; -$labels['oct'] = 'Oct'; -$labels['nov'] = 'Nov'; -$labels['dec'] = 'Dec'; -$labels['longjan'] = 'January'; -$labels['longfeb'] = 'February'; -$labels['longmar'] = 'March'; -$labels['longapr'] = 'April'; -$labels['longmay'] = 'May'; -$labels['longjun'] = 'June'; -$labels['longjul'] = 'July'; -$labels['longaug'] = 'August'; -$labels['longsep'] = 'September'; -$labels['longoct'] = 'October'; -$labels['longnov'] = 'November'; -$labels['longdec'] = 'December'; -$labels['today'] = 'Today'; -$labels['refresh'] = 'Refresh'; -$labels['checkmail'] = 'Check for new messages'; -$labels['compose'] = 'Compose'; -$labels['writenewmessage'] = 'Create a new message'; -$labels['reply'] = 'Reply'; -$labels['replytomessage'] = 'Reply to sender'; -$labels['replytoallmessage'] = 'Reply to list or to sender and all recipients'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; -$labels['forwardmessage'] = 'Forward the message'; -$labels['deletemessage'] = 'Delete message'; -$labels['movemessagetotrash'] = 'Move message to trash'; -$labels['printmessage'] = 'Print this message'; -$labels['previousmessage'] = 'Show previous message'; -$labels['firstmessage'] = 'Show first message'; -$labels['nextmessage'] = 'Show next message'; -$labels['lastmessage'] = 'Show last message'; -$labels['backtolist'] = 'Back to message list'; -$labels['viewsource'] = 'Show source'; -$labels['mark'] = 'Mark'; -$labels['markmessages'] = 'Mark messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; -$labels['select'] = 'Select'; -$labels['all'] = 'All'; -$labels['none'] = 'None'; -$labels['currpage'] = 'Current page'; -$labels['unread'] = 'Unread'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; -$labels['nonesort'] = 'None'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; -$labels['compact'] = 'Compact'; -$labels['empty'] = 'Empty'; -$labels['importmessages'] = 'Import messages'; -$labels['quota'] = 'Disk usage'; -$labels['unknown'] = 'unknown'; -$labels['unlimited'] = 'unlimited'; -$labels['quicksearch'] = 'Quick search'; -$labels['resetsearch'] = 'Reset search'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['namex'] = 'Name'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; -$labels['sendmessage'] = 'Send message'; -$labels['savemessage'] = 'Save as draft'; -$labels['addattachment'] = 'Attach a file'; -$labels['charset'] = 'Charset'; -$labels['editortype'] = 'Editor type'; -$labels['returnreceipt'] = 'Return receipt'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; -$labels['checkspelling'] = 'Check spelling'; -$labels['resumeediting'] = 'Resume editing'; -$labels['revertto'] = 'Revert to'; -$labels['attach'] = 'Attach'; -$labels['attachments'] = 'Attachments'; -$labels['upload'] = 'Upload'; -$labels['uploadprogress'] = '$percent ($current from $total)'; -$labels['close'] = 'Close'; -$labels['messageoptions'] = 'Message options...'; -$labels['low'] = 'Low'; -$labels['lowest'] = 'Lowest'; -$labels['normal'] = 'Normal'; -$labels['high'] = 'High'; -$labels['highest'] = 'Highest'; -$labels['nosubject'] = '(no subject)'; -$labels['showimages'] = 'Display images'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; +$labels['jan'] = 'сту'; +$labels['feb'] = 'лют'; +$labels['mar'] = 'сак'; +$labels['apr'] = 'кра'; +$labels['may'] = 'май'; +$labels['jun'] = 'чэр'; +$labels['jul'] = 'ліп'; +$labels['aug'] = 'жні'; +$labels['sep'] = 'вер'; +$labels['oct'] = 'кас'; +$labels['nov'] = 'ліс'; +$labels['dec'] = 'сне'; +$labels['longjan'] = 'студзень'; +$labels['longfeb'] = 'люты'; +$labels['longmar'] = 'сакавік'; +$labels['longapr'] = 'красавік'; +$labels['longmay'] = 'май'; +$labels['longjun'] = 'чэрвень'; +$labels['longjul'] = 'ліпень'; +$labels['longaug'] = 'жнівень'; +$labels['longsep'] = 'верасень'; +$labels['longoct'] = 'кастрычнік'; +$labels['longnov'] = 'лістапад'; +$labels['longdec'] = 'снежань'; +$labels['today'] = 'сёння'; +$labels['refresh'] = 'Абнавіць'; +$labels['checkmail'] = 'Праверыць новыя паведамленні'; +$labels['compose'] = 'Скласці'; +$labels['writenewmessage'] = 'Скласці новае паведамленне'; +$labels['reply'] = 'Адказаць'; +$labels['replytomessage'] = 'Адказаць адпраўніку'; +$labels['replytoallmessage'] = 'Адказаць па спісе альбо адпраўніку і ўсім атрымальнікам'; +$labels['replyall'] = 'Адказаць усім'; +$labels['replylist'] = 'Адказаць у спіс рассылкі'; +$labels['forward'] = 'Пераслаць'; +$labels['forwardinline'] = 'Пераслаць у целе ліста'; +$labels['forwardattachment'] = 'Пераслаць як далучэнне'; +$labels['forwardmessage'] = 'Пераслаць гэтае паведамленне'; +$labels['deletemessage'] = 'Выдаліць паведамленне'; +$labels['movemessagetotrash'] = 'Перамясціць паведамленне ў сметніцу'; +$labels['printmessage'] = 'Раздрукаваць гэтае паведамленне'; +$labels['previousmessage'] = 'Паказаць папярэдняе паведамленне'; +$labels['firstmessage'] = 'Паказаць першае паведамленне'; +$labels['nextmessage'] = 'Паказаць наступнае паведамленне'; +$labels['lastmessage'] = 'Паказаць апошняе паведамленне'; +$labels['backtolist'] = 'Назад да спіса паведамленняў'; +$labels['viewsource'] = 'Паказаць жарало'; +$labels['mark'] = 'Пазначыць'; +$labels['markmessages'] = 'Пазначыць паведамленні'; +$labels['markread'] = 'Як прачытаныя'; +$labels['markunread'] = 'Як непрачытаныя'; +$labels['markflagged'] = 'Устанавіць флаг'; +$labels['markunflagged'] = 'Зняць флаг'; +$labels['moreactions'] = 'Больш дзеянняў...'; +$labels['more'] = 'Больш'; +$labels['back'] = 'Назад'; +$labels['options'] = 'Параметры'; +$labels['select'] = 'Выбраць'; +$labels['all'] = 'Усе'; +$labels['none'] = 'Жаднага'; +$labels['currpage'] = 'Бягучая старонка'; +$labels['unread'] = 'Непрачытаныя'; +$labels['flagged'] = 'З флагам'; +$labels['unanswered'] = 'Неадказаныя'; +$labels['withattachment'] = 'З далучэннямі'; +$labels['deleted'] = 'Выдаленыя'; +$labels['undeleted'] = 'Нявыдаленыя'; +$labels['invert'] = 'Інвертаваць'; +$labels['filter'] = 'Фільтр'; +$labels['list'] = 'Спіс'; +$labels['threads'] = 'Абмеркаванні'; +$labels['expand-all'] = 'Развінуць усё'; +$labels['expand-unread'] = 'Развінуць непрачытаныя'; +$labels['collapse-all'] = 'Звінуць усё'; +$labels['threaded'] = 'Абмеркаванні'; +$labels['autoexpand_threads'] = 'Развінуць абмеркаванні'; +$labels['do_expand'] = 'усе абмеркаванні'; +$labels['expand_only_unread'] = 'толькі з непрачытанымі паведамленнямі'; +$labels['fromto'] = 'Ад/Да'; +$labels['flag'] = 'Флаг'; +$labels['attachment'] = 'Далучэнне'; +$labels['nonesort'] = 'Адсутнічае'; +$labels['sentdate'] = 'Дата адпраўкі'; +$labels['arrival'] = 'Дата атрымання'; +$labels['asc'] = 'на ўзрастанне'; +$labels['desc'] = 'на змяншчэнне'; +$labels['listcolumns'] = 'Слупкі'; +$labels['listsorting'] = 'Сартаваць паводле'; +$labels['listorder'] = 'Парадак сартавання'; +$labels['listmode'] = 'Тып спісу'; +$labels['folderactions'] = 'Аперацыі з папкай...'; +$labels['compact'] = 'Сціснуць'; +$labels['empty'] = 'Спаражніць'; +$labels['importmessages'] = 'Імпартаваць паведамленні'; +$labels['quota'] = 'Квота'; +$labels['unknown'] = 'невядома'; +$labels['unlimited'] = 'без абмежаванняў'; +$labels['quicksearch'] = 'Хуткі пошук'; +$labels['resetsearch'] = 'Скінуць пошук'; +$labels['searchmod'] = 'Мадыфікатары пошуку'; +$labels['msgtext'] = 'Усё паведамленне'; +$labels['body'] = 'Цела'; +$labels['type'] = 'Тып'; +$labels['namex'] = 'Імя'; +$labels['openinextwin'] = 'Адчыніць у новым акне'; +$labels['emlsave'] = 'Спампаваць (.eml)'; +$labels['changeformattext'] = 'Паказаць як просты тэкст'; +$labels['changeformathtml'] = 'Паказаць як HTML'; +$labels['editasnew'] = 'Адрэдагаваць як новае'; +$labels['send'] = 'Адправіць'; +$labels['sendmessage'] = 'Адправіць паведамленне'; +$labels['savemessage'] = 'Захаваць як чарнавік'; +$labels['addattachment'] = 'Далучыць файл'; +$labels['charset'] = 'Кадзіроўка'; +$labels['editortype'] = 'Рэдактар'; +$labels['returnreceipt'] = 'Пацверджанне атрымання'; +$labels['dsn'] = 'Апавяшчэнне пра дастаўку'; +$labels['mailreplyintro'] = '$sender пісаў $date:'; +$labels['originalmessage'] = 'Арыгінальнае паведамленне'; +$labels['editidents'] = 'Рэдагаваць тоеснасці'; +$labels['spellcheck'] = 'Правапіс'; +$labels['checkspelling'] = 'Праверыць правапіс'; +$labels['resumeediting'] = 'Працягнуць рэдагаванне'; +$labels['revertto'] = 'Адкаціцца на'; +$labels['attach'] = 'Далучыць'; +$labels['attachments'] = 'Далучэнні'; +$labels['upload'] = 'Запампаваць'; +$labels['uploadprogress'] = '$percent ($current з $total)'; +$labels['close'] = 'Зачыніць'; +$labels['messageoptions'] = 'Параметры паведамлення...'; +$labels['low'] = 'Нізкі'; +$labels['lowest'] = 'Найнізшы'; +$labels['normal'] = 'Звычайны'; +$labels['high'] = 'Высокі'; +$labels['highest'] = 'Найвышшы'; +$labels['nosubject'] = '(без тэмы)'; +$labels['showimages'] = 'Паказваць відарысы'; +$labels['alwaysshow'] = 'Заўсёды паказваць відарысы ад $sender'; +$labels['isdraft'] = 'Гэта чарнавік.'; +$labels['andnmore'] = 'яшчэ $nr...'; +$labels['togglemoreheaders'] = 'Паказаць больш загалоўкаў паведамлення'; +$labels['togglefullheaders'] = 'Паказаць неапрацаваныя загалоўкі паведамлення'; $labels['htmltoggle'] = 'HTML'; -$labels['plaintoggle'] = 'Plain text'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; -$labels['name'] = 'Display Name'; -$labels['firstname'] = 'First Name'; -$labels['surname'] = 'Last Name'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; -$labels['email'] = 'Email'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; +$labels['plaintoggle'] = 'Звычайны тэкст'; +$labels['savesentmessagein'] = 'Захаваць паведамленне ў'; +$labels['dontsave'] = 'не захоўваць'; +$labels['maxuploadsize'] = 'Максімальна дазволены памер файла — $size'; +$labels['addcc'] = 'Копія'; +$labels['addbcc'] = 'Схаваная копія'; +$labels['addreplyto'] = 'Адказаць-на'; +$labels['addfollowupto'] = 'Групавы-адказ-на'; +$labels['mdnrequest'] = 'Адпраўнік пажадаў даведацца аб прачытанні гэтага паведамлення. Апавясціць адпраўніка?'; +$labels['receiptread'] = 'Пацверджанне атрымання (прачытання)'; +$labels['yourmessage'] = 'Гэта пацверджанне аб атрыманні вашага паведамлення'; +$labels['receiptnote'] = 'Заўвага: Гэтае пацверджанне значыць адно, што паведамленне было адлюстравана на экране кампутара адрасата. Няма гарантыі, што атрымальнік прачытаў альбо зразумеў змест паведамлення.'; +$labels['name'] = 'Экраннае імя'; +$labels['firstname'] = 'Імя'; +$labels['surname'] = 'Прозвішча'; +$labels['middlename'] = 'Другое імя'; +$labels['nameprefix'] = 'Прэфікс'; +$labels['namesuffix'] = 'Суфікс'; +$labels['nickname'] = 'Мянушка'; +$labels['jobtitle'] = 'Пасада'; +$labels['department'] = 'Аддзел'; +$labels['gender'] = 'Пол'; +$labels['maidenname'] = 'Дзявоцкае прозвішча'; +$labels['email'] = 'Эл. пошта'; +$labels['phone'] = 'Тэлефон'; +$labels['address'] = 'Адрас'; +$labels['street'] = 'Вуліца'; +$labels['locality'] = 'Горад'; +$labels['zipcode'] = 'Індэкс'; +$labels['region'] = 'Рэгіён'; +$labels['country'] = 'Краіна'; +$labels['birthday'] = 'Дзень народзінаў'; +$labels['anniversary'] = 'Юбілей'; +$labels['website'] = 'Вэб-сайт'; $labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; -$labels['addcontact'] = 'Add new contact'; -$labels['editcontact'] = 'Edit contact'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; -$labels['edit'] = 'Edit'; -$labels['cancel'] = 'Cancel'; -$labels['save'] = 'Save'; -$labels['delete'] = 'Delete'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; -$labels['newcontact'] = 'Create new contact card'; -$labels['deletecontact'] = 'Delete selected contacts'; -$labels['composeto'] = 'Compose mail to'; -$labels['contactsfromto'] = 'Contacts $from to $to of $count'; -$labels['print'] = 'Print'; -$labels['export'] = 'Export'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; -$labels['previouspage'] = 'Show previous page'; -$labels['firstpage'] = 'Show first page'; -$labels['nextpage'] = 'Show next page'; -$labels['lastpage'] = 'Show last page'; -$labels['group'] = 'Group'; -$labels['groups'] = 'Groups'; -$labels['listgroup'] = 'List group members'; -$labels['personaladrbook'] = 'Personal Addresses'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add contacts to'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importgroups'] = 'Import group assignments'; -$labels['importgroupsall'] = 'All (create groups if necessary)'; -$labels['importgroupsexisting'] = 'Only for existing groups'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; -$labels['settingsfor'] = 'Settings for'; -$labels['about'] = 'About'; -$labels['preferences'] = 'Preferences'; -$labels['userpreferences'] = 'User preferences'; -$labels['editpreferences'] = 'Edit user preferences'; -$labels['identities'] = 'Identities'; -$labels['manageidentities'] = 'Manage identities for this account'; -$labels['newidentity'] = 'New identity'; -$labels['newitem'] = 'New item'; -$labels['edititem'] = 'Edit item'; -$labels['preferhtml'] = 'Display HTML'; -$labels['defaultcharset'] = 'Default Character Set'; -$labels['htmlmessage'] = 'HTML Message'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; -$labels['prettydate'] = 'Pretty dates'; -$labels['setdefault'] = 'Set default'; -$labels['autodetect'] = 'Auto'; -$labels['language'] = 'Language'; -$labels['timezone'] = 'Time zone'; -$labels['pagesize'] = 'Rows per page'; -$labels['signature'] = 'Signature'; -$labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; -$labels['htmleditor'] = 'Compose HTML messages'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; -$labels['htmlsignature'] = 'HTML signature'; -$labels['showemail'] = 'Show email address with display name'; -$labels['previewpane'] = 'Show preview pane'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; -$labels['autosavedraft'] = 'Automatically save draft'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; -$labels['never'] = 'never'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; +$labels['notes'] = 'Зацемкі'; +$labels['male'] = 'мужчына'; +$labels['female'] = 'жанчына'; +$labels['manager'] = 'Кіраўнік'; +$labels['assistant'] = 'Асістэнт'; +$labels['spouse'] = 'Жонка'; +$labels['allfields'] = 'Усе палі'; +$labels['search'] = 'Пошук'; +$labels['advsearch'] = 'Пашыраны пошук'; +$labels['advanced'] = 'Дадаткова'; +$labels['other'] = 'Іншае'; +$labels['typehome'] = 'Дом'; +$labels['typework'] = 'Праца'; +$labels['typeother'] = 'Іншае'; +$labels['typemobile'] = 'Мабільны'; +$labels['typemain'] = 'Асноўны'; +$labels['typehomefax'] = 'Дамашні факс'; +$labels['typeworkfax'] = 'Працоўны факс'; +$labels['typecar'] = 'Аўта'; +$labels['typepager'] = 'Пэйджар'; +$labels['typevideo'] = 'Відэа'; +$labels['typeassistant'] = 'Асістэнт'; +$labels['typehomepage'] = 'Дамашняя старонка'; +$labels['typeblog'] = 'Блог'; +$labels['typeprofile'] = 'Профіль'; +$labels['addfield'] = 'Дадаць поле...'; +$labels['addcontact'] = 'Дадаць новы кантакт'; +$labels['editcontact'] = 'Рэдагаваць кантакт'; +$labels['contacts'] = 'Кантакты'; +$labels['contactproperties'] = 'Уласцівасці кантакта'; +$labels['personalinfo'] = 'Асабістыя звесткі'; +$labels['edit'] = 'Рэдагаваць'; +$labels['cancel'] = 'Скасаваць'; +$labels['save'] = 'Захаваць'; +$labels['delete'] = 'Выдаліць'; +$labels['rename'] = 'Перайменаваць'; +$labels['addphoto'] = 'Дадаць'; +$labels['replacephoto'] = 'Замяніць'; +$labels['uploadphoto'] = 'Запампаваць фота'; +$labels['newcontact'] = 'Стварыць новую картку кантакта'; +$labels['deletecontact'] = 'Выдаліць абраных кантактаў'; +$labels['composeto'] = 'Скласці ліст да'; +$labels['contactsfromto'] = 'Кантакты $from—$to з $count'; +$labels['print'] = 'Друкаваць'; +$labels['export'] = 'Экспарт'; +$labels['exportall'] = 'Экспартаваць усё'; +$labels['exportsel'] = 'Экспартаваць абранае'; +$labels['exportvcards'] = 'Экспартаваць кантакты ў фармаце vCard'; +$labels['newcontactgroup'] = 'Стварыць новую групу кантактаў'; +$labels['grouprename'] = 'Перайменаваць групу'; +$labels['groupdelete'] = 'Выдаліць групу'; +$labels['groupremoveselected'] = 'Выдаліць абраных кантакаў з групы'; +$labels['previouspage'] = 'Папярэдняя старонка'; +$labels['firstpage'] = 'Першая старонка'; +$labels['nextpage'] = 'Наступная старонка'; +$labels['lastpage'] = 'Апошняя старонка'; +$labels['group'] = 'Група'; +$labels['groups'] = 'Групы'; +$labels['listgroup'] = 'Паказаць сяброў групы'; +$labels['personaladrbook'] = 'Асабістыя адрасы'; +$labels['searchsave'] = 'Захаваць запытанне'; +$labels['searchdelete'] = 'Выдаліць запытанне'; +$labels['import'] = 'Імпарт'; +$labels['importcontacts'] = 'Імпартаваць кантакты'; +$labels['importfromfile'] = 'Імпартаваць з файла:'; +$labels['importtarget'] = 'Дадаць канактаў у'; +$labels['importreplace'] = 'Замяніць адрасную кнігу цалкам'; +$labels['importgroups'] = 'Імпартаваць прызначэнні групы'; +$labels['importgroupsall'] = 'Усе (стварыць групы пры неабходнасці)'; +$labels['importgroupsexisting'] = 'Толькі для існуючых груп'; +$labels['importdesc'] = 'Кантакты можна запампаваць з існуючай адраснай кнігі.
На дадзены момант падтрымліваюцца адрасы ў фарматах vCard і CSV (значэнні цераз коску).'; +$labels['done'] = 'Гатова'; +$labels['settingsfor'] = 'Настаўленні для'; +$labels['about'] = 'Апісанне'; +$labels['preferences'] = 'Параметры'; +$labels['userpreferences'] = 'Параметры карыстальніка'; +$labels['editpreferences'] = 'Рэдагаваць параметры карыстальніка'; +$labels['identities'] = 'Тоеснасці'; +$labels['manageidentities'] = 'Парадкаваць тоеснасці для гэтага ўліковага запісу'; +$labels['newidentity'] = 'Новая тоеснасць'; +$labels['newitem'] = 'Новы элемент'; +$labels['edititem'] = 'Рэдагаваць элемент'; +$labels['preferhtml'] = 'Паказаць HTML'; +$labels['defaultcharset'] = 'Стандартная кадзіроўка'; +$labels['htmlmessage'] = 'Паведамленне ў HTML'; +$labels['messagepart'] = 'Часць'; +$labels['digitalsig'] = 'Электронны подпіс'; +$labels['dateformat'] = 'Фармат даты'; +$labels['timeformat'] = 'Фармат часу'; +$labels['prettydate'] = 'Даты ў зручным фармаце'; +$labels['setdefault'] = 'Зрабіць стандартам'; +$labels['autodetect'] = 'Аўтаматычна'; +$labels['language'] = 'Мова'; +$labels['timezone'] = 'Часавая зона'; +$labels['pagesize'] = 'Радкоў на старонку'; +$labels['signature'] = 'Подпіс'; +$labels['dstactive'] = 'Летні/зімовы час'; +$labels['showinextwin'] = 'Адчыняць паведамленне ў новым акне'; +$labels['composeextwin'] = 'Складаць у новым акне'; +$labels['htmleditor'] = 'Складаць паведамленні ў HTML'; +$labels['htmlonreply'] = 'у адказ на паведамленні ў HTML'; +$labels['htmlonreplyandforward'] = 'пры перасылцы альбо ў адказ на паведамленні ў HTML'; +$labels['htmlsignature'] = 'Подпіс у HTML'; +$labels['showemail'] = 'Паказваць адрас электроннай пошты разам з экранным імем'; +$labels['previewpane'] = 'Панэль прагляду'; +$labels['skin'] = 'Тэма інтэрфейсу'; +$labels['logoutclear'] = 'Ачышчаць Сметніцу па выхадзе'; +$labels['logoutcompact'] = 'Сціскаць Атрыманыя па выхадзе'; +$labels['uisettings'] = 'Інтэрфейс карыстальніка'; +$labels['serversettings'] = 'Настаўленні сервера'; +$labels['mailboxview'] = 'Выгляд скрынкі'; +$labels['mdnrequests'] = 'Пры запытанні пацверджанняў аб атрыманні'; +$labels['askuser'] = 'спытаць мяне'; +$labels['autosend'] = 'адправіць пацверджанне'; +$labels['autosendknown'] = 'адпраўляць пацверджанне маім кантактам, іначай спытаць'; +$labels['autosendknownignore'] = 'адпраўляць пацверджанне маім кантактам, іначай ігнараваць'; +$labels['ignore'] = 'ігнараваць'; +$labels['readwhendeleted'] = 'Пазначаць паведамленне як прачытанае па выдаленні'; +$labels['flagfordeletion'] = 'Толькі пазначаць паведамленне на выдаленне, не выдаляць'; +$labels['skipdeleted'] = 'Не паказваць выдаленыя паведамленні'; +$labels['deletealways'] = 'Як не ўдалося перамясціць паведамленні ў Сметніцу, выдаліць іх'; +$labels['deletejunk'] = 'Адразу выдаляць паведамленні ў Спаме'; +$labels['showremoteimages'] = 'Паказваць вонкавыя відарысы'; +$labels['fromknownsenders'] = 'ад вядомых адпраўнікоў'; +$labels['always'] = 'заўсёды'; +$labels['showinlineimages'] = 'Паказваць далучаныя відарысы пад паведамленнем'; +$labels['autosavedraft'] = 'Аўтаматычна захоўваць чарнавікі'; +$labels['everynminutes'] = 'кожныя $n мінут(аў)'; +$labels['refreshinterval'] = 'Абнаўленне (праверка новых паведамленняў і г. д.)'; +$labels['never'] = 'ніколі'; +$labels['immediately'] = 'імгненна'; +$labels['messagesdisplaying'] = 'Адлюстраванне паведамленняў'; +$labels['messagescomposition'] = 'Складанне паведамленняў'; +$labels['mimeparamfolding'] = 'Імёны далучэнняў'; +$labels['2231folding'] = 'Поўны RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; -$labels['folder'] = 'Folder'; +$labels['2047folding'] = 'Поўны RFC 2047 (інш.)'; +$labels['force7bit'] = 'Ужываць MIME-кадзіроўку для 8-бітных знакаў'; +$labels['advancedoptions'] = 'Дадатковыя параметры'; +$labels['focusonnewmessage'] = 'Актываваць акно браўзера пры новым паведамленні'; +$labels['checkallfolders'] = 'Правяраць усе папкі на новыя паведамленні'; +$labels['displaynext'] = 'Па выдаленні/перамяшчэнні паведамлення паказваць наступнае паведамленне'; +$labels['defaultfont'] = 'Стандартны шрыфт паведамлення ў HTML'; +$labels['mainoptions'] = 'Асноўныя параметры'; +$labels['browseroptions'] = 'Параметры браўзера'; +$labels['section'] = 'Секцыя'; +$labels['maintenance'] = 'Абслугоўванне'; +$labels['newmessage'] = 'Новае паведамленне'; +$labels['signatureoptions'] = 'Параметры подпісу'; +$labels['whenreplying'] = 'Адказваючы'; +$labels['replyempty'] = 'не цытаваць зыходнае паведамленне'; +$labels['replytopposting'] = 'пачынаць новае паведамленне над цытаваным'; +$labels['replybottomposting'] = 'пачынаць новае паведамленне пад цытаваным'; +$labels['replyremovesignature'] = 'Адказваючы, выдаліць стары подпіс з паведамлення'; +$labels['autoaddsignature'] = 'Аўтаматычна дадаваць подпіс'; +$labels['newmessageonly'] = 'толькі ў новых паведамленнях'; +$labels['replyandforwardonly'] = 'толькі ў адказах і перасылках'; +$labels['insertsignature'] = 'Уставіць подпіс'; +$labels['previewpanemarkread'] = 'Пазначаць прагледжаныя паведамленні як прачытаныя'; +$labels['afternseconds'] = 'пасля $n секунд'; +$labels['reqmdn'] = 'Заўсёды запытваць пацверджанне аб атрыманні'; +$labels['reqdsn'] = 'Заўсёды запытваць апавяшчэнне аб дастаўцы'; +$labels['replysamefolder'] = 'Складваць адказы ў папку зыходнага паведамлення'; +$labels['defaultabook'] = 'Стандартная адрасная кніга'; +$labels['autocompletesingle'] = 'Прапускаць альтэрнатыўныя адрасы пры аўдадапаўненні'; +$labels['listnamedisplay'] = 'Выводзіць спіс кантактаў як'; +$labels['spellcheckbeforesend'] = 'Правяраць правапіс перад адпраўкай'; +$labels['spellcheckoptions'] = 'Параметры праверкі правапісу'; +$labels['spellcheckignoresyms'] = 'Ігнараваць словы з сімваламі'; +$labels['spellcheckignorenums'] = 'Ігнараваць словы з лікамі'; +$labels['spellcheckignorecaps'] = 'Ігнараваць словы з усімі літарамі ў верхнім рэгістры'; +$labels['addtodict'] = 'Дадаць у слоўнік'; +$labels['mailtoprotohandler'] = 'Зарэгістраваць апрацоўніка для спасылак mailto:'; +$labels['standardwindows'] = 'Успрымаць вокны-бурбалкі як звычайныя вокны'; +$labels['forwardmode'] = 'Перасылка паведамленняў'; +$labels['inline'] = 'у тэксце'; +$labels['asattachment'] = 'як далучэнне'; +$labels['folder'] = 'Папка'; $labels['folders'] = 'Тэчкі'; -$labels['foldername'] = 'Folder name'; -$labels['subscribed'] = 'Subscribed'; -$labels['messagecount'] = 'Messages'; -$labels['create'] = 'Create'; -$labels['createfolder'] = 'Create new folder'; -$labels['managefolders'] = 'Manage folders'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; -$labels['sortby'] = 'Sort by'; -$labels['sortasc'] = 'Sort ascending'; -$labels['sortdesc'] = 'Sort descending'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; +$labels['foldername'] = 'Назва папкі'; +$labels['subscribed'] = 'Падпісаная'; +$labels['messagecount'] = 'Паведамленні'; +$labels['create'] = 'Стварыць'; +$labels['createfolder'] = 'Стварыць новую папку'; +$labels['managefolders'] = 'Парадкаваць папкі'; +$labels['specialfolders'] = 'Адмысловыя папкі'; +$labels['properties'] = 'Уласцівасці'; +$labels['folderproperties'] = 'Уласцівасці папкі'; +$labels['parentfolder'] = 'Бацькоўская папка'; +$labels['location'] = 'Размяшчэнне'; +$labels['info'] = 'Звесткі'; +$labels['getfoldersize'] = 'Пстрыкніце, каб даведацца памер папкі'; +$labels['changesubscription'] = 'Пстрыкніце, каб змяніць падпіску'; +$labels['foldertype'] = 'Тып папкі'; +$labels['personalfolder'] = 'Асабістая папка'; +$labels['otherfolder'] = 'Папка іншага карыстальніка'; +$labels['sharedfolder'] = 'Публічная папка'; +$labels['sortby'] = 'Сартаваць паводле'; +$labels['sortasc'] = 'Сартаваць на ўзрастанне'; +$labels['sortdesc'] = 'Сартаваць на змяншчэнне'; +$labels['undo'] = 'Адмяніць'; +$labels['installedplugins'] = 'Устаноўленыя плагіны'; +$labels['plugin'] = 'Плагін'; +$labels['version'] = 'Версія'; +$labels['source'] = 'Крыніца'; +$labels['license'] = 'Ліцэнзія'; +$labels['support'] = 'Падтрымка'; +$labels['B'] = 'Б'; +$labels['KB'] = 'КБ'; +$labels['MB'] = 'МБ'; +$labels['GB'] = 'ГБ'; +$labels['unicode'] = 'Юнікод'; +$labels['english'] = 'англійская'; +$labels['westerneuropean'] = 'заходне-еўрапейская'; +$labels['easterneuropean'] = 'усходне-еўрапейская'; +$labels['southeasterneuropean'] = 'паўднёва-еўрапейская'; +$labels['baltic'] = 'балтыйская'; +$labels['cyrillic'] = 'кірыліца'; +$labels['arabic'] = 'арабская'; +$labels['greek'] = 'грэцкая'; +$labels['hebrew'] = 'габрэйская'; +$labels['turkish'] = 'турэцкая'; +$labels['nordic'] = 'паўночная'; +$labels['thai'] = 'тайская'; +$labels['celtic'] = 'кельцкая'; +$labels['vietnamese'] = 'в\'етнамская'; +$labels['japanese'] = 'японская'; +$labels['korean'] = 'карэйская'; +$labels['chinese'] = 'кітайская'; ?> diff --git a/program/localization/be_BE/messages.inc b/program/localization/be_BE/messages.inc index 5d3d8235e..4b2f07a2f 100644 --- a/program/localization/be_BE/messages.inc +++ b/program/localization/be_BE/messages.inc @@ -15,160 +15,159 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; -$messages['loginfailed'] = 'Збой уваходу.'; -$messages['cookiesdisabled'] = 'Ваш азіральнік не падтрымлівае кукіс.'; -$messages['sessionerror'] = 'Ваша сесія не дзейсная ці састарэла.'; -$messages['storageerror'] = 'Connection to storage server failed.'; +$messages['errortitle'] = 'Здарылася памылка!'; +$messages['loginfailed'] = 'Не ўдалося ўвайсці.'; +$messages['cookiesdisabled'] = 'Ваш браўзер не падтрымлівае кукіс.'; +$messages['sessionerror'] = 'Ваша сесія невалідная альбо састарэла.'; +$messages['storageerror'] = 'Не ўдалося злучыцца з серверам-сховішчам.'; $messages['servererror'] = 'Памылка сервера!'; $messages['servererrormsg'] = 'Памылка сервера: $msg'; $messages['dberror'] = 'Памылка базы даных!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Немагчыма выканаць аперацыю. Тэчка даступна толькі для чытання.'; -$messages['errornoperm'] = 'Немагчыма выканаць аперацыю. Адмоўлена ў доступе.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Не дзейсны запыт! Даныя не захаваныя.'; -$messages['invalidhost'] = 'Invalid server name.'; -$messages['nomessagesfound'] = 'No messages found in this mailbox.'; -$messages['loggedout'] = 'You have successfully terminated the session. Good bye!'; -$messages['mailboxempty'] = 'Mailbox is empty.'; -$messages['refreshing'] = 'Refreshing...'; -$messages['loading'] = 'Loading...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; -$messages['loadingdata'] = 'Loading data...'; -$messages['checkingmail'] = 'Checking for new messages...'; -$messages['sendingmessage'] = 'Sending message...'; -$messages['messagesent'] = 'Message sent successfully.'; -$messages['savingmessage'] = 'Saving message...'; -$messages['messagesaved'] = 'Message saved to Drafts.'; -$messages['successfullysaved'] = 'Successfully saved.'; -$messages['addedsuccessfully'] = 'Contact added successfully to address book.'; -$messages['contactexists'] = 'A contact with the same e-mail address already exists.'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; -$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.'; -$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!'; -$messages['nocontactsfound'] = 'No contacts found.'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; -$messages['sendingfailed'] = 'Failed to send message.'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'An error occured while saving.'; -$messages['errormoving'] = 'Could not move the message(s).'; -$messages['errorcopying'] = 'Could not copy the message(s).'; -$messages['errordeleting'] = 'Could not delete the message(s).'; -$messages['errormarking'] = 'Could not mark the message(s).'; -$messages['deletecontactconfirm'] = 'Do you really want to delete selected contact(s)?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; -$messages['deletemessagesconfirm'] = 'Do you really want to delete selected message(s)?'; -$messages['deletefolderconfirm'] = 'Do you really want to delete this folder?'; -$messages['purgefolderconfirm'] = 'Do you really want to delete all messages in this folder?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; -$messages['formincomplete'] = 'The form was not completely filled out.'; -$messages['noemailwarning'] = 'Please enter a valid email address.'; -$messages['nonamewarning'] = 'Please enter a name.'; -$messages['nopagesizewarning'] = 'Please enter a page size.'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; -$messages['norecipientwarning'] = 'Please enter at least one recipient.'; -$messages['nosubjectwarning'] = 'The "Subject" field is empty. Would you like to enter one now?'; -$messages['nobodywarning'] = 'Send this message without text?'; -$messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?'; -$messages['noldapserver'] = 'Please select an ldap server to search.'; -$messages['nosearchname'] = 'Please enter a contact name or email address.'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; -$messages['searchsuccessful'] = '$nr messages found.'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; -$messages['searchnomatch'] = 'Search returned no matches.'; -$messages['searching'] = 'Searching...'; -$messages['checking'] = 'Checking...'; -$messages['nospellerrors'] = 'No spelling errors found.'; -$messages['folderdeleted'] = 'Folder successfully deleted.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; -$messages['deletedsuccessfully'] = 'Successfully deleted.'; -$messages['converting'] = 'Removing formatting...'; -$messages['messageopenerror'] = 'Could not load message from server.'; -$messages['fileuploaderror'] = 'File upload failed.'; -$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; +$messages['requesttimedout'] = 'Час запросу выйшаў'; +$messages['errorreadonly'] = 'Не ўдалося выканаць аперацыю. Папка даступна толькі для чытання.'; +$messages['errornoperm'] = 'Не ўдалося выканаць аперацыю. Адмоўлена ў доступе.'; +$messages['erroroverquota'] = 'Не ўдалося выканаць аперацыю. Няма свабоднай прасторы на дыску.'; +$messages['erroroverquotadelete'] = 'Няма свабоднай прасторы на дыску. Націсніце SHIFT+DEL, каб выдаліць паведамленне.'; +$messages['invalidrequest'] = 'Невалідны запрос! Дадзеныя не захаваныя.'; +$messages['invalidhost'] = 'Няслушнае імя сервера.'; +$messages['nomessagesfound'] = 'Паведамленняў у гэтай скрынцы не знойдзена'; +$messages['loggedout'] = 'Сесія скасавана. Да пабачэння!'; +$messages['mailboxempty'] = 'У скрынцы пуста.'; +$messages['refreshing'] = 'Абнаўляецца...'; +$messages['loading'] = 'Загружаецца...'; +$messages['uploading'] = 'Файл запампоўваюцца...'; +$messages['uploadingmany'] = 'Файлы запампоўваюцца...'; +$messages['loadingdata'] = 'Загружаюцца даныя...'; +$messages['checkingmail'] = 'Праверка новых паведамленняў...'; +$messages['sendingmessage'] = 'Паведамленне адпраўляецца...'; +$messages['messagesent'] = 'Паведамленні адпраўлены.'; +$messages['savingmessage'] = 'Паведамленне захоўваецца...'; +$messages['messagesaved'] = 'Паведамленне захавана ў Чарнавікі.'; +$messages['successfullysaved'] = 'Захавана.'; +$messages['addedsuccessfully'] = 'Кантакт дададзены ў адрасную кнігу.'; +$messages['contactexists'] = 'Кантакт з такім самым адрасам эл. пошты ўжо існуе.'; +$messages['contactnameexists'] = 'Кантакт з такім самым імем ужо існуе.'; +$messages['blockedimages'] = 'Дзеля забеспячэння вашай прыватнасці знешнія відарысы ў гэтым паведамленні заблакіраваныя.'; +$messages['encryptedmessage'] = 'Гэта зашыфраванае паведамленне. Яно не можа быць адлюстравана. Выбачайце!'; +$messages['nocontactsfound'] = 'Кантактаў не знойдзена.'; +$messages['contactnotfound'] = 'Запытаны кантакт не знойдзены.'; +$messages['contactsearchonly'] = 'Задайце выраз для пошука кантактаў'; +$messages['sendingfailed'] = 'Не ўдалося адправіць паведамленне.'; +$messages['senttooquickly'] = 'Пачакайце $sec секунд(ы) перад адпраўкай гэтага паведамлення.'; +$messages['errorsavingsent'] = 'Не ўдалося захаваць адпраўленае паведамленне.'; +$messages['errorsaving'] = 'Не ўдалося захаваць.'; +$messages['errormoving'] = 'Не ўдалося перамясціць паведамлення(ў).'; +$messages['errorcopying'] = 'Не ўдалося скапіяваць паведамлення(ў).'; +$messages['errordeleting'] = 'Не ўдалося выдаліць паведамлення(ў).'; +$messages['errormarking'] = 'Не ўдалося пазначыць паведамлення(ў).'; +$messages['deletecontactconfirm'] = 'Напраўду выдаліць абраны(я) кантакты?'; +$messages['deletegroupconfirm'] = 'Напраўду выдаліць абраную групу?'; +$messages['deletemessagesconfirm'] = 'Напраўду выдаліць абранае(ыя) паведамленне?'; +$messages['deletefolderconfirm'] = 'Напраўду выдаліць гэтую папку?'; +$messages['purgefolderconfirm'] = 'Напраўду выдаліць усе паведамленні з гэтай папкі?'; +$messages['contactdeleting'] = 'Кантакт(ы) выдаляюцца...'; +$messages['groupdeleting'] = 'Група выдаляецца...'; +$messages['folderdeleting'] = 'Папка выдаляецца...'; +$messages['foldermoving'] = 'Папка перамяшчаецца...'; +$messages['foldersubscribing'] = 'Папка падпісваецца...'; +$messages['folderunsubscribing'] = 'Папка адпісваецца...'; +$messages['formincomplete'] = 'Фармуляр запоўнены не да канца.'; +$messages['noemailwarning'] = 'Задайце слушны адрас электроннай пошты.'; +$messages['nonamewarning'] = 'Задайце імя.'; +$messages['nopagesizewarning'] = 'Задайце памер старонкі.'; +$messages['nosenderwarning'] = 'Задайце адрас эл. пошты адпраўніка.'; +$messages['norecipientwarning'] = 'Задайце хаця-б аднаго атрымальніка.'; +$messages['nosubjectwarning'] = 'Тэма ліста не зададзена. Ці жадаеце задаць яе зараз?'; +$messages['nobodywarning'] = 'Адправіць гэта паведамленне без тэксту?'; +$messages['notsentwarning'] = 'Паведамленне не адпраўлена. Жадаеце скасаваць сваё паведамленне?'; +$messages['noldapserver'] = 'Задайце ldap-сервер для пошуку.'; +$messages['nosearchname'] = 'Задайце імя кантакта альбо адрас электроннай пошты.'; +$messages['notuploadedwarning'] = 'Не ўсе далучэнні пакуль яшчэ запампаваныя. Пачакайце альбо скасуйце аперацыю.'; +$messages['searchsuccessful'] = 'Знойдзена $nr паведамленняў.'; +$messages['contactsearchsuccessful'] = 'Знойдзена $nr кантактаў.'; +$messages['searchnomatch'] = 'Пошук не даў выніку.'; +$messages['searching'] = 'Ідзе пошук...'; +$messages['checking'] = 'Ідзе праверка...'; +$messages['nospellerrors'] = 'Памылак правапісання не выяўлена.'; +$messages['folderdeleted'] = 'Папка выдалена.'; +$messages['foldersubscribed'] = 'Папка падпісана.'; +$messages['folderunsubscribed'] = 'Папка адпісана.'; +$messages['folderpurged'] = 'Папка ачышчана.'; +$messages['folderexpunged'] = 'Папка сціснута. '; +$messages['deletedsuccessfully'] = 'Выдалена.'; +$messages['converting'] = 'Фарматаванне выдаляецца...'; +$messages['messageopenerror'] = 'Не ўдалося загрузіць паведамленне з сервера.'; +$messages['fileuploaderror'] = 'Не ўдалося запампаваць файл.'; +$messages['filesizeerror'] = 'Запампаваны файл перавышае максімальна дазволены памер $size.'; +$messages['copysuccess'] = '$nr кантактаў скапіявана.'; +$messages['movesuccess'] = '$nr кантактаў перамешчана.'; +$messages['copyerror'] = 'Не ўдалося скапіяваць ніводнага кантакта.'; +$messages['moveerror'] = 'Не ўдалося перамясціць ніводнага кантакта.'; +$messages['sourceisreadonly'] = 'Гэтая крыніца адрасоў толькі для чытання.'; +$messages['errorsavingcontact'] = 'Не ўдалося захаваць адрас кантакта.'; +$messages['movingmessage'] = 'Паведамленні(е) перамяшчаюцца...'; +$messages['copyingmessage'] = 'Паведамленні(е) капіююцца...'; +$messages['copyingcontact'] = 'Кантакт(ы) капіююцца...'; +$messages['movingcontact'] = 'Кантакт(ы) перамяшчаюцца...'; +$messages['deletingmessage'] = 'Паведамленні(е) выдаляюцца...'; +$messages['markingmessage'] = 'Паведамленні(е) пазначаюцца...'; +$messages['addingmember'] = 'Кантакт(ы) дадаюцца ў групу...'; +$messages['removingmember'] = 'Кантакт(ы) выдаляюцца з групы...'; +$messages['receiptsent'] = 'Пацверджанне аб прачытанні адпраўлена.'; +$messages['errorsendingreceipt'] = 'Не ўдалося адправіць пацверджання.'; +$messages['deleteidentityconfirm'] = 'Напраўду выдаліць гэтую тоеснасць?'; +$messages['nodeletelastidentity'] = 'Гэтую тоеснасць выдаліць няможна, бо апошняя.'; +$messages['forbiddencharacter'] = 'Назва папкі змяшчае забаронены знак.'; +$messages['selectimportfile'] = 'Абярыце файл на запампоўку.'; +$messages['addresswriterror'] = 'Абраная адрасная кніга ёсць толькі-для-чытання.'; +$messages['contactaddedtogroup'] = 'Кантакты дададзены ў групу.'; +$messages['contactremovedfromgroup'] = 'Кантакты выдаленыя з групы.'; +$messages['nogroupassignmentschanged'] = 'Усе прызначэнні групы засталіся без зменаў.'; +$messages['importwait'] = 'Ідзе імпартаванне. Чакайце...'; +$messages['importformaterror'] = 'Імпартаванне не ўдалося! Запампаваны файл не ўтрымоўвае слушных даных на імпарт.'; +$messages['importconfirm'] = '$inserted кантактаў імпартаваныя'; +$messages['importconfirmskipped'] = 'Прапушчана $skipped існуючых запісаў'; +$messages['importmessagesuccess'] = '$nr паведамленняў імпартавана'; +$messages['importmessageerror'] = 'Не ўдалося імпартаваць! Запампаваны файл не ёсць слушным паведамленнем альбо файлам паштовай скрынкі'; +$messages['opnotpermitted'] = 'Аперацыя не дазволеная!'; +$messages['nofromaddress'] = 'У абранай тоеснасці не стае адрасу эл. пошты.'; +$messages['editorwarning'] = 'Змена рэдактара прывядзе да страты фарматавання. Працягнуць?'; +$messages['httpreceivedencrypterror'] = 'Важная памылка ў канфігурацыі. Неадкладна скантактуйцеся з адміністратарам. Паведамленне не можа быць адпраўлена.'; +$messages['smtpconnerror'] = 'Памылка SMTP ($code): Не ўдалося злучыцца з серверам.'; +$messages['smtpautherror'] = 'Памылка SMTP ($code): Аўтэтыфікацыя не ўдалася.'; +$messages['smtpfromerror'] = 'Памылка SMTP ($code): Не ўдалося задаць адпраўніка "$from" ($msg).'; +$messages['smtptoerror'] = 'Памылка STMP ($code): Не ўдалося задаць атрымальніка "$to" ($msg).'; +$messages['smtprecipientserror'] = 'Памылка STMP: Не ўдалося прачытаць спіс атрымальнікаў.'; +$messages['smtperror'] = 'Памылка SMTP: $msg'; +$messages['emailformaterror'] = 'Няслушны адрас эл. пошты: $email'; +$messages['toomanyrecipients'] = 'Замнога атрымальнікаў. Зменшыце лік атрымальнікаў да $max.'; +$messages['maxgroupmembersreached'] = 'Лік сяброў групы перавышае максімум — $max.'; +$messages['internalerror'] = 'Унутраная памылка. Паспрабуйце яшчэ раз.'; +$messages['contactdelerror'] = 'Не ўдалося выдаліць кантакта(ў).'; +$messages['contactdeleted'] = 'Кантакт(ы) выдалены.'; +$messages['contactrestoreerror'] = 'Не ўдалося аднавіць выдаленыя кантакт(ы).'; +$messages['contactrestored'] = 'Кантакт(ы) адноўлены.'; +$messages['groupdeleted'] = 'Група выдалена.'; +$messages['grouprenamed'] = 'Група перайменавана.'; +$messages['groupcreated'] = 'Група створана.'; +$messages['savedsearchdeleted'] = 'Захаванае запытанне выдалена.'; +$messages['savedsearchdeleteerror'] = 'Не ўдалося выдаліць захаванае запытанне.'; +$messages['savedsearchcreated'] = 'Захаванае запытанне створана.'; +$messages['savedsearchcreateerror'] = 'Не ўдалося стварыць захаванае запытанне.'; +$messages['messagedeleted'] = 'Паведамленні(е) выдалены.'; +$messages['messagemoved'] = 'Паведамленні(е) перамешчаны.'; +$messages['messagecopied'] = 'Паведамленні(е) скапіяваны.'; +$messages['messagemarked'] = 'Паведамленні(е) пазначаны.'; +$messages['autocompletechars'] = 'Увядзіце мінімум $min знакаў для аўтадапаўнення.'; +$messages['autocompletemore'] = 'Больш адпаведных запісаў знойдзена. Увядзіце больш знакаў.'; +$messages['namecannotbeempty'] = 'Назва не можа быць пустой.'; +$messages['nametoolong'] = 'Назва задаўгая.'; +$messages['folderupdated'] = 'Папка абноўлена.'; +$messages['foldercreated'] = 'Папка створана.'; +$messages['invalidimageformat'] = 'Няслушны фармат відарысу.'; +$messages['mispellingsfound'] = 'У паведамленні выяўлены правапісныя памылкі.'; +$messages['parentnotwritable'] = 'Не ўдалося стварыць/перамясціць папку ў абраным месцы. Няма доступу.'; +$messages['messagetoobig'] = 'Гэтая часць паведамлення завялікая, каб яе апрацаваць.'; +$messages['attachmentvalidationerror'] = 'УВАГА! Гэтае далучэнне ёсць падазроным, бо тып ягоны не супадае з заяўленым тыпам у паведамленні. Калі вы не давяраеце гэтаму адпраўніку, не адчыняйце яго ў браўзеры, таму што яно можа ўтрымліваць шкоднае змесціва.

Чаканы: $expected; знойдзены: $detected'; +$messages['noscriptwarning'] = 'Увага: Служба вымагае Javascript’у! Каб карыстацца ёй, трэба ўключыць Javascript у настаўленнях браўзера.'; ?> diff --git a/program/localization/bg_BG/labels.inc b/program/localization/bg_BG/labels.inc index 3233e0eed..29c99e8f4 100644 --- a/program/localization/bg_BG/labels.inc +++ b/program/localization/bg_BG/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Добре дошли в $product'; $labels['username'] = 'Потребител'; $labels['password'] = 'Парола'; diff --git a/program/localization/bg_BG/messages.inc b/program/localization/bg_BG/messages.inc index 01480275d..210eda1b1 100644 --- a/program/localization/bg_BG/messages.inc +++ b/program/localization/bg_BG/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Възникна грешка!'; $messages['loginfailed'] = 'Неуспешно установяване на самоличност.'; $messages['cookiesdisabled'] = 'Вашият браузър не приема cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Търсеният контакт не е нам $messages['contactsearchonly'] = 'Използвайте полето за да търсите контакти'; $messages['sendingfailed'] = 'Неуспешно изпращане на писмо.'; $messages['senttooquickly'] = 'Моля изчакайте $sec секунди преди да изпратите писмото.'; -$messages['errorsavingsent'] = 'Възникна грешка при записване на изпратеното писмо.'; -$messages['errorsaving'] = 'Възникна грешка при записването.'; $messages['errormoving'] = 'Писмото не може да бъде преместено.'; $messages['errorcopying'] = 'Писмото не може да бъде копирано.'; $messages['errordeleting'] = 'Писмото не може да бъде изтрито.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP грешка: $msg'; $messages['emailformaterror'] = 'Невалиден e-mail адрес: $email'; $messages['toomanyrecipients'] = 'Прекалено много адреси за изпращане (максимум: $max).'; $messages['maxgroupmembersreached'] = 'Броят на членовете на групата е повече от максималния: $max.'; -$messages['internalerror'] = 'Възникна вътрешна грешка. Моля опитайте отново.'; $messages['contactdelerror'] = 'Невъзможно изтриване на контакти.'; $messages['contactdeleted'] = 'Контактът беше изтрит успешно.'; $messages['contactrestoreerror'] = 'Неуспешно възстановяване на изтрите контакти.'; diff --git a/program/localization/bn_BD/labels.inc b/program/localization/bn_BD/labels.inc index 45c08ee84..c0b7ad3a7 100644 --- a/program/localization/bn_BD/labels.inc +++ b/program/localization/bn_BD/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'স্বাগতম'; $labels['username'] = 'গ্রাহক নাম (username)'; $labels['password'] = 'গোপোন শব্দ (password)'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'খসড়া'; $labels['sent'] = 'প্রেরিত(পাঠানো মেইল)'; $labels['trash'] = 'ডাস্টবিন'; $labels['junk'] = 'আজেবাজে মেইল'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'বিষয়'; $labels['from'] = 'প্রেরক'; -$labels['sender'] = 'Sender'; $labels['to'] = 'প্রাপক'; $labels['cc'] = 'অনুলিপির ঠিকানা'; $labels['bcc'] = 'নাজানিয়ে অনুলিপির ঠিকানা'; $labels['replyto'] = 'উত্তর পাঠানোর ঠিকানা'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'তারিখ'; $labels['size'] = 'সাইজ'; $labels['priority'] = 'গুরুত্ব'; $labels['organization'] = 'কোম্পানি'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'ফোল্ডার/মেইলবক্স'; $labels['messagesfromto'] = '$count মেইলের মধ্যে, $from হতে $to দেখানো হচ্ছে'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr #মেইল/চিঠি , $count এর মধ্যে'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'অনুলিপির ঠিকানা'; -$labels['move'] = 'Move'; $labels['moveto'] = 'সরিয়ে ফেলুন..'; $labels['download'] = 'ডাউনলোড'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ফাইলের নাম'; $labels['filesize'] = 'ফাইলের সাইজ'; $labels['addtoaddressbook'] = 'ঠিকানার বইতে ঢুকান'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'অষ্টবার (October)'; $labels['longnov'] = 'নবেমবার (November)'; $labels['longdec'] = 'দিশেমবার (December)'; $labels['today'] = 'আজকে'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'দেখুন নতুন কোনো মেইল/চিঠি এলো কিনা'; $labels['compose'] = 'নতুন মেইল/চিঠি লিখুন'; $labels['writenewmessage'] = 'নতুন মেইল/চিঠি লিখুন'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'শুধু প্রেরকের কাছে উত্তর পাঠান'; $labels['replytoallmessage'] = 'প্রেরক ও এই চিঠির অন্যান্য প্রাপকদের কাছে উত্তর পাঠান'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'মেইল/চিঠি এগিয়ে দিন'; $labels['deletemessage'] = 'মেইল/চিঠি ছিড়ে ফেলুন'; $labels['movemessagetotrash'] = 'মেইল/চিঠি ডাস্টবিনে ফেলুন'; @@ -122,88 +102,39 @@ $labels['nextmessage'] = 'পরের মেইল/চিঠিটি দ $labels['lastmessage'] = 'শেষ মেইল/চিঠিটি দেখুন'; $labels['backtolist'] = 'মেইল/চিঠির তালিকায় ফিরে যান'; $labels['viewsource'] = 'মূল উৎসদেখুন'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'মেইল/চিঠি (গুলো)'; $labels['markread'] = 'পড়া শেষ (read)'; $labels['markunread'] = 'নাদেখা (unread)'; $labels['markflagged'] = 'দাগানো (flagged)'; $labels['markunflagged'] = 'দাগহীন (unflagged)'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'বেছেনিন'; $labels['all'] = 'সবগুলো'; $labels['none'] = 'কোনোটাই না'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'নাদেখা (unread)'; $labels['flagged'] = 'দাগানো (flagged)'; $labels['unanswered'] = 'উত্তর না দেওয়া গুলো'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; $labels['filter'] = 'ছাকনি'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'কোনোটাই না'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'টাইটকরুন'; $labels['empty'] = 'খালিকরুন'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'ডিস্ক এ খালি যায়গা'; $labels['unknown'] = 'অজানা'; $labels['unlimited'] = 'সীমাহীন'; $labels['quicksearch'] = 'ঝটকরে খোজা'; $labels['resetsearch'] = 'নতুনকরে খুজুন'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'নতুন উইন্ডো তে দেখুন'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'এখুনি মেইল / চিঠিটি পাঠান'; $labels['savemessage'] = 'খসড়া হিসাবে জমা করে রাখুন'; $labels['addattachment'] = 'একটা ফাইল জুড়ে দিন চিঠির সাথে'; $labels['charset'] = 'Charset'; $labels['editortype'] = 'Editor type'; $labels['returnreceipt'] = 'ফিরতি রসিদ'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Check spelling'; $labels['resumeediting'] = 'Resume editing'; $labels['revertto'] = 'Revert to'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'জুড়ে দেওয়া ফাইল (Attachments)'; $labels['upload'] = 'উঠায় দেন'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'বন্ধ করুন'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'Low'; $labels['lowest'] = 'Lowest'; $labels['normal'] = 'Normal'; @@ -212,10 +143,6 @@ $labels['highest'] = 'Highest'; $labels['nosubject'] = '(বিষয়হীন)'; $labels['showimages'] = 'ছবি দেখান'; $labels['alwaysshow'] = 'সবসময় $sender এর কাছে থেকে পাওয়া ছবিগুলো দেখানো হোক'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'খালি লেখা দেখুন'; $labels['savesentmessagein'] = 'পাঠানো চিঠি/মেইল জমা করুন >>'; @@ -224,7 +151,6 @@ $labels['maxuploadsize'] = 'ফাইল উঠানোর সর্বোচ $labels['addcc'] = 'অনুলিপির ঠিকানা ঢুকান'; $labels['addbcc'] = 'নাজানিয়ে অনুলিপির ঠিকানা ঢুকান'; $labels['addreplyto'] = 'উত্তর পাঠানোর ঠিকানা ঢুকান'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'প্রাপক আপনার কাছে মেইল/চিঠিটা যে পেয়েছেন তার ফিরতি রসিদ চেয়েছেন। আপনি কি ফিরতি রসিদ টা পাঠাবেন?'; $labels['receiptread'] = 'মেইল/চিঠি যে পেয়েছেন তার ফিরতি রসিদ'; $labels['yourmessage'] = 'নিচে রয়েছে আপনার চিঠিটা যে প্রাপক পেয়েছেন তার রসিদ'; @@ -232,97 +158,32 @@ $labels['receiptnote'] = 'এই রসিদ খালি এতটুকু $labels['name'] = 'নাম'; $labels['firstname'] = 'নামের প্রথমাংশ'; $labels['surname'] = 'নামের শেষাংশ'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'ই-মেইল/চিঠি'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'নতুন ঠিকানা ঢুকান'; $labels['editcontact'] = 'একটা ঠিকানা বদলান'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'বদলান'; $labels['cancel'] = 'বাতিল'; $labels['save'] = 'জমা দিন'; $labels['delete'] = 'ফেলে দিন'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'একটা নতুন ঠিকানার কার্ড বানান'; $labels['deletecontact'] = 'বেছে নেওয়া ঠিকানা গুলো ফেলে দিন'; $labels['composeto'] = 'চিঠি পাঠাবেন কার কাছে?'; $labels['contactsfromto'] = '$count ঠিকানার মধ্যে $from থেকে $to টা'; $labels['print'] = 'প্রিন্ট করুন'; $labels['export'] = 'রপ্তানি করুন'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'রপ্তানি করুন vCard আকারে'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'আগের গুলো দেখান'; $labels['firstpage'] = 'প্রথম গুলো দেখান'; $labels['nextpage'] = 'পরের গুলো দেখান'; $labels['lastpage'] = 'শেষের গুলো দেখান'; -$labels['group'] = 'Group'; $labels['groups'] = 'গ্রুপ'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'নিজের ঠিকানা'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'আমদানি করুন'; $labels['importcontacts'] = 'ঠিকানা আমদানি করুন'; $labels['importfromfile'] = 'ফাইলের থেকে ঠিকানা আমদানি করুন'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'পুরো ঠিকানার বইটি খালি করে নতুন ঠিকানা গুলো ভরুন'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'শেষ'; $labels['settingsfor'] = 'খুটিনাটি'; -$labels['about'] = 'About'; $labels['preferences'] = 'পছন্দ'; $labels['userpreferences'] = 'গ্রাহক পছন্দ'; $labels['editpreferences'] = 'গ্রাহক পছন্দ বদলান'; @@ -332,12 +193,7 @@ $labels['newidentity'] = 'নতুন পরিচিতি'; $labels['newitem'] = 'নতুন জিনিষ'; $labels['edititem'] = 'জিনিষ বদলান'; $labels['preferhtml'] = 'HTML এ দেখি'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML মেইল/চিঠি'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'তারিখ ভালো করে দেখা যাবে'; $labels['setdefault'] = 'এইটাই আসল'; $labels['autodetect'] = 'কম্পুটার নিজেনিজি বেছে নেবে'; @@ -346,13 +202,8 @@ $labels['timezone'] = 'সময়ভিত্তিক এলাকা'; $labels['pagesize'] = 'প্রতি পৃষ্ঠায় লাইন সংখ্যা'; $labels['signature'] = 'স্বাক্ষর'; $labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'HTML এ মেইল/চিঠি লিখুন'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML এ স্বাক্ষর'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'ছোটোকরে দেখার জায়গা'; $labels['skin'] = 'মেইলবক্স এর পুরোটার চেহারা'; $labels['logoutclear'] = 'বেরহবার সময় ডাস্টবিন অটোমেটিক খালি হবে'; @@ -363,69 +214,26 @@ $labels['mailboxview'] = 'মেইলবক্স দেখার কায়দ $labels['mdnrequests'] = 'প্রেরক নোটিশ পাঠালে কি করা হবে?'; $labels['askuser'] = 'আমি গ্রাহক, আমাকে জিজ্ঞাসা করুন'; $labels['autosend'] = 'কম্পুটার নিজেনিজি ফিরতি নোটিশ পাঠায় দেবে'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'পাত্তা দেওয়া হবেনা'; $labels['readwhendeleted'] = 'ফেলে দেবার সময় মেইল/চিঠি পড়া হয়ে গেছে হিসাবে ধরে নেওয়া হবে'; $labels['flagfordeletion'] = 'একেবারেই ফেলে না দিয়ে মেইল/চিঠি গুলোকে দাগিয়ে রাখুন ফেলে দেবার জন্যে'; $labels['skipdeleted'] = 'ফেলে দেওয়া মেইল/চিঠি দেখানোর দরকার নেই'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'মেইলে অন্য ওয়েবসাইট থেকে আসা ছবি থাকলে তা দেখা যাবে'; $labels['fromknownsenders'] = 'পরিচিত প্রেরক এর ক্ষেত্রে'; $labels['always'] = 'সবসময়'; $labels['showinlineimages'] = 'মেইলের সাথে জোড়া লাগানো ছবি, মেইলের নিচে দেখা যাবে'; $labels['autosavedraft'] = 'নিজেনিজি খসড়া জমা হয়ে যাবে'; $labels['everynminutes'] = 'প্রতি $n মিনিটে'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'কখোনোই না'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'মেইল/চিঠি দেখা যাচ্ছে'; $labels['messagescomposition'] = 'মেইল/চিঠি লেখা হচ্ছে'; $labels['mimeparamfolding'] = 'জুড়ে দেওয়া জিনিষের নাম'; $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'জটিল বিষয়'; $labels['focusonnewmessage'] = 'নতুন মেইল এলেই তা হাইলাইট হয়ে যাবে'; $labels['checkallfolders'] = 'সবগুলো মেইলবক্সে নতুন চিঠি খোজা হবে'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'ফোল্ডার/মেইলবক্স'; $labels['folders'] = 'ফোল্ডার/মেইলবক্স'; $labels['foldername'] = 'ফোল্ডার/মেইলবক্স এর নাম'; @@ -435,47 +243,11 @@ $labels['create'] = 'প্রস্তুত করুন'; $labels['createfolder'] = 'নতুন ফোল্ডার / মেইলবক্স প্রস্তুত করুন'; $labels['managefolders'] = 'ফোল্ডার/মেইলবক্স গুলো কে গুছান'; $labels['specialfolders'] = 'বিশেষ ফোল্ডার/মেইলবক্স'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'সাজান'; $labels['sortasc'] = 'কম থেকে বেশি হিসাবে সাজান'; $labels['sortdesc'] = 'বেশি থেকে কম হিসাবে সাজান'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'বাইট'; $labels['KB'] = 'কিলোবাইট'; $labels['MB'] = 'মেগাবাইট'; $labels['GB'] = 'গিগাবাইট'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/bn_BD/messages.inc b/program/localization/bn_BD/messages.inc index ac959eec2..ac744edee 100644 --- a/program/localization/bn_BD/messages.inc +++ b/program/localization/bn_BD/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ঢোকা গেল না'; $messages['cookiesdisabled'] = 'আপনার ব্রাউজার, কুকি গ্রহন করে না'; $messages['sessionerror'] = 'আপনার সেশন শেষ'; $messages['storageerror'] = 'মেইল সারভার এর সাথে যোগাযোগ করা গেল না'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'এই মেইলবক্সে কোনো চিঠি নাই'; $messages['loggedout'] = 'আপনের সেশন ঠিকঠাক মতো শেষ হইছে। শুভবিদায়।'; $messages['mailboxempty'] = 'মেইলবক্স খালি'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'কম্পুটার কাজ করতেছে . .'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'কম্পুটার তথ্য আনছে আপনার জন্য..'; $messages['checkingmail'] = 'নতুন চিঠি আসছে কিনা তা দেখা হচ্ছে'; $messages['sendingmessage'] = 'চিঠি পাঠায় দেওয়া হচ্ছে'; @@ -47,31 +32,20 @@ $messages['messagesaved'] = 'চিঠি খসড়া হিসাবে জম $messages['successfullysaved'] = 'ঠিকঠাকমতো জমা হয়ে গিয়েছে'; $messages['addedsuccessfully'] = 'নতুন ঠিকানা ঠিকঠাক মতো ঢোকানো হয়ে গেছে'; $messages['contactexists'] = 'একই ই-মেইল এ আরেকটা নাম ঠিকানা তালিকায় আছে'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'আপনার গোপনীয়তা রক্ষার জন্য আমরা ছবি গুলো সরিয়ে রেখেছি'; $messages['encryptedmessage'] = 'এটা একটি গোপন (encrypted) চিঠি। এটা আপনাকে দেখানো যাবে না। দু্ঃখিত।'; $messages['nocontactsfound'] = 'কোনো ঠিকানা পাওয়া গেলনা। দু্ঃখিত।'; $messages['contactnotfound'] = 'আপনি যে ঠিকানা খুজছেন সেটা পাওয়া গেল না'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'চিঠি পাঠানো গেলনা'; $messages['senttooquickly'] = 'এই চিঠি পাঠানোর আগে, দয়া করে $sec সেকেন্ড'; -$messages['errorsavingsent'] = 'প্রেরিত চিঠি হিসাবে জমা রাখার সময় একটা ঝামেলা হয়েছে'; -$messages['errorsaving'] = 'জমা করার সময় একটা ঝামেলা হয়েছে'; $messages['errormoving'] = 'চিঠিটা সরানো গেলো না'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'চিঠিটা ফেলানো গেলো না'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'আপনি কি আসলেই এই ঠিকানা(গুলো) ফেলো দিতে চান?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'আপনি কি আসলেই এই চিঠি(গুলো) ফেলো দিতে চান?'; $messages['deletefolderconfirm'] = 'আপনি কি আসলেই এই ফোল্ডার/মেইলবক্স ফেলো দিতে চান?'; $messages['purgefolderconfirm'] = 'আপনি কি আসলেই এই ফোল্ডার/মেইলবক্স এর সব চিঠি ফেলো দিতে চান?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'ফোল্ডার/মেইলবক্স ফেলে দেওয়া হচ্ছে'; $messages['foldermoving'] = 'ফোল্ডার/মেইলবক্স সরানো হচ্ছে'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'আপনি সবগুলো জিনিষ লেখেননি'; $messages['noemailwarning'] = 'একটি সঠিক ই-মেইল লিখুন'; $messages['nonamewarning'] = 'দয়া করে নামটি লিখুন'; @@ -83,92 +57,29 @@ $messages['nobodywarning'] = 'কোনো কিছু না লিখেই $messages['notsentwarning'] = 'চিঠি পাঠানো হয়নি। চিঠিটা কি বাতিল করে দেবেন?'; $messages['noldapserver'] = 'দয়া করে একটি এল্ডাপ সারভার বেছে নিন সার্চ করার জন্যে'; $messages['nosearchname'] = 'দয়া করে একজনের নাম অথবা ই-মেইল লিখুন'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr টা চিঠি পাওয়া গেছে'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'খুজে কিছু পাওয়া গেলোনা'; $messages['searching'] = 'খুজছি ....'; $messages['checking'] = 'দেখছি ...'; $messages['nospellerrors'] = 'No spelling errors found'; $messages['folderdeleted'] = 'ফোল্ডার/মেইলবক্স ঠিকঠাকমতো ফেলানো হয়ে গেছে'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'ঠিকঠাকমতো ফেলানো হয়ে গেছে'; $messages['converting'] = 'বিন্যাস (formatting) সরানো হচ্ছে ..'; $messages['messageopenerror'] = 'সারভার থেকে চিঠি আনা গেলোনা'; $messages['fileuploaderror'] = 'ফাইলটা সারভারে উঠানো গেলোনা'; $messages['filesizeerror'] = 'যে ফাইলটা উঠানোর চেষ্টা করলেন সেটি সর্বোচ্চ সাইজ $size এর থেকে বেশি'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'এইঠিকানাটা খালি পড়ার জন্যে'; $messages['errorsavingcontact'] = 'ঠিকানা জমা রাখা গেলোনা'; $messages['movingmessage'] = 'চিঠি সরানো হচ্ছে..'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'ঠিকঠাক মতো ফিরতি রশিদ পাঠানো হয়েছে'; $messages['errorsendingreceipt'] = 'রশিদ পাঠানো গেলোনা'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'আপনি এই পরিচিতি ফেলতে পারবেন না কারন এইটায় বর্তমানে আপনার একমাত্র পরিচিতি।'; $messages['forbiddencharacter'] = 'ফোল্ডার এর নামের মধ্যে নিষিদ্ধ অক্ষর আছে'; $messages['selectimportfile'] = 'একটা ফাইল বেছে নিন তোলার জন্য'; $messages['addresswriterror'] = 'বেছে নেওয়া ঠিকানার বইটিতে লেখাযায় না'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'আমদানি করা হচ্ছে। একটু অপেক্ষা করুন...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'ঠিকমতো $inserted ঠিকানা আমদানি করা গেছে, $skipped ঠিকানা আগের থেকেই ছিলো বলে তাদের টা যা ছিলো তাই রাখা হয়েছে:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'এই কাজটা করার অনুমতি নাই আপনার'; $messages['nofromaddress'] = 'বেছে নেওয়া যে পরিচিতিটা, তাতে ই-মেইল নেই'; $messages['editorwarning'] = 'যদি আপনি শুধু লেখার স্টাইলে যান তাহলে বর্তমানের কোনো বিন্যাস হারিয়ে যাবে'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/br/labels.inc b/program/localization/br/labels.inc index 8b609d6a8..d503d1f4c 100644 --- a/program/localization/br/labels.inc +++ b/program/localization/br/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Degemer mat war $product'; $labels['username'] = 'Anv an arveriad'; $labels['password'] = 'Ger-Tremen'; @@ -31,15 +29,12 @@ $labels['drafts'] = 'Brouilhedoù'; $labels['sent'] = 'Kaset'; $labels['trash'] = 'Pod-lastez'; $labels['junk'] = 'Stroboù'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Sujed'; $labels['from'] = 'Eus'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Da'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Cci'; $labels['replyto'] = 'Respont-da'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Deiz'; $labels['size'] = 'Ment'; $labels['priority'] = 'Kentwir'; @@ -55,7 +50,6 @@ $labels['copy'] = 'Eilañ'; $labels['move'] = 'Dilec\'hiañ'; $labels['moveto'] = 'Dilec\'hiañ da...'; $labels['download'] = 'Pellgargañ'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Diskouez'; $labels['showanyway'] = 'Diskouez anezhañ memestra'; $labels['filename'] = 'Anv ar restr'; @@ -109,12 +103,8 @@ $labels['replytomessage'] = 'Respont d\'ar kaser'; $labels['replytoallmessage'] = 'Respont d\'an holl'; $labels['replyall'] = 'Respont d\'an holl'; $labels['replylist'] = 'Respont d\'ar roll'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'Treuzkas ar c\'hemennad'; $labels['deletemessage'] = 'Dilec\'hiañ ar c\'hemennad er pod-lastez'; -$labels['movemessagetotrash'] = 'Move message to trash'; $labels['printmessage'] = 'Moulañ ar c\'hemennad-se'; $labels['previousmessage'] = 'Gwelout ar c"hemennad a-raok'; $labels['firstmessage'] = 'Gwelout ar c\'hemennad kentañ'; @@ -122,88 +112,30 @@ $labels['nextmessage'] = 'Gwelout ar c\'hemennad da heul'; $labels['lastmessage'] = 'Gwelout ar c\'hemennad diwezhañ'; $labels['backtolist'] = 'Distreiñ el listenn kemennadoù'; $labels['viewsource'] = 'Gwelout an tarzh'; -$labels['mark'] = 'Mark'; -$labels['markmessages'] = 'Mark messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'Diuzañ'; $labels['all'] = 'An holl'; $labels['none'] = 'Ebet'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Na lennet'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'Ebet'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Stummaat'; $labels['empty'] = 'Skarzhañ'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Implijadur pladenn'; $labels['unknown'] = 'Dianav'; $labels['unlimited'] = 'didermen'; $labels['quicksearch'] = 'Klask prim'; $labels['resetsearch'] = 'Aderaouekaat ar glask'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Kas ar c\'hemennad diouzhtu'; $labels['savemessage'] = 'Gwarediñ ar brouilhed-se'; $labels['addattachment'] = 'Stagañ ur restr'; $labels['charset'] = 'Engodadur'; $labels['editortype'] = 'Furmad aozer'; $labels['returnreceipt'] = 'Testeni degemer'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Gwiriañ ar reizhskrivadur'; $labels['resumeediting'] = 'Distreiñ en aozer'; $labels['revertto'] = 'Distreiñ en/r'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'Restroù staget'; $labels['upload'] = 'Stagañ'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Serriñ'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'Izel'; $labels['lowest'] = 'An izelañ'; $labels['normal'] = 'Reizh'; @@ -211,118 +143,31 @@ $labels['high'] = 'Uhel'; $labels['highest'] = 'An uhelañ'; $labels['nosubject'] = '(n\'eus ket sujed)'; $labels['showimages'] = 'Diskouez ar skeudennoù'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'testenn kriz'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'Anv da ziskouez'; $labels['firstname'] = 'Raganv'; $labels['surname'] = 'Anv'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'Postel elektronek'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Ouzhpennañ an darempred diuzet en hor c\'harned chomlec\'hioù'; $labels['editcontact'] = 'Cheñch an darempred'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Cheñch'; $labels['cancel'] = 'Nullañ'; $labels['save'] = 'Gwarediñ'; $labels['delete'] = 'Dilemel'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Krouiñ un darempred nevez'; $labels['deletecontact'] = 'Dilemel an darempredoù diuzet'; $labels['composeto'] = 'Skrivañ ur c\'hemennad ouzh'; $labels['contactsfromto'] = 'Darempredoù eus $from ouzh $to war $count'; $labels['print'] = 'Moulañ'; $labels['export'] = 'Ezporzhiañ'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Diskouez pajenn a-raok'; $labels['firstpage'] = 'Gwelout ar bajenn gentañ'; $labels['nextpage'] = 'Diskouez pajenn da heul'; $labels['lastpage'] = 'Gwelout ar bajenn diwezhañ'; -$labels['group'] = 'Group'; $labels['groups'] = 'Strolladoù'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Chomlec\'h personel'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Arventennoù evit'; -$labels['about'] = 'About'; $labels['preferences'] = 'Dibarzhioù'; $labels['userpreferences'] = 'Dibarzhioù implijer'; $labels['editpreferences'] = 'Cheñch dibarzhioù implijer'; @@ -332,150 +177,28 @@ $labels['newidentity'] = 'Identelezh nevez'; $labels['newitem'] = 'Elfenn nevez'; $labels['edititem'] = 'Cheñch an elfenn'; $labels['preferhtml'] = 'Diskouez en HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Kemennad en HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Diskouez berr deizioù'; $labels['setdefault'] = 'Arventennoù dre ziouer'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Yezh'; $labels['timezone'] = 'Gwerzhid-eur'; $labels['pagesize'] = 'Niver a linenn dre bajenn'; $labels['signature'] = 'Sinadur'; $labels['dstactive'] = 'Eur an hañv'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Sevel ur c\'hemennad er furmad HTML'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Sinadur HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Diskouez panel alberz'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'Gwarediñ emgefre brouilhedoù'; $labels['everynminutes'] = 'Bep $n munutoù'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'ebet'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Renkell'; $labels['folders'] = 'Teuliadoù'; $labels['foldername'] = 'Anv ar renkell'; $labels['subscribed'] = 'Koumananer'; -$labels['messagecount'] = 'Messages'; $labels['create'] = 'Krouiñ'; $labels['createfolder'] = 'Krouiñ ur renkell nevez'; $labels['managefolders'] = 'Aozañ ar renkelloù'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Rummañ dre'; $labels['sortasc'] = 'Rumm diagentad'; $labels['sortdesc'] = 'Rumm diskennad'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/br/messages.inc b/program/localization/br/messages.inc index 82ffdc097..7f724a24d 100644 --- a/program/localization/br/messages.inc +++ b/program/localization/br/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Degouezhet ez eus bet ur fazi !'; $messages['loginfailed'] = 'C\'hwitadenn war kennaskañ'; $messages['cookiesdisabled'] = 'N\'eus ket c\'hoant toupinoù Hor merder'; @@ -24,20 +23,10 @@ $messages['storageerror'] = 'C\'hwitadenn war kennaskañ ouzh an dafariad mirout $messages['servererror'] = 'Fazi dafariad !'; $messages['servererrormsg'] = 'Fazi dafariad : $msg'; $messages['dberror'] = 'Fazi stlennvon !'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Kemennadoù ebet er voest lizhiri'; $messages['loggedout'] = 'Digevreet hoc\'h eus mat. Kenavo !'; $messages['mailboxempty'] = 'Boest lizhiri dileun'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'O kargañ...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'O kargañ roadennoù...'; $messages['checkingmail'] = 'O Gwiriañ kemennadoù nevez...'; $messages['sendingmessage'] = 'O kas ar c\'hemennad...'; @@ -47,128 +36,38 @@ $messages['messagesaved'] = 'Kemennad gwaredet dindan Brouilhedoù'; $messages['successfullysaved'] = 'Gwarediñ graet'; $messages['addedsuccessfully'] = 'Darempred ouzhpennet er c\'harned chomlec\'hioù'; $messages['contactexists'] = 'Bout a ra un darempred gant memes postel elektronek'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Evit gwarantiñ hoc\'h buhez prevez, stanket eo bet skeudennoù pell er c\'hemennad-se.'; $messages['encryptedmessage'] = 'Rineget eo ar c\'hemennad, ha ne c\'hall ket bezañ diskouez. Ma Digarezit !'; $messages['nocontactsfound'] = 'N\'eo ket bet kavet darempred ebet'; $messages['contactnotfound'] = 'N\'eo ket bet kavet an darempred goulennet'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'N\'eo ket bet kaset ar c\'hemennad'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Fazi en deus graet reuz en hoc\'h gwarediñ'; $messages['errormoving'] = 'N\'eus ket tu da zilec\'hiañ ar c\'hemennad'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'N\'eus ket tu da zilemel ar c\'hemennad'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'C\'hoant hoc\'h eus da zilemel an darempred(où) diuzet ?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'C\'hoant hoc\'h eus da zilemel ar c\'hemennad(où) diuzet ?'; $messages['deletefolderconfirm'] = 'C\'hoant hoc\'h eus da skarzhañ ar renkell-se ?'; $messages['purgefolderconfirm'] = 'C\'hoant hoc\'h eus da skarzhañ an holl kemennad eus ar renkell-se ?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'N\'eo ket leuniet ar furmskrid penn-da-benn'; $messages['noemailwarning'] = 'Termenit ur postel elektronek mat mar plij ganeoc\'h'; $messages['nonamewarning'] = 'Termenit un anv mar plij ganeoc\'h'; $messages['nopagesizewarning'] = 'Termenit ur ment pajenn mar plij ganeoc\'h'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Ouzhpennit ur resever da nebeutañ mar plij ganeoc\'h'; $messages['nosubjectwarning'] = 'Dileun eo ar maezienn « Sujed » . C\'hoant hoc\'h eus da leuniañ anezhiñ diouzhtu ?'; $messages['nobodywarning'] = 'Kas ar c\'hemennad hep testenn ?'; $messages['notsentwarning'] = 'N\'eo ket bet kaset ar c\'hemennad. C\'hoant hoc\'h eus dilezel ar c\'hemennad-se ?'; $messages['noldapserver'] = 'Dizuit ur servijer LDAP evit ar glask'; $messages['nosearchname'] = 'Skrivit un anv darempred pe ur postel elektronek'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr kemennad kavet'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Disoc\'h ebet gant ar glask'; $messages['searching'] = 'O klask...'; $messages['checking'] = 'O gwiriañ...'; $messages['nospellerrors'] = 'Fazi ebet kavet'; $messages['folderdeleted'] = 'Renkell skarzhet'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Dilemet mat'; $messages['converting'] = 'O tilemel furmaozañ...'; $messages['messageopenerror'] = 'N\'us ket tu da gargañ ar c\'hemennad adalek ar servijer'; $messages['fileuploaderror'] = 'Fazi o treuzkas ar restr'; $messages['filesizeerror'] = 'Re vras eo ar restr treuzkaset $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Lenn hepken eo an tarzh chomlec\'h se'; $messages['errorsavingcontact'] = 'Ne c\'haller ket gwarediñ chomlec\'h darempred'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/bs_BA/labels.inc b/program/localization/bs_BA/labels.inc index fd3495af0..df58d8d60 100644 --- a/program/localization/bs_BA/labels.inc +++ b/program/localization/bs_BA/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Dobrodošli u $product'; $labels['username'] = 'Korisnik'; $labels['password'] = 'Šifra'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Modifikacija pretrage'; $labels['msgtext'] = 'Cijela poruka'; $labels['body'] = 'Tijelo'; $labels['type'] = 'Vrsta'; +$labels['namex'] = 'Ime'; $labels['openinextwin'] = 'Otvori u novom prozoru'; $labels['emlsave'] = 'Preuzmi (.eml)'; $labels['changeformattext'] = 'Prikaži kao obični tekst'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Obriši pretragu'; $labels['import'] = 'Uvoz'; $labels['importcontacts'] = 'Uvoz kontakata'; $labels['importfromfile'] = 'Uvoz iz datoteke:'; -$labels['importtarget'] = 'Dodaj novi kontakt u adresar:'; +$labels['importtarget'] = 'Dodaj kontakte u'; $labels['importreplace'] = 'Zamijeni cijeli adresar'; +$labels['importgroups'] = 'Uvezi grupne zadatke'; +$labels['importgroupsall'] = 'Sve (kreiraj grupe ako je potrebno)'; +$labels['importgroupsexisting'] = 'Samo za postojeće grupe'; $labels['importdesc'] = 'Kontakte možete dodati iz postojećeg adresara.
Trenutno podržavamo uvoz adresara u formatima vCard ili CSV (comma-separated).'; $labels['done'] = 'Završeno'; $labels['settingsfor'] = 'Podešavanja za'; diff --git a/program/localization/bs_BA/messages.inc b/program/localization/bs_BA/messages.inc index 711cdfabd..3424013c5 100644 --- a/program/localization/bs_BA/messages.inc +++ b/program/localization/bs_BA/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Desila se greška!'; $messages['loginfailed'] = 'Prijava nije uspjela.'; $messages['cookiesdisabled'] = 'Vaš preglednik ne prihvata kolačiće.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Traženi kontakt nije pronađen.'; $messages['contactsearchonly'] = 'Unesite neki pojam za pretragu'; $messages['sendingfailed'] = 'Greška pri slanju poruke.'; $messages['senttooquickly'] = 'Molimo sačekajte $sec sekundi prije slanja ove poruke.'; -$messages['errorsavingsent'] = 'Desila se greška pri snimanju poslane poruke.'; -$messages['errorsaving'] = 'Desila se greška pri snimanju.'; $messages['errormoving'] = 'Nije moguće premjestiti poruke.'; $messages['errorcopying'] = 'Nije moguće kopirati poruke.'; $messages['errordeleting'] = 'Nije moguće obrisati poruke.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP greška: $msg'; $messages['emailformaterror'] = 'Netačna email adresa: $email'; $messages['toomanyrecipients'] = 'Previše primaoca. Smanjite broj primaoca na $max.'; $messages['maxgroupmembersreached'] = 'Broj članova grupe prelazi maksimum od $max.'; -$messages['internalerror'] = 'Dogodila se interna greška. Molimo vas da pokušate ponovo.'; $messages['contactdelerror'] = 'Kontakti ne mogu biti obrisani.'; $messages['contactdeleted'] = 'Kontakti su uspješno obrisani.'; $messages['contactrestoreerror'] = 'Nije moguće vratiti obrisane kontakte.'; diff --git a/program/localization/ca_ES/labels.inc b/program/localization/ca_ES/labels.inc index 34dfb4a9d..065431fbc 100644 --- a/program/localization/ca_ES/labels.inc +++ b/program/localization/ca_ES/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Benvingut a $product'; $labels['username'] = 'Nom d\'usuari'; $labels['password'] = 'Contrasenya'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Esborranys'; $labels['sent'] = 'Enviats'; $labels['trash'] = 'Paperera'; $labels['junk'] = 'Correu brossa'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Mostra els noms reals a les carpetes especials'; $labels['subject'] = 'Assumpte'; $labels['from'] = 'Remitent'; $labels['sender'] = 'Remitent'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Mode de vista de llista'; $labels['folderactions'] = 'Accions de carpeta'; $labels['compact'] = 'Compacta'; $labels['empty'] = 'Buida'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Importa missatges'; $labels['quota'] = 'Ús del disc'; $labels['unknown'] = 'desconegut'; $labels['unlimited'] = 'il·limitat'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Neteja cerca'; $labels['searchmod'] = 'Cerca modificadors'; $labels['msgtext'] = 'Missatge sencer'; $labels['body'] = 'Cos'; -$labels['type'] = 'Type'; +$labels['type'] = 'tipus:'; +$labels['namex'] = 'Nom'; $labels['openinextwin'] = 'Obre a una nova finestra'; $labels['emlsave'] = 'Descarrega (.eml)'; $labels['changeformattext'] = 'Mostra en format de text net'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'Mostra la pàgina següent'; $labels['lastpage'] = 'Mostra la darrera pàgina'; $labels['group'] = 'Grup'; $labels['groups'] = 'Grups'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Llista els membres del grup'; $labels['personaladrbook'] = 'Llibreta d\'adreces'; $labels['searchsave'] = 'Desa la cerca'; $labels['searchdelete'] = 'Suprimeix la cerca'; $labels['import'] = 'Importa'; $labels['importcontacts'] = 'Importa contactes'; $labels['importfromfile'] = 'Importa des d\'un fitxer:'; -$labels['importtarget'] = 'Afegeix contactes nous a la llibreta d\'adreces:'; $labels['importreplace'] = 'Reemplaça la llibreta d\'adreçes sencera'; $labels['importdesc'] = 'Podeu carregar contactes des d\'una llibreta de direccions.
Actualment donem suport a la importació d\'adreces des de fitxers de tipus vCard o CSV (valors separats per comes).'; $labels['done'] = 'Fet'; @@ -352,7 +350,7 @@ $labels['htmleditor'] = 'Escriu missatges en HTML'; $labels['htmlonreply'] = 'només en resposta a missatges en HTML'; $labels['htmlonreplyandforward'] = 'en reenviament o resposta a missatge HTML'; $labels['htmlsignature'] = 'Signatura en HTML'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'Mostra l\'adreça electrònica amb el nom'; $labels['previewpane'] = 'Mostra el panell de previsualització'; $labels['skin'] = 'Aparença d\'interfície'; $labels['logoutclear'] = 'Buida la paperera al tancar la sessió'; @@ -422,7 +420,7 @@ $labels['spellcheckignorenums'] = 'Ignora paraules amb números'; $labels['spellcheckignorecaps'] = 'Ignora paraules amb lletres capitalitzades'; $labels['addtodict'] = 'Afegeix al diccionari'; $labels['mailtoprotohandler'] = 'Registra controlador de protocol pels enllaços mailto:'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'Gestiona les finestres emergents com si fossin finestres normals'; $labels['forwardmode'] = 'Reenviament de missatges'; $labels['inline'] = 'en línia'; $labels['asattachment'] = 'com adjunt'; diff --git a/program/localization/ca_ES/messages.inc b/program/localization/ca_ES/messages.inc index 3085fd4fc..06a72cb50 100644 --- a/program/localization/ca_ES/messages.inc +++ b/program/localization/ca_ES/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Hi ha hagut un error!'; $messages['loginfailed'] = 'L\'accés ha fallat.'; $messages['cookiesdisabled'] = 'El vostre navegador no accepta cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'No s\'ha trobat el contacte sol·licitat.'; $messages['contactsearchonly'] = 'Introduïu termes de cerca per trobar contactes'; $messages['sendingfailed'] = 'Error enviant el missatge.'; $messages['senttooquickly'] = 'Si us plau, espereu $sec segon(s) abans d\'enviar aquest missatge.'; -$messages['errorsavingsent'] = 'Hi ha hagut un error mentre es desava el missatge enviat.'; -$messages['errorsaving'] = 'Hi ha hagut un error mentre s\'estava desant.'; $messages['errormoving'] = 'No s\'ha pogut moure el(s) missatge(s).'; $messages['errorcopying'] = 'No s\'ha pogut copiar el(s) missatge(s).'; $messages['errordeleting'] = 'No s\'ha pogut suprimir el(s) missatge(s).'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Error SMTP: $msg'; $messages['emailformaterror'] = 'Adreça de correu no vàlida: $email'; $messages['toomanyrecipients'] = 'Massa destinataris. Reduïu el nombre de destinataris a $max.'; $messages['maxgroupmembersreached'] = 'El nombre de membres del grup excedeix el màxim de $max.'; -$messages['internalerror'] = 'Hi ha hagut un error intern. Si us plau torneu-ho a provar.'; $messages['contactdelerror'] = 'No s\'han pogut suprimir el(s) contacte(s).'; $messages['contactdeleted'] = 'Contacte(s) suprimit(s) correctament.'; $messages['contactrestoreerror'] = 'No s\'ha pogut restaurar el(s) contacte(s) suprimit(s).'; diff --git a/program/localization/cs_CZ/labels.inc b/program/localization/cs_CZ/labels.inc index c6903165a..d887d8d0a 100644 --- a/program/localization/cs_CZ/labels.inc +++ b/program/localization/cs_CZ/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Vítejte v $product'; $labels['username'] = 'Uživatel'; $labels['password'] = 'Heslo'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Zrušit vyhledávání'; $labels['searchmod'] = 'Parametry hledání'; $labels['msgtext'] = 'Celá zpráva'; $labels['body'] = 'Tělo'; -$labels['type'] = 'Type'; +$labels['type'] = 'Typ'; +$labels['namex'] = 'Jméno'; $labels['openinextwin'] = 'Otevřít v novém okně'; $labels['emlsave'] = 'Stáhnout (.eml)'; $labels['changeformattext'] = 'Zobrazit v textovém formátu'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Smazat hledání'; $labels['import'] = 'Import'; $labels['importcontacts'] = 'Importovat kontakty'; $labels['importfromfile'] = 'Importovat ze souboru'; -$labels['importtarget'] = 'Přidat nové kontakty do seznamu kontaktů:'; +$labels['importtarget'] = 'Přidat kontakty k'; $labels['importreplace'] = 'Nahradit celý seznam kontaktů'; +$labels['importgroups'] = 'Importovat přiřazení do skupin'; +$labels['importgroupsall'] = 'Vše (vytvořit skupiny v případě potřeby)'; +$labels['importgroupsexisting'] = 'Pouze pro existující skupiny'; $labels['importdesc'] = 'Můžete nahrát kontakty z existujícího adresáře kontaktů.
Momentálně podporujeme kontakty ve formátu vCard nebo CSV (comma-separated).'; $labels['done'] = 'Hotovo'; $labels['settingsfor'] = 'Nastavení pro'; diff --git a/program/localization/cs_CZ/messages.inc b/program/localization/cs_CZ/messages.inc index c4a928f8e..0bd6b0e82 100644 --- a/program/localization/cs_CZ/messages.inc +++ b/program/localization/cs_CZ/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Došlo k chybě!'; $messages['loginfailed'] = 'Přihlášení selhalo'; $messages['cookiesdisabled'] = 'Váš prohlížeč nepodporuje cookies, které jsou pro přihlášení nezbytné'; @@ -100,13 +99,16 @@ $messages['converting'] = 'Odstraňuji formátování ze zprávy...'; $messages['messageopenerror'] = 'Nemohu načíst zprávu ze serveru'; $messages['fileuploaderror'] = 'Nahrávání souboru selhalo'; $messages['filesizeerror'] = 'Soubor přesáhl maximální velikost $size'; -$messages['copysuccess'] = 'Úspěšně zkopírováno $nr adres'; -$messages['copyerror'] = 'Nemohu zkopírovat žádnou adresu'; +$messages['copysuccess'] = 'Úspěšně zkopírováno $nr kontaktů.'; +$messages['movesuccess'] = 'Úspěšně přesunuto $nr kontaktů.'; +$messages['copyerror'] = 'Kontakty nelze kopírovat.'; +$messages['moveerror'] = 'Kontakty nelze přesunout.'; $messages['sourceisreadonly'] = 'Tento zdroj adres je pouze pro čtení'; $messages['errorsavingcontact'] = 'Nemohu uložit adresu kontaktu'; $messages['movingmessage'] = 'Přesouvám zprávu...'; $messages['copyingmessage'] = 'Kopíruji zprávu...'; $messages['copyingcontact'] = 'Kopíruji kontakty...'; +$messages['movingcontact'] = 'Přesouvání kontaktů()...'; $messages['deletingmessage'] = 'Odstraňuji zprávu...'; $messages['markingmessage'] = 'Označuji zprávu...'; $messages['addingmember'] = 'Přidávám kontakty do skupiny...'; @@ -140,7 +142,7 @@ $messages['smtperror'] = 'Chyba SMTP: $msg'; $messages['emailformaterror'] = 'Neplatná e-mailová adresa: $email'; $messages['toomanyrecipients'] = 'Příliš mnoho příjemců. Změňte počet příjemců na $max.'; $messages['maxgroupmembersreached'] = 'Počet členských skupin dosáhl maximum z $max'; -$messages['internalerror'] = 'Došlo k interní chybě. Zkuste to znovu'; +$messages['internalerror'] = 'Došlo k interní chybě. Zkuste to prosím znovu.'; $messages['contactdelerror'] = 'Kontakty nelze odstranit'; $messages['contactdeleted'] = 'Kontakty byly odstraněny'; $messages['contactrestoreerror'] = 'Nelze obnovit smazané kontakty'; diff --git a/program/localization/cy_GB/labels.inc b/program/localization/cy_GB/labels.inc index 5249af462..37ee5bbc1 100644 --- a/program/localization/cy_GB/labels.inc +++ b/program/localization/cy_GB/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Croeso i $product'; $labels['username'] = 'Enw defnyddiwr'; $labels['password'] = 'Cyfrinair'; diff --git a/program/localization/cy_GB/messages.inc b/program/localization/cy_GB/messages.inc index 130ec2a2c..5dd8230c7 100644 --- a/program/localization/cy_GB/messages.inc +++ b/program/localization/cy_GB/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Fe gafwyd gwall!'; $messages['loginfailed'] = 'Methwyd a\'ch mewngofnodi'; $messages['cookiesdisabled'] = 'Nid yw eich porwr yn derbyn cwcis'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Ni gafwyd hyd i\'r cysylltiad gofynnwyd amdano'; $messages['contactsearchonly'] = 'Rhowch dermau chwilio i ganfod cysylltiadau'; $messages['sendingfailed'] = 'Methwyd danfon y neges'; $messages['senttooquickly'] = 'Arhoswch $sec eiliad cyn danfon y neges'; -$messages['errorsavingsent'] = 'Fe gafwyd gwall wrth cadw\'r neges ddanfonwyd'; -$messages['errorsaving'] = 'Fe gafwyd gwall wrth gadw'; $messages['errormoving'] = 'Methwyd symud y neges'; $messages['errorcopying'] = 'Methwyd copïo\'r neges(euon)'; $messages['errordeleting'] = 'Methwyd dileu y neges'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Gwall SMTP: $msg'; $messages['emailformaterror'] = 'Cyfeiriad e-bost anghywir: $email'; $messages['toomanyrecipients'] = 'Gormod o dderbynnwyr. Lleihewch y nifer i $max'; $messages['maxgroupmembersreached'] = 'Mae nifer o aelodau\'r grŵp yn fwy na\'r uchafswm o $max'; -$messages['internalerror'] = 'Fe gafwyd gwall mewnol. Rhowch gynnig arni eto.'; $messages['contactdelerror'] = 'Methwyd dileu cyswllt'; $messages['contactdeleted'] = 'Cyswllt wedi ei ddileu yn llwyddiannus'; $messages['contactrestoreerror'] = 'Methwyd adfer y cyswllt/cysylltiadau a ddilëwyd'; diff --git a/program/localization/da_DK/labels.inc b/program/localization/da_DK/labels.inc index 2bf9fa0a5..52de86d92 100644 --- a/program/localization/da_DK/labels.inc +++ b/program/localization/da_DK/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brugernavn'; $labels['password'] = 'Adgangskode'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Kladder'; $labels['sent'] = 'Sendt post'; $labels['trash'] = 'Papirkurv'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Vis rigtige navne for specielle mapper'; $labels['subject'] = 'Emne'; $labels['from'] = 'Afsender'; $labels['sender'] = 'Afsender'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Listevisningsmode'; $labels['folderactions'] = 'Mappehandlinger...'; $labels['compact'] = 'Ryd op'; $labels['empty'] = 'Tøm'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Importer beskeder'; $labels['quota'] = 'Diskforbrug'; $labels['unknown'] = 'ukendt'; $labels['unlimited'] = 'ubegrænset'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Søgeparametre'; $labels['msgtext'] = 'Hele beskeden'; $labels['body'] = 'Body'; $labels['type'] = 'Type'; +$labels['namex'] = 'Navn'; $labels['openinextwin'] = 'Åbn i nyt vindue'; $labels['emlsave'] = 'Download (.eml)'; $labels['changeformattext'] = 'Vis i ren tekst format'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'Vis næste side'; $labels['lastpage'] = 'Vis sidste side'; $labels['group'] = 'Gruppe'; $labels['groups'] = 'Grupper'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Vis gruppemedlemmer'; $labels['personaladrbook'] = 'Personlige adresser'; $labels['searchsave'] = 'Gem søgning'; $labels['searchdelete'] = 'Slet søgning'; $labels['import'] = 'Importér'; $labels['importcontacts'] = 'Importér kontakter'; $labels['importfromfile'] = 'Importér fra fil:'; -$labels['importtarget'] = 'Tilføj nye kontakter til adressebogen:'; $labels['importreplace'] = 'Overskriv hele adressebogen'; $labels['importdesc'] = 'Du kan uploade kontakter fra en eksisterende adressebog.
I øjeblikket supportere vi import af adresser fra vCard og CSV (komma-separeret) data format.'; $labels['done'] = 'Færdig'; diff --git a/program/localization/da_DK/messages.inc b/program/localization/da_DK/messages.inc index 79d9c4f7f..c12236eef 100644 --- a/program/localization/da_DK/messages.inc +++ b/program/localization/da_DK/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Der opstod en fejl!'; $messages['loginfailed'] = 'Det lykkedes ikke at logge på.'; $messages['cookiesdisabled'] = 'Din browser accepterer ikke cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Den søgte kontakt blev ikke fundet.'; $messages['contactsearchonly'] = 'Indtast søgeord for at finde kontakter.'; $messages['sendingfailed'] = 'Beskeden kunne ikke sendes.'; $messages['senttooquickly'] = 'Vent venligst $sec sekunder før du sender denne besked.'; -$messages['errorsavingsent'] = 'Der opstod en fejl da den sendte besked blev gemt.'; -$messages['errorsaving'] = 'Der opstod en fejl under gemning.'; $messages['errormoving'] = 'Beskeden kunne ikke flyttes.'; $messages['errorcopying'] = 'Beskeden kunne ikke kopieres.'; $messages['errordeleting'] = 'Beskeden kunne ikke slettes.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP fejl: $msg'; $messages['emailformaterror'] = 'Ugyldig e-mailadresse: $email'; $messages['toomanyrecipients'] = 'For mange modtagere. Reducer antallet af modtagere til $max.'; $messages['maxgroupmembersreached'] = 'Antallet af gruppemedlemmer overstiger maksimum på $max.'; -$messages['internalerror'] = 'Der opstod en intern fejl - prøv venligst igen.'; $messages['contactdelerror'] = 'Kunne ikke slette kontakt(er).'; $messages['contactdeleted'] = 'Kontakt(er) slettet.'; $messages['contactrestoreerror'] = 'Kunne ikke gendanne slettede kontakt(er).'; diff --git a/program/localization/de_CH/labels.inc b/program/localization/de_CH/labels.inc index c07443d4b..e5fe1ec66 100644 --- a/program/localization/de_CH/labels.inc +++ b/program/localization/de_CH/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; $labels['password'] = 'Passwort'; diff --git a/program/localization/de_CH/messages.inc b/program/localization/de_CH/messages.inc index a46b6b070..4e5ccaa46 100644 --- a/program/localization/de_CH/messages.inc +++ b/program/localization/de_CH/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Fehlermeldung'; $messages['loginfailed'] = 'Login fehlgeschlagen'; $messages['cookiesdisabled'] = 'Ihr Browser akzeptiert keine Cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Die gewählte Adresse wurde nicht gefunden'; $messages['contactsearchonly'] = 'Geben Sie einen Suchbegriff ein, um Kontakte zu finden'; $messages['sendingfailed'] = 'Versand der Nachricht fehlgeschlagen'; $messages['senttooquickly'] = 'Bitte warten Sie $sec Sekunde(n) vor dem Senden dieser Nachricht'; -$messages['errorsavingsent'] = 'Beim Speichern der gesendeten Nachricht ist ein Fehler aufgetreten.'; -$messages['errorsaving'] = 'Beim Speichern ist ein Fehler aufgetreten'; $messages['errormoving'] = 'Nachricht(en) konnte(n) nicht verschoben werden.'; $messages['errorcopying'] = 'Nachticht(en) konnte(n) nicht kopiert werden.'; $messages['errordeleting'] = 'Nachricht(en) konnte(n) nicht gelöscht werden.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP Fehler: $msg'; $messages['emailformaterror'] = 'Ungültige E-Mail-Adresse: $email'; $messages['toomanyrecipients'] = 'Zuviele Empfänger angegeben. Reduzieren Sie die Empfängeradressen auf $max.'; $messages['maxgroupmembersreached'] = 'Die Anzahl Adressen in dieser Gruppe überschreitet das Maximum von $max.'; -$messages['internalerror'] = 'Ein interner Fehler ist aufgetreten. Bitte versuchen Sie den Vorgang erneut.'; $messages['contactdelerror'] = 'Fehler beim Löschen.'; $messages['contactdeleted'] = 'Kontakt(e) erfolgreich gelöscht.'; $messages['contactrestoreerror'] = 'Die gelöschten Kontakte konnten nicht wiederhergestellt werden.'; diff --git a/program/localization/de_DE/labels.inc b/program/localization/de_DE/labels.inc index 4da611580..e3f4652cc 100644 --- a/program/localization/de_DE/labels.inc +++ b/program/localization/de_DE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Willkommen bei $product'; $labels['username'] = 'Benutzername'; $labels['password'] = 'Passwort'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Suche zurücksetzen'; $labels['searchmod'] = 'Suchkriterien ändern'; $labels['msgtext'] = 'Nachricht'; $labels['body'] = 'Inhalt'; -$labels['type'] = 'Type'; +$labels['type'] = 'Typ'; +$labels['namex'] = 'Name'; $labels['openinextwin'] = 'In neuem Fenster öffnen'; $labels['emlsave'] = 'Lokal speichern (.eml)'; $labels['changeformattext'] = 'Als reiner Text anzeigen'; @@ -310,15 +309,16 @@ $labels['nextpage'] = 'Nächste Seite'; $labels['lastpage'] = 'Letzte Seite'; $labels['group'] = 'Gruppe'; $labels['groups'] = 'Gruppen'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Gruppenmitglieder auflisten'; $labels['personaladrbook'] = 'Persönliches Adressbuch'; $labels['searchsave'] = 'Suchergebnisse speichern'; $labels['searchdelete'] = 'Suchergebnisse löschen'; $labels['import'] = 'Importieren'; $labels['importcontacts'] = 'Kontakte importieren'; $labels['importfromfile'] = 'Import aus Datei:'; -$labels['importtarget'] = 'Einen neuen Kontakt hinzufügen:'; +$labels['importtarget'] = 'Kontakte hinzufügen zu'; $labels['importreplace'] = 'Bestehendes Adressbuch komplett ersetzen'; +$labels['importgroupsexisting'] = 'Nur für existierende Gruppen'; $labels['importdesc'] = 'Sie können Kontakte von einem vorhandenen Adressbuch hochladen.
Zur Zeit wird der Import von Adressen im vCard oder CSVFormat unterstützt.'; $labels['done'] = 'Fertig'; $labels['settingsfor'] = 'Einstellungen für'; diff --git a/program/localization/de_DE/messages.inc b/program/localization/de_DE/messages.inc index 815fac4c3..fbc21521a 100644 --- a/program/localization/de_DE/messages.inc +++ b/program/localization/de_DE/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ein Fehler ist aufgetreten!'; $messages['loginfailed'] = 'Die Anmeldung ist fehlgeschlagen.'; $messages['cookiesdisabled'] = 'Ihr Browser akzeptiert keine Cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Der angeforderte Kontakt wurde nicht gefunden.'; $messages['contactsearchonly'] = 'Geben Sie einen Suchbegriff ein, um Kontakte zu finden.'; $messages['sendingfailed'] = 'Versenden der Nachricht fehlgeschlagen.'; $messages['senttooquickly'] = 'Bitte warten Sie $sec Sekunde(n) vor dem Senden dieser Nachricht.'; -$messages['errorsavingsent'] = 'Ein Fehler ist beim Speichern der gesendeten Nachricht aufgetreten.'; -$messages['errorsaving'] = 'Beim Speichern ist ein Fehler aufgetreten.'; $messages['errormoving'] = 'Nachricht(en) konnte(n) nicht verschoben werden.'; $messages['errorcopying'] = 'Nachticht(en) konnte(n) nicht kopiert werden.'; $messages['errordeleting'] = 'Nachricht(en) konnte(n) nicht gelöscht werden.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP Fehler: $msg'; $messages['emailformaterror'] = 'Ungültige E-Mail-Adresse: $email'; $messages['toomanyrecipients'] = 'Zuviele Empfänger. Reduzieren Sie die Anzahl Empfängeradressen auf $max.'; $messages['maxgroupmembersreached'] = 'Die Anzahl Adressen in dieser Gruppe überschreitet das Maximum von $max.'; -$messages['internalerror'] = 'Ein interner Fehler ist aufgetreten. Bitte versuchen es erneut.'; $messages['contactdelerror'] = 'Fehler beim Löschen.'; $messages['contactdeleted'] = 'Kontakt(e) erfolgreich gelöscht.'; $messages['contactrestoreerror'] = 'Konnte die gelöschten Kontakte nicht wiederherstellen.'; diff --git a/program/localization/el_GR/labels.inc b/program/localization/el_GR/labels.inc index d17041ccb..2e3ab405c 100644 --- a/program/localization/el_GR/labels.inc +++ b/program/localization/el_GR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Καλώς ήρθατε στο $product'; $labels['username'] = 'Όνομα Χρήστη'; $labels['password'] = 'Κωδικός Πρόσβασης'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Επαναφορά Αναζήτησης'; $labels['searchmod'] = 'Aλλαγή αναζήτησης'; $labels['msgtext'] = 'Σε όλο το μήνυμα'; $labels['body'] = 'Σώμα'; -$labels['type'] = 'Type'; +$labels['type'] = 'Τυπος'; +$labels['namex'] = 'όνομα'; $labels['openinextwin'] = 'Άνοιγμα σε νέο παράθυρο'; $labels['emlsave'] = 'Λήψη αρχείου (.eml)'; $labels['changeformattext'] = 'Εμφάνιση σε μορφή απλού κειμένου'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'Εμφάνιση επόμενης σελίδας'; $labels['lastpage'] = 'Εμφάνιση της τελευταίας σελίδας'; $labels['group'] = 'Ομάδα'; $labels['groups'] = 'Ομάδες'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Μέλη της ομάδας λίστας'; $labels['personaladrbook'] = 'Προσωπικές Διυθύνσεις'; $labels['searchsave'] = 'Αποθήκευση αναζήτησης'; $labels['searchdelete'] = 'Διαγραφή αποθηκευμένης αναζήτησης'; $labels['import'] = 'Εισαγωγή'; $labels['importcontacts'] = 'Εισαγωγή επαφών'; $labels['importfromfile'] = 'Εισαγωγή από το αρχείο:'; -$labels['importtarget'] = 'Προσθήκη νέων επαφών στο βιβλίο διευθύνσεων:'; $labels['importreplace'] = 'Αντικατάσταση όλου του βιβλίου διευθύνσεων'; $labels['importdesc'] = 'Μπορείτε να ανεβάσετε επαφές από ένα υπάρχον βιβλίο διευθύνσεων.
Υποστηρίζεται η εισαγωγή διευθύνσεων από αρχεία τύπου vCard ή CSV (διαχωρισμένα με κόμμα).'; $labels['done'] = 'Ολοκληρώθηκε'; diff --git a/program/localization/el_GR/messages.inc b/program/localization/el_GR/messages.inc index eba82b569..be6639d68 100644 --- a/program/localization/el_GR/messages.inc +++ b/program/localization/el_GR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Έχει προκύψει κάποιο σφάλμα!'; $messages['loginfailed'] = 'Είσοδος απέτυχε'; $messages['cookiesdisabled'] = 'Ο περιηγητής σας (browser) δεν αποδέχεται cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Η ζητούμενη επαφή δεν βρέθ $messages['contactsearchonly'] = 'Εισάγετε κάποιους όρους προς αναζήτηση'; $messages['sendingfailed'] = 'Αποστολή μηνύματος απέτυχε'; $messages['senttooquickly'] = 'Παρακαλώ περιμένετε $sec δευτερόλεπτα, πριν στείλετε το μήνυμα'; -$messages['errorsavingsent'] = 'Παρουσιάστηκε σφάλμα, κατά την αποθήκευση του απεσταλμένου μηνύματος'; -$messages['errorsaving'] = 'Παρουσιάστηκε σφάλμα κατά την αποθήκευση'; $messages['errormoving'] = 'Το μήνυμα δε μπορούσε να μετακινηθεί'; $messages['errorcopying'] = 'Δεν είναι δυνατή η αντιγραφή του μηνύματος/των'; $messages['errordeleting'] = 'Το μήνυμα δε μπορούσε να διαγραφεί'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Σφάλμα SMTP: $msg'; $messages['emailformaterror'] = 'Λανθασμένη διεύθνση email: $email'; $messages['toomanyrecipients'] = 'Μεγάλο πλήθος αποδεκτών. Μειώστε τον αριθμό των αποδεκτών σε $max.'; $messages['maxgroupmembersreached'] = 'Ο αριθμός των μελών της ομάδας υπερβαίνει τον μέγιστο των $max μελών.'; -$messages['internalerror'] = 'Προέκυψε ένα εσωτερικό σφάλμα. Παρακαλώ δοκιμάστε πάλι.'; $messages['contactdelerror'] = 'Δεν είναι δυνατή η διαγραφή της επαφής/ων'; $messages['contactdeleted'] = 'Η επαφή/ές διαγράφηκαν με επιτυχία.'; $messages['contactrestoreerror'] = 'Οι διαγραφημενη επαφη(ες) δεν μπορουν να επαναφερθουν.'; diff --git a/program/localization/en_GB/labels.inc b/program/localization/en_GB/labels.inc index f86f3c319..c7778e955 100644 --- a/program/localization/en_GB/labels.inc +++ b/program/localization/en_GB/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Username'; $labels['password'] = 'Password'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'Drafts'; $labels['sent'] = 'Sent'; $labels['trash'] = 'Deleted Items'; $labels['junk'] = 'Junk'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Subject'; $labels['from'] = 'From'; -$labels['sender'] = 'Sender'; $labels['to'] = 'To'; $labels['cc'] = 'Copy'; $labels['bcc'] = 'Bcc'; @@ -55,7 +51,6 @@ $labels['copy'] = 'Copy'; $labels['move'] = 'Move'; $labels['moveto'] = 'Move to...'; $labels['download'] = 'Download'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Show'; $labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'File name'; @@ -139,7 +134,6 @@ $labels['currpage'] = 'Current page'; $labels['unread'] = 'Unread'; $labels['flagged'] = 'Flagged'; $labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Deleted'; $labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Invert'; @@ -168,7 +162,6 @@ $labels['listmode'] = 'List view mode'; $labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Compact'; $labels['empty'] = 'Empty'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Disk usage'; $labels['unknown'] = 'unknown'; $labels['unlimited'] = 'unlimited'; @@ -176,12 +169,8 @@ $labels['quicksearch'] = 'Quick search'; $labels['resetsearch'] = 'Reset search'; $labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Open in new window'; $labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Edit as new'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send now'; @@ -297,8 +286,6 @@ $labels['composeto'] = 'Compose mail to'; $labels['contactsfromto'] = 'Contacts $from to $to of $count'; $labels['print'] = 'Print'; $labels['export'] = 'Export'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Export contacts in vCard format'; $labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'Rename group'; @@ -310,14 +297,12 @@ $labels['nextpage'] = 'Show next set'; $labels['lastpage'] = 'Show last set'; $labels['group'] = 'Group'; $labels['groups'] = 'Groups'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personal Addresses'; $labels['searchsave'] = 'Save search'; $labels['searchdelete'] = 'Delete search'; $labels['import'] = 'Import'; $labels['importcontacts'] = 'Import contacts'; $labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Replace the entire address book'; $labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Done'; @@ -334,8 +319,6 @@ $labels['edititem'] = 'Edit item'; $labels['preferhtml'] = 'Display HTML'; $labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Message'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Date format'; $labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Pretty dates'; @@ -352,7 +335,6 @@ $labels['htmleditor'] = 'Compose HTML messages'; $labels['htmlonreply'] = 'on reply to HTML message only'; $labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML signature'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Show preview pane'; $labels['skin'] = 'Interface skin'; $labels['logoutclear'] = 'Clear Trash on logout'; @@ -422,7 +404,6 @@ $labels['spellcheckignorenums'] = 'Ignore words with numbers'; $labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalised'; $labels['addtodict'] = 'Add to dictionary'; $labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Messages forwarding'; $labels['inline'] = 'inline'; $labels['asattachment'] = 'as attachment'; diff --git a/program/localization/en_GB/messages.inc b/program/localization/en_GB/messages.inc index 5be8ac3a3..5b6a8f7f2 100644 --- a/program/localization/en_GB/messages.inc +++ b/program/localization/en_GB/messages.inc @@ -15,8 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred.'; +$messages['errortitle'] = 'An error occured.'; $messages['loginfailed'] = 'Login failed.'; $messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; $messages['sessionerror'] = 'Your session is invalid or has expired.'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Database Error!'; $messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; $messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Invalid request! No data was saved.'; $messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'No messages found in this mailbox.'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'The requested contact was not found.'; $messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Failed to send message.'; $messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occurred while saving sent message.'; -$messages['errorsaving'] = 'An error occurred while saving.'; $messages['errormoving'] = 'Could not move the message(s).'; $messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Could not delete the message(s).'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Removing formatting...'; $messages['messageopenerror'] = 'Could not load message from server.'; $messages['fileuploaderror'] = 'File upload failed.'; $messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'This address book is read-only.'; $messages['errorsavingcontact'] = 'Could not save the contact address.'; $messages['movingmessage'] = 'Moving message(s)...'; $messages['copyingmessage'] = 'Copying message(s)...'; $messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Deleting message(s)...'; $messages['markingmessage'] = 'Marking message(s)...'; $messages['addingmember'] = 'Adding contact(s) to the group...'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Importing, please wait...'; $messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'Successfully imported $inserted contacts'; $messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Operation not permitted!'; $messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; $messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'Incorrect e-mail address: $email'; $messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; $messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occurred. Please try again.'; $messages['contactdelerror'] = 'Could not delete contact(s).'; $messages['contactdeleted'] = 'Contact(s) deleted successfully.'; $messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; diff --git a/program/localization/eo/labels.inc b/program/localization/eo/labels.inc index 2741eb221..0a55d36ae 100644 --- a/program/localization/eo/labels.inc +++ b/program/localization/eo/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bonvenon al $product'; $labels['username'] = 'Uzantnomo'; $labels['password'] = 'Pasvorto'; @@ -31,10 +29,9 @@ $labels['drafts'] = 'Malnetujo'; $labels['sent'] = 'Senditujo'; $labels['trash'] = 'Rubujo'; $labels['junk'] = 'Spamujo'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Temo'; $labels['from'] = 'Sendanto'; -$labels['sender'] = 'Sender'; +$labels['sender'] = 'Sendinto'; $labels['to'] = 'Ricevanto'; $labels['cc'] = 'Kopio'; $labels['bcc'] = 'Blindkopio'; @@ -55,9 +52,8 @@ $labels['copy'] = 'Kopii'; $labels['move'] = 'Movi'; $labels['moveto'] = 'transloku al...'; $labels['download'] = 'elŝutu'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; +$labels['showattachment'] = 'Montri'; +$labels['showanyway'] = 'Tamen montri ĝin'; $labels['filename'] = 'Dosiernomo'; $labels['filesize'] = 'Dosiergrando'; $labels['addtoaddressbook'] = 'Aldonu al adresaro'; @@ -139,9 +135,8 @@ $labels['currpage'] = 'Nuna paĝo'; $labels['unread'] = 'Nelegitan'; $labels['flagged'] = 'Markita'; $labels['unanswered'] = 'Nerespondita'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Forigita'; -$labels['undeleted'] = 'Not deleted'; +$labels['undeleted'] = 'Ne forigita'; $labels['invert'] = 'Inversigu'; $labels['filter'] = 'Filtru'; $labels['list'] = 'Listo'; @@ -164,11 +159,10 @@ $labels['desc'] = 'malkreskante'; $labels['listcolumns'] = 'List-rubrikoj'; $labels['listsorting'] = 'Ordig-rubriko'; $labels['listorder'] = 'Ordig-ordo'; -$labels['listmode'] = 'List view mode'; +$labels['listmode'] = 'Lista vido'; $labels['folderactions'] = 'Dosierujo-agoj'; $labels['compact'] = 'Kompakta'; $labels['empty'] = 'Malplena'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Diskuzo'; $labels['unknown'] = 'nekonata'; $labels['unlimited'] = 'senlima'; @@ -176,14 +170,10 @@ $labels['quicksearch'] = 'Rapida serĉo'; $labels['resetsearch'] = 'Vakigu serĉon'; $labels['searchmod'] = 'Serĉ-opcioj'; $labels['msgtext'] = 'Tuta mesaĝo'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Malfermu en nova fenestro'; $labels['emlsave'] = 'Elŝutu (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Redaktu kiel nova'; -$labels['send'] = 'Send'; +$labels['send'] = 'Sendi'; $labels['sendmessage'] = 'Sendu mesaĝon'; $labels['savemessage'] = 'Savu ĉi tiun malneton'; $labels['addattachment'] = 'Alfiksu dosieron'; @@ -213,9 +203,9 @@ $labels['nosubject'] = '(sen temo)'; $labels['showimages'] = 'Montru bildojn'; $labels['alwaysshow'] = 'Ĉiam montru bildojn de $sender'; $labels['isdraft'] = 'Ĉi-mesaĝo estas malneto'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; +$labels['andnmore'] = '$nr pli'; +$labels['togglemoreheaders'] = 'Montri pli multajn mesaĝtitolojn'; +$labels['togglefullheaders'] = 'Maligi ĉu mesaĝaj titoloj nudu'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plata teksto'; $labels['savesentmessagein'] = 'Konservu senditan mesaĝon en'; @@ -239,7 +229,7 @@ $labels['nickname'] = 'Kromnomo'; $labels['jobtitle'] = 'Postena titolo'; $labels['department'] = 'Departemento'; $labels['gender'] = 'Sekso'; -$labels['maidenname'] = 'Maiden Name'; +$labels['maidenname'] = 'Fraŭla nomo'; $labels['email'] = 'Retpoŝto'; $labels['phone'] = 'Telefono'; $labels['address'] = 'Adreso'; @@ -272,7 +262,6 @@ $labels['typehomefax'] = 'Hejma faksilo'; $labels['typeworkfax'] = 'Laboreja faksilo'; $labels['typecar'] = 'Aŭtomobilo'; $labels['typepager'] = 'Televokilo'; -$labels['typevideo'] = 'Video'; $labels['typeassistant'] = 'Asistanto'; $labels['typehomepage'] = 'Hejmpaĝo'; $labels['typeblog'] = 'Blogo'; @@ -297,32 +286,13 @@ $labels['composeto'] = 'Verku mesaĝon al'; $labels['contactsfromto'] = 'Kontaktoj ekde $from ĝis $to de $count'; $labels['print'] = 'Presi'; $labels['export'] = 'Elporti'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Montru auntaŭan'; $labels['firstpage'] = 'Montru unuan'; $labels['nextpage'] = 'Montru sekvan'; $labels['lastpage'] = 'Montru lastan'; -$labels['group'] = 'Group'; $labels['groups'] = 'Grupoj'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Persona Adresoj'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Preferoj de'; -$labels['about'] = 'About'; $labels['preferences'] = 'Preferoj'; $labels['userpreferences'] = 'Uzant-preferoj'; $labels['editpreferences'] = 'Redaktu uzant-preferojn'; @@ -332,27 +302,16 @@ $labels['newidentity'] = 'Nova idento'; $labels['newitem'] = 'Nova ero'; $labels['edititem'] = 'Redaktu eron'; $labels['preferhtml'] = 'Montru HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML Mesaĝo'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Agrablaj Datoj'; $labels['setdefault'] = 'Agordu kiel norma'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Lingvo'; $labels['timezone'] = 'Tempzono'; $labels['pagesize'] = 'Mesaĝoj po paĝo'; $labels['signature'] = 'Subskribo'; $labels['dstactive'] = 'Taglumsavado'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Uzado de HTML-redaktilo'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML subskribo'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Montru antaŭrigardejon'; $labels['skin'] = 'Interfaco-etoso'; $labels['logoutclear'] = 'Malplenigu rubujon je eliro'; @@ -363,69 +322,14 @@ $labels['mailboxview'] = 'Ricevitujo vido'; $labels['mdnrequests'] = 'Sendanto-sciigoj'; $labels['askuser'] = 'demandu'; $labels['autosend'] = 'sendu aŭtomate'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'malatentu'; $labels['readwhendeleted'] = 'Marku mesaĝon kiel legita kiam forigata'; $labels['flagfordeletion'] = 'Marku mesaĝon kiel forigita anstataŭ forigi'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; $labels['showinlineimages'] = 'Montru alfiksitajn bildojn sub la mesaĝo'; $labels['autosavedraft'] = 'Aŭtomate savu malneton'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'neniam'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'Mesaĝoj vidigante'; $labels['messagescomposition'] = 'Mesaĝo-verkado'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Dosierujo'; $labels['folders'] = 'Dosierujoj'; $labels['foldername'] = 'Dosierujo-nomo'; @@ -434,48 +338,7 @@ $labels['messagecount'] = 'Mesaĝoj'; $labels['create'] = 'Krei'; $labels['createfolder'] = 'Kreu novan dosierujon'; $labels['managefolders'] = 'Administru dosierujon'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Ordigu per'; $labels['sortasc'] = 'Ordigu kreskante'; $labels['sortdesc'] = 'Ordigu malkreskante'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/eo/messages.inc b/program/localization/eo/messages.inc index 75e34efe6..17e3f1719 100644 --- a/program/localization/eo/messages.inc +++ b/program/localization/eo/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Eraro okazis!'; $messages['loginfailed'] = 'Malsukcesis ensaluti'; $messages['cookiesdisabled'] = 'Via foliumilo ne akceptas kuketojn'; @@ -24,20 +23,13 @@ $messages['storageerror'] = 'Konekto kun IMAP-servilo malsukcesis'; $messages['servererror'] = 'Servil-eraro!'; $messages['servererrormsg'] = 'Servil-eraro: $msg'; $messages['dberror'] = 'Datumbaz-eraro!'; -$messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'Ne povis fari agon. Dosierujo estas nurlega'; $messages['errornoperm'] = 'Ne povis fari agon. Ne havas permeson.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Nevalida peto'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Neniu mesaĝo en ĉi tiu dosierujo'; $messages['loggedout'] = 'Vi sukcese finis la seancon. Ĝis!'; $messages['mailboxempty'] = 'Dosierujo estas malplena'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Ŝarganta...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Ŝarganta datumojn...'; $messages['checkingmail'] = 'Kontrolanta, ĉu novaj mesaĝoj...'; $messages['sendingmessage'] = 'Sedanta mesaĝon...'; @@ -47,128 +39,43 @@ $messages['messagesaved'] = 'Mesaĝo savita en Malnetujo'; $messages['successfullysaved'] = 'Sukcese savis'; $messages['addedsuccessfully'] = 'Sukcese aldonis kontakton al adresaro'; $messages['contactexists'] = 'Kontakto kun ĉi tiu adreso jam ekzistas'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Por protekti vian privatecon, foraj bildoj estas blokitaj en ĉi tiu mesaĝo.'; $messages['encryptedmessage'] = 'Ĉi tiu mesaĝo estas ĉifrata kaj ne estas montrebla. Pardonu!'; $messages['nocontactsfound'] = 'Trovis neniun kontakton'; $messages['contactnotfound'] = 'La petita kontakto ne trovis'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Ne sukcesis sendi mesaĝon'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Okazis eraro dum savo de mesaĝo'; $messages['errormoving'] = 'Ne povis transloki mesaĝon'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Ne povis forigi mesaĝon'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Ĉu vi vere volas forigi la elektata(j)n kontakto(j)n?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Ĉu vi vere volas forigi la elektata(j)n mesaĝo(j)n?'; $messages['deletefolderconfirm'] = 'Ĉu vi vere volas forigi la elektatan dosierujon?'; $messages['purgefolderconfirm'] = 'Ĉu vi vere volas forigi ĉiun mesaĝon el ĉi tiu dosierujo?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'La formularo ne estis kompletigita'; $messages['noemailwarning'] = 'Bonvolu enmeti validan retpoŝt-adreson'; $messages['nonamewarning'] = 'Bonvulu enmeti nomon'; $messages['nopagesizewarning'] = 'Bonvolu enmeti paĝ-grando'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Bonvolu enmeti minumume unu ricevonto'; $messages['nosubjectwarning'] = 'La temkampo estas malplena. Ĉu vi volas skribi temon nun?'; $messages['nobodywarning'] = 'Ĉu sendi ĉi tiun mesaĝon sen teksto?'; $messages['notsentwarning'] = 'Mesaĝo ne estas sendita. Ĉu vi volas forigi vian mesaĝon?'; $messages['noldapserver'] = 'Bonvolu elekti ldap-servilon por serĉado'; $messages['nosearchname'] = 'Bonvolu enmeti kontakt-nomon aŭ retpoŝt-adreson.'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'trovis $nr mesaĝojn'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Serĉo donis nenion'; $messages['searching'] = 'Serĉanta...'; $messages['checking'] = 'Kontrolanta...'; $messages['nospellerrors'] = 'Neniujn literumada eraro trovita'; $messages['folderdeleted'] = 'Forigis dosierujon sukcese'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Sukcese forigis'; $messages['converting'] = 'Foriganta formatan de mesaĝo...'; $messages['messageopenerror'] = 'Ne povis ŝargi mesaĝon de servilo'; $messages['fileuploaderror'] = 'Malsukcesis alŝuti dosieron'; $messages['filesizeerror'] = 'La alŝutita dosiero superas la maksimuman grandon de $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Ĉi tiu adres-fonto estas nurlegebla'; $messages['errorsavingcontact'] = 'Ne povis savi la kontakt-adreson'; $messages['movingmessage'] = 'Translokanta mesaĝon...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'Sukcese sendis konfirmon'; $messages['errorsendingreceipt'] = 'Ne povis sendi konfirmon'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'Vi ne povas forigi ĉi tiun identon, ĉar ĝi estas la lasta'; $messages['forbiddencharacter'] = 'Dosierujo-nomo enhavas malpermesitan karaktron'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/es_AR/labels.inc b/program/localization/es_AR/labels.inc index 65c3e4617..eb4630ed4 100644 --- a/program/localization/es_AR/labels.inc +++ b/program/localization/es_AR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; $labels['password'] = 'Contraseña'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Borradores'; $labels['sent'] = 'Enviados'; $labels['trash'] = 'Papelera'; $labels['junk'] = 'Basura'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Asunto'; $labels['from'] = 'Remitente'; $labels['sender'] = 'Remitente'; @@ -39,12 +36,10 @@ $labels['to'] = 'Destinatario'; $labels['cc'] = 'Copia'; $labels['bcc'] = 'Cco'; $labels['replyto'] = 'Responder a'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Fecha'; $labels['size'] = 'Tamaño'; $labels['priority'] = 'Prioridad'; $labels['organization'] = 'Organización'; -$labels['readstatus'] = 'Read status'; $labels['listoptions'] = 'Listar opciones...'; $labels['mailboxlist'] = 'Carpetas'; $labels['messagesfromto'] = 'Mensajes $from a $to de $count'; @@ -55,7 +50,6 @@ $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a...'; $labels['download'] = 'Descargar'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Mostrar'; $labels['showanyway'] = 'Mostrar esto siempre'; $labels['filename'] = 'Nombre del archivo'; @@ -139,7 +133,6 @@ $labels['currpage'] = 'Página actual'; $labels['unread'] = 'Sin leer'; $labels['flagged'] = 'Marcado'; $labels['unanswered'] = 'Sin respuesta'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Eliminado'; $labels['undeleted'] = 'No eliminado'; $labels['invert'] = 'Invertir'; @@ -164,11 +157,9 @@ $labels['desc'] = 'Descendente'; $labels['listcolumns'] = 'Listar columnas'; $labels['listsorting'] = 'Ordenar por'; $labels['listorder'] = 'Ordenado por'; -$labels['listmode'] = 'List view mode'; $labels['folderactions'] = 'Acciones de carpeta...'; $labels['compact'] = 'Compactar'; $labels['empty'] = 'Vaciar'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Uso de disco'; $labels['unknown'] = 'desconocido'; $labels['unlimited'] = 'sin límite'; @@ -176,12 +167,8 @@ $labels['quicksearch'] = 'Búsqueda rápida'; $labels['resetsearch'] = 'Reajustar la búsqueda'; $labels['searchmod'] = 'Opciones de búsqueda'; $labels['msgtext'] = 'Mensaje completo'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Abrir en ventana nueva'; $labels['emlsave'] = 'Guardar (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Editar como nuevo'; $labels['send'] = 'Enviar'; $labels['sendmessage'] = 'Enviar ahora el mensaje'; @@ -215,7 +202,6 @@ $labels['alwaysshow'] = 'Siempre mostrar imágenes de $sender'; $labels['isdraft'] = 'Este es un borrador.'; $labels['andnmore'] = '$nr más...'; $labels['togglemoreheaders'] = 'Mostrarme más encabezados de mensaje'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto'; $labels['savesentmessagein'] = 'Guardar mensaje enviado en'; @@ -224,7 +210,6 @@ $labels['maxuploadsize'] = 'El tamaño maximo permitido por archivo es $size'; $labels['addcc'] = 'Añadir Cc'; $labels['addbcc'] = 'Añadir Cco'; $labels['addreplyto'] = 'Añadir Respuesta a'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'El emisor de este mensaje desea ser notificado cuando usted lo lea. ¿Quiere enviar esta notificación?'; $labels['receiptread'] = 'Notificación de lectura'; $labels['yourmessage'] = 'Esta es una notificación de lectura de su mensaje'; @@ -297,8 +282,6 @@ $labels['composeto'] = 'Enviar mensaje a'; $labels['contactsfromto'] = 'Contactos $from a $to de $count'; $labels['print'] = 'Imprimir'; $labels['export'] = 'Exportar'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Exportar contactos en format vCard'; $labels['newcontactgroup'] = 'Crear Nuevo Grupo de Contacto'; $labels['grouprename'] = 'Renombrar grupo'; @@ -310,14 +293,12 @@ $labels['nextpage'] = 'Mostrar siguiente grupo'; $labels['lastpage'] = 'Mostrar último grupo'; $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Direcciones personales'; $labels['searchsave'] = 'Guardar búsqueda'; $labels['searchdelete'] = 'Eliminar búsqueda'; $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde el archivo:'; -$labels['importtarget'] = 'Agregar nuevos contactos a la libreta de direcciones:'; $labels['importreplace'] = 'Reemplazar completamente la lista de contactos'; $labels['importdesc'] = 'Puedes subir contactos desde una libreta de direcciones existente.
Actualmente soportamos la importación de direcciones utilizando el formato vCard o CSV (Valores Separados por Coma).'; $labels['done'] = 'Hecho'; @@ -334,8 +315,6 @@ $labels['edititem'] = 'Editar'; $labels['preferhtml'] = 'Prefiero HTML'; $labels['defaultcharset'] = 'Juego de Caracteres por Defecto'; $labels['htmlmessage'] = 'Mensaje HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Formato de fecha'; $labels['timeformat'] = 'Formato de tiempo'; $labels['prettydate'] = 'Fecha detallada'; @@ -352,7 +331,6 @@ $labels['htmleditor'] = 'Componer mensaje en HTML'; $labels['htmlonreply'] = 'al responder un mensaje HTML'; $labels['htmlonreplyandforward'] = 'al reenviar o responder un mensaje HTML'; $labels['htmlsignature'] = 'Firma HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Mostrar vista preliminar'; $labels['skin'] = 'Apariencia de la interfaz'; $labels['logoutclear'] = 'Vaciar papelera al cerrar sesión'; @@ -363,21 +341,17 @@ $labels['mailboxview'] = 'Vista de buzón'; $labels['mdnrequests'] = 'Notificaciones de envío'; $labels['askuser'] = 'preguntar al usuario'; $labels['autosend'] = 'enviar automáticamente'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'ignorar'; $labels['readwhendeleted'] = 'Marcar el mensage como leído al borrarlo'; $labels['flagfordeletion'] = 'Marcar el mensage para borrarse en vez de borrarlo'; $labels['skipdeleted'] = 'No mostrar mensajes eliminados'; $labels['deletealways'] = 'Cuando no se pueda mover un mensaje a la papelera, eliminarlo'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Mostrar imágenes remotas'; $labels['fromknownsenders'] = 'de remitentes conocidos'; $labels['always'] = 'siempre'; $labels['showinlineimages'] = 'Mostrar imágenes adjuntas debajo del mensaje'; $labels['autosavedraft'] = 'Guardar borrador automáticamente'; $labels['everynminutes'] = 'cada $n minuto(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'nunca'; $labels['immediately'] = 'inmediatamente'; $labels['messagesdisplaying'] = 'Vista de mensajes'; @@ -391,15 +365,12 @@ $labels['advancedoptions'] = 'Opciones Avanzadas'; $labels['focusonnewmessage'] = 'Traer al frente la ventana del navegador cuando haya nuevos mensajes'; $labels['checkallfolders'] = 'Verificar todas las carpetas por nuevos mensajes'; $labels['displaynext'] = 'Luedo de eliminar/mover, mostrar el próximo mensaje'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'Opciones Principales'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Selección'; $labels['maintenance'] = 'Mantenimiento'; $labels['newmessage'] = 'Nuevo Mensaje'; $labels['signatureoptions'] = 'Opciones de Firma'; $labels['whenreplying'] = 'Al Responder'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'iniciar el nuevo mensaje sobre el original'; $labels['replybottomposting'] = 'iniciar el nuevo mensaje debajo del original'; $labels['replyremovesignature'] = 'Al responder, eliminar la firma del mensaje original'; @@ -409,23 +380,6 @@ $labels['replyandforwardonly'] = 'respuestas o reenvios solamente'; $labels['insertsignature'] = 'Insertar firma'; $labels['previewpanemarkread'] = 'Marcar mensajes previsualizados como leidos'; $labels['afternseconds'] = 'despues de $n segundos'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Carpeta'; $labels['folders'] = 'Carpetas'; $labels['foldername'] = 'Nombre de carpeta'; @@ -435,27 +389,9 @@ $labels['create'] = 'Crear'; $labels['createfolder'] = 'Crear nueva carpeta'; $labels['managefolders'] = 'Administrar carpetas'; $labels['specialfolders'] = 'Carpetas Especiales'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Ordenar por'; $labels['sortasc'] = 'Orden ascendente'; $labels['sortdesc'] = 'Orden descendente'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; diff --git a/program/localization/es_AR/messages.inc b/program/localization/es_AR/messages.inc index 7e5dba9f8..1c442c189 100644 --- a/program/localization/es_AR/messages.inc +++ b/program/localization/es_AR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ha ocurrido un error!'; $messages['loginfailed'] = 'Contraseña o nombre de usuario incorrecto'; $messages['cookiesdisabled'] = 'Su navegador no acepta cookies'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Error en base de datos!'; $messages['requesttimedout'] = 'Tiempo de espera agotado'; $messages['errorreadonly'] = 'No se pudo realizar la operación. La carpeta es de sólo lectura.'; $messages['errornoperm'] = 'No se pudo realizar la operación. Permiso denegado.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Peteción invalida! No se guardó nada.'; $messages['invalidhost'] = 'Nombre de servidor inválido.'; $messages['nomessagesfound'] = 'No se han encontrado mensajes en esta casilla'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'El contacto solicitado no existe'; $messages['contactsearchonly'] = 'Ingresá algún término de búsqueda para encontrar contactos'; $messages['sendingfailed'] = 'Error al enviar mensaje'; $messages['senttooquickly'] = 'Por favor, espere $sec segundo(s) antes de enviar este mensaje'; -$messages['errorsavingsent'] = 'Ocurrió un error al guardar el mensaje enviado'; -$messages['errorsaving'] = 'Ocurrió un error al guardar'; $messages['errormoving'] = 'No se pudo mover el mensaje'; $messages['errorcopying'] = 'No se pudo copiar el mensaje'; $messages['errordeleting'] = 'No se ha podido eliminar el mensaje'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Removiendo el formato del mensaje...'; $messages['messageopenerror'] = 'No puedo descargar el mensaje del servidor'; $messages['fileuploaderror'] = 'Error al subir archivos'; $messages['filesizeerror'] = 'El archivo excede el tamaño maximo ($size)'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Esta dirección es de sólo-lectura'; $messages['errorsavingcontact'] = 'No se pudo guardar la dirección de contacto'; $messages['movingmessage'] = 'Moviendo mensaje...'; $messages['copyingmessage'] = 'Copiando mensaje...'; $messages['copyingcontact'] = 'Copiando contacto(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Eliminando contacto(s)...'; $messages['markingmessage'] = 'Marcando mensaje(s)...'; $messages['addingmember'] = 'Agregando contacto(s) al grupo...'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Importando, aguarde por favor...'; $messages['importformaterror'] = 'Importación fallida! El archivo subido no es un archivo de importación de datos válido.'; $messages['importconfirm'] = 'Se importaron $inserted contactos correctamente. $skipped ya existentes fueron ignorados:

$names

'; $messages['importconfirmskipped'] = 'Se ignoraron $skipped entradas ya existentes'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Operación no permitida!'; $messages['nofromaddress'] = 'El contacto seleccionado no tiene dirección de e-mail'; $messages['editorwarning'] = 'Si cambia a texto plano se perderán todas las opciones de formato. ¿Desea continuar?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'Error SMTP: $msg'; $messages['emailformaterror'] = 'La dirección $email no es válida'; $messages['toomanyrecipients'] = 'Demasiados destinatarios. Reduzca la cantidad a un máximo de $max.'; $messages['maxgroupmembersreached'] = 'El número de miembros del grupo excede el máximo de $max'; -$messages['internalerror'] = 'Ocurrió un error interno. Por favor, intentá de nuevo.'; $messages['contactdelerror'] = 'No se pudo eliminar el/los contactos(s).'; $messages['contactdeleted'] = 'Contacto(s) eliminado/s exitosamente.'; $messages['contactrestoreerror'] = 'No se pudo recuperar el/los contacto/s eliminado(s).'; diff --git a/program/localization/es_ES/labels.inc b/program/localization/es_ES/labels.inc index c2dd4dcbe..66fcafd0b 100644 --- a/program/localization/es_ES/labels.inc +++ b/program/localization/es_ES/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bienvenido a $product'; $labels['username'] = 'Nombre de usuario'; $labels['password'] = 'Contraseña'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Opciones de búsqueda'; $labels['msgtext'] = 'Mensaje completo'; $labels['body'] = 'Cuerpo'; $labels['type'] = 'Tipo'; +$labels['namex'] = 'Nombre'; $labels['openinextwin'] = 'Abrir en nueva ventana'; $labels['emlsave'] = 'Descargar (.eml)'; $labels['changeformattext'] = 'Mostrar en formato de texto sencillo'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Borrar búsqueda'; $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde archivo:'; -$labels['importtarget'] = 'Añadir un nuevo contacto a la los contactos:'; +$labels['importtarget'] = 'Agregar contactos a'; $labels['importreplace'] = 'Reemplazar toda la lista de contactos'; +$labels['importgroups'] = 'Importar asignaciones de grupo'; +$labels['importgroupsall'] = 'Todos (crear grupos si es necesario)'; +$labels['importgroupsexisting'] = 'Sólo para los grupos existentes'; $labels['importdesc'] = 'Puede subir contactos desde una libreta de direcciones existente.
Actualmente permitimos la importación desde los formatos de datos vCard o CSV (separados por comas).'; $labels['done'] = 'Hecho'; $labels['settingsfor'] = 'Configuración para'; diff --git a/program/localization/es_ES/messages.inc b/program/localization/es_ES/messages.inc index 672db9fb2..3a8b5ab31 100644 --- a/program/localization/es_ES/messages.inc +++ b/program/localization/es_ES/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = '¡Ha ocurrido un error!'; $messages['loginfailed'] = 'Contraseña o nombre de usuario incorrecto.'; $messages['cookiesdisabled'] = 'Su navegador no acepta cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'El contacto solicitado no existe.'; $messages['contactsearchonly'] = 'Ingrese algún criterio para buscar contactos'; $messages['sendingfailed'] = 'Error al enviar mensaje.'; $messages['senttooquickly'] = 'Por favor, espere $sec segundo(s) antes de mandar este mensaje.'; -$messages['errorsavingsent'] = 'Ha ocurrido un error al guardar el mensaje enviado.'; -$messages['errorsaving'] = 'Ocurrió un error mientras se guardaba.'; $messages['errormoving'] = 'No se ha podido mover el/los mensaje(s).'; $messages['errorcopying'] = 'No se ha podido copiar el/los mensaje(s).'; $messages['errordeleting'] = 'No se ha podido eliminar el/los mensaje(s).'; @@ -100,13 +97,16 @@ $messages['converting'] = 'Quitando el formato del mensaje...'; $messages['messageopenerror'] = 'No puedo descargar el mensaje del servidor.'; $messages['fileuploaderror'] = 'Error al subir archivos.'; $messages['filesizeerror'] = 'El archivo excede el tamaño máximo ($size).'; -$messages['copysuccess'] = '$nr direcciones copiadas correctamente.'; -$messages['copyerror'] = 'No se pudo copiar ninguna dirección.'; +$messages['copysuccess'] = '$nr contactos copiados correctamente.'; +$messages['movesuccess'] = '$nr contactos movidos correctamente.'; +$messages['copyerror'] = 'No se ha podido copiar ningún contacto.'; +$messages['moveerror'] = 'No se ha podido mover ningún contacto.'; $messages['sourceisreadonly'] = 'Esta dirección es de sólo lectura.'; $messages['errorsavingcontact'] = 'No se pudo guardar la dirección de contacto.'; $messages['movingmessage'] = 'Moviendo mensaje(s)...'; $messages['copyingmessage'] = 'Copiando mensaje(s)...'; $messages['copyingcontact'] = 'Copiando contacto(s)…'; +$messages['movingcontact'] = 'Moviendo contacto(s)...'; $messages['deletingmessage'] = 'Eliminando mensaje(s)...'; $messages['markingmessage'] = 'Marcando mensaje(s)...'; $messages['addingmember'] = 'Añadiendo contacto(s) al grupo…'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'Error SMTP: $msg'; $messages['emailformaterror'] = 'Dirección e-mail incorrecta: $email'; $messages['toomanyrecipients'] = 'Hay demasiados destinatarios. Reduzca el número de destinatarios a $max.'; $messages['maxgroupmembersreached'] = 'El número de miembros del grupo excede el máximo de $max.'; -$messages['internalerror'] = 'Ocurrió un error interno. Por favor, inténtelo de nuevo.'; $messages['contactdelerror'] = 'No se ha podido eliminar el/los contacto(s).'; $messages['contactdeleted'] = 'Contacto(s) eliminado(s) correctamente.'; $messages['contactrestoreerror'] = 'No se han podido restaurar los contactos borrados.'; diff --git a/program/localization/et_EE/labels.inc b/program/localization/et_EE/labels.inc index aab7c2039..42a268dd2 100644 --- a/program/localization/et_EE/labels.inc +++ b/program/localization/et_EE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Tere tulemast! See on $product.'; $labels['username'] = 'Kasutajanimi'; $labels['password'] = 'Parool'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Lähtesta otsing'; $labels['searchmod'] = 'Otsingu laiendid'; $labels['msgtext'] = 'Kogu kirjast'; $labels['body'] = 'Keha'; -$labels['type'] = 'Type'; +$labels['type'] = 'Tüüp'; +$labels['namex'] = 'Nimi'; $labels['openinextwin'] = 'Ava uues aknas'; $labels['emlsave'] = 'Salvesta (.eml)'; $labels['changeformattext'] = 'Näita lihttekstina'; @@ -317,7 +316,6 @@ $labels['searchdelete'] = 'Kustuta otsing'; $labels['import'] = 'Impordi'; $labels['importcontacts'] = 'Impordi kontakte'; $labels['importfromfile'] = 'Impordi failist:'; -$labels['importtarget'] = 'Lisa uued kontaktid aadressiraamatusse:'; $labels['importreplace'] = 'Asenda kogu aadressiraamat'; $labels['importdesc'] = 'Sa saad laadida kontakte olemasolevast aadressiraamatust.
Praegu on võimalik importida vCard või CSV (komaga eraldatud) formaadis andmeid. '; $labels['done'] = 'Valmis'; diff --git a/program/localization/et_EE/messages.inc b/program/localization/et_EE/messages.inc index 6d4752730..0d2c79b5a 100644 --- a/program/localization/et_EE/messages.inc +++ b/program/localization/et_EE/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ilmnes tõrge!'; $messages['loginfailed'] = 'Sisselogimine ebaõnnestus'; $messages['cookiesdisabled'] = 'Sinu veebilehitseja ei võta präänikuid vastu'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Otsitud kontakti ei leitud'; $messages['contactsearchonly'] = 'Sisesta otsingusõna kontaktide leidmiseks'; $messages['sendingfailed'] = 'Kirja saatmine ebaõnnestus'; $messages['senttooquickly'] = 'Palun oota enne selle kirja saatmist $sec sekundit.'; -$messages['errorsavingsent'] = 'Saadetud kirja salvestamisel ilmnes tõrge'; -$messages['errorsaving'] = 'Salvestamise ajal ilmnes viga'; $messages['errormoving'] = 'Ei suutnud seda kirja liigutada'; $messages['errorcopying'] = 'Kirju ei õnnestunud kopeerida'; $messages['errordeleting'] = 'Ei suutnud seda kirja kustutada'; @@ -100,13 +97,16 @@ $messages['converting'] = 'Eemaldan kirjast vormindust...'; $messages['messageopenerror'] = 'Kirjade serverist laadimine ebaõnnestus'; $messages['fileuploaderror'] = 'Faili üleslaadimine ebaõnnestus'; $messages['filesizeerror'] = 'Üleslaetava faili suurus ületab maksimaalse suuruse $size'; -$messages['copysuccess'] = '$nr aadressi edukalt kopeeritud'; -$messages['copyerror'] = 'Ühegi aadressi kopeerimine ei õnnestunud'; +$messages['copysuccess'] = '$nr kontakti edukalt kopeeritud.'; +$messages['movesuccess'] = '$nr kontakti edukalt liigutatud.'; +$messages['copyerror'] = 'Ühegi kontakti kopeerimine ei õnnestunud.'; +$messages['moveerror'] = 'Ühegi kontakti liigutamine ei õnnestunud.'; $messages['sourceisreadonly'] = 'Aadressi asukohas puuduvad kirjutusõigused'; $messages['errorsavingcontact'] = 'Kontakti aadressi salvestamine ebaõnnestus'; $messages['movingmessage'] = 'Liigutan kirja...'; $messages['copyingmessage'] = 'Kopeerin kirja...'; $messages['copyingcontact'] = 'Kontakti(de) kopeerimine…'; +$messages['movingcontact'] = 'Kontakti(de) liigutamine…'; $messages['deletingmessage'] = 'Kustutan kirja...'; $messages['markingmessage'] = 'Märgin kirja...'; $messages['addingmember'] = 'Kontakti(de) gruppi lisamine…'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'SMTP tõrge: $msg'; $messages['emailformaterror'] = 'Lubamatu e-posti aadress: $email'; $messages['toomanyrecipients'] = 'Liiga palju adressaate. Vähenda kirja saajate hulka $max-ni.'; $messages['maxgroupmembersreached'] = 'Grupi liikmete arv ületab suurima lubatud $max'; -$messages['internalerror'] = 'Ilmnes sisemine tõrge. Palun proovi uuesti.'; $messages['contactdelerror'] = 'Kontaktide kustutamine nurjus'; $messages['contactdeleted'] = 'Kontaktide kustutamine õnnestus'; $messages['contactrestoreerror'] = 'Kustutatud kontakti(de) taastamine nurjus.'; diff --git a/program/localization/eu_ES/labels.inc b/program/localization/eu_ES/labels.inc index 89b19cfbc..bbfd0c6ac 100644 --- a/program/localization/eu_ES/labels.inc +++ b/program/localization/eu_ES/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Ongi etorri $product'; $labels['username'] = 'Erabiltzailea'; $labels['password'] = 'Pasahitza'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Zirriborroak'; $labels['sent'] = 'Bidalitakoak'; $labels['trash'] = 'Zakarrontzia'; $labels['junk'] = 'Zabor-posta'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Erakutsi karpeta berezien benetako izenak'; $labels['subject'] = 'Gaia'; $labels['from'] = 'Nork'; $labels['sender'] = 'Igorlea'; @@ -55,9 +53,9 @@ $labels['copy'] = 'Kopia'; $labels['move'] = 'Mugitu'; $labels['moveto'] = 'mugitu hona...'; $labels['download'] = 'deskargatu'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; +$labels['open'] = 'Ireki'; +$labels['showattachment'] = 'Erakutsi'; +$labels['showanyway'] = 'Erakutsi edonola'; $labels['filename'] = 'Fitxategi Izena'; $labels['filesize'] = 'Fitxategi Tamaina'; $labels['addtoaddressbook'] = 'Helbide liburura gehitu'; @@ -110,7 +108,7 @@ $labels['replytoallmessage'] = 'Bidaltzaile eta hartzaile guztiei erantzun'; $labels['replyall'] = 'Guztiei erantzun'; $labels['replylist'] = 'Erantzun zerrenda'; $labels['forward'] = 'Berbidali'; -$labels['forwardinline'] = 'Forward inline'; +$labels['forwardinline'] = 'Aurrera barnean'; $labels['forwardattachment'] = 'Erantsi gisa berbidali'; $labels['forwardmessage'] = 'Mezua Birbidali'; $labels['deletemessage'] = 'Mezua ezabatu'; @@ -138,72 +136,73 @@ $labels['none'] = 'Bat ere ez'; $labels['currpage'] = 'Uneko orrialdea'; $labels['unread'] = 'Irakurri gabeak'; $labels['flagged'] = 'Banderaduna'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; +$labels['unanswered'] = 'Erantzun gabea'; +$labels['withattachment'] = 'Eranskinarekin'; $labels['deleted'] = 'Ezabatuak'; $labels['undeleted'] = 'Ezabatu gabeak'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; +$labels['invert'] = 'Alderantzizkatu'; +$labels['filter'] = 'Iragazkia'; +$labels['list'] = 'Zerrenda'; +$labels['threads'] = 'Hariak'; +$labels['expand-all'] = 'Irekin denak'; +$labels['expand-unread'] = 'Ireki irakurri gabeak'; +$labels['collapse-all'] = 'Tolestu guztiak'; +$labels['threaded'] = 'Harian'; +$labels['autoexpand_threads'] = 'Irekin mezu-hariak'; +$labels['do_expand'] = 'hari guztiak'; +$labels['expand_only_unread'] = 'soilik irakurri gabeko mezuak dutenak'; $labels['fromto'] = 'Nork/Nori'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; +$labels['flag'] = 'Bandera'; +$labels['attachment'] = 'Eranskina'; $labels['nonesort'] = 'Bat ere ez'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; +$labels['sentdate'] = 'Bidalketa-data'; +$labels['arrival'] = 'Jasotze-data'; +$labels['asc'] = 'gora'; +$labels['desc'] = 'behera'; +$labels['listcolumns'] = 'Zerrenda-zutabeak'; +$labels['listsorting'] = 'Zutabea ordenatzen'; +$labels['listorder'] = 'Ordenatze era'; +$labels['listmode'] = 'Zerrenda ikuspegia'; +$labels['folderactions'] = 'Karpeta-ekintzak...'; $labels['compact'] = 'Trinkotu'; $labels['empty'] = 'Hustu'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Inportatu mezuak'; $labels['quota'] = 'Disko erabilera'; $labels['unknown'] = 'ezezaguna'; $labels['unlimited'] = 'mugagabea'; $labels['quicksearch'] = 'Bilaketa azkarra'; $labels['resetsearch'] = 'Bilaketa berrabiarazi'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; +$labels['searchmod'] = 'Bilatu modifikadoreak'; +$labels['msgtext'] = 'Mezu osoa'; +$labels['body'] = 'Gorputza'; +$labels['type'] = 'Mota'; +$labels['namex'] = 'Izena'; $labels['openinextwin'] = 'Lehio berrian ireki'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; +$labels['emlsave'] = 'Deskargatu (.eml)'; +$labels['changeformattext'] = 'Bistaratu testua formaturik gabe'; +$labels['changeformathtml'] = 'Bistaratu HTML formatuan'; +$labels['editasnew'] = 'Editatu berri bezala'; +$labels['send'] = 'Bidali'; $labels['sendmessage'] = 'Mezua orain bidali'; $labels['savemessage'] = 'Zirriborro hau gorde'; $labels['addattachment'] = 'Fitxategia erantsi'; $labels['charset'] = 'Karaktere jokoa'; $labels['editortype'] = 'Editore mota'; -$labels['returnreceipt'] = 'Bidaltzaileari itzuli'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; +$labels['returnreceipt'] = 'Bidali jasotze-agiria'; +$labels['dsn'] = 'Entrega-egoeraren jakinarazpena'; +$labels['mailreplyintro'] = '$date egunean, $sender-(e)k idatzi du:'; $labels['originalmessage'] = 'Jatorrizko mezua'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; +$labels['editidents'] = 'Editatu identitateak'; +$labels['spellcheck'] = 'Ortografia-egiaztatu'; $labels['checkspelling'] = 'Egiaztaketa ortografikoa'; $labels['resumeediting'] = 'Editatzen jarraitu'; $labels['revertto'] = 'Itzuli hona'; -$labels['attach'] = 'Attach'; +$labels['attach'] = 'Erantsi'; $labels['attachments'] = 'Eranskinak'; $labels['upload'] = 'Igo'; -$labels['uploadprogress'] = '$percent ($current from $total)'; +$labels['uploadprogress'] = '$percent ($current/$total)'; $labels['close'] = 'Itxi'; -$labels['messageoptions'] = 'Message options...'; +$labels['messageoptions'] = 'Mezu-aukerak'; $labels['low'] = 'Baxua'; $labels['lowest'] = 'Baxuena'; $labels['normal'] = 'Normala'; @@ -212,117 +211,116 @@ $labels['highest'] = 'Altuena'; $labels['nosubject'] = '(gairik gabea)'; $labels['showimages'] = 'Irudiak bistarazi'; $labels['alwaysshow'] = 'Beti ikusi $sender -en irudiak'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; +$labels['isdraft'] = 'Hau zirriborro bat da'; +$labels['andnmore'] = '$nr gehiago...'; +$labels['togglemoreheaders'] = 'Erakutsi mezu mezu-goiburu gehiago'; +$labels['togglefullheaders'] = 'Aldatu mezu gordinen goiburuak'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Testu laua'; $labels['savesentmessagein'] = 'Gorde mezua hemen'; $labels['dontsave'] = 'ez gorde'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; +$labels['maxuploadsize'] = 'Baimendutako gehienezko fitxategi tamaina: $size'; $labels['addcc'] = 'Gehitu Cc (kopia)'; $labels['addbcc'] = 'Gehitu Bcc (kopia ezkutua)'; $labels['addreplyto'] = 'Gehitu erantzun-honi'; -$labels['addfollowupto'] = 'Add Followup-To'; +$labels['addfollowupto'] = 'Gehitu Jarraitu honi'; $labels['mdnrequest'] = 'Mezu honen bidaltzaileak mezua irakurtzen duzunean jakinaraztea eskatu du. Bidaltzailea ohartu nahi duzu?'; -$labels['receiptread'] = 'Itzulketa agiria (irakurria)'; -$labels['yourmessage'] = 'Hau zure mezuaren Itzulketa Agiria da'; -$labels['receiptnote'] = 'Oharra: Agiri honek hartzailearen ordenagailuan mezua ikusi dala adierazten du besterik gabe. Honek ez du esan nahi hartzaileak mezua irakurri edo/eta ulertu duenik:'; +$labels['receiptread'] = 'Bidali jasotze-agiria (irakurria)'; +$labels['yourmessage'] = 'Hau zure mezuaren jasotze-agiria da'; +$labels['receiptnote'] = 'Oharra: jasotze-agiri honek hartzailearen ordenagailuan mezua ikusi dala adierazten du besterik gabe. Honek ez du esan nahi hartzaileak mezua irakurri edo/eta ulertu duenik:'; $labels['name'] = 'Izena bistarazi'; $labels['firstname'] = 'Izena'; $labels['surname'] = 'Abizena'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; +$labels['middlename'] = 'Izenaren bigarren partea'; +$labels['nameprefix'] = 'Aurrizkia'; +$labels['namesuffix'] = 'Atzizkia'; $labels['nickname'] = 'Ezizena'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; +$labels['jobtitle'] = 'Lanpostua '; +$labels['department'] = 'Departamentoa'; +$labels['gender'] = 'Generoa'; +$labels['maidenname'] = 'Ezkondu aurreko izena'; $labels['email'] = 'ePosta'; -$labels['phone'] = 'Phone'; +$labels['phone'] = 'Telefonoa'; $labels['address'] = 'Helbidea'; $labels['street'] = 'Kalea'; -$labels['locality'] = 'City'; +$labels['locality'] = 'Herria'; $labels['zipcode'] = 'Posta kodea'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; +$labels['region'] = 'Estatua/Probintzia'; +$labels['country'] = 'Herrialdea'; +$labels['birthday'] = 'Urtebetetze-eguna'; +$labels['anniversary'] = 'Urteurren-eguna'; +$labels['website'] = 'Webgunea'; +$labels['instantmessenger'] = 'Txata'; +$labels['notes'] = 'Oharrak'; +$labels['male'] = 'gizon'; +$labels['female'] = 'emakume'; +$labels['manager'] = 'Kudeatzailea'; +$labels['assistant'] = 'Laguntzailea'; +$labels['spouse'] = 'Ezkontidea'; +$labels['allfields'] = 'Eremu guztiak'; +$labels['search'] = 'Bilatu'; +$labels['advsearch'] = 'Bilaketa aurreratua'; +$labels['advanced'] = 'Aurreratua'; +$labels['other'] = 'Beste'; +$labels['typehome'] = 'Etxekoa'; +$labels['typework'] = 'Lanekoa'; +$labels['typeother'] = 'Beste'; $labels['typemobile'] = 'Mugikorra'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; -$labels['addcontact'] = 'Txartel berria gehitu'; -$labels['editcontact'] = 'Txartela editatu'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; +$labels['typemain'] = 'Nagusia'; +$labels['typehomefax'] = 'Etxeko faxa'; +$labels['typeworkfax'] = 'Laneko faxa'; +$labels['typecar'] = 'Autoa'; +$labels['typepager'] = 'Bilagailua'; +$labels['typevideo'] = 'Bideo'; +$labels['typeassistant'] = 'Laguntzailea'; +$labels['typehomepage'] = 'Etxeko orria'; +$labels['typeblog'] = 'Bloga'; +$labels['typeprofile'] = 'Profila'; +$labels['addfield'] = 'Gehitu eremua...'; +$labels['addcontact'] = 'Gehitu kontaktu berria'; +$labels['editcontact'] = 'Editatu kontaktua'; +$labels['contacts'] = 'Kontaktuak'; +$labels['contactproperties'] = 'Kontaktuen ezaugarriak'; $labels['personalinfo'] = 'Informazio pertsonala'; $labels['edit'] = 'Editatu'; $labels['cancel'] = 'Utzi'; $labels['save'] = 'Gorde'; $labels['delete'] = 'Ezabatu'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; -$labels['newcontact'] = 'Helbide liburu txartel berria sortu'; -$labels['deletecontact'] = 'Aukeraturiko txartelak ezabatu'; -$labels['composeto'] = 'Bidali mezua honi:'; -$labels['contactsfromto'] = '$from -tik $to -ra $count txarteletatik'; +$labels['rename'] = 'Berrizendatu'; +$labels['addphoto'] = 'Gehitu'; +$labels['replacephoto'] = 'Ordeztu'; +$labels['uploadphoto'] = 'Kargatu argazkia'; +$labels['newcontact'] = 'Sortu kontaktu-txartel berria'; +$labels['deletecontact'] = 'Ezabatu hautatutako kontaktuak'; +$labels['composeto'] = 'Idatzi mezua honi:'; +$labels['contactsfromto'] = '$from -tik $to -ra $count kontaktuak'; $labels['print'] = 'Inprimatu'; $labels['export'] = 'Esportatu'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; -$labels['previouspage'] = 'Aurreko sorta ikusi'; -$labels['firstpage'] = 'Lehenengo sorta ikusi'; -$labels['nextpage'] = 'Hurrengo sorta ikusi'; -$labels['lastpage'] = 'Azken sorta ikusi'; -$labels['group'] = 'Group'; +$labels['exportall'] = 'Esportatu dena'; +$labels['exportsel'] = 'Esportatu hautaketa'; +$labels['exportvcards'] = 'Esportatu kontaktuak vCard formatuan'; +$labels['newcontactgroup'] = 'Sortu kontaktu-talde berria'; +$labels['grouprename'] = 'Berrizendatu taldea'; +$labels['groupdelete'] = 'Ezabatu taldea'; +$labels['groupremoveselected'] = 'Ezabatu taldetik hautatutako kontaktuak'; +$labels['previouspage'] = 'Aurreko orria ikusi'; +$labels['firstpage'] = 'Lehenengo orria ikusi'; +$labels['nextpage'] = 'Hurrengo orria ikusi'; +$labels['lastpage'] = 'Azken orria ikusi'; +$labels['group'] = 'Taldea'; $labels['groups'] = 'Taldeak'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Zerrendatu taldeko partaideak'; $labels['personaladrbook'] = 'Helbide pertsonalak'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; +$labels['searchsave'] = 'Gorde bilaketa'; +$labels['searchdelete'] = 'Ezabatu bilaketa'; +$labels['import'] = 'Inportatu'; +$labels['importcontacts'] = 'Inportatu kontaktoak'; +$labels['importfromfile'] = 'Inportatu fitxategi honetatik:'; +$labels['importreplace'] = 'Ordezkatu helbide-liburu osoa'; +$labels['importdesc'] = 'Gehitzen ahal duzu kontaktuak dagoen helbide-liburu batetik.
Inportatzeko onartzen diren formatuak: vCard eta CSV (komaz banandutakoak).'; +$labels['done'] = 'Egina'; $labels['settingsfor'] = 'Honen ezarpenak:'; -$labels['about'] = 'About'; +$labels['about'] = 'Honi buruz'; $labels['preferences'] = 'Hobespenak'; $labels['userpreferences'] = 'Erabiltzaile hobespenak'; $labels['editpreferences'] = 'Erabiltzaile hobespenak editatu'; @@ -332,100 +330,101 @@ $labels['newidentity'] = 'Identitate berria'; $labels['newitem'] = 'Elementu berria'; $labels['edititem'] = 'Elementua Editatu'; $labels['preferhtml'] = 'HTML nahiago'; -$labels['defaultcharset'] = 'Default Character Set'; -$labels['htmlmessage'] = 'HTML Mezua'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; +$labels['defaultcharset'] = 'Lehenetsitako karaktere-jokoa'; +$labels['htmlmessage'] = 'HTML mezua'; +$labels['messagepart'] = 'Zatia'; +$labels['digitalsig'] = 'Sinadura digitala'; +$labels['dateformat'] = 'Data-formatua'; +$labels['timeformat'] = 'Ordu-formatua'; $labels['prettydate'] = 'Data politak'; $labels['setdefault'] = 'Lehenespenak ezarri'; -$labels['autodetect'] = 'Auto'; +$labels['autodetect'] = 'Automatikoa'; $labels['language'] = 'Hizkuntza'; $labels['timezone'] = 'Ordu zonaldea'; $labels['pagesize'] = 'Lerro orrialdeko'; $labels['signature'] = 'Sinadura'; $labels['dstactive'] = 'Eguneko gordeketak'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; -$labels['htmleditor'] = 'HTML mezuak sortu'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; +$labels['showinextwin'] = 'Ireki mezua leiho berrian'; +$labels['composeextwin'] = 'Idatzi leiho berrian'; +$labels['htmleditor'] = 'Idatzi HTML mezuak'; +$labels['htmlonreply'] = 'HTML mezua erantzuteko'; +$labels['htmlonreplyandforward'] = 'HTML mezua erantzuteko edo birbidaltzeko'; $labels['htmlsignature'] = 'HTML sinadura'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'Erakutsi helbide elektronikoak bere pantaila izenarekin'; $labels['previewpane'] = 'Aurrebista panela ikusi'; $labels['skin'] = 'Azal-interfazea'; $labels['logoutclear'] = 'Garbitu Zakarronzia irtetean'; $labels['logoutcompact'] = 'Trinkotu Sarrera irtetean'; $labels['uisettings'] = 'Erabiltzaile-interfazea'; $labels['serversettings'] = 'Zerbitzariaren ezarpenak'; -$labels['mailboxview'] = 'Postakutxatilaren ikuspegia'; +$labels['mailboxview'] = 'Posta-kutxatila ikuspegia'; $labels['mdnrequests'] = 'Bidaltzailearen jakinarazpena'; $labels['askuser'] = 'galdetu erabiltzaileari'; -$labels['autosend'] = 'bidali automatikoki'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ezikusi'; +$labels['autosend'] = 'bidali jasotze-agiria'; +$labels['autosendknown'] = 'bidali jasotze-agiria nire kontaktuei, bestela galdetu niri'; +$labels['autosendknownignore'] = 'bidali jasotze-agiria nire kontaktuei, bestela ez ikusi egin'; +$labels['ignore'] = 'ez ikusi'; $labels['readwhendeleted'] = 'Markatu mezua irakurrita bezala ezabatzerakoan'; $labels['flagfordeletion'] = 'Markatu mezua ezabatzeko ezabatu beharrean'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; +$labels['skipdeleted'] = 'Ez erakutsi ezabatutako mezuak'; +$labels['deletealways'] = 'Zakarrontzira bidaltzeak huts egiten badu, ezabatu'; +$labels['deletejunk'] = 'Ezabatu zuzenean +zabor-mezuak'; +$labels['showremoteimages'] = 'Erakutsi konektatutako urrutiko irudiak'; +$labels['fromknownsenders'] = 'bidaltzaile ezagunengandik'; +$labels['always'] = 'beti'; $labels['showinlineimages'] = 'Erakutsi erantzitako irudiak mezuaren azpian'; $labels['autosavedraft'] = 'Zirriborroa automatikoki gorde'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; +$labels['everynminutes'] = '$n minuturo'; +$labels['refreshinterval'] = 'Freskatu (bilatu mezu berriak eta abar)'; $labels['never'] = 'inoiz ez'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Mezuak ikusi'; -$labels['messagescomposition'] = 'Mezuak sortu'; -$labels['mimeparamfolding'] = 'Attachment names'; +$labels['immediately'] = 'berehala'; +$labels['messagesdisplaying'] = 'Mezuak bistaratzen'; +$labels['messagescomposition'] = 'Mezuak idazten'; +$labels['mimeparamfolding'] = 'Eranskinen izenak'; $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; +$labels['2047folding'] = 'Full RFC 2047 (beste batzuk)'; +$labels['force7bit'] = 'Erabili MIME kodeketa 8 bitekok karakterentzat'; +$labels['advancedoptions'] = 'Aukera aurreratuak'; +$labels['focusonnewmessage'] = 'Fokatu leihoa mezu berrian'; +$labels['checkallfolders'] = 'Egiaztatu karpeta guztiak mezu berrien bila'; +$labels['displaynext'] = 'Mezu bat ezabatu/mugitzean erakutsi hurrengo mezua'; +$labels['defaultfont'] = 'Lehenetsitako letra-mota HTML mezuetarako'; +$labels['mainoptions'] = 'Aukera nagusiak'; +$labels['browseroptions'] = 'Nabigatze-aukerak'; +$labels['section'] = 'Atala'; +$labels['maintenance'] = 'Mantenua'; +$labels['newmessage'] = 'Mezu berria'; +$labels['signatureoptions'] = 'Sinadura-aukerak'; +$labels['whenreplying'] = 'Erantzutean'; +$labels['replyempty'] = 'ez aipatu jatorrizko mezua'; +$labels['replytopposting'] = 'hasi mezu berria aipamenaren gainean'; +$labels['replybottomposting'] = 'hasi mezu berria aipamenaren azpian'; +$labels['replyremovesignature'] = 'Erantzutean ezabatu mezuaren jatorrizko sinadura'; +$labels['autoaddsignature'] = 'Gehitu sinadura automatikoki'; +$labels['newmessageonly'] = 'bakarrik mezu berria'; +$labels['replyandforwardonly'] = 'bakarri erantzun eta birbidalketak'; +$labels['insertsignature'] = 'Txertatu sinadura'; +$labels['previewpanemarkread'] = 'Markatu ikusitako mezuak irakurrita bezala'; +$labels['afternseconds'] = '$n segundo eta gero'; +$labels['reqmdn'] = 'Eskatu beti jasotze-agiria'; +$labels['reqdsn'] = 'Eskatu beti entrega-egoeraren jakinarazpena'; +$labels['replysamefolder'] = 'Kokatu erantzunak erantzuten ari den mezuarenkarpeta berean'; +$labels['defaultabook'] = 'Lehenetsitako helbide-liburua'; +$labels['autocompletesingle'] = 'Saltatu helbide elektroniko alternatiboak osatze automatikoan'; +$labels['listnamedisplay'] = 'Zerrendatu kontaktuak honela'; +$labels['spellcheckbeforesend'] = 'Egiaztatu ortografia mezua bidali aurretik'; +$labels['spellcheckoptions'] = 'Ortografia-egiaztatzearen aukerak'; +$labels['spellcheckignoresyms'] = 'Ez ikusi sinboloak dituzten hitzak'; +$labels['spellcheckignorenums'] = 'Ez ikusi zenbakiak dituzten hitzak'; +$labels['spellcheckignorecaps'] = 'Ez ikusi letra kapitalak dituzten hitzak'; +$labels['addtodict'] = 'Gehitu hiztegira'; +$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: estekak'; +$labels['standardwindows'] = 'Tratatu laster-leihoak leiho estandar bezala'; +$labels['forwardmode'] = 'Mezuak birbidaltzen'; +$labels['inline'] = 'Konektatua'; +$labels['asattachment'] = 'eranskin moduan'; $labels['folder'] = 'Karpeta'; $labels['folders'] = 'Karpetak'; $labels['foldername'] = 'Karpeta izena'; @@ -435,47 +434,47 @@ $labels['create'] = 'Sortu'; $labels['createfolder'] = 'Karpeta berria sortu'; $labels['managefolders'] = 'Karpeta kudeaketa'; $labels['specialfolders'] = 'Karpeta bereziak'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; +$labels['properties'] = 'Ezaugarriak'; +$labels['folderproperties'] = 'Karpeta-ezaugarriak'; +$labels['parentfolder'] = 'Goragoko karpeta'; +$labels['location'] = 'Kokalekua'; +$labels['info'] = 'Informazioa'; +$labels['getfoldersize'] = 'Klikatu ikusteko karpetaren tamaina'; +$labels['changesubscription'] = 'Klikatu harpidetza aldatzeko'; +$labels['foldertype'] = 'Karpeta mota'; +$labels['personalfolder'] = 'Karpeta pribatua'; +$labels['otherfolder'] = 'Beste erabiltzaileen karpetak'; +$labels['sharedfolder'] = 'Karpeta publikoa'; $labels['sortby'] = 'Honela ordenatu'; $labels['sortasc'] = 'Goraka ordenatu'; $labels['sortdesc'] = 'Beheraka ordenatu'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; +$labels['undo'] = 'Desegin'; +$labels['installedplugins'] = 'Instalatutako plugin-ak'; $labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; +$labels['version'] = 'Bertsioa'; +$labels['source'] = 'Iturria'; +$labels['license'] = 'Lizentzia'; +$labels['support'] = 'Eskuratu laguntza'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; $labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; +$labels['english'] = 'Ingelesa'; +$labels['westerneuropean'] = 'Mendebaldeko Europearra'; +$labels['easterneuropean'] = 'Ekialdeko europearra'; +$labels['southeasterneuropean'] = 'Hego-ekialdeko europearra'; +$labels['baltic'] = 'Baltikoa'; +$labels['cyrillic'] = 'Zirilikoa'; +$labels['arabic'] = 'Arabiarra'; +$labels['greek'] = 'Grekoa'; +$labels['hebrew'] = 'Hebrearra'; +$labels['turkish'] = 'Turkiarra'; +$labels['nordic'] = 'Nordikoa'; $labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; +$labels['celtic'] = 'Zeltiar'; +$labels['vietnamese'] = 'Vietnamdarra'; +$labels['japanese'] = 'Japoniarra'; +$labels['korean'] = 'Korearra'; +$labels['chinese'] = 'Txinatarra'; ?> diff --git a/program/localization/eu_ES/messages.inc b/program/localization/eu_ES/messages.inc index 6aa6cbb22..7d2025804 100644 --- a/program/localization/eu_ES/messages.inc +++ b/program/localization/eu_ES/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Errore bat gertatu da!'; $messages['loginfailed'] = 'Saio hasierak huts egin du.'; $messages['cookiesdisabled'] = 'Zure nabigatzaileak ez ditu cookie-rik onartzen'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Eskatutako txartela ez da aurkitu'; $messages['contactsearchonly'] = 'Sartu kontaktua aurkitzeko bilaketa daturen bat.'; $messages['sendingfailed'] = 'Huts mezua bidaltzerakoan'; $messages['senttooquickly'] = 'Itxaron $sec segundo mezua bidali aurretik, mesedez.'; -$messages['errorsavingsent'] = 'Errorea gertatu da bidalitako mezua gordetzean'; -$messages['errorsaving'] = 'Errore bat gertatu da gordetzean'; $messages['errormoving'] = 'Ezin da mezua mugitu'; $messages['errorcopying'] = 'Ezin d(ir)a kopiatu mezua(k).'; $messages['errordeleting'] = 'Ezin da mezua ezabatu'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP errorea: $msg'; $messages['emailformaterror'] = 'Helbide elektronikoa ez da baliozkoa: $email'; $messages['toomanyrecipients'] = 'Hartzaile gehiegi. Txikitu hartzaile kopura hona $max.'; $messages['maxgroupmembersreached'] = 'Taldeko partaideen kopurua $max -ko maximoa gainditzen du:'; -$messages['internalerror'] = 'Barne akatsa. Saiatu berriz, mesedez.'; $messages['contactdelerror'] = 'Ezin d(ir)a kontaktua(k) ezabatu.'; $messages['contactdeleted'] = 'Kontaktua(k) ongi ezabatu dira.'; $messages['contactrestoreerror'] = 'Ezin d(ir)a ezabatutako kontaktua(k) leheneratu.'; diff --git a/program/localization/fa_AF/labels.inc b/program/localization/fa_AF/labels.inc index 40d7cf19d..4abf65245 100644 --- a/program/localization/fa_AF/labels.inc +++ b/program/localization/fa_AF/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'به اين پروژه خوش امديد'; $labels['username'] = 'نام کاربر'; $labels['password'] = 'شفر'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'نامه های ناتکمیل'; $labels['sent'] = 'ارسال شده'; $labels['trash'] = 'اشغال دانی'; $labels['junk'] = 'بیکاره'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'مضمون'; $labels['from'] = 'ارسال کننده'; -$labels['sender'] = 'Sender'; $labels['to'] = 'ګيرينده'; $labels['cc'] = 'تکثیر'; $labels['bcc'] = 'تکثیر پنهان'; $labels['replyto'] = 'جواب نامه'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'تاريخ'; $labels['size'] = 'اندازه'; $labels['priority'] = 'اولویت'; $labels['organization'] = 'تنظیمات'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'پوشه ها'; $labels['messagesfromto'] = 'از مقدار پيغام به مقدار حساب شده'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'از شمار پيغام های حساب شده'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'تکثیر'; -$labels['move'] = 'Move'; $labels['moveto'] = 'انتقال بدهید به ...'; $labels['download'] = 'داونلود کردن'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'نام فايل'; $labels['filesize'] = 'اندازه فايل'; $labels['addtoaddressbook'] = 'در کتاب ادرس علاوه نماييد'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'اکتوبر'; $labels['longnov'] = 'نومبر'; $labels['longdec'] = 'دسمبر'; $labels['today'] = 'امروز'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'بررسي کردن پيغام های جديد'; $labels['compose'] = 'نوشتن پیام حدید'; $labels['writenewmessage'] = 'ساختن پيغام جديد'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'جواب دادن به پيغام'; $labels['replytoallmessage'] = 'به فرستنده و تمام گيرينده ها جواب بدهيد'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'فرستادن این پیام به دیگران / فارورد'; $labels['deletemessage'] = 'حذف کردن پيغام'; $labels['movemessagetotrash'] = 'پيغام را به اشيآيي حذف شده منتقل نماييد'; @@ -122,88 +102,39 @@ $labels['nextmessage'] = 'پيغام بعدي رانشان دهيد'; $labels['lastmessage'] = 'پيغام اخير را نشان دهيد'; $labels['backtolist'] = 'بازگشتن به لست پيغام'; $labels['viewsource'] = 'منبع / کود را نشان دهيد'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'پيغام ها را نشاني کنيد'; $labels['markread'] = 'مانند خوانده شده'; $labels['markunread'] = 'مانند خوانده نشده'; $labels['markflagged'] = 'مانند نشانی شده'; $labels['markunflagged'] = 'مانند نشانی ناشده'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'انتخاب کردن'; $labels['all'] = 'تمام'; $labels['none'] = 'هيچ کدام'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'ناخوانده'; $labels['flagged'] = 'نشانی شده'; $labels['unanswered'] = 'پیامهای جواب نداده شده'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; $labels['filter'] = 'تصفیه کردن'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'هيچ کدام'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'خلاصه'; $labels['empty'] = 'خالي'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = '‌طريقه استعمال ديسک'; $labels['unknown'] = 'نامعلوم'; $labels['unlimited'] = 'نامعين/ نامحدود'; $labels['quicksearch'] = 'جستجوی سریع'; $labels['resetsearch'] = 'بازنشاندن جستجو'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'در پینجره ای جدید باز کنید'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'پيغام را همين حالا ارسال کنيد'; $labels['savemessage'] = 'این پیش نویس را حفظ نمایید'; $labels['addattachment'] = 'ضميمه نمودن يک فايل'; $labels['charset'] = 'ست کرکتر ها'; $labels['editortype'] = 'روش تصحیح کننده / نوشتاری'; $labels['returnreceipt'] = 'رسید برای مراجعت نامه'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'املا را بررسي کنيد'; $labels['resumeediting'] = 'ادامه / بازگشت به تصحیی کردن / نوشتن'; $labels['revertto'] = 'رجوع کردن به'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'ضميمه ها'; $labels['upload'] = 'اپلود کردن'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'بستن'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'کم'; $labels['lowest'] = 'کمترین'; $labels['normal'] = 'عادی'; @@ -212,10 +143,6 @@ $labels['highest'] = 'عاليترين'; $labels['nosubject'] = 'مضمون ندارد'; $labels['showimages'] = 'نمايش دادن تصاوير'; $labels['alwaysshow'] = 'همیشه نشان بده تصاویر را از این فرسیتنده﷼'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'ایچ تی ام ایل'; $labels['plaintoggle'] = 'متن ساده'; $labels['savesentmessagein'] = 'پیام ارسال شده را ذخیره کن در'; @@ -224,7 +151,6 @@ $labels['maxuploadsize'] = '$sizeزیاد ترین اندازه اجازه دا $labels['addcc'] = 'نسخیه دوم را علاوه کنید'; $labels['addbcc'] = 'نسخه پنهان را علاوه کنید'; $labels['addreplyto'] = 'علاوه کردن'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'فرستانده این پیام خواهش نموده زمانیکه شما نامه را خواندید براش آگاهی داده شود آيا شما ميخواهيد که فرستنده را آګاه سازيد'; $labels['receiptread'] = 'بازگشت رسید (خوانده شده)'; $labels['yourmessage'] = 'برای پيغام شما اين يک رسید بازگشت است'; @@ -232,97 +158,32 @@ $labels['receiptnote'] = 'يادداشت : اين رسيد شما را فقط ا $labels['name'] = 'نشان دادن نام'; $labels['firstname'] = 'اسم/ نام'; $labels['surname'] = 'اسم فاميلي / تخلص'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'ايميل'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'آدرس جديد را علاوه کنيد'; $labels['editcontact'] = 'آدرس جدید را تصحیح کنید'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'تصحيح کردن'; $labels['cancel'] = 'لغو کردن/ حذف کردن'; $labels['save'] = 'حفظ کردن'; $labels['delete'] = 'حذف کردن'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'کارت تماس جديد را بسازيد'; $labels['deletecontact'] = 'آدرس های انتخاب شده را حذف کنيد'; $labels['composeto'] = 'ايمیل را نوشته کنيد به'; $labels['contactsfromto'] = 'از$count$to به $from آدرس ها از'; $labels['print'] = 'چاپ کردن'; $labels['export'] = 'صادر کردن'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'صادر نماییدVcardآدرس ها را به فرمت'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'بسته قبلي را نشان دهيد'; $labels['firstpage'] = 'بسته اولي را نشان دهيد'; $labels['nextpage'] = 'بسته بعدي را نشان دهيد'; $labels['lastpage'] = 'بسته اخير را نشان دهيد'; -$labels['group'] = 'Group'; $labels['groups'] = 'گروه ها'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'ادرس های شخصي'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'وارد کردن'; $labels['importcontacts'] = 'آدرس ها را وارد نمایید'; $labels['importfromfile'] = 'از یک فایل وارد نمایید'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'تمام کتاب آدرس ها را عوض نمایید'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'اجرا شد'; $labels['settingsfor'] = 'تنظیمات برای'; -$labels['about'] = 'About'; $labels['preferences'] = 'ترجيحات'; $labels['userpreferences'] = 'ترجيحات کاربر'; $labels['editpreferences'] = 'تصحيح کردن ترجيحات کاربر'; @@ -332,12 +193,7 @@ $labels['newidentity'] = 'شناخت جديد'; $labels['newitem'] = 'فقره جديد'; $labels['edititem'] = 'تصحيح کردن فقره'; $labels['preferhtml'] = 'نشان دادن ايچ ټي ام ايل'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'پيغام ايچ ټي‌ام ايل'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'تاريخ های مهم'; $labels['setdefault'] = 'بطور همیشگی انتخاب نمایید'; $labels['autodetect'] = 'اتومات'; @@ -346,13 +202,8 @@ $labels['timezone'] = 'ناحيه زمانی'; $labels['pagesize'] = 'تعداد سطر ها در صفحه'; $labels['signature'] = 'امضا'; $labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'پيغام ايچ ټي ام ايل رانوشته کنيد'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'امضای حساب ایمیل بشکل ایچ تی ام ال'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'چوکات پیشنما را نشان دهید'; $labels['skin'] = 'تمپلیت محیط کاربری'; $labels['logoutclear'] = 'Clear Trash on logout'; @@ -363,69 +214,26 @@ $labels['mailboxview'] = 'طرز نمایش صندوق پستی'; $labels['mdnrequests'] = 'آگاهی های ارسال کننده'; $labels['askuser'] = 'از کاربر بپرسید'; $labels['autosend'] = 'پیام را بطور خودکار روان کنید'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'رد کردن'; $labels['readwhendeleted'] = 'در هنگام حفظ پیام را خوانده شده نشانی کنید'; $labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; $labels['skipdeleted'] = 'پیام های حذف شده را نمایش ندهید'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Display remote inline images'; $labels['fromknownsenders'] = 'نامه های از آدرس های شناخته شده'; $labels['always'] = 'همیشه'; $labels['showinlineimages'] = 'تصاویر ضمیمه شده را در پایین پیام نشان دهید.'; $labels['autosavedraft'] = 'بصورت خودکار پیش نويس را حفظ کنيد'; $labels['everynminutes'] = 'دقیفه$n هر'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'هیچگاه'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'نمایش دادن پیام ها'; $labels['messagescomposition'] = 'ایجاد کردن پیام جدید'; $labels['mimeparamfolding'] = 'نام های ضمیمه ها'; $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Full RFC 2047 (دیگر ها)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'انتخاب های پیشرفته'; $labels['focusonnewmessage'] = 'فوکس دادن پینجره مرورگر به پیام جدید'; $labels['checkallfolders'] = 'تمام پوشه ها را بخاطر پیام های جدید بررسی کنید'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'پوشه'; $labels['folders'] = 'پوشه ها'; $labels['foldername'] = 'نام پوشه'; @@ -435,47 +243,11 @@ $labels['create'] = 'ایجاد کردن'; $labels['createfolder'] = 'ایجاد پوشه جدید'; $labels['managefolders'] = 'اداره کردن پوشه ها'; $labels['specialfolders'] = 'پوشه های مخصوص'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'فهرست کردن توسط'; $labels['sortasc'] = 'فهرست کردن از طرف بالا به پايين'; $labels['sortdesc'] = 'فهرست کردن از طرف پايين به بالا'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'بایت'; $labels['KB'] = 'کیلو بایت'; $labels['MB'] = 'میگا بایت'; $labels['GB'] = 'گیگا بایت'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/fa_AF/messages.inc b/program/localization/fa_AF/messages.inc index 42f34be88..643a9f7db 100644 --- a/program/localization/fa_AF/messages.inc +++ b/program/localization/fa_AF/messages.inc @@ -15,21 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'خطا رخ داد'; $messages['loginfailed'] = 'خطا در ورود به سیستم'; $messages['cookiesdisabled'] = 'جستجوگر شما cookies را قبول نميکند'; $messages['sessionerror'] = 'جلسه شما وجود ندارد و يا هم از زمان معين آن گذشته است'; $messages['storageerror'] = 'وصل شدن به آیمیپ سرور موفق نشد'; -$messages['servererror'] = 'Server Error!'; $messages['servererrormsg'] = 'خطای سرور: $msg'; $messages['dberror'] = 'خطای پایگاه داده'; $messages['requesttimedout'] = 'عدم پاسخگویی در زمان مقرر'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; $messages['invalidhost'] = 'نام سرور نامعتبر است'; $messages['nomessagesfound'] = 'هيچ پيغامی در اين صندوق پستي دريافت نه شد'; $messages['loggedout'] = 'جلسه شما بصورت مکمل فسخ شده است خدا حافظ'; @@ -47,31 +40,23 @@ $messages['messagesaved'] = 'پيغام را به پیش نويس حفظ کرد' $messages['successfullysaved'] = 'حفظ پیام موفقانه صورت گرفت'; $messages['addedsuccessfully'] = 'آدرس بصورت مکمل در کتاب ادرس علاوه شد'; $messages['contactexists'] = 'يک آدرس همرا اين ايميل ادرس قبلاً وجود دارد'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'برای حفظ استقلال پيغام شما، تصاویر اجنبی این پیام بلاک شده اند'; $messages['encryptedmessage'] = 'اين يک پيغام مخفي است و اشکار شده نميتواند معذرت ميخواهيم'; $messages['nocontactsfound'] = 'هيچ آدرسی دريافت نه شد'; $messages['contactnotfound'] = 'آدرس خواسته شده دريافت نه شد'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'فرستادن پيغام موفق نه شد'; $messages['senttooquickly'] = 'ثانیه منتظر باشید$secلطفا مدت قبل از ارسال این پیام'; -$messages['errorsavingsent'] = 'در جريان حفظ کردن پیام ارسال شده يکاشتباه به وجود امد'; -$messages['errorsaving'] = 'در جريان حفظ کردن يکاشتباه به وجود امد'; $messages['errormoving'] = 'پيغام نقل مکان شده نتوانست'; $messages['errorcopying'] = 'امکان کپی پیام (ها) وجود ندارد'; $messages['errordeleting'] = 'پيغام حذف شده نتوانست'; $messages['errormarking'] = 'امکان انتخاب پیام (ها) وجود ندارد'; $messages['deletecontactconfirm'] = 'آيا واقعاً شما ميخواهيد که آدرس های انتخاب شده را حذف کنيد؟'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'آيا واقعاً شما ميخواهيد که پيغام هاي انتخاب شده را حذف کنيد؟'; $messages['deletefolderconfirm'] = 'آيا واقعاً شما ميخواهيد که اين پوشه را حذف کنيد؟'; $messages['purgefolderconfirm'] = 'آيا واقعاً شما ميخواهيد تمام پيغام های که در اين پوشه وجود دارد حذف کنيد؟'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; $messages['groupdeleting'] = 'در حال حذف گروه...'; $messages['folderdeleting'] = 'در حال حذف پوشه'; $messages['foldermoving'] = 'در حال انتقال پوشه'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'فورمه بصورت مکمل خانه پري نه شده است'; $messages['noemailwarning'] = 'لطفاً يک ايميل ادرس موجود را داخل کنيد'; $messages['nonamewarning'] = 'لطفاً يک نام وارد کنيد'; @@ -83,7 +68,6 @@ $messages['nobodywarning'] = 'اين پيغام را بدون متن بفرست $messages['notsentwarning'] = 'پيغام ارسال نه شده است آیا میخواهید که از این نامه صرف نظر نمایید'; $messages['noldapserver'] = 'لطفاً يک ايل دپ سرور را بخاطر جستجو انتخاب کنيد'; $messages['nosearchname'] = 'لطفاً يک نام تماس و يا هم يک ايميل ادرس را داخل کنيد'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr پیام یافت شد'; $messages['contactsearchsuccessful'] = '$nr حساب کاربری یافت شد'; $messages['searchnomatch'] = 'جستجو گر موفق به دریافت هیچ گونه اثری نشد'; @@ -91,84 +75,24 @@ $messages['searching'] = 'در حال جستجو..'; $messages['checking'] = 'در حال بررسی'; $messages['nospellerrors'] = 'هيچ اشتباه املايي را دريافت نه کرد'; $messages['folderdeleted'] = 'پوشه موفقانه از بين رفت/ حذف گرديد'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; $messages['folderpurged'] = 'محتوای پوشه ها با موفقیت پاک شدند'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'با موفقیت حذف شد'; $messages['converting'] = 'در حال پاک کردن ساختار'; $messages['messageopenerror'] = 'پيغام از سرور جريان کرده نتوانست'; $messages['fileuploaderror'] = 'بارگزاری فايل با خطا مواجه شد.'; $messages['filesizeerror'] = 'تثبیت شده میباشد$size حجم فایل آپلود شده بیشتر از حجم کلی'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'اجازه نمامه کود / منبع این آدرس قفط خواندنی است'; $messages['errorsavingcontact'] = 'ادرس این پیام را حفظکرده نتوانست'; $messages['movingmessage'] = 'ذر حال انتقال پیام...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'یک رسید برای ارسال کننده این پیام فرستاده شد.'; $messages['errorsendingreceipt'] = 'رسيد ارسال شده نتوانست'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'شما این شناخت نامه را حذف کرده نمیتوانید. این آخرین شناخت نامه شما است.'; $messages['forbiddencharacter'] = 'نام پوشه دارای یک کرکتر ممنوعه است.'; $messages['selectimportfile'] = 'لطفاً یک فایل را برای آپلود کردن انتخاب نمایید.'; $messages['addresswriterror'] = 'کتابچه آدرس انتخاب شده دارای اجازه نامه نوشتاری نیست.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'در حال وارد کردن لطفا صبر کنید.'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'Successfully imported $inserted contacts, $skipped existing entries skipped:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'اجازه این عملکرد را ندارید'; $messages['nofromaddress'] = 'بخش ایمیل آدرس در شناخت نامه انتخاب شده مفقود است.'; $messages['editorwarning'] = 'استفاده از تصحیح کننده متن ساده تمام فرمت و ساختار داده شده را از بین خواهد برد. آیا میخواهید که ادامه بدهید.'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/fa_IR/labels.inc b/program/localization/fa_IR/labels.inc index ad016a7c5..de23577a0 100644 --- a/program/localization/fa_IR/labels.inc +++ b/program/localization/fa_IR/labels.inc @@ -15,23 +15,21 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'به $product خوش آمدید'; $labels['username'] = 'نام کاربری'; $labels['password'] = 'گذرواژه'; $labels['server'] = 'سرویس‌دهنده'; $labels['login'] = 'ورود'; $labels['logout'] = 'برون‌رفت'; -$labels['mail'] = 'نامه'; +$labels['mail'] = 'پست'; $labels['settings'] = 'تنظیمات'; $labels['addressbook'] = 'دفتر نشانی'; $labels['inbox'] = 'صندوق ورودی'; $labels['drafts'] = 'پیش‌نویس‌ها'; $labels['sent'] = 'فرستاده شده'; -$labels['trash'] = 'سطل آشغال'; +$labels['trash'] = 'حذف شده‌ها'; $labels['junk'] = 'بنجل'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'نمایش نام واقعی برای پوشه‌های ویژه'; $labels['subject'] = 'موضوع'; $labels['from'] = 'از'; $labels['sender'] = 'فرستنده'; @@ -73,7 +71,7 @@ $labels['monday'] = 'دوشنبه'; $labels['tuesday'] = 'سه‌شنبه'; $labels['wednesday'] = 'چهارشنبه'; $labels['thursday'] = 'پنج‌شنبه'; -$labels['friday'] = 'جمعه'; +$labels['friday'] = 'آدینه'; $labels['saturday'] = 'شنبه'; $labels['jan'] = 'ژان'; $labels['feb'] = 'فور'; @@ -100,19 +98,19 @@ $labels['longoct'] = 'اکتبر'; $labels['longnov'] = 'نوامبر'; $labels['longdec'] = 'دسامبر'; $labels['today'] = 'امروز'; -$labels['refresh'] = 'نوسازی'; +$labels['refresh'] = 'بازخوانی'; $labels['checkmail'] = 'بررسی پیغام‌های جدید'; -$labels['compose'] = 'نوشتن پیغام'; +$labels['compose'] = 'نوشتن'; $labels['writenewmessage'] = 'ایجاد پیغام جدید'; $labels['reply'] = 'پاسخ'; $labels['replytomessage'] = 'پاسخ به فرستنده'; $labels['replytoallmessage'] = 'پاسخ به فهرست یا به فرستنده و تمام گیرنده‌ها'; $labels['replyall'] = 'پاسخ به همه'; $labels['replylist'] = 'پاسخ به فهرست'; -$labels['forward'] = 'ارجاع'; -$labels['forwardinline'] = 'ارجاع خطی'; -$labels['forwardattachment'] = 'ارجاع به صورت پیوست'; -$labels['forwardmessage'] = 'ارجاع پیغام'; +$labels['forward'] = 'باز ارسال'; +$labels['forwardinline'] = 'باز ارسال خطی'; +$labels['forwardattachment'] = 'باز ارسال به صورت پیوست'; +$labels['forwardmessage'] = 'باز ارسال پیغام'; $labels['deletemessage'] = 'حذف پیغام'; $labels['movemessagetotrash'] = 'انتقال پیغام به زباله‌دان'; $labels['printmessage'] = 'چاپ این پیغام'; @@ -131,7 +129,7 @@ $labels['markunflagged'] = 'به عنوان نشانه‌گذاری نشده' $labels['moreactions'] = 'کارهای دیگر...'; $labels['more'] = 'بيشتر'; $labels['back'] = 'بازگشت'; -$labels['options'] = 'تنظیمات'; +$labels['options'] = 'گزینه‌ها'; $labels['select'] = 'انتخاب'; $labels['all'] = 'همه'; $labels['none'] = 'هیچ‌کدام'; @@ -139,7 +137,7 @@ $labels['currpage'] = 'صفحه جاری'; $labels['unread'] = 'خوانده‌نشده'; $labels['flagged'] = 'پرچم‌دار'; $labels['unanswered'] = 'پاسخ داده نشده'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = 'با پیوست'; $labels['deleted'] = 'حذف شده'; $labels['undeleted'] = 'حذف نشده'; $labels['invert'] = 'وارونه'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'نوع مشاهده فهرست'; $labels['folderactions'] = 'اعمال پوشه...'; $labels['compact'] = 'فشرده'; $labels['empty'] = 'خالی'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'وارد کردن پیغام‌ها'; $labels['quota'] = 'فضای استفاده شده'; $labels['unknown'] = 'ناشناخته'; $labels['unlimited'] = 'نامحدود'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'جستجوی دوباره'; $labels['searchmod'] = 'اصلاحات جستجو'; $labels['msgtext'] = 'کل پیغام'; $labels['body'] = 'بدنه'; -$labels['type'] = 'Type'; +$labels['type'] = 'نوع'; +$labels['namex'] = 'نام'; $labels['openinextwin'] = 'باز کردن در پنجره‌ی جدید'; $labels['emlsave'] = 'بارگیری (.eml)'; $labels['changeformattext'] = 'نمایش در قالب متنی'; @@ -310,15 +309,18 @@ $labels['nextpage'] = 'نمایش صفحه بعدی'; $labels['lastpage'] = 'نمایش صفحه آخر'; $labels['group'] = 'گروه'; $labels['groups'] = 'گروه‌ها'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'فهرست اعضاء گروه'; $labels['personaladrbook'] = 'نشانی‌های شخصی'; $labels['searchsave'] = 'ذخیره جستجو'; $labels['searchdelete'] = 'حذف جستجو'; $labels['import'] = 'وارد کردن'; $labels['importcontacts'] = 'وارد کردن تماس‌ها'; $labels['importfromfile'] = 'وارد کردن از پرونده‌ی:'; -$labels['importtarget'] = 'افزودن تماس‌های جدید به دفتر نشانی:'; +$labels['importtarget'] = 'افزودن تماس‌ها به'; $labels['importreplace'] = 'جایگیزینی کامل دفتر نشانی'; +$labels['importgroups'] = 'وارد کردن وظایف گروه'; +$labels['importgroupsall'] = 'همه (ایجاد گروه‌ها در صورت نیاز)'; +$labels['importgroupsexisting'] = 'فقط برای گروه‌های موجود'; $labels['importdesc'] = 'شما می‌توانید تماس‌ها را از یک دفتر نشانی موجود بارگذاری نمایید.
هم اکنون ما وارد کردن آدرس‌ها را از vCard یا قالب داده CVS (جدا شده با کاما) پشتیبانی می‌کنیم.'; $labels['done'] = 'انجام شد'; $labels['settingsfor'] = 'تنظیمات برای'; @@ -352,7 +354,7 @@ $labels['htmleditor'] = 'HTML ‌نوشتن پیغام‌های'; $labels['htmlonreply'] = 'فقط در پاسخ به پیغام HTML'; $labels['htmlonreplyandforward'] = 'در بازگردانی یا پاسخ به پیغام‌های HTML'; $labels['htmlsignature'] = 'HTML امضای'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'نمایش آدرس ایمیل با نام نمایشی'; $labels['previewpane'] = 'نمایش قاب پیش‌نمایش'; $labels['skin'] = 'پوسته ظاهری'; $labels['logoutclear'] = 'تمیز کردن زباله دان هنگام برون‌رفت'; @@ -422,7 +424,7 @@ $labels['spellcheckignorenums'] = 'نادیده گرفتن کلمات دارای $labels['spellcheckignorecaps'] = 'نادیده گرفتن کلمات با حروف بزرگ'; $labels['addtodict'] = 'اضافه کردن به واژه‌نامه'; $labels['mailtoprotohandler'] = 'ثبت نگه‌دارنده پروتوکل برای mailto: پیوندها'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'بکار بردن پاپ‌آپ‌ها به صورت پنجره‌ی استاندارد'; $labels['forwardmode'] = 'بازگردانی پیغام'; $labels['inline'] = 'خطی'; $labels['asattachment'] = 'به عنوان پیوست'; diff --git a/program/localization/fa_IR/messages.inc b/program/localization/fa_IR/messages.inc index 1530400b6..43f5a6c2a 100644 --- a/program/localization/fa_IR/messages.inc +++ b/program/localization/fa_IR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'خطایی رخ داد!'; $messages['loginfailed'] = 'ورود ناموفق بود.'; $messages['cookiesdisabled'] = 'مرورگر شما کوکی‌ها را قبول نمی‌کند.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'مخاطب درخواست شده پیدا نشد $messages['contactsearchonly'] = 'برای یافتن مخاطب عبارتی را جستجو کنید'; $messages['sendingfailed'] = 'ارسال پیغام ناموفق بود.'; $messages['senttooquickly'] = 'لطفا قبل از ارسال این پیغام $sec ثانیه صبر کنید.'; -$messages['errorsavingsent'] = 'در لحظه ذخیره پیغام ارسال شده، مشکلی رخ داد.'; -$messages['errorsaving'] = 'هنگام ذخیره‌سازی، مشکلی رخ داد.'; $messages['errormoving'] = 'پیغام(ها) منتقل نشدند.'; $messages['errorcopying'] = 'پیغام(ها) کپی نشدند.'; $messages['errordeleting'] = 'پیغام(ها) حذف نشدند.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'خطای SMTP: $msg'; $messages['emailformaterror'] = 'پست الکترونیکی نامعتبر: $email'; $messages['toomanyrecipients'] = 'گیرنده‌های بیش از اندازه: تعداد گیرنده ها را به $max کاهش دهید.'; $messages['maxgroupmembersreached'] = 'تعداد اعضای گروه بیشتر از $max است.'; -$messages['internalerror'] = 'خطای داخلی رخ داد. لطفا دوباره امتحان کنید.'; $messages['contactdelerror'] = 'حذف مخاطب(ها) انجام شد.'; $messages['contactdeleted'] = 'مخاطب(ها) با موفقیت حذف شدند.'; $messages['contactrestoreerror'] = 'مخاطب(های) حذف شده بازگردانی نخواهند شد.'; diff --git a/program/localization/fi_FI/labels.inc b/program/localization/fi_FI/labels.inc index a3764ed85..8a9064028 100644 --- a/program/localization/fi_FI/labels.inc +++ b/program/localization/fi_FI/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Tervetuloa $product -käyttäjäksi'; $labels['username'] = 'Käyttäjätunnus'; $labels['password'] = 'Salasana'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Luonnokset'; $labels['sent'] = 'Lähetetyt'; $labels['trash'] = 'Roskakori'; $labels['junk'] = 'Roskaposti'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Aihe'; $labels['from'] = 'Lähettäjä'; $labels['sender'] = 'Lähettäjä'; @@ -178,6 +175,7 @@ $labels['searchmod'] = 'Hakukriteerit'; $labels['msgtext'] = 'Koko viesti'; $labels['body'] = 'Runko'; $labels['type'] = 'Tyyppi'; +$labels['namex'] = 'Nimi'; $labels['openinextwin'] = 'Avaa uudessa ikkunassa'; $labels['emlsave'] = 'Tallenna (.eml)'; $labels['changeformattext'] = 'Näytä raakatekstimuodossa'; @@ -310,14 +308,12 @@ $labels['nextpage'] = 'Näytä seuraava luettelo'; $labels['lastpage'] = 'Näytä viimeinen luettelo'; $labels['group'] = 'Ryhmä'; $labels['groups'] = 'Ryhmät'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Henkilökohtaiset osoitteet'; $labels['searchsave'] = 'Tallenna haku'; $labels['searchdelete'] = 'Poista haku'; $labels['import'] = 'Tuo'; $labels['importcontacts'] = 'Tuo yhteystiedot'; $labels['importfromfile'] = 'Tuo tiedostosta:'; -$labels['importtarget'] = 'Lisää uudet yhteystiedot osoitekirjaan:'; $labels['importreplace'] = 'Korvaa koko osoitekirja'; $labels['importdesc'] = 'Voit tuoda yhteystietoja olemassa olevasta osoitekirjasta.
Tuettuja muotoja ovat vCard ja CSV (pilkuin erotetut arvot).'; $labels['done'] = 'Valmis'; @@ -334,7 +330,6 @@ $labels['edititem'] = 'Muokkaa'; $labels['preferhtml'] = 'Käytä HTML:aa'; $labels['defaultcharset'] = 'Oletusmerkistökoodaus'; $labels['htmlmessage'] = 'HTML-viesti'; -$labels['messagepart'] = 'Part'; $labels['digitalsig'] = 'Digitaalinen allekirjoitus'; $labels['dateformat'] = 'Päiväyksen muoto'; $labels['timeformat'] = 'Ajan muoto'; @@ -424,7 +419,6 @@ $labels['addtodict'] = 'Lisää sanakirjaan'; $labels['mailtoprotohandler'] = 'Rekisteröi mailto:-linkkien protokollakäsitteljä'; $labels['standardwindows'] = 'Käsittele popup-ikkunoita tavallisina ikkunoina'; $labels['forwardmode'] = 'Viestin välitys'; -$labels['inline'] = 'inline'; $labels['asattachment'] = 'liitteenä'; $labels['folder'] = 'Kansio'; $labels['folders'] = 'Kansiot'; diff --git a/program/localization/fi_FI/messages.inc b/program/localization/fi_FI/messages.inc index d581f53df..1b3c3ea49 100644 --- a/program/localization/fi_FI/messages.inc +++ b/program/localization/fi_FI/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Virhe havaittu.'; $messages['loginfailed'] = 'Sisäänkirjautuminen epäonnistui'; $messages['cookiesdisabled'] = 'Selaimesi ei hyväksy evästeitä'; @@ -27,6 +26,8 @@ $messages['dberror'] = 'Tietokantavirhe!'; $messages['requesttimedout'] = 'Pyyntö aikakatkaistiin'; $messages['errorreadonly'] = 'Toiminnon suoritus ei onnistu, koska hakemisto on vain lukutilassa.'; $messages['errornoperm'] = 'Toimintoa ei voitu suorittaa. Ei oikeuksia.'; +$messages['erroroverquota'] = 'Toiminnon suoritus epäonnistui. Levytila on loppu.'; +$messages['erroroverquotadelete'] = 'Levytila on loppu. Paina SHIFT+DEL poistaaksesi viestin.'; $messages['invalidrequest'] = 'Virheellinen pyyntö! Tietoa ei tallennettu.'; $messages['invalidhost'] = 'Virheellinen palvelinnimi.'; $messages['nomessagesfound'] = 'Kansiossa ei ole sähköpostiviestejä'; @@ -53,8 +54,8 @@ $messages['contactnotfound'] = 'Pyydettyä yhteystietoa ei löytynyt'; $messages['contactsearchonly'] = 'Anna hakusanoja, joilla yhteystietoja haetaan'; $messages['sendingfailed'] = 'Viestin lähetys epäonnistui'; $messages['senttooquickly'] = 'Odota $sec sekunti(a) ennen viestin lähettämistä'; -$messages['errorsavingsent'] = 'Lähetetyn viestin tallennuksessa tapahtui virhe'; -$messages['errorsaving'] = 'Tallennuksessa tapahtui virhe'; +$messages['errorsavingsent'] = 'Virhe tallennettaessa lähetettyä viestiä.'; +$messages['errorsaving'] = 'Virhe tallennettaessa.'; $messages['errormoving'] = 'Viestiä ei voitu siirtää'; $messages['errorcopying'] = 'Viestiä ei voitu kopioida'; $messages['errordeleting'] = 'Viestiä ei voitu poistaa'; @@ -87,7 +88,7 @@ $messages['contactsearchsuccessful'] = 'Löydetty $nr yhteystietoa'; $messages['searchnomatch'] = 'Haku ei tuottanut tuloksia'; $messages['searching'] = 'Etsitään...'; $messages['checking'] = 'Tarkistetaan...'; -$messages['nospellerrors'] = 'Kirjoitusvirheitä ei löytynyt'; +$messages['nospellerrors'] = 'Kirjoitusvirheitä ei löytynyt.'; $messages['folderdeleted'] = 'Kansio poistettu onnistuneesti'; $messages['foldersubscribed'] = 'Kansio tilattu onnistuneesti.'; $messages['folderunsubscribed'] = 'Kansion tilaus poistettu onnistuneesti.'; @@ -98,13 +99,16 @@ $messages['converting'] = 'Poistetaan asettelu viestistä...'; $messages['messageopenerror'] = 'Virhe kopioitaessa viestiä palvelimelta'; $messages['fileuploaderror'] = 'Tiedoston lähettäminen epäonnistui'; $messages['filesizeerror'] = 'Lähetettävä tiedosto ylittää sallitun enimmäiskoon $size'; -$messages['copysuccess'] = 'Kopioitu $nr osoitetta onnistuneesti'; -$messages['copyerror'] = 'Yhtään osoitetta ei voitu kopioida'; +$messages['copysuccess'] = '$nr yhteystietoa kopioitiin onnistuneesti.'; +$messages['movesuccess'] = '$nr yhteystietoa siirrettiin onnistuneesti.'; +$messages['copyerror'] = 'Yhdenkään yhteystiedon kopiointi ei onnistunut.'; +$messages['moveerror'] = 'Minkään yhteystiedon siirto ei onnistunut.'; $messages['sourceisreadonly'] = 'Tämän osoitteen lähde on kirjoitussuojattu'; $messages['errorsavingcontact'] = 'Yhteystietoa ei voitu tallentaa'; $messages['movingmessage'] = 'Siirretään viestiä...'; $messages['copyingmessage'] = 'Kopioidaan viestiä...'; $messages['copyingcontact'] = 'Kopioidaan yhteystietoja...'; +$messages['movingcontact'] = 'Siirretään yhteystieto(j)a...'; $messages['deletingmessage'] = 'Poistetaan viestejä...'; $messages['markingmessage'] = 'Merkitään viestejä...'; $messages['addingmember'] = 'Lisätään yhteystietoja ryhmään...'; @@ -118,11 +122,12 @@ $messages['selectimportfile'] = 'Valitse lähetettävä tiedosto'; $messages['addresswriterror'] = 'Valittuun osoitekirjaan ei voi kirjoittaa'; $messages['contactaddedtogroup'] = 'Yhteystiedot lisätty ryhmään'; $messages['contactremovedfromgroup'] = 'Yhteystiedot poistettu ryhmästä'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'Tuodaan, odota...'; $messages['importformaterror'] = 'Tuonti epäonnistui! Lähetetty tiedosto ei ole kelvollinen tuontitiedosto.'; $messages['importconfirm'] = '$inserted yhteystietoa tuotu onnistuneesti'; $messages['importconfirmskipped'] = 'Ohitettu $skipped olemassa olevaa merkintää'; +$messages['importmessagesuccess'] = '$nr viestiä tuotiin onnistuneesti'; +$messages['importmessageerror'] = 'Tuonti epäonnistui! Lähetetty tiedosto ei ole kelvollinen viesti tai mailbox-tiedosto'; $messages['opnotpermitted'] = 'Toiminto ei ole sallittu!'; $messages['nofromaddress'] = 'Valittu identiteetti ei sisällä sähköpostiosoitetta'; $messages['editorwarning'] = 'Vaihtaminen tekstieditoriin aiheuttaa viestin muotoilun katoamisen. Haluatko jatkaa?'; @@ -131,12 +136,12 @@ $messages['smtpconnerror'] = 'SMTP-virhe ($code): Palvelimelle yhdistäminen ep $messages['smtpautherror'] = 'SMTP-virhe ($code): Tunnistus epäonnistui'; $messages['smtpfromerror'] = 'SMTP-virhe ($code): Lähettäjän "$from" asettaminen epäonnistui ($msg)'; $messages['smtptoerror'] = 'SMTP-virhe ($code): Vastaanottajan "$to" lisääminen epäonnistui ($msg)'; -$messages['smtprecipientserror'] = 'SMTP-virhe: Ei voida jäsentää vastaanottajien listaa'; +$messages['smtprecipientserror'] = 'SMTP-virhe: Ei voida jäsentää vastaanottajien listaa.'; $messages['smtperror'] = 'SMTP-virhe: $msg'; $messages['emailformaterror'] = 'Virheellinen sähköpostiosoite: $email'; $messages['toomanyrecipients'] = 'Liikaa vastaanottajia. Vähennä vastaanottajien määrä maksimiin $max.'; $messages['maxgroupmembersreached'] = 'Ryhmän jäsenten määrä ylittää maksimin $max'; -$messages['internalerror'] = 'Ilmeni sisäinen virhe. Yritä uudelleen.'; +$messages['internalerror'] = 'Sisäinen virhe. Yritä uudelleen.'; $messages['contactdelerror'] = 'Yhteystietoja ei voitu poistaa.'; $messages['contactdeleted'] = 'Yhteystiedot poistettu onnistuneesti.'; $messages['contactrestoreerror'] = 'Poistettujen yhteystietojen palautus epäonnistui.'; @@ -162,6 +167,6 @@ $messages['invalidimageformat'] = 'Virheellinen kuvamuoto.'; $messages['mispellingsfound'] = 'Viestissä havaittiin kielioppivirheitä.'; $messages['parentnotwritable'] = 'Kansiota ei voitu siirtää tai luoda valittuun yläkansioon. Ei käyttöoikeutta.'; $messages['messagetoobig'] = 'Viestiosa on liian suuri prosessoitavaksi.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; +$messages['attachmentvalidationerror'] = 'Varoitus! Tämä liitetiedosto on epäilyttävä, koska se ei vastaa ilmoitettua tiedostotyyppiä. Jos et luoda lähettäjään, älä avaa liitetiedostoa välttääksesi mahdollista vahingollista aineistoa.

Odotettu: $expected; löydetty: $detected'; $messages['noscriptwarning'] = 'Varoitus: Tämä verkkopohjainen sähköpostipalvelu vaatii Javascriptin toimiakseen. Ota Javascript käyttöön selaimesi asetuksista.'; ?> diff --git a/program/localization/fr_FR/csv2vcard.inc b/program/localization/fr_FR/csv2vcard.inc index 0c6787124..d28df7a8a 100644 --- a/program/localization/fr_FR/csv2vcard.inc +++ b/program/localization/fr_FR/csv2vcard.inc @@ -15,7 +15,6 @@ | Author: Aleksander Machniak | +-----------------------------------------------------------------------+ */ - $map = array(); $map['anniversary'] = "Anniversaire de mariage ou fête"; $map['assistants_name'] = "Nom de l''assistant(e)"; diff --git a/program/localization/fr_FR/labels.inc b/program/localization/fr_FR/labels.inc index eee9f1ae4..dd0acf4f1 100644 --- a/program/localization/fr_FR/labels.inc +++ b/program/localization/fr_FR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bienvenue sur $product'; $labels['username'] = 'Utilisateur'; $labels['password'] = 'Mot de passe'; diff --git a/program/localization/fr_FR/messages.inc b/program/localization/fr_FR/messages.inc index 99cf02cea..fcf9eaf92 100644 --- a/program/localization/fr_FR/messages.inc +++ b/program/localization/fr_FR/messages.inc @@ -15,152 +15,156 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Une erreur est survenue !'; -$messages['loginfailed'] = 'L\'authentification a échoué'; -$messages['cookiesdisabled'] = 'Votre navigateur n\'accepte pas les cookies'; -$messages['sessionerror'] = 'Votre session est invalide ou a expiré'; -$messages['storageerror'] = 'Erreur de connexion au serveur IMAP'; +$messages['loginfailed'] = 'L\'authentification a échoué.'; +$messages['cookiesdisabled'] = 'Votre navigateur n\'accepte pas les cookies.'; +$messages['sessionerror'] = 'Votre session est invalide ou a expiré.'; +$messages['storageerror'] = 'Erreur de connexion au serveur IMAP.'; $messages['servererror'] = 'Erreur Serveur !'; -$messages['servererrormsg'] = 'Erreur du serveur: $msg'; -$messages['dberror'] = 'Erreur avec la base de donnée!'; +$messages['servererrormsg'] = 'Erreur du serveur : $msg'; +$messages['dberror'] = 'Erreur avec la base de données !'; $messages['requesttimedout'] = 'Délai de la requête expiré'; -$messages['errorreadonly'] = 'Impossible d\'effectuer cette opération. Le dossier est en lecture seule'; -$messages['errornoperm'] = 'Impossible d\'effectuer cette opération. Permission refusée'; +$messages['errorreadonly'] = 'Impossible d\'effectuer cette opération. Le dossier est en lecture seule.'; +$messages['errornoperm'] = 'Impossible d\'effectuer cette opération. Permission refusée.'; $messages['erroroverquota'] = 'Impossible d\'effectuer cette opération. Plus d\'espace libre.'; $messages['erroroverquotadelete'] = 'Plus d\'espace libre. Utilisez SHIFT+DEL pour supprimer un message.'; $messages['invalidrequest'] = 'Requête invalide ! Aucune donnée n\'a été sauvegardée.'; $messages['invalidhost'] = 'Nom du serveur invalide.'; $messages['nomessagesfound'] = 'Cette boîte aux lettres ne contient aucun message.'; -$messages['loggedout'] = 'Vous venez de vous déconnecter avec succès. Au revoir !'; +$messages['loggedout'] = 'Vous vous êtes correctement déconnecté. Au revoir !'; $messages['mailboxempty'] = 'La boîte aux lettres est vide.'; $messages['refreshing'] = 'Rafraîchissement en cours...'; -$messages['loading'] = 'Chargement...'; -$messages['uploading'] = 'Envoi du fichier...'; -$messages['uploadingmany'] = 'Envoi des fichiers ...'; -$messages['loadingdata'] = 'Chargement des données...'; +$messages['loading'] = 'Chargement en cours...'; +$messages['uploading'] = 'Transfert du fichier en cours...'; +$messages['uploadingmany'] = 'Transfert des fichiers en cours...'; +$messages['loadingdata'] = 'Chargement des données en cours...'; $messages['checkingmail'] = 'Vérification des nouveaux messages...'; -$messages['sendingmessage'] = 'Expédition du message...'; -$messages['messagesent'] = 'Message expédié.'; -$messages['savingmessage'] = 'Sauvegarde du message...'; -$messages['messagesaved'] = 'Message sauvegardé dans Brouillons'; -$messages['successfullysaved'] = 'Sauvegarde effectuée'; -$messages['addedsuccessfully'] = 'Contact ajouté dans le carnet d\'adresses'; -$messages['contactexists'] = 'Cette adresse courriel est utilisée par un autre contact'; +$messages['sendingmessage'] = 'Envoi du message en cours...'; +$messages['messagesent'] = 'Le message a bien été expédié.'; +$messages['savingmessage'] = 'Sauvegarde du message en cours...'; +$messages['messagesaved'] = 'Message sauvegardé dans Brouillons.'; +$messages['successfullysaved'] = 'La sauvegarde a bien été effectuée.'; +$messages['addedsuccessfully'] = 'Le contact a bien été ajouté dans le carnet d\'adresses.'; +$messages['contactexists'] = 'Cette adresse courriel est utilisée par un autre contact.'; $messages['contactnameexists'] = 'Il existe déjà un contact nommé ainsi.'; $messages['blockedimages'] = 'Les images distantes sont bloquées pour protéger votre vie privée.'; $messages['encryptedmessage'] = 'Désolé, ce message est chiffré et ne peut être affiché.'; -$messages['nocontactsfound'] = 'Aucun contact n\'a pu être trouvé'; +$messages['nocontactsfound'] = 'Aucun contact n\'a pu être trouvé.'; $messages['contactnotfound'] = 'Le contact demandé n\'a pas été trouvé.'; -$messages['contactsearchonly'] = 'Entrez un ou plusieurs mots clés pour trouver des contacts'; -$messages['sendingfailed'] = 'L\'envoi du message a échoué'; -$messages['senttooquickly'] = 'Vous devez attendre $sec s. pour envoyer le message'; -$messages['errorsavingsent'] = 'Une erreur est survenue pendant la sauvegarde du message envoyé'; -$messages['errorsaving'] = 'Une erreur a empêché la sauvegarde'; -$messages['errormoving'] = 'Impossible de déplacer le message'; -$messages['errorcopying'] = 'La copie de ce(s) message(s) a échoué.'; -$messages['errordeleting'] = 'Impossible d\'effacer le message'; -$messages['errormarking'] = 'Impossible de marquer le message'; +$messages['contactsearchonly'] = 'Entrez un ou plusieurs mots clés pour trouver des contacts.'; +$messages['sendingfailed'] = 'L\'envoi du message a échoué.'; +$messages['senttooquickly'] = 'Veuillez patienter $sec s. pour envoyer ce message.'; +$messages['errorsavingsent'] = 'Une erreur est apparue durant l\'enregistrement du message envoyé.'; +$messages['errorsaving'] = 'Une erreur est apparue durant l\'enregistrement.'; +$messages['errormoving'] = 'Impossible de déplacer le(s) message(s).'; +$messages['errorcopying'] = 'Impossible de copier le(s) message(s).'; +$messages['errordeleting'] = 'Impossible de supprimer le(s) message(s).'; +$messages['errormarking'] = 'Impossible de marquer le(s) message(s).'; $messages['deletecontactconfirm'] = 'Êtes-vous sûr de vouloir supprimer le(s) contact(s) sélectionné(s) ?'; $messages['deletegroupconfirm'] = 'Êtes-vous sûr de vouloir supprimer le groupe sélectionné ?'; $messages['deletemessagesconfirm'] = 'Êtes-vous sûr de vouloir supprimer le(s) message(s) sélectionné(s) ?'; $messages['deletefolderconfirm'] = 'Êtes-vous sûr de vouloir supprimer ce dossier ?'; $messages['purgefolderconfirm'] = 'Êtes-vous sûr de vouloir supprimer tous les messages de ce dossier ?'; -$messages['contactdeleting'] = 'Suppression de contact(s)...'; -$messages['groupdeleting'] = 'Suppression du groupe ...'; +$messages['contactdeleting'] = 'Suppression de contact(s) en cours...'; +$messages['groupdeleting'] = 'Suppression du groupe...'; $messages['folderdeleting'] = 'Suppression du dossier...'; $messages['foldermoving'] = 'Déplacement du dossier...'; $messages['foldersubscribing'] = 'Inscription du dossier...'; $messages['folderunsubscribing'] = 'Désinscription du dossier...'; -$messages['formincomplete'] = 'Le formulaire n\'a pas été entièrement rempli'; -$messages['noemailwarning'] = 'Veuillez spécifier un courriel valide'; -$messages['nonamewarning'] = 'Veuillez fournir un nom'; -$messages['nopagesizewarning'] = 'Veuillez indiquer une taille de page'; -$messages['nosenderwarning'] = 'Veuillez renseigner l\'adresse d\'expéditeur'; -$messages['norecipientwarning'] = 'Veuillez ajouter au moins un destinataire'; +$messages['formincomplete'] = 'Le formulaire n\'a pas été entièrement rempli.'; +$messages['noemailwarning'] = 'Veuillez spécifier un courriel valide.'; +$messages['nonamewarning'] = 'Veuillez fournir un nom.'; +$messages['nopagesizewarning'] = 'Veuillez indiquer une taille de page.'; +$messages['nosenderwarning'] = 'Veuillez renseigner l\'adresse d\'expéditeur.'; +$messages['norecipientwarning'] = 'Veuillez ajouter au moins un destinataire.'; $messages['nosubjectwarning'] = 'Le champ «Objet» est vide. Souhaitez-vous le renseigner maintenant ?'; $messages['nobodywarning'] = 'Envoyer ce message sans texte ?'; $messages['notsentwarning'] = 'Le message n\'a pas été envoyé. Voulez-vous abandonner ce message ?'; -$messages['noldapserver'] = 'Choisissez un serveur LDAP pour la recherche'; -$messages['nosearchname'] = 'Entrez un nom de contact ou un courriel'; -$messages['notuploadedwarning'] = 'Certaines pièces jointes sont en cours d\'expédition : attendez ou annulez l\'envoi.'; -$messages['searchsuccessful'] = '$nr messages trouvés'; +$messages['noldapserver'] = 'Choisissez un serveur LDAP pour la recherche.'; +$messages['nosearchname'] = 'Entrez un nom de contact ou un courriel.'; +$messages['notuploadedwarning'] = 'Toutes les pièces jointes n\'ont pas encore été transférées. Veuillez patienter ou annuler cette opération.'; +$messages['searchsuccessful'] = '$nr message(s) trouvé(s).'; $messages['contactsearchsuccessful'] = '$nr contact(s) trouvé(s).'; -$messages['searchnomatch'] = 'La recherche ne donne aucun résultat'; -$messages['searching'] = 'En cours de recherche...'; -$messages['checking'] = 'Vérification...'; -$messages['nospellerrors'] = 'Aucune faute trouvée'; -$messages['folderdeleted'] = 'Dossier effacé'; -$messages['foldersubscribed'] = 'Le dossier a bien été inscrit'; -$messages['folderunsubscribed'] = 'Le dossier a bien été désinscrit'; -$messages['folderpurged'] = 'Le dossier a bien été vidé'; -$messages['folderexpunged'] = 'Le dossier a bien été compacté'; -$messages['deletedsuccessfully'] = 'Supprimé(s) avec succès'; +$messages['searchnomatch'] = 'La recherche n\'a donné aucun résultat.'; +$messages['searching'] = 'Recherche en cours...'; +$messages['checking'] = 'Vérification en cours...'; +$messages['nospellerrors'] = 'Aucune faute d\'orthographe trouvée.'; +$messages['folderdeleted'] = 'Le dossier a bien été effacé.'; +$messages['foldersubscribed'] = 'Le dossier a bien été inscrit.'; +$messages['folderunsubscribed'] = 'Le dossier a bien été désinscrit.'; +$messages['folderpurged'] = 'Le dossier a bien été vidé.'; +$messages['folderexpunged'] = 'Le dossier a bien été compacté.'; +$messages['deletedsuccessfully'] = 'Correctement supprimé(s).'; $messages['converting'] = 'Suppression de la mise en forme...'; -$messages['messageopenerror'] = 'Impossible de charger le message depuis serveur'; +$messages['messageopenerror'] = 'Impossible de charger le message depuis serveur.'; $messages['fileuploaderror'] = 'Transfert du fichier échoué'; -$messages['filesizeerror'] = 'Le fichier transféré dépasse la taille maximale de $size'; -$messages['copysuccess'] = 'Succès de la copie des $nr adresses'; -$messages['copyerror'] = 'Ne peut pas copier les adresses'; -$messages['sourceisreadonly'] = 'Cette source d\'adresse est en lecture seule'; -$messages['errorsavingcontact'] = 'Ne peut pas enregistrer l\'adresse du contact'; -$messages['movingmessage'] = 'Déplacement du message...'; -$messages['copyingmessage'] = 'Copie du message ...'; -$messages['copyingcontact'] = 'Copie des contacts ...'; -$messages['deletingmessage'] = 'Suppression des messages...'; -$messages['markingmessage'] = 'Marquage des messages...'; -$messages['addingmember'] = 'Ajout des contacts dans le groupe ...'; -$messages['removingmember'] = 'Suppression des contacts du groupe ...'; -$messages['receiptsent'] = 'L\'accusé de réception a bien été envoyé'; -$messages['errorsendingreceipt'] = 'L\'accusé de réception n\'a pas pu être envoyé'; -$messages['deleteidentityconfirm'] = 'Voulez vous vraiment supprimer cette identités ?'; +$messages['filesizeerror'] = 'Le fichier transféré dépasse la taille maximale de $size.'; +$messages['copysuccess'] = '$nr contacts correctement copiés.'; +$messages['movesuccess'] = '$nr contacts correctement déplacés.'; +$messages['copyerror'] = 'Aucun contact n\'a pu être copié.'; +$messages['moveerror'] = 'Aucun contact n\'a pu être déplacé.'; +$messages['sourceisreadonly'] = 'Cette source d\'adresse est en lecture seule.'; +$messages['errorsavingcontact'] = 'Impossible de sauvegarder l\'adresse du contact.'; +$messages['movingmessage'] = 'Message(s) en cours de déplacement...'; +$messages['copyingmessage'] = 'Message(s) en cours de copie...'; +$messages['copyingcontact'] = 'Contact(s) en cours de copie...'; +$messages['movingcontact'] = 'Contact(s) en cours de déplacement...'; +$messages['deletingmessage'] = 'Message(s) en cours de suppression...'; +$messages['markingmessage'] = 'Message(s) en cours de marquage...'; +$messages['addingmember'] = 'Contact(s) en cours d\'ajout dans le groupe...'; +$messages['removingmember'] = 'Contact(s) en cours de suppression du groupe...'; +$messages['receiptsent'] = 'L\'accusé de réception a bien été envoyé.'; +$messages['errorsendingreceipt'] = 'Impossible d\'envoyer l\'accusé de réception.'; +$messages['deleteidentityconfirm'] = 'Voulez vous vraiment supprimer cette identité ?'; $messages['nodeletelastidentity'] = 'Vous ne pouvez pas effacer votre seule identité.'; -$messages['forbiddencharacter'] = 'Le nom du dossier contient un caractère interdit'; -$messages['selectimportfile'] = 'Veuillez sélectionner un fichier à envoyer'; -$messages['addresswriterror'] = 'Impossible d\'écrire dans le carnet d\'adresse sélectionné'; -$messages['contactaddedtogroup'] = 'Les contacts ont bien été ajoutés à ce groupe'; -$messages['contactremovedfromgroup'] = 'Les contacts ont bien été supprimés de ce groupe'; +$messages['forbiddencharacter'] = 'Le nom du dossier contient un caractère interdit.'; +$messages['selectimportfile'] = 'Veuillez sélectionner un fichier à transférer.'; +$messages['addresswriterror'] = 'Impossible d\'écrire dans le carnet d\'adresse sélectionné.'; +$messages['contactaddedtogroup'] = 'Les contacts ont bien été ajoutés à ce groupe.'; +$messages['contactremovedfromgroup'] = 'Les contacts ont bien été supprimés de ce groupe.'; $messages['nogroupassignmentschanged'] = 'Appartenance aux groupes inchangée.'; -$messages['importwait'] = 'Importation, veuillez patienter...'; -$messages['importformaterror'] = 'Echec de l\'import ! Le fichier n\'est pas un fichier d\'import de données valide.'; -$messages['importconfirm'] = '$inserted contacts importés avec succès, $skipped entrées existantes ignorées:

$names

'; +$messages['importwait'] = 'Import en cours, veuillez patienter...'; +$messages['importformaterror'] = 'L\'import a échoué ! Le fichier transféré n\'est pas un fichier d\'import de données valide.'; +$messages['importconfirm'] = 'Les $inserted contacts ont bien été importés'; $messages['importconfirmskipped'] = '$skipped entrée(s) déjà existante(s)'; +$messages['importmessagesuccess'] = 'Importation de $nr messages avec succès'; +$messages['importmessageerror'] = 'L\'importation a échoué! Le fichier envoyé n\'est pas un message valide ou un fichier au format mailbox'; $messages['opnotpermitted'] = 'Cette opération n\'est pas permise !'; -$messages['nofromaddress'] = 'Il manque une adresse e-mail dans l\'identité sélectionnée'; -$messages['editorwarning'] = 'Passer à l\'éditeur texte seul causera la perte du formatage du texte. Voulez-vous continuer ?'; +$messages['nofromaddress'] = 'Courriel manquant dans l\'identité sélectionnée.'; +$messages['editorwarning'] = 'Passer à l\'éditeur de texte brut causera la perte du formatage du texte. Souhaitez-vous continuer ?'; $messages['httpreceivedencrypterror'] = 'Une erreur fatale de configuration est survenue. Veuillez contacter votre administrateur immédiatement. Votre message n\'a pas pu être envoyé.'; -$messages['smtpconnerror'] = 'Erreur SMTP ($code): Echec de la connexion au serveur'; -$messages['smtpautherror'] = 'Erreur SMTP ($code): Echec de l\'authentification'; -$messages['smtpfromerror'] = 'Erreur SMTP ($code): Impossible de définir l\'expéditeur "$from" ($msg)'; -$messages['smtptoerror'] = 'Erreur SMTP ($code): Impossible d\'ajouter le destinataire "$to" ($msg)'; -$messages['smtprecipientserror'] = 'Erreur SMTP: Impossible de lire la liste des destinataires'; -$messages['smtperror'] = 'Erreur SMTP: $msg'; -$messages['emailformaterror'] = 'Adresse email incorrecte: $email'; +$messages['smtpconnerror'] = 'Erreur SMTP ($code) : Échec de la connexion au serveur.'; +$messages['smtpautherror'] = 'Erreur SMTP ($code) : Échec de l\'authentification.'; +$messages['smtpfromerror'] = 'Erreur SMTP ($code) : Impossible de définir l\'expéditeur "$from" ($msg)'; +$messages['smtptoerror'] = 'Erreur SMTP ($code) : Impossible d\'ajouter le destinataire "$to" ($msg)'; +$messages['smtprecipientserror'] = 'Erreur SMTP : Impossible de lire la liste des destinataires.'; +$messages['smtperror'] = 'Erreur SMTP : $msg'; +$messages['emailformaterror'] = 'Courriel incorrect : $email'; $messages['toomanyrecipients'] = 'Trop de destinataires. Réduisez leur nombre à $max maximum.'; $messages['maxgroupmembersreached'] = 'Le nombre de membres du groupe dépasse le maximum de $max.'; -$messages['internalerror'] = 'Une erreur interne est survenue. Merci de réessayer'; -$messages['contactdelerror'] = 'Les contacts n\'ont pas pu être supprimés'; -$messages['contactdeleted'] = 'Les contacts ont bien été supprimés'; -$messages['contactrestoreerror'] = 'Impossible de restaurer les contacts supprimés.'; -$messages['contactrestored'] = 'Les contacts ont bien été restaurés.'; -$messages['groupdeleted'] = 'Le groupe a bien été supprimé'; -$messages['grouprenamed'] = 'Le groupe a bien été renommé'; -$messages['groupcreated'] = 'Le groupe a bien été créé'; +$messages['internalerror'] = 'Une erreur interne est apparue. Merci de ré-essayer.'; +$messages['contactdelerror'] = 'Impossible de supprimer le(s) contact(s).'; +$messages['contactdeleted'] = 'Contact(s) correctement supprimé(s).'; +$messages['contactrestoreerror'] = 'Impossible de restaurer le(s) contact(s) supprimé(s).'; +$messages['contactrestored'] = 'Contact(s) correctement restauré(s).'; +$messages['groupdeleted'] = 'Le groupe a bien été supprimé.'; +$messages['grouprenamed'] = 'Le groupe a bien été renommé.'; +$messages['groupcreated'] = 'Le groupe a bien été créé.'; $messages['savedsearchdeleted'] = 'La recherche enregistrée a bien été supprimée.'; $messages['savedsearchdeleteerror'] = 'Impossible de supprimer la recherche enregistrée.'; -$messages['savedsearchcreated'] = 'La recherche enregistrée a bien été crée.'; +$messages['savedsearchcreated'] = 'La recherche enregistrée a bien été créée.'; $messages['savedsearchcreateerror'] = 'Impossible de créer la recherche enregistrée.'; -$messages['messagedeleted'] = 'Les messages ont bien été supprimés'; -$messages['messagemoved'] = 'Les messages ont bien été déplacés'; -$messages['messagecopied'] = 'Les messages ont bien été copiés'; -$messages['messagemarked'] = 'Les messages ont bien été marqués'; -$messages['autocompletechars'] = 'Entrez au moins $min caractères pour l\'auto-complétion'; -$messages['autocompletemore'] = 'Plusieurs entrées trouvées. Tapez plus de caractères.'; -$messages['namecannotbeempty'] = 'Le nom ne peut pas être vide'; -$messages['nametoolong'] = 'Le nom est trop long'; -$messages['folderupdated'] = 'Le dossier a bien été mis à jour'; -$messages['foldercreated'] = 'Le dossier a bien été créé'; -$messages['invalidimageformat'] = 'Format d\'image invalide'; +$messages['messagedeleted'] = 'Message(s) correctement supprimé(s).'; +$messages['messagemoved'] = 'Message(s) correctement déplacé(s).'; +$messages['messagecopied'] = 'Message(s) correctement copié(s).'; +$messages['messagemarked'] = 'Message(s) correctement marqué(s).'; +$messages['autocompletechars'] = 'Entrez au moins $min caractères pour l\'auto-complétion.'; +$messages['autocompletemore'] = 'Plusieurs entrées trouvées. Veuillez taper plus de caractères.'; +$messages['namecannotbeempty'] = 'Le nom ne peut pas être vide.'; +$messages['nametoolong'] = 'Le nom est trop long.'; +$messages['folderupdated'] = 'Le dossier a bien été mis à jour.'; +$messages['foldercreated'] = 'Le dossier a bien été créé.'; +$messages['invalidimageformat'] = 'Format d\'image invalide.'; $messages['mispellingsfound'] = 'Des fautes d\'orthographe ont été détectées dans le message.'; $messages['parentnotwritable'] = 'Impossible de créer/déplacer le dossier dans le dossier parent sélectionné. Aucun droit d\'accès.'; $messages['messagetoobig'] = 'Le message est trop gros pour être traité.'; diff --git a/program/localization/fy_NL/labels.inc b/program/localization/fy_NL/labels.inc index 5e9fcaca1..dc1e57969 100644 --- a/program/localization/fy_NL/labels.inc +++ b/program/localization/fy_NL/labels.inc @@ -15,9 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - -$labels['welcome'] = 'Welcome to $product'; $labels['username'] = 'Brûkersnamme'; $labels['password'] = 'Wachtwurd'; $labels['server'] = 'Server'; @@ -26,41 +23,24 @@ $labels['logout'] = 'Ôfmelde'; $labels['mail'] = 'Mail'; $labels['settings'] = 'Ynstellingen'; $labels['addressbook'] = 'Adresboek'; -$labels['inbox'] = 'Inbox'; $labels['drafts'] = 'Konsepten'; $labels['sent'] = 'Stjoerd'; $labels['trash'] = 'Jiskefet'; -$labels['junk'] = 'Junk'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Ûnderwerp'; $labels['from'] = 'Fan'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Oan'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Antwurd oan'; $labels['followupto'] = 'Oanslutend oan'; $labels['date'] = 'Datum'; -$labels['size'] = 'Size'; -$labels['priority'] = 'Priority'; $labels['organization'] = 'Organisaasje'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Mappen'; -$labels['messagesfromto'] = 'Messages $from to $to of $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; -$labels['messagenrof'] = 'Message $nr of $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'Kopieare'; $labels['move'] = 'Ferplaatse'; -$labels['moveto'] = 'Move to...'; $labels['download'] = 'Delhelje'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Toane'; -$labels['showanyway'] = 'Show it anyway'; -$labels['filename'] = 'File name'; $labels['filesize'] = 'Triemgrutte'; -$labels['addtoaddressbook'] = 'Add to address book'; $labels['sun'] = 'sne'; $labels['mon'] = 'moa'; $labels['tue'] = 'tii'; @@ -101,381 +81,6 @@ $labels['longnov'] = 'novimber'; $labels['longdec'] = 'desimber'; $labels['today'] = 'Hjoed'; $labels['refresh'] = 'Ferfarskje'; -$labels['checkmail'] = 'Check for new messages'; -$labels['compose'] = 'Compose'; -$labels['writenewmessage'] = 'Create a new message'; $labels['reply'] = 'Beäntwurdzje'; -$labels['replytomessage'] = 'Reply to sender'; -$labels['replytoallmessage'] = 'Reply to list or to sender and all recipients'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; -$labels['forwardmessage'] = 'Forward the message'; -$labels['deletemessage'] = 'Delete message'; -$labels['movemessagetotrash'] = 'Move message to trash'; -$labels['printmessage'] = 'Print this message'; -$labels['previousmessage'] = 'Show previous message'; -$labels['firstmessage'] = 'Show first message'; -$labels['nextmessage'] = 'Show next message'; -$labels['lastmessage'] = 'Show last message'; -$labels['backtolist'] = 'Back to message list'; -$labels['viewsource'] = 'Show source'; -$labels['mark'] = 'Mark'; -$labels['markmessages'] = 'Mark messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; -$labels['select'] = 'Select'; -$labels['all'] = 'All'; -$labels['none'] = 'None'; -$labels['currpage'] = 'Current page'; -$labels['unread'] = 'Unread'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; -$labels['nonesort'] = 'None'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; -$labels['compact'] = 'Compact'; -$labels['empty'] = 'Empty'; -$labels['importmessages'] = 'Import messages'; -$labels['quota'] = 'Disk usage'; -$labels['unknown'] = 'unknown'; -$labels['unlimited'] = 'unlimited'; -$labels['quicksearch'] = 'Quick search'; -$labels['resetsearch'] = 'Reset search'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; -$labels['sendmessage'] = 'Send message'; -$labels['savemessage'] = 'Save as draft'; -$labels['addattachment'] = 'Attach a file'; -$labels['charset'] = 'Charset'; -$labels['editortype'] = 'Editor type'; -$labels['returnreceipt'] = 'Return receipt'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; -$labels['checkspelling'] = 'Check spelling'; -$labels['resumeediting'] = 'Resume editing'; -$labels['revertto'] = 'Revert to'; -$labels['attach'] = 'Attach'; -$labels['attachments'] = 'Attachments'; -$labels['upload'] = 'Upload'; -$labels['uploadprogress'] = '$percent ($current from $total)'; -$labels['close'] = 'Close'; -$labels['messageoptions'] = 'Message options...'; -$labels['low'] = 'Low'; -$labels['lowest'] = 'Lowest'; -$labels['normal'] = 'Normal'; -$labels['high'] = 'High'; -$labels['highest'] = 'Highest'; -$labels['nosubject'] = '(no subject)'; -$labels['showimages'] = 'Display images'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; -$labels['htmltoggle'] = 'HTML'; -$labels['plaintoggle'] = 'Plain text'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; -$labels['name'] = 'Display Name'; -$labels['firstname'] = 'First Name'; -$labels['surname'] = 'Last Name'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; -$labels['email'] = 'Email'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; -$labels['addcontact'] = 'Add new contact'; -$labels['editcontact'] = 'Edit contact'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; -$labels['edit'] = 'Edit'; -$labels['cancel'] = 'Cancel'; -$labels['save'] = 'Save'; -$labels['delete'] = 'Delete'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; -$labels['newcontact'] = 'Create new contact card'; -$labels['deletecontact'] = 'Delete selected contacts'; -$labels['composeto'] = 'Compose mail to'; -$labels['contactsfromto'] = 'Contacts $from to $to of $count'; -$labels['print'] = 'Print'; -$labels['export'] = 'Export'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; -$labels['previouspage'] = 'Show previous page'; -$labels['firstpage'] = 'Show first page'; -$labels['nextpage'] = 'Show next page'; -$labels['lastpage'] = 'Show last page'; -$labels['group'] = 'Group'; -$labels['groups'] = 'Groups'; -$labels['listgroup'] = 'List group members'; -$labels['personaladrbook'] = 'Personal Addresses'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; -$labels['settingsfor'] = 'Settings for'; -$labels['about'] = 'About'; -$labels['preferences'] = 'Preferences'; -$labels['userpreferences'] = 'User preferences'; -$labels['editpreferences'] = 'Edit user preferences'; -$labels['identities'] = 'Identities'; -$labels['manageidentities'] = 'Manage identities for this account'; -$labels['newidentity'] = 'New identity'; -$labels['newitem'] = 'New item'; -$labels['edititem'] = 'Edit item'; -$labels['preferhtml'] = 'Display HTML'; -$labels['defaultcharset'] = 'Default Character Set'; -$labels['htmlmessage'] = 'HTML Message'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; -$labels['prettydate'] = 'Pretty dates'; -$labels['setdefault'] = 'Set default'; -$labels['autodetect'] = 'Auto'; -$labels['language'] = 'Language'; -$labels['timezone'] = 'Time zone'; -$labels['pagesize'] = 'Rows per page'; -$labels['signature'] = 'Signature'; -$labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; -$labels['htmleditor'] = 'Compose HTML messages'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; -$labels['htmlsignature'] = 'HTML signature'; -$labels['showemail'] = 'Show email address with display name'; -$labels['previewpane'] = 'Show preview pane'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; -$labels['autosavedraft'] = 'Automatically save draft'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; -$labels['never'] = 'never'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; -$labels['folder'] = 'Folder'; $labels['folders'] = 'Mappen'; -$labels['foldername'] = 'Folder name'; -$labels['subscribed'] = 'Subscribed'; -$labels['messagecount'] = 'Messages'; -$labels['create'] = 'Create'; -$labels['createfolder'] = 'Create new folder'; -$labels['managefolders'] = 'Manage folders'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; -$labels['sortby'] = 'Sort by'; -$labels['sortasc'] = 'Sort ascending'; -$labels['sortdesc'] = 'Sort descending'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/fy_NL/messages.inc b/program/localization/fy_NL/messages.inc index 6a6718925..da4e39679 100644 --- a/program/localization/fy_NL/messages.inc +++ b/program/localization/fy_NL/messages.inc @@ -15,157 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; -$messages['loginfailed'] = 'Login failed.'; -$messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; -$messages['sessionerror'] = 'Your session is invalid or expired.'; -$messages['storageerror'] = 'Connection to storage server failed.'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; -$messages['nomessagesfound'] = 'No messages found in this mailbox.'; -$messages['loggedout'] = 'You have successfully terminated the session. Good bye!'; -$messages['mailboxempty'] = 'Mailbox is empty.'; -$messages['refreshing'] = 'Refreshing...'; -$messages['loading'] = 'Loading...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; -$messages['loadingdata'] = 'Loading data...'; -$messages['checkingmail'] = 'Checking for new messages...'; -$messages['sendingmessage'] = 'Sending message...'; -$messages['messagesent'] = 'Message sent successfully.'; -$messages['savingmessage'] = 'Saving message...'; -$messages['messagesaved'] = 'Message saved to Drafts.'; -$messages['successfullysaved'] = 'Successfully saved.'; -$messages['addedsuccessfully'] = 'Contact added successfully to address book.'; -$messages['contactexists'] = 'A contact with the same e-mail address already exists.'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; -$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.'; -$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!'; -$messages['nocontactsfound'] = 'No contacts found.'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; -$messages['sendingfailed'] = 'Failed to send message.'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'An error occured while saving.'; -$messages['errormoving'] = 'Could not move the message(s).'; -$messages['errorcopying'] = 'Could not copy the message(s).'; -$messages['errordeleting'] = 'Could not delete the message(s).'; -$messages['errormarking'] = 'Could not mark the message(s).'; -$messages['deletecontactconfirm'] = 'Do you really want to delete selected contact(s)?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; -$messages['deletemessagesconfirm'] = 'Do you really want to delete selected message(s)?'; -$messages['deletefolderconfirm'] = 'Do you really want to delete this folder?'; -$messages['purgefolderconfirm'] = 'Do you really want to delete all messages in this folder?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; -$messages['formincomplete'] = 'The form was not completely filled out.'; -$messages['noemailwarning'] = 'Please enter a valid email address.'; -$messages['nonamewarning'] = 'Please enter a name.'; -$messages['nopagesizewarning'] = 'Please enter a page size.'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; -$messages['norecipientwarning'] = 'Please enter at least one recipient.'; -$messages['nosubjectwarning'] = 'The "Subject" field is empty. Would you like to enter one now?'; -$messages['nobodywarning'] = 'Send this message without text?'; -$messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?'; -$messages['noldapserver'] = 'Please select an ldap server to search.'; -$messages['nosearchname'] = 'Please enter a contact name or email address.'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; -$messages['searchsuccessful'] = '$nr messages found.'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; -$messages['searchnomatch'] = 'Search returned no matches.'; -$messages['searching'] = 'Searching...'; -$messages['checking'] = 'Checking...'; -$messages['nospellerrors'] = 'No spelling errors found.'; -$messages['folderdeleted'] = 'Folder successfully deleted.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; -$messages['deletedsuccessfully'] = 'Successfully deleted.'; -$messages['converting'] = 'Removing formatting...'; -$messages['messageopenerror'] = 'Could not load message from server.'; -$messages['fileuploaderror'] = 'File upload failed.'; -$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr addresses.'; -$messages['copyerror'] = 'Could not copy any addresses.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ga_IE/labels.inc b/program/localization/ga_IE/labels.inc index 6d55afca9..dc33d008d 100644 --- a/program/localization/ga_IE/labels.inc +++ b/program/localization/ga_IE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Fáilte go $product'; $labels['username'] = 'Úsáideoir'; $labels['password'] = 'Pasfhocal'; @@ -31,33 +29,23 @@ $labels['drafts'] = 'Dréachtaí'; $labels['sent'] = 'Amach'; $labels['trash'] = 'Bosca bruscair'; $labels['junk'] = 'Dramhaíl'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Ábhair'; $labels['from'] = 'Seolaí'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Faighteoir'; $labels['cc'] = 'Cóipeáil'; $labels['bcc'] = 'Cóip cheilte'; $labels['replyto'] = 'Freagair go'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Dáta'; $labels['size'] = 'Méid'; $labels['priority'] = 'Tosaíocht'; $labels['organization'] = 'Eagraíocht'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Fillteán'; $labels['messagesfromto'] = 'Teachtaireachta as $from go $to as $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Teachtaireacht $nr as $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'Cóipeáil'; $labels['move'] = 'Bog'; $labels['moveto'] = 'bog go...'; $labels['download'] = 'síos-luchtú'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Comhad'; $labels['filesize'] = 'Toirt'; $labels['addtoaddressbook'] = 'Sábháil i mo leabhair seoltaí'; @@ -83,8 +71,6 @@ $labels['may'] = 'Bea'; $labels['jun'] = 'Mei'; $labels['jul'] = 'Iúi'; $labels['aug'] = 'Lún'; -$labels['sep'] = 'Sep'; -$labels['oct'] = 'Oct'; $labels['nov'] = 'Sam'; $labels['dec'] = 'Nol'; $labels['longjan'] = 'Eanáir'; @@ -100,21 +86,14 @@ $labels['longoct'] = 'Deireadh Fómhair'; $labels['longnov'] = 'Samhain'; $labels['longdec'] = 'Nollag'; $labels['today'] = 'Inniu'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Seiceáil chun teachtaireacht nua'; $labels['compose'] = 'Scríobh teachtaireacht'; $labels['writenewmessage'] = 'Scríobh teachtaireacht nua'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'Scríobh freagra chun an seolaí'; $labels['replytoallmessage'] = 'Scríobh freagra chun an seolaí agus na faighteoir'; $labels['replyall'] = 'Freagra gach'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'Seol ar aghaidh an teachtaireacht'; $labels['deletemessage'] = 'Chuir an teachtaireacht i mo bosca bruscair'; -$labels['movemessagetotrash'] = 'Move message to trash'; $labels['printmessage'] = 'Priontáil an teachtaireacht seo'; $labels['previousmessage'] = 'Taispeáin an teachtaireacht roimhe seo'; $labels['firstmessage'] = 'Taispeáin an cead teachtaireacht'; @@ -122,88 +101,30 @@ $labels['nextmessage'] = 'Taispeáin an teachtaireacht ina dhiaidh sin'; $labels['lastmessage'] = 'Taispeáin an teachtaireacht deireanach'; $labels['backtolist'] = 'Téigh ar ais go dtí an liosta teachtaireachta'; $labels['viewsource'] = 'Éiriú bunchód'; -$labels['mark'] = 'Mark'; -$labels['markmessages'] = 'Mark messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'Togh'; $labels['all'] = 'An uile'; $labels['none'] = 'Aon cheann'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Na rudaí nach bhuil corraithe'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'Aon cheann'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Comhbhrúigh'; $labels['empty'] = 'Folmhaigh'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Toilleadh diosca atá athláimhe'; $labels['unknown'] = 'gan aithne'; $labels['unlimited'] = 'gan teorainn'; $labels['quicksearch'] = 'Mearcuardaigh'; $labels['resetsearch'] = 'Athshocraigh an cuardach'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Seol mo teachtaireacht láithreach bonn'; $labels['savemessage'] = 'Sábháil an dréachta seo'; $labels['addattachment'] = 'Suimigh Iatán'; $labels['charset'] = 'Foireann carachtar'; $labels['editortype'] = 'Sort eagarthóir'; $labels['returnreceipt'] = 'Admháil léite'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Fiosrú ar mo litriú'; $labels['resumeediting'] = 'Athdhúisigh eagarthóireacht'; $labels['revertto'] = 'Filleadh ar'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'Iatání'; $labels['upload'] = 'Aistriú suas'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Dún'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'Íseal'; $labels['lowest'] = 'Is Ísle'; $labels['normal'] = 'Gnách'; @@ -211,118 +132,31 @@ $labels['high'] = 'Ard'; $labels['highest'] = 'Is Airde'; $labels['nosubject'] = '(Níl aon Ábhair)'; $labels['showimages'] = 'Taispeáin na híomhánna'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Téacs amháin'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'Leasainm'; $labels['firstname'] = 'Ainm baiste'; $labels['surname'] = 'Sloinne'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'Ríomhphost'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Sábháil duine nua'; $labels['editcontact'] = 'Chuir chara in eagar'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Athraigh'; $labels['cancel'] = 'Cealaigh'; $labels['save'] = 'Sábháil'; $labels['delete'] = 'Scrios'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Scríobh carta teagmháil nua'; $labels['deletecontact'] = 'Scrios na daoine seo'; $labels['composeto'] = 'Scríobh teachtaireacht go'; $labels['contactsfromto'] = 'Daoine as $from to $to as $count'; $labels['print'] = 'Priontáil'; $labels['export'] = 'Easportáil'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Taispeáin an foireann roimhe seo'; $labels['firstpage'] = 'Taispeáin an céad foireann'; $labels['nextpage'] = 'Taispeáin an foireann ina dhiaidh sin'; $labels['lastpage'] = 'Taispeáin an foireann deireanach'; -$labels['group'] = 'Group'; $labels['groups'] = 'Grúpaí'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Seoltaí Pearsanta'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Socruithe chun'; -$labels['about'] = 'About'; $labels['preferences'] = 'Tosaíocht'; $labels['userpreferences'] = 'Tosaíocht Pearsanta'; $labels['editpreferences'] = 'Athraigh tosaíocht pearsanta'; @@ -332,150 +166,27 @@ $labels['newidentity'] = 'Céannacht nua'; $labels['newitem'] = 'Mír nua'; $labels['edititem'] = 'Athraigh mhír'; $labels['preferhtml'] = 'Taispeáin an HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Teachtaireacht HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Dátaí Dheas'; $labels['setdefault'] = 'Socraigh an réamhshocraithe'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Teanga'; $labels['timezone'] = 'Crios ama'; $labels['pagesize'] = 'Rónna in aghaidh gach leathanach'; $labels['signature'] = 'Mana clabhsúir'; $labels['dstactive'] = 'Laethúil um shamhradh'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Scríobh teachtaireachta HTML'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Mana clabhsúir HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Taispeáin an pána réamhamharc'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'Sábháil dréachta go huathoibríoch'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'riamh'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Fillteán'; $labels['folders'] = 'Fillteán'; $labels['foldername'] = 'Ainm fillteán'; $labels['subscribed'] = 'Síntiú'; -$labels['messagecount'] = 'Messages'; $labels['create'] = 'Cruthaigh'; $labels['createfolder'] = 'Cruthaigh fillteán nua'; $labels['managefolders'] = 'Stiúir na fillteán'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Sórtáil trí'; $labels['sortasc'] = 'Sórtáil in ord méadaitheach'; $labels['sortdesc'] = 'Sórtáil in ord neartaitheach'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ga_IE/messages.inc b/program/localization/ga_IE/messages.inc index 67819ec6b..b52fbe657 100644 --- a/program/localization/ga_IE/messages.inc +++ b/program/localization/ga_IE/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Theip an iarraidh chun logáil tú isteach'; $messages['cookiesdisabled'] = 'Níor glac do sracléitheoir an fianán seisiúin'; $messages['sessionerror'] = 'Tá an seisiúin neamhbhailí nó as feidhm'; $messages['storageerror'] = 'Theip an iarraidh chun nasc go dtí an freastalaí Prótacal Rochtana Teachtaireachtaí Idirlín (IMAP)'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Ní bhfuair mé aon teachtaireacht i bosca postas seo'; $messages['loggedout'] = 'D\'éirigh tú logáil amach. Slán Leat!'; $messages['mailboxempty'] = 'Tá an bosca postas folamh'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Fan nóiméad, ag lódáil...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Ag lódáil sonraí...'; $messages['checkingmail'] = 'Ag seiceáil chun teachtaireacht nua...'; $messages['sendingmessage'] = 'Ag seol mo teachtaireacht láithreach bonn...'; @@ -47,128 +32,38 @@ $messages['messagesaved'] = 'Sábháil mé an teachtaireacht i dréachtaí'; $messages['successfullysaved'] = 'D\'éirigh mé agus sábháil mé'; $messages['addedsuccessfully'] = 'D\'éirigh mé agus shábháil mé duine nua go dtí an Leabhair Seoltaí'; $messages['contactexists'] = 'Tá duine i do Leabhair Seoltaí agus tá an seoladh ríomhphost seo aige'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Chun do príobháide a cosain, choiscinn na híomhánna san teachtaireacht seo'; $messages['encryptedmessage'] = 'Tá an teachtaireacht seo i criptiúchán, Níl an cumas agam chun é a tionscail'; $messages['nocontactsfound'] = 'Ní raibh aon buine san Leabhair Seoltaí seo'; $messages['contactnotfound'] = 'Ní bhfuair mé an duine seo'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Theip an iarraidh chun an teachtaireacht a seol'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Theip mé agus ní shábháil'; $messages['errormoving'] = 'Theip mé agus ní bog an teachtaireacht'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Theip mé agus níor scrios me an teachtaireacht'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Ar mhaith leat scrios na daoine seo?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Ar mhaith leat scrios na teachtaireacht seo?'; $messages['deletefolderconfirm'] = 'Ar mhaith leat scrios an fillteán seo?'; $messages['purgefolderconfirm'] = 'Ar mhaith leat scrios gach teachtaireacht san fillteán seo?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Níor chríochnaigh tú an foirm'; $messages['noemailwarning'] = 'Abair liom seoladh ríomhphost nach bfhuil neamhbhaillí'; $messages['nonamewarning'] = 'Abair liom do ainm'; $messages['nopagesizewarning'] = 'Abair liom saghas leathanaigh'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Abair liom faighteoir amhain ar a laghad'; $messages['nosubjectwarning'] = 'Níl aon ábhair ar an teachtaireacht, ba mhaith tú déarfaidh mé ábair?'; $messages['nobodywarning'] = 'Níl aon teacs san teachtaireacht, ba mhaith tú déarfaidh mé teachtaireacht ar bith?'; $messages['notsentwarning'] = 'Theip an iarraidh chun an teachtaireacht a seo. ba mhaith tú scrios do teachtaireacht?'; $messages['noldapserver'] = 'Abair liom eolaire LDAP chun é a cuardaigh'; $messages['nosearchname'] = 'Abair liom ainm duine nó seoladh ríomhphost'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'Fuair mé $n teachtaireacht'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Ní bhfuair mé aon rud as an ceist seo'; $messages['searching'] = 'Ag tástáil...'; $messages['checking'] = 'Bím ag dhéanamh na mhaoirseachtí...'; $messages['nospellerrors'] = 'Ní bhfuair mé aon earráidí i teachtaireacht seo'; $messages['folderdeleted'] = 'D\'éirigh mé, Scrios mé an fillteán'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'D\'éirigh mé, Scrios mé'; $messages['converting'] = 'Scrios mé formáidithe as an teachtaireacht seo'; $messages['messageopenerror'] = 'Theip orm chun an teachtaireacht seo a tarrtháil as an freastalaí'; $messages['fileuploaderror'] = 'Theip an suas-luchtú'; $messages['filesizeerror'] = 'Beigh an comhad ró-mhor. Is ea $size uas-saghas chun admháil léite'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Tá an foinse seolaigh seo inléite amháin'; $messages['errorsavingcontact'] = 'Theip mé, Níl an cumas agam an seolagh seo a sábháil'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/gl_ES/labels.inc b/program/localization/gl_ES/labels.inc index 4711d9722..780d47d77 100644 --- a/program/localization/gl_ES/labels.inc +++ b/program/localization/gl_ES/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Benvido a $product'; $labels['username'] = 'Nome de usuario'; $labels['password'] = 'Contrasinal'; @@ -177,7 +175,6 @@ $labels['resetsearch'] = 'Restablecer a busca'; $labels['searchmod'] = 'Modificadores de busca'; $labels['msgtext'] = 'Mensaxe enteira'; $labels['body'] = 'Corpo'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Abrir nunha nova fiestra'; $labels['emlsave'] = 'Gardar (.eml)'; $labels['changeformattext'] = 'Amosar en texto plano'; @@ -310,14 +307,12 @@ $labels['nextpage'] = 'Amosar o seguinte grupo'; $labels['lastpage'] = 'Amosar o último grupo'; $labels['group'] = 'Grupo'; $labels['groups'] = 'Grupos'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Enderezos persoais'; $labels['searchsave'] = 'Gardar procura'; $labels['searchdelete'] = 'Eliminar procura'; $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar desde ficheiro:'; -$labels['importtarget'] = 'Engadir contactos ao caderno de enderezos:'; $labels['importreplace'] = 'Substituír completamente o caderno de enderezos'; $labels['importdesc'] = 'Pode cargar contactos desde un caderno de enderezos preexistente.
Pódense importar enderezos en formato vCard ou CSV (valores separados por comas)'; $labels['done'] = 'Rematado'; diff --git a/program/localization/gl_ES/messages.inc b/program/localization/gl_ES/messages.inc index 8f004ed9d..599f2ce41 100644 --- a/program/localization/gl_ES/messages.inc +++ b/program/localization/gl_ES/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ocurreu un erro!'; $messages['loginfailed'] = 'O contrasinal ou o nome de usuario son incorrectos.'; $messages['cookiesdisabled'] = 'O seu navegador non acepta galletas.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Non se atopou o contacto solicitado.'; $messages['contactsearchonly'] = 'Introduza algún termo para atopar contactos'; $messages['sendingfailed'] = 'Fallou o envío da mensaxe.'; $messages['senttooquickly'] = 'Por favor, espere $sec segundos antes de enviar esta mensaxe.'; -$messages['errorsavingsent'] = 'Ocurriu un erro mentres se gardaba a mensaxe enviada.'; -$messages['errorsaving'] = 'Ocurriu un erro mentres se gardaba.'; $messages['errormoving'] = 'Non foi posible mover a(s) mensaxe(s).'; $messages['errorcopying'] = 'Non foi posible copiar a(s) mensaxe(s).'; $messages['errordeleting'] = 'Non foi posible eliminar a(s) mensaxe(s).'; @@ -100,8 +97,6 @@ $messages['converting'] = 'Eliminando o formato da mensaxe...'; $messages['messageopenerror'] = 'Non foi posible cargar a mensaxe desde o servidor.'; $messages['fileuploaderror'] = 'Fallou a carga do ficheiro.'; $messages['filesizeerror'] = 'O ficheiro cargado é máis grande que o tamaño máximo de $size.'; -$messages['copysuccess'] = 'Copiáronse correctamente $nr enderezos.'; -$messages['copyerror'] = 'Non foi posible copiar ningún enderezo.'; $messages['sourceisreadonly'] = 'A orixe é de só lectura.'; $messages['errorsavingcontact'] = 'Non foi posible gardar o contacto.'; $messages['movingmessage'] = 'Movendo a(s) mensaxe(s)...'; @@ -140,7 +135,6 @@ $messages['smtperror'] = 'Erro SMTP: $msg'; $messages['emailformaterror'] = 'O enderezo de correo electrónico é incorrecto: $email.'; $messages['toomanyrecipients'] = 'Especificou destinatarios de máis. Por favor, redúzaos a un máximo de $max.'; $messages['maxgroupmembersreached'] = 'O número de membros do grupo excede o máximo de $max.'; -$messages['internalerror'] = 'Ocurriu un erro interno. Por favor, probe outra vez.'; $messages['contactdelerror'] = 'Non foi posible eliminar o(s) contacto(s).'; $messages['contactdeleted'] = 'Borráronse correctamente o(s) contacto(s).'; $messages['contactrestoreerror'] = 'Non foi posible restaurar o(s) contacto(s) borrado(s).'; diff --git a/program/localization/he_IL/labels.inc b/program/localization/he_IL/labels.inc index 9ee2dbaec..ad9a91adc 100644 --- a/program/localization/he_IL/labels.inc +++ b/program/localization/he_IL/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'ברוך בואך אל $product'; $labels['username'] = 'שם משתמש'; $labels['password'] = 'סיסמה'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'ניקוי תיבת החיפוש'; $labels['searchmod'] = 'מאפייני חיפוש'; $labels['msgtext'] = 'כל ההודעה'; $labels['body'] = 'גוף ההודעה'; -$labels['type'] = 'Type'; +$labels['type'] = 'סוג'; +$labels['namex'] = 'שם'; $labels['openinextwin'] = 'פתיחה בחלון חדש'; $labels['emlsave'] = 'הורדת הודעה בפורמט EML'; $labels['changeformattext'] = 'הצגה בפורמט לא מעוצב'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'הצגת הקבוצה הבאה'; $labels['lastpage'] = 'הצגת הקבוצה האחרונה'; $labels['group'] = 'קבוצה'; $labels['groups'] = 'קבוצות'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'רשימה של חברי קבוצה'; $labels['personaladrbook'] = 'כתובות פרטיות'; $labels['searchsave'] = 'שמירת החיפוש'; $labels['searchdelete'] = 'מחיקת החיפוש'; $labels['import'] = 'ייבוא'; $labels['importcontacts'] = 'ייבוא אנשי קשר'; $labels['importfromfile'] = 'ייבוא מקובץ'; -$labels['importtarget'] = 'הוספת אנשי קשר לספר הכתובות'; $labels['importreplace'] = 'החלפת כל פנקס הכתובות'; $labels['importdesc'] = 'ניתן לטעון אנשי קשר מקובץ חיצוני. אנו תומכים בקבצים הערוכים בצורה של vCard או diff --git a/program/localization/he_IL/messages.inc b/program/localization/he_IL/messages.inc index 276a9f394..b7e7d1ae8 100644 --- a/program/localization/he_IL/messages.inc +++ b/program/localization/he_IL/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'קרתה שגיאה !'; $messages['loginfailed'] = 'הכניסה נכשלה'; $messages['cookiesdisabled'] = 'הדפדפן אינו מקבל עוגיות'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'איש הקשר המבוקש לא נמצא'; $messages['contactsearchonly'] = 'יש להקיש מפתחות חיפוש כדי למצוא אנשי קשר'; $messages['sendingfailed'] = 'שליחת ההודעה נכשלה'; $messages['senttooquickly'] = 'נא להמתין $sec שניות לפני מסירת הודעה זו'; -$messages['errorsavingsent'] = 'נגרמה שגיאה במהלך שמירת ההודעה בתיק הודעות יוצאות'; -$messages['errorsaving'] = 'נגרמה שגיאה במהלך השמירה'; $messages['errormoving'] = 'לא ניתן לתייק את ההודעה'; $messages['errorcopying'] = 'העתקת ההודעות נכשלה'; $messages['errordeleting'] = 'לא ניתן למחוק את ההודעה'; @@ -100,13 +97,16 @@ $messages['converting'] = 'הסרת העיצוב מההודעה'; $messages['messageopenerror'] = 'לא ניתן לטעון ההודעה מהשרת'; $messages['fileuploaderror'] = 'העלאת הקובץ נכשלה'; $messages['filesizeerror'] = 'הקובץ לטעינה גדול מהגודל המקסימלי שהוא $size'; -$messages['copysuccess'] = '$nr כתובות הועתקו בהצלחה'; -$messages['copyerror'] = 'לא ניתן להעתיק אף כתובת'; +$messages['copysuccess'] = '$nr אנשי קשר הועתקו בהצלחה'; +$messages['movesuccess'] = '$nr אנשי קשר הועברו בהצלחה'; +$messages['copyerror'] = 'לא ניתן היה להעתיק אנשי קשר כלשהם'; +$messages['moveerror'] = 'לא ניתן היה להעביר אנשי קשר כלשהם'; $messages['sourceisreadonly'] = 'המקור לכתובת הוא לקריאה בלבד'; $messages['errorsavingcontact'] = 'לא ניתן לשמור את כתובת איש הקשר'; $messages['movingmessage'] = 'תיוק ההודעה...'; $messages['copyingmessage'] = 'הודעת מועתקת...'; $messages['copyingcontact'] = 'העתקת אנשי קשר...'; +$messages['movingcontact'] = 'אנשי קשר עוברים...'; $messages['deletingmessage'] = 'המחיקה בתהליך...'; $messages['markingmessage'] = 'סימון ההודעה בתהליך...'; $messages['addingmember'] = 'הוספת אנשי קשר לקבוצה...'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'SMTP: $msg'; $messages['emailformaterror'] = '$email כתובת דוא"ל שגויה'; $messages['toomanyrecipients'] = 'יותר מדי נמענים. יש להקטין מספרם ל - $max'; $messages['maxgroupmembersreached'] = 'מספרם של חברי הקבוצה אינו יכול לעבור $max'; -$messages['internalerror'] = 'שגיאת מערכת. נא לנסות שנית'; $messages['contactdelerror'] = 'לא ניתן למחוק איש קשר'; $messages['contactdeleted'] = 'איש הקשר נמחק'; $messages['contactrestoreerror'] = 'לא ניתן לשחזר איש קשר שנמחק'; diff --git a/program/localization/hi_IN/labels.inc b/program/localization/hi_IN/labels.inc index ccad601fa..a8b684c56 100644 --- a/program/localization/hi_IN/labels.inc +++ b/program/localization/hi_IN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product में स्वागत है'; $labels['username'] = 'यूसरनाम'; $labels['password'] = 'पासवर्ड'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'ड्राफ़ट'; $labels['sent'] = 'भेजा गया'; $labels['trash'] = 'रद्दी'; $labels['junk'] = 'स्पैम'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'विशय'; $labels['from'] = 'भेजने वाला'; -$labels['sender'] = 'Sender'; $labels['to'] = 'पाने वाला'; $labels['cc'] = 'कार्बन'; $labels['bcc'] = 'अंधा कार्बन'; @@ -44,20 +40,13 @@ $labels['date'] = 'तारीख'; $labels['size'] = 'माप'; $labels['priority'] = 'मेल की महत्वपूर्णता'; $labels['organization'] = 'संस्था'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'फ़ोल्डर'; $labels['messagesfromto'] = '$from से ले कर $to, $count मेल में से'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr नम्बर मेल, $count में से'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'कार्बन'; $labels['move'] = 'स्थानांतरित करें'; $labels['moveto'] = 'खीस्काऐं...'; $labels['download'] = 'डाऊनलोड'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'फ़ाईल नाम'; $labels['filesize'] = 'फ़ाईल माप'; $labels['addtoaddressbook'] = 'पता खाते में जोडें'; @@ -82,11 +71,6 @@ $labels['apr'] = 'अप्रेल'; $labels['may'] = 'मई'; $labels['jun'] = 'जून'; $labels['jul'] = 'जुलाई'; -$labels['aug'] = 'Aug'; -$labels['sep'] = 'Sep'; -$labels['oct'] = 'Oct'; -$labels['nov'] = 'Nov'; -$labels['dec'] = 'Dec'; $labels['longjan'] = 'जनवरी'; $labels['longfeb'] = 'फ़रवरी'; $labels['longmar'] = 'मार्च'; @@ -107,14 +91,9 @@ $labels['writenewmessage'] = 'मेल लिखें'; $labels['reply'] = 'जवाब'; $labels['replytomessage'] = 'मेल का जवाब दें'; $labels['replytoallmessage'] = 'सभी को जवाब लिखें'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; $labels['forward'] = 'अग्रेषित करें'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'आगे भेजें'; $labels['deletemessage'] = 'रद्द करें'; -$labels['movemessagetotrash'] = 'Move message to trash'; $labels['printmessage'] = 'मेल छापें'; $labels['previousmessage'] = 'पीछे के मेल दिखाऐं'; $labels['firstmessage'] = 'पहला मेल दिखाऐं'; @@ -123,87 +102,30 @@ $labels['lastmessage'] = 'आखीरी मेल दिखाऐं'; $labels['backtolist'] = 'मेल सूची देखें'; $labels['viewsource'] = 'सोर्स दिखाऐं'; $labels['mark'] = 'चिह्नित'; -$labels['markmessages'] = 'Mark messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'चुनें'; $labels['all'] = 'सभी'; $labels['none'] = 'कोई नहीं'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'अनदेखी'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'कोई नहीं'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'छोटा करें'; $labels['empty'] = 'मेल रद्दी में डालें'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'डिस्क उपयोग'; $labels['unknown'] = 'अज्ञात'; $labels['unlimited'] = 'असीम'; $labels['quicksearch'] = 'तेज़ खोज'; $labels['resetsearch'] = 'खोज खाली करें'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'मेल भेजें'; $labels['savemessage'] = 'ड्राफ़ट सहेजें'; $labels['addattachment'] = 'फ़ाईल जोडें'; $labels['charset'] = 'कैरेक्टर सैट'; $labels['editortype'] = 'सम्पादक प्राकार'; $labels['returnreceipt'] = 'मेल रसीद'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'स्पैलिंग जाँचें'; $labels['resumeediting'] = 'सम्पादन फिर शुरू करें'; $labels['revertto'] = 'पहले की स्थिती पर जाऐं'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'जुडे फाईल'; $labels['upload'] = 'अपलोड'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बंद'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'कम'; $labels['lowest'] = 'सबसे कम'; $labels['normal'] = 'साधारण'; @@ -211,118 +133,29 @@ $labels['high'] = 'उच्च'; $labels['highest'] = 'उच्चतम'; $labels['nosubject'] = '(कोई विशय नहीं)'; $labels['showimages'] = 'चित्र दिखाऐं'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'ऐच-टी-ऐम-एल (HTML)'; $labels['plaintoggle'] = 'सादा पाठ'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'दिखने वाला नाम'; $labels['firstname'] = 'पहला नाम'; $labels['surname'] = 'उपनाम'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'मेल'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नया पता जोडें'; $labels['editcontact'] = 'पता सम्पाद'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'सम्पाद'; $labels['cancel'] = 'रद्द'; $labels['save'] = 'सहेज'; $labels['delete'] = 'मिटा'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'नया पता कार्ड बनाऐं'; $labels['deletecontact'] = 'चुने पते मिटाऐं'; $labels['composeto'] = 'को मेल भेजें'; $labels['contactsfromto'] = '$from से ले कर $to, $count पते में से'; $labels['print'] = 'छापें'; $labels['export'] = 'ऐक्स्पोर्ट'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'इससे पहले के बन्डल को दिखाऐं'; $labels['firstpage'] = 'पहला बन्डल दिखाऐं'; $labels['nextpage'] = 'अगला बन्डल दिखाऐं'; $labels['lastpage'] = 'आखिरी बन्डल दिखाऐं'; -$labels['group'] = 'Group'; -$labels['groups'] = 'Groups'; -$labels['listgroup'] = 'List group members'; -$labels['personaladrbook'] = 'Personal Addresses'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'इनके विन्यास:'; -$labels['about'] = 'About'; $labels['preferences'] = 'पसंद'; $labels['userpreferences'] = 'यूसर पसंद'; $labels['editpreferences'] = 'यूसर पसंद सम्पादें'; @@ -332,150 +165,27 @@ $labels['newidentity'] = 'नया पहचान'; $labels['newitem'] = 'नया चीज़'; $labels['edititem'] = 'चीज़ सम्पादें'; $labels['preferhtml'] = 'ऐच-टी-ऐम-ऐल(HTML) दिखाऐं'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ऐच-टी-ऐम-ऐल (HTML) रूप मेल करें'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'सुनदर तारीखें'; $labels['setdefault'] = 'तयशुदा चुनें'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'भाषा'; $labels['timezone'] = 'समय क्षेत्र'; $labels['pagesize'] = 'हर पन्ने पर इतने'; $labels['signature'] = 'दस्तखत'; $labels['dstactive'] = 'रौशनी बचाव'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'मेल ऐच-टी-ऐम-एल (HTML) मे लिखें'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'ऐच-टी-ऐम-एल (HTML) दस्तखत'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'झलक पट्टी दिखाऐं'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'ड्राफ़ट अपने आप सहेजते जाऐं'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'कभी नहाीं'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'फ़ोल्डर'; $labels['folders'] = 'फ़ोल्डर'; $labels['foldername'] = 'फ़ोल्डर नाम'; $labels['subscribed'] = 'सबस्क्राईब किया गया'; -$labels['messagecount'] = 'Messages'; $labels['create'] = 'बनाऐं'; $labels['createfolder'] = 'फ़ोलडर बनाऐं'; $labels['managefolders'] = 'फ़ोलडर को व्यवस्थित करें'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'ऐसे तय करें'; $labels['sortasc'] = 'पहले से आखीरी तय करें'; $labels['sortdesc'] = 'आखीरी से पहले तय करें'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/hi_IN/messages.inc b/program/localization/hi_IN/messages.inc index 8f66b13a4..9cf02696a 100644 --- a/program/localization/hi_IN/messages.inc +++ b/program/localization/hi_IN/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'लॉगिन नहीं हो पाया'; $messages['cookiesdisabled'] = 'आपका ब्राऊसर कुकी स्वीकार नहीं कर रहा है'; $messages['sessionerror'] = 'सत्र समाप्त या अवैद्य'; $messages['storageerror'] = 'आईमैप (IMAP) सर्वर से सम्पर्क नहीं हो पाया'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'इस मेलबॉक्स में कोई मेल नहीं है'; $messages['loggedout'] = 'सत्र समाप्त. टा टा!'; $messages['mailboxempty'] = 'मेलबॉक्स खाली है'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'लोड हो रहा है'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'डाटा लोड हो रहा है...'; $messages['checkingmail'] = 'क्या नया मेल है?...'; $messages['sendingmessage'] = 'मेल भेजा जा रहा है...'; @@ -47,128 +32,35 @@ $messages['messagesaved'] = 'मेल ड्राफ़्ट फोल्ड $messages['successfullysaved'] = 'सहेजा गया है'; $messages['addedsuccessfully'] = 'पता खाते में पता जोडा गया है'; $messages['contactexists'] = 'इस ई-मेल पता से एक पता पेहले से है'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'आप के प्राईवेसी के लिये और स्पैम से बचने के लिये इस मेल में सदूर चित्र नहीं दिखाये गये हैं।'; $messages['encryptedmessage'] = 'माफ़ कीजिये, यह मेल कूट रूप में है, इस कारण दिखाया नहीं जा सकता।'; $messages['nocontactsfound'] = 'कोई पता नहीं मिला'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'मेल नहीं भिज पाया'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'सहेजते-सहेजते गडबड हो गया'; $messages['errormoving'] = 'मेल खिस्का नहीं'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'मेल मिटा नहीं'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'चुने गये पते को सचमुच मिटाना है ?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'चुने गये मेल को सचमुच मिटाना है ?'; $messages['deletefolderconfirm'] = 'फ़ोल्डर को सचमुच मिटाऐं ?'; $messages['purgefolderconfirm'] = 'फ़ोल्डर में पडे सारे मेल को सचमुच मिटाना है?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'फ़ॉर्म पूरी तरह से भरा नहीं'; $messages['noemailwarning'] = 'वैद्य मेल पता भरें'; $messages['nonamewarning'] = 'नाम भरें'; $messages['nopagesizewarning'] = 'पन्ना माप भरें'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'कम-से-कम एक पाने वाले का पता भरें'; $messages['nosubjectwarning'] = 'मेल का कोई विशय नहीं बताया गया है। क्या आप विशय डालना चाहते हैं ?'; $messages['nobodywarning'] = 'बिना कुछ लिखे मेल भेजें?'; $messages['notsentwarning'] = 'मेल भिजा नहीं. मेल रद्द करें ?'; $messages['noldapserver'] = 'खोज के लिये एक ऐलडैप सर्वर चुनें'; $messages['nosearchname'] = 'पता या पते का नाम भरें'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr मेल मिले'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'खोज असफ़ल'; $messages['searching'] = 'खोजा रहे हैं...'; $messages['checking'] = 'चाँचा चा रहा है...'; $messages['nospellerrors'] = 'कोई स्पैलिंग गलती नहीं मिली'; $messages['folderdeleted'] = 'फ़ोल्डर मिट गया'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'मिट गया'; $messages['converting'] = 'मेल से फ़ॉर्मैटिंग निकाला जा रहा है...'; $messages['messageopenerror'] = 'सर्वर से मेल लोड नहीं हो पाया'; $messages['fileuploaderror'] = 'फ़ाईल अपलोड नहीं हो पाया'; $messages['filesizeerror'] = 'अपलोड के लिये फ़ाईल हद $size से बड़ा है'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/hr_HR/labels.inc b/program/localization/hr_HR/labels.inc index d4e2b1a3f..70d1c1316 100644 --- a/program/localization/hr_HR/labels.inc +++ b/program/localization/hr_HR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Dobrodošli na $product'; $labels['username'] = 'Korisničko ime'; $labels['password'] = 'Lozinka'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'Predlošci'; $labels['sent'] = 'Poslano'; $labels['trash'] = 'Smeće'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Naslov'; $labels['from'] = 'Od'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Za'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; @@ -45,7 +41,6 @@ $labels['size'] = 'Veličina'; $labels['priority'] = 'Prioritet'; $labels['organization'] = 'Organizacija'; $labels['readstatus'] = 'Pročitano'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Mape'; $labels['messagesfromto'] = 'Poruke od $from do $to od ukupno $count'; $labels['threadsfromto'] = 'Teme od $from do $to od ukupno $count'; @@ -55,9 +50,6 @@ $labels['copy'] = 'Kopiraj'; $labels['move'] = 'Premjesti'; $labels['moveto'] = 'Premjesti u...'; $labels['download'] = 'Preuzmi (download)'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Ime datoteke'; $labels['filesize'] = 'Veličina datoteke'; $labels['addtoaddressbook'] = 'Dodaj u imenik'; @@ -139,9 +131,7 @@ $labels['currpage'] = 'Trenutna stranica'; $labels['unread'] = 'Nepročitane'; $labels['flagged'] = 'Označene'; $labels['unanswered'] = 'Neodgovrene'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Obrisano'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Obrni'; $labels['filter'] = 'Filtriraj'; $labels['list'] = 'Lista'; @@ -168,7 +158,6 @@ $labels['listmode'] = 'Model pregleda listi'; $labels['folderactions'] = 'Akcije mapa'; $labels['compact'] = 'Kompresiranje'; $labels['empty'] = 'Isprazni'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Kvota'; $labels['unknown'] = 'nepoznato'; $labels['unlimited'] = 'beskonačna'; @@ -176,14 +165,9 @@ $labels['quicksearch'] = 'Brza pretraga'; $labels['resetsearch'] = 'Prikaži sve poruke'; $labels['searchmod'] = 'Postavke pretrage'; $labels['msgtext'] = 'Cijela poruka'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Otvori u novom prozoru'; $labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Uredi kao novo'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Pošalji poruku'; $labels['savemessage'] = 'Spremi u \'Predlošci\''; $labels['addattachment'] = 'Priloži datoteku'; @@ -213,9 +197,6 @@ $labels['nosubject'] = '(bez naslova)'; $labels['showimages'] = 'Prikaži slike'; $labels['alwaysshow'] = 'Uvijek prikaži slike od $sender'; $labels['isdraft'] = 'Ova poruka je skica (draft)'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Samo tekst'; $labels['savesentmessagein'] = 'Spremi poslane poruke u'; @@ -290,36 +271,29 @@ $labels['delete'] = 'Obriši'; $labels['rename'] = 'Preimenuj'; $labels['addphoto'] = 'Dodaj'; $labels['replacephoto'] = 'Smijeniti'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Dodaj novi kontakt'; $labels['deletecontact'] = 'Obriši odabrane kontakte'; $labels['composeto'] = 'Napiši mail...'; $labels['contactsfromto'] = 'Kontakti od $from do $to od ukupno $count'; $labels['print'] = 'Print'; $labels['export'] = 'Export'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Izvezi kontakte u vCard formatu'; $labels['newcontactgroup'] = 'Napravi novu kontaktnu grupu'; $labels['grouprename'] = 'Promijeni ime grupe'; $labels['groupdelete'] = 'Izbriši grupu'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Prethodna strana'; $labels['firstpage'] = 'Prva strana'; $labels['nextpage'] = 'Slijedeća strana'; $labels['lastpage'] = 'Zadnja strana'; $labels['group'] = 'Grupa'; $labels['groups'] = 'Grupe'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Privatna adresa'; $labels['searchsave'] = 'Pohrani pretragu'; $labels['searchdelete'] = 'Obriši pretragu'; $labels['import'] = 'Uvoz'; $labels['importcontacts'] = 'Uvoz kontakta'; $labels['importfromfile'] = 'Uvezi iz datoteke:'; -$labels['importtarget'] = 'Dodaj nove kontakte u imenik:'; $labels['importreplace'] = 'Prepiši cijeli adresar'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Završeno'; $labels['settingsfor'] = 'Postavke za'; $labels['about'] = 'O programu'; @@ -334,8 +308,6 @@ $labels['edititem'] = 'Uredi'; $labels['preferhtml'] = 'HTML format u prednosti'; $labels['defaultcharset'] = 'Zadani skup znakova'; $labels['htmlmessage'] = 'HTML format poruke'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Format datuma'; $labels['timeformat'] = 'Format vremena'; $labels['prettydate'] = 'Formatiran datum'; @@ -346,13 +318,9 @@ $labels['timezone'] = 'Vremenska zona'; $labels['pagesize'] = 'Redova po stranici'; $labels['signature'] = 'Potpis'; $labels['dstactive'] = 'Automatska promjena vremena'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Sastavi HTML poruke'; $labels['htmlonreply'] = 'odgovor samo na HTML poruke'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML potpis'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Prikaži područje pregleda'; $labels['skin'] = 'Tema izgleda'; $labels['logoutclear'] = 'Očisti smeće pri izlazu'; @@ -370,14 +338,12 @@ $labels['readwhendeleted'] = 'Označi poruku kao pročitanu pri brisanju'; $labels['flagfordeletion'] = 'Označi poruku za brisanje umjesto brisanja'; $labels['skipdeleted'] = 'Ne prikazivaj pobrisane poruke'; $labels['deletealways'] = 'Ukoliko premještanje poruka u mapu otpad ne uspije, izbrši poruku'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Prikaži slike s interneta'; $labels['fromknownsenders'] = 'od poznatih pošiljatelja'; $labels['always'] = 'uvijek'; $labels['showinlineimages'] = 'Prikaži slike ispod poruke'; $labels['autosavedraft'] = 'Automatski spremi draft'; $labels['everynminutes'] = 'svakih $n minuta'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'nikada'; $labels['immediately'] = 'odmah'; $labels['messagesdisplaying'] = 'Prikazujem poruke'; @@ -393,13 +359,11 @@ $labels['checkallfolders'] = 'Provjeri nove poruke u svim mapama'; $labels['displaynext'] = 'Nakon brisanja/micanja poruke, prikaži slijedeću'; $labels['defaultfont'] = 'Predodređeni font HTML poruke'; $labels['mainoptions'] = 'Glavne postavke'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Sekcija'; $labels['maintenance'] = 'Održavanje'; $labels['newmessage'] = 'Nova poruka'; $labels['signatureoptions'] = 'Postavke potpisa'; $labels['whenreplying'] = 'Prilikom odgovora'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'započni novu poruku iznad originala'; $labels['replybottomposting'] = 'započni novu poruku ispod originala'; $labels['replyremovesignature'] = 'Kod odgovaranja, makni originalni potpis iz poruke'; @@ -412,20 +376,13 @@ $labels['afternseconds'] = 'nakon $n sekundi'; $labels['reqmdn'] = 'Uvijek zatraži potvrdu o primitku poruke'; $labels['reqdsn'] = 'Uvijek zatraži potvrdu o slanju poruke'; $labels['replysamefolder'] = 'Spremi odgovore u mapu gdje se nalazi poruka'; -$labels['defaultabook'] = 'Default address book'; $labels['autocompletesingle'] = 'Preskoči alternativne email adrese u autocomplete prijedlozima'; -$labels['listnamedisplay'] = 'List contacts as'; $labels['spellcheckbeforesend'] = 'Provjeri pravopis prije slanja poruke'; $labels['spellcheckoptions'] = 'Postavke provjere pravopisa'; $labels['spellcheckignoresyms'] = 'Ignoriraj riječi koje sadrže simbole'; $labels['spellcheckignorenums'] = 'Ignoriraj riječi koje sadrže brojeve'; $labels['spellcheckignorecaps'] = 'Ignoriraj riječi sa sa svim velikim slovima'; $labels['addtodict'] = 'Dodaj u rječnik'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Mapa'; $labels['folders'] = 'Mape'; $labels['foldername'] = 'Ime mape'; @@ -450,7 +407,6 @@ $labels['sortby'] = 'Sortiraj po'; $labels['sortasc'] = 'Sortiraj rastućim nizom'; $labels['sortdesc'] = 'Sortiraj opadajućim nizom'; $labels['undo'] = 'Poništi'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Plugin'; $labels['version'] = 'Inačica'; $labels['source'] = 'Izvor'; diff --git a/program/localization/hr_HR/messages.inc b/program/localization/hr_HR/messages.inc index 2aadb32d3..2e51848eb 100644 --- a/program/localization/hr_HR/messages.inc +++ b/program/localization/hr_HR/messages.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Prijava neuspješna'; $messages['cookiesdisabled'] = 'Vaš Web preglednik ne podržava kolačiće (cookies)'; $messages['sessionerror'] = 'Morate se ponovno ulogirati'; @@ -24,17 +22,12 @@ $messages['storageerror'] = 'Neuspješna veza na IMAP server'; $messages['servererror'] = 'Greška poslužitelja'; $messages['servererrormsg'] = 'Greška na serveru: $msg'; $messages['dberror'] = 'Greška baze podataka!'; -$messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'Nemoguća izvedba operacije. Mapa je samo za čitanje.'; $messages['errornoperm'] = 'Nemoguća izvedba operacije. Dozvola odbijena.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Nepravilan zahtijev! Podaci nisu spremljeni.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Nema poruka u sandučiću'; $messages['loggedout'] = 'Uspješno ste se odjavili. Zbogom!'; $messages['mailboxempty'] = 'Sandučuć je prazan'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Učitavanje...'; $messages['uploading'] = 'Prenosim datoteku...'; $messages['uploadingmany'] = 'Prenosim datoteke...'; @@ -55,8 +48,6 @@ $messages['contactnotfound'] = 'Traženi kontakt nije pronađen'; $messages['contactsearchonly'] = 'Upišite nekoliko pojmova za pretragu imenika'; $messages['sendingfailed'] = 'Greška pri slanju poruke'; $messages['senttooquickly'] = 'Molimo sačekajte $sec sek. prije slanja ove poruke'; -$messages['errorsavingsent'] = 'Greška pri spremanju poslane poruke'; -$messages['errorsaving'] = 'Greška pri spremanju'; $messages['errormoving'] = 'Greška pri premještanju poruke'; $messages['errorcopying'] = 'Greška pri kopiranju poruke'; $messages['errordeleting'] = 'Greška pri brisanju poruke'; @@ -100,16 +91,11 @@ $messages['converting'] = 'Formatiranje poruke'; $messages['messageopenerror'] = 'Učitavanje poruke nije uspjelo'; $messages['fileuploaderror'] = 'Prijenos datoteke nije uspio'; $messages['filesizeerror'] = 'Datoteka je prevelika. Maksimalna veličina je $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Ovaj resurs adresa je samo za čitanje'; $messages['errorsavingcontact'] = 'Nije uspjelo spremanje adrese kontakta'; $messages['movingmessage'] = 'Premještanje poruke...'; $messages['copyingmessage'] = 'Kopiranje poruke...'; $messages['copyingcontact'] = 'Kopiram kontakt(e)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Brisanje poruke...'; $messages['markingmessage'] = 'Označavanje poruke...'; $messages['addingmember'] = 'Dodajem kontakt(e) u grupu...'; @@ -123,13 +109,9 @@ $messages['selectimportfile'] = 'Odaberite datoteku za prijenos'; $messages['addresswriterror'] = 'U odabrani adresar nije moguće zapisivat...'; $messages['contactaddedtogroup'] = 'Kontakti uspješno dodani ovoj grupi'; $messages['contactremovedfromgroup'] = 'Kontakti uspješno izbrisani iz ove grupe'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'Uvozim, molimo sačekajte...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'Uspješno je uvezeno $inserted kontakt(a), preskočeno $skipped već postojećih:

$names

'; $messages['importconfirmskipped'] = 'Preskočeno $skipped postojećih unosa'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Operacija nije dozvoljena!'; $messages['nofromaddress'] = 'Nije upisana e-mail adresa u odabrani identitet'; $messages['editorwarning'] = 'Prebacivanje u čisti tekstualni uređivač će prouzrokovati gubljenje formatiranje teksta. Želite li nastaviti?'; @@ -143,7 +125,6 @@ $messages['smtperror'] = 'SMTP Greška: $msg'; $messages['emailformaterror'] = 'Nepravilna e-mail adresa: $email'; $messages['toomanyrecipients'] = 'Previše primatelja. Smanjite broj primatelja na $max.'; $messages['maxgroupmembersreached'] = 'Broj članova grupe prelazi preko maximuma od $max'; -$messages['internalerror'] = 'Dogodila se interna greška. Molimo Vas pokušajte ponovo.'; $messages['contactdelerror'] = 'Kontakti ne mogu biti obrisani.'; $messages['contactdeleted'] = 'Kontakti uspješno obrisani.'; $messages['contactrestoreerror'] = 'Ne mogu vratiti obrisan(e) kontakt(e).'; @@ -169,6 +150,4 @@ $messages['invalidimageformat'] = 'Format slike nije ispravan.'; $messages['mispellingsfound'] = 'Greške pravopisa su pronađene u poruci.'; $messages['parentnotwritable'] = 'Nije moguće stvoriti/pomaknuti mapu u odabranu mapu. Nemate prava pristupa.'; $messages['messagetoobig'] = 'Dio poruke je prevelik za procesiranje.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/hu_HU/labels.inc b/program/localization/hu_HU/labels.inc index 0bfbefd0f..648ac759f 100644 --- a/program/localization/hu_HU/labels.inc +++ b/program/localization/hu_HU/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Üdvözli a $product'; $labels['username'] = 'Felhasználónév'; $labels['password'] = 'Jelszó'; diff --git a/program/localization/hu_HU/messages.inc b/program/localization/hu_HU/messages.inc index a3b5c13b3..3ca87a52f 100644 --- a/program/localization/hu_HU/messages.inc +++ b/program/localization/hu_HU/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Hiba történt!'; $messages['loginfailed'] = 'Sikertelen bejelentkezés.'; $messages['cookiesdisabled'] = 'A böngésző nem támogatja a sütik használatát'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'A kiválasztott kapcsolat nem található'; $messages['contactsearchonly'] = 'Adjon meg keresőkifejezéseket a kapcsolatok közti kereséshez'; $messages['sendingfailed'] = 'Az üzenet elküldése nem sikerült'; $messages['senttooquickly'] = 'Kérem várjon még $sec másodpercet az üzenet elküldése előtt'; -$messages['errorsavingsent'] = 'Hiba történt az elküldött üzenet mentése közben'; -$messages['errorsaving'] = 'A mentés során hiba lépett fel'; $messages['errormoving'] = 'Az üzenet(ek)et nem sikerült áthelyezni'; $messages['errorcopying'] = 'Az üzenet(ek)et nem sikerült másolni'; $messages['errordeleting'] = 'Az üzenet(ek)et nem sikerült törölni'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP hiba ($code): $msg'; $messages['emailformaterror'] = 'Helytelen formátumú e-mail cím: $email'; $messages['toomanyrecipients'] = 'Túl sok a címzett. Csökkentse a címzettek számát maximum $max címre!'; $messages['maxgroupmembersreached'] = 'A csoport létszáma meghaladja a maximum $max főt'; -$messages['internalerror'] = 'Belső hiba történt, kérjük próbálja újra!'; $messages['contactdelerror'] = 'Hiba a kapcsolat(ok) törlésekor'; $messages['contactdeleted'] = 'Kapcsolat(ok) sikeresen törölve'; $messages['contactrestoreerror'] = 'Nem sikerült a törölt kapcsolat(ok) helyreállítása'; diff --git a/program/localization/hy_AM/labels.inc b/program/localization/hy_AM/labels.inc index d3909714a..fec95f3cd 100644 --- a/program/localization/hy_AM/labels.inc +++ b/program/localization/hy_AM/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Բարի գալուստ $product'; $labels['username'] = 'Օգտվող'; $labels['password'] = 'Գաղտնաբառ'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'Սևագրեր'; $labels['sent'] = 'Ուղարկված'; $labels['trash'] = 'Աղբարկղ'; $labels['junk'] = 'Թափոն'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Վերնագիր'; $labels['from'] = 'Ուղարկող'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Ստացող'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; @@ -55,9 +51,6 @@ $labels['copy'] = 'Cc'; $labels['move'] = 'Տեղափոխել'; $labels['moveto'] = 'Տեղափոխել...'; $labels['download'] = 'Քաշել'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Ֆայլի անուն'; $labels['filesize'] = 'Ֆայլի չափ'; $labels['addtoaddressbook'] = 'Հիշել հասցեն'; @@ -139,9 +132,7 @@ $labels['currpage'] = 'Առկա էջ'; $labels['unread'] = 'Չկարդացածը'; $labels['flagged'] = 'Նշված'; $labels['unanswered'] = 'Անպատասխան'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Ջնջված'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Փոխատեղել'; $labels['filter'] = 'Զտիչ'; $labels['list'] = 'Ցուցակ'; @@ -168,7 +159,6 @@ $labels['listmode'] = 'Ցուցակով տեսքի տարբերակը'; $labels['folderactions'] = 'Պանակի գործողություններ…'; $labels['compact'] = 'Սեղմել'; $labels['empty'] = 'Դատարկել'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Դիսկային տարածք'; $labels['unknown'] = 'անհայտ'; $labels['unlimited'] = 'անսահմանափակ'; @@ -176,14 +166,9 @@ $labels['quicksearch'] = 'Արագ որոնում'; $labels['resetsearch'] = 'Վերսկսել որոնումը'; $labels['searchmod'] = 'Որոնման փոփոխիչներ'; $labels['msgtext'] = 'Ողջ հաղորդագրությունը'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Բացել նոր պատուհանում'; $labels['emlsave'] = 'Ներբեռնել (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Խմբագրել որպես նոր'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Ուղարկել'; $labels['savemessage'] = 'Հիշել որպես սևագիր'; $labels['addattachment'] = 'Կցել ֆայլ'; @@ -213,9 +198,6 @@ $labels['nosubject'] = '(առանց վերնագրի)'; $labels['showimages'] = 'Ցուցադրել նկարները'; $labels['alwaysshow'] = 'Միշտ ցուցադրել պատկերները $sender–ից'; $labels['isdraft'] = 'Սա հաղորդագրության սևագիր է'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Պարզ տեքստ'; $labels['savesentmessagein'] = 'Գրանցել ուղարկված նամակը'; @@ -297,8 +279,6 @@ $labels['composeto'] = 'Գրել նամակ'; $labels['contactsfromto'] = 'Հասցեներ $from–ից $to–ը եղած $count–ից'; $labels['print'] = 'Տպել'; $labels['export'] = 'Արտահանել'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Արտահանել հասցեները vCard չափաձևով'; $labels['newcontactgroup'] = 'Ստեղծել կապորդների նոր խումբ'; $labels['grouprename'] = 'Վերանվանել խումբը'; @@ -310,16 +290,13 @@ $labels['nextpage'] = 'Ցուցադրել հաջորդ էջը'; $labels['lastpage'] = 'Ցուցադրել վերջին էջը'; $labels['group'] = 'Խումբ'; $labels['groups'] = 'Խմբեր'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Անձնական հասցեներ'; $labels['searchsave'] = 'Պահպանել որոնումը'; $labels['searchdelete'] = 'Ջնջել որոնումը'; $labels['import'] = 'Ներկրել'; $labels['importcontacts'] = 'Ներկրել հասցեներ'; $labels['importfromfile'] = 'Ներկրել ֆայլից'; -$labels['importtarget'] = 'Ավելացնել նոր կապորդներ հասցեագրքում'; $labels['importreplace'] = 'Փոխել ողջ հասցեագիրքը'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Ավարտված է'; $labels['settingsfor'] = 'Նախասիրություններ'; $labels['about'] = 'Նկարագիր'; @@ -334,8 +311,6 @@ $labels['edititem'] = 'Խմբագրել իրը'; $labels['preferhtml'] = 'Գերադասել HTML'; $labels['defaultcharset'] = 'Լռելյալ տառաշար'; $labels['htmlmessage'] = 'HTML նամակ'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Ամսաթվի ձևաչափ'; $labels['timeformat'] = 'Ժամանակի ձևաչափ'; $labels['prettydate'] = 'Պարզ ամսաթվեր'; @@ -346,13 +321,9 @@ $labels['timezone'] = 'Ժամային գոտի'; $labels['pagesize'] = 'Տողեր առ էջ'; $labels['signature'] = 'Ստորագրություն'; $labels['dstactive'] = 'Ամառային ժամանակ'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Ստեղծել HTML նամակներ'; $labels['htmlonreply'] = 'միայն HTML հաղորդագրությանը պատասխանելիս'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML ստորագրություն'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Ցուցադրել պատուհանը'; $labels['skin'] = 'Տեսքի տարբերակ'; $labels['logoutclear'] = 'Դուրս գալուց դատարկել աղբարկղը'; @@ -377,7 +348,6 @@ $labels['always'] = 'միշտ'; $labels['showinlineimages'] = 'Ցուցադրել կցված պատկերները հաղորդագրության տակ'; $labels['autosavedraft'] = 'Սևագրի ավտոմատ գրանցում'; $labels['everynminutes'] = 'ամեն $n րոպեն'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'երբեք'; $labels['immediately'] = 'անմիջապես'; $labels['messagesdisplaying'] = 'նամակները ցուցադրելիս'; @@ -399,7 +369,6 @@ $labels['maintenance'] = 'Սպասարկում'; $labels['newmessage'] = 'Նոր հաղորդագրություն'; $labels['signatureoptions'] = 'Ստորագրության ընտրանքներ'; $labels['whenreplying'] = 'Պատասխանելիս'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'սկսել նոր հաղորդագրությունը վերևից'; $labels['replybottomposting'] = 'սկսել նոր հաղորդագրությունը ներքևից'; $labels['replyremovesignature'] = 'Պատասխանելիս հեռացնել հաղորդագրությունից նախորդ ստորագրությունը'; @@ -412,7 +381,6 @@ $labels['afternseconds'] = '$n վարկյան հետո'; $labels['reqmdn'] = 'Միշտ պատվիրել ստացական'; $labels['reqdsn'] = 'Միշտ պատվիրել առաքման կարգավիճակի ծանուցում'; $labels['replysamefolder'] = 'Հաղորդագրության պատասխանները պահել նույն պանակում'; -$labels['defaultabook'] = 'Default address book'; $labels['autocompletesingle'] = 'Ավտոլրացման ժամանակ բացառել այլընտրանքային էլփոստի հասցեները'; $labels['listnamedisplay'] = 'Ցուցադրել կապորդները որպես'; $labels['spellcheckbeforesend'] = 'Ստուգել տառասխալները հաղորդագրությունը ուղարկելուց առաջ'; @@ -422,10 +390,6 @@ $labels['spellcheckignorenums'] = 'Անտեսել թվերով բառերը'; $labels['spellcheckignorecaps'] = 'Անտեսել լրիվ մեծատառ բառերը'; $labels['addtodict'] = 'Ավելացնել բառարանում'; $labels['mailtoprotohandler'] = 'mailto: հղումների սպասարկող'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Դարակ'; $labels['folders'] = 'Դարակներ'; $labels['foldername'] = 'Դարակի անուն'; @@ -450,7 +414,6 @@ $labels['sortby'] = 'Դասավորել'; $labels['sortasc'] = 'ըստ աճման'; $labels['sortdesc'] = 'ըստ նվազման'; $labels['undo'] = 'Ետարկել'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Խրիչ'; $labels['version'] = 'Տարբերակ'; $labels['source'] = 'Աղբյուր'; diff --git a/program/localization/hy_AM/messages.inc b/program/localization/hy_AM/messages.inc index fd52ab6f9..c5d167acf 100644 --- a/program/localization/hy_AM/messages.inc +++ b/program/localization/hy_AM/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Սխա՛լ'; $messages['loginfailed'] = 'Մուտքը ձախողվեց'; $messages['cookiesdisabled'] = 'Сookies–ների ապահովվումը բացակայում է'; @@ -27,14 +26,10 @@ $messages['dberror'] = 'Տվյալների շտեմարանի սխա՛լ'; $messages['requesttimedout'] = 'Հարցման թույլատրելի ժամանակը սպառվեց'; $messages['errorreadonly'] = 'Գործողությունը անհնար է։ Պանակը միայն ընթերցման համար է։'; $messages['errornoperm'] = 'Գործողության կատարման իրավունքը մերժված է։'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Սխալ հարցում, ապարդյուն։'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Այս փոստարկղում նամակներ չկան'; $messages['loggedout'] = 'Դուք բարեհաջող ավարտեցիք աշխատանքը։ Ցտեսություն…'; $messages['mailboxempty'] = 'Փոստարկղը դատարկ է'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Բեռնում...'; $messages['uploading'] = 'Ֆայլի վերբեռնում…'; $messages['uploadingmany'] = 'Վերբեռնվում են ֆայլերը…'; @@ -55,8 +50,6 @@ $messages['contactnotfound'] = 'Որոնվող հասցեն չգտնվեց'; $messages['contactsearchonly'] = 'Ներմուծեք տվյալներ անձանց որոնման համար'; $messages['sendingfailed'] = 'Նամակի ուղարկումը ձախողվեց'; $messages['senttooquickly'] = 'Խնդրում ենք սպասել $sec վարկյան մինչ այս նամակն ուղարկելը'; -$messages['errorsavingsent'] = 'Ուղարկված նամակի արխիվացումը խափանվեց'; -$messages['errorsaving'] = 'Գրանցման սխալ'; $messages['errormoving'] = 'Նամակի տեղափոխման ձախողում'; $messages['errorcopying'] = 'Հաղորդագրության պատճենումը ձախողվեց։'; $messages['errordeleting'] = 'Նամակի ջնջման ձախողում'; @@ -100,16 +93,11 @@ $messages['converting'] = 'Նամակի ձևավորման հեռացում…'; $messages['messageopenerror'] = 'Նամակի բեռնվումը սերվերից ձախողվեց'; $messages['fileuploaderror'] = 'Ֆայլի կցումն ձախողվեց'; $messages['filesizeerror'] = 'Ֆայլի չափը գերազանցում է մաքսիմալը՝ $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Այս հասցեն պաշտպանված է'; $messages['errorsavingcontact'] = 'Հասցեի գրանցումն ձախողվեց'; $messages['movingmessage'] = 'Նամակը տեղափոխվում է…'; $messages['copyingmessage'] = 'Հաղորդագրությունների պատճենում…'; $messages['copyingcontact'] = 'Անձանց պատճենում…'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Հաղորդագրությունների ջնջում…'; $messages['markingmessage'] = 'Հաղորդագրությունների նշում…'; $messages['addingmember'] = 'Անձանց ավելացում խմբին…'; @@ -123,13 +111,9 @@ $messages['selectimportfile'] = 'Ընտրեք ուղարկվող ֆայլը'; $messages['addresswriterror'] = 'Ընտրված հասցեագիրքը ենթակա չէ փոփոխման'; $messages['contactaddedtogroup'] = 'Անձինք բարեհաջող ավելացվեցին խմբին։'; $messages['contactremovedfromgroup'] = 'Անձինք բարեհաջող հանվեցին խմբից։'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'Ներկրումն ընթացքի մեջ է...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = '$inserted նոր ներկրված հասցեներ, $skipped արդեն առկա հասցեներ՝

$names

'; $messages['importconfirmskipped'] = 'Բաց թողնվեց $skipped առկա գրառում'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Գործողությունը անթույլատրելի է։'; $messages['nofromaddress'] = 'Նշված անձը հասցե չունի։'; $messages['editorwarning'] = 'Դեպի պարզ տեքստի խմբագրիչ անցման դեպքում կկորի տեքստի ձևավորումը։ Շարունակե՞լ։'; @@ -143,7 +127,6 @@ $messages['smtperror'] = 'SMTP սխալ` $msg'; $messages['emailformaterror'] = 'Սխալ էլփոստի հասցե` $email'; $messages['toomanyrecipients'] = 'Ստացողների քանակը չափազանց մեծ է։ Նվազեցրեք մինչև $max-ը։'; $messages['maxgroupmembersreached'] = 'Խմբի անդամների քանաքը գերազանցում է թույլատրելի $max-ը։'; -$messages['internalerror'] = 'Ներքին սխալ, կրկին փորձեք։'; $messages['contactdelerror'] = 'Անձանց ջնջումը ձախողվեց։'; $messages['contactdeleted'] = 'Անձանց ջնջումը հաջողվեց։'; $messages['contactrestoreerror'] = 'Ջնջված անձանց վերականգնումը ձախողվեց։'; @@ -169,6 +152,4 @@ $messages['invalidimageformat'] = 'Պատկերի սխալ ձևաչափ։'; $messages['mispellingsfound'] = 'Հաղորդագրության մեջ կան տառասխալներ։'; $messages['parentnotwritable'] = 'Նշված պանակի մեջ պանակի ստեղծումը կամ տեղափոխումը անհնար է անբավարար իրավունքների պատճառով։'; $messages['messagetoobig'] = 'Հաղորդագրության մասը չափազանց մեծ է սպասարկման համար։'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ia/labels.inc b/program/localization/ia/labels.inc index 15c8e708f..0ff1e939e 100644 --- a/program/localization/ia/labels.inc +++ b/program/localization/ia/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Benvenite a $product'; $labels['username'] = 'Nomine de usator'; $labels['password'] = 'Contrasigno'; @@ -27,11 +25,7 @@ $labels['mail'] = 'E-posta'; $labels['settings'] = 'Configurationes'; $labels['addressbook'] = 'Adressario'; $labels['inbox'] = 'Cassa de entrata'; -$labels['drafts'] = 'Drafts'; $labels['sent'] = 'Inviate'; -$labels['trash'] = 'Trash'; -$labels['junk'] = 'Junk'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Subjecto'; $labels['from'] = 'Ex'; $labels['sender'] = 'Expeditor'; @@ -39,25 +33,18 @@ $labels['to'] = 'A'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Responder a'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Data'; $labels['size'] = 'Dimension'; $labels['priority'] = 'Prioritate'; $labels['organization'] = 'Organisation'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Dossieres'; -$labels['messagesfromto'] = 'Messages $from to $to of $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Message $nr de $count'; $labels['fromtoshort'] = '$from – $to de $count'; $labels['copy'] = 'Copiar'; $labels['move'] = 'Mover'; $labels['moveto'] = 'Mover a'; $labels['download'] = 'Discargar'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Monstrar'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Nomine de file'; $labels['filesize'] = 'Dimension del file'; $labels['addtoaddressbook'] = 'Adder al adressario'; @@ -105,103 +92,50 @@ $labels['checkmail'] = 'Verificar nove messages'; $labels['compose'] = 'Componer'; $labels['writenewmessage'] = 'Crear un nove message'; $labels['reply'] = 'Responder'; -$labels['replytomessage'] = 'Reply to sender'; -$labels['replytoallmessage'] = 'Reply to list or to sender and all recipients'; $labels['replyall'] = 'Responder a totes'; $labels['replylist'] = 'Responder a lista'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; -$labels['forwardmessage'] = 'Forward the message'; $labels['deletemessage'] = 'Deler messsage'; -$labels['movemessagetotrash'] = 'Move message to trash'; $labels['printmessage'] = 'Imprimer iste message'; -$labels['previousmessage'] = 'Show previous message'; -$labels['firstmessage'] = 'Show first message'; -$labels['nextmessage'] = 'Show next message'; -$labels['lastmessage'] = 'Show last message'; -$labels['backtolist'] = 'Back to message list'; $labels['viewsource'] = 'Monstrar fonte'; $labels['mark'] = 'Marcar'; $labels['markmessages'] = 'Marcar messages'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; $labels['more'] = 'Plus'; $labels['back'] = 'Retornar'; $labels['options'] = 'Optiones'; $labels['select'] = 'Seliger'; $labels['all'] = 'Totes'; $labels['none'] = 'Necun'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Non legite'; $labels['flagged'] = 'Marcate'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Delete'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Inverter'; $labels['filter'] = 'Filtro'; $labels['list'] = 'Lista'; $labels['threads'] = 'Topicos'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; $labels['flag'] = 'Marcar'; $labels['attachment'] = 'Attachamento'; $labels['nonesort'] = 'Necun'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; $labels['folderactions'] = 'Actiones de dossier...'; $labels['compact'] = 'Compacte'; $labels['empty'] = 'Vacue'; -$labels['importmessages'] = 'Import messages'; -$labels['quota'] = 'Disk usage'; $labels['unknown'] = 'incognite'; -$labels['unlimited'] = 'unlimited'; $labels['quicksearch'] = 'Cerca rapide'; $labels['resetsearch'] = 'Reinitialisar cerca'; -$labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Message complete'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Aperir in nove fenestra'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Modificar como nove'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Inviar message'; $labels['savemessage'] = 'Salveguardar como version provisori'; $labels['addattachment'] = 'Attachar un file'; $labels['charset'] = 'Insimul de Characteres'; $labels['editortype'] = 'Typo de editor'; -$labels['returnreceipt'] = 'Return receipt'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'Message original'; $labels['editidents'] = 'Modificar identitates'; $labels['spellcheck'] = 'Orthographia'; $labels['checkspelling'] = 'Verificar orthographia'; -$labels['resumeediting'] = 'Resume editing'; -$labels['revertto'] = 'Revert to'; $labels['attach'] = 'Attachar'; $labels['attachments'] = 'Attachamentos'; $labels['upload'] = 'Incargar'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Clauder'; $labels['messageoptions'] = 'Optiones de message...'; $labels['low'] = 'Basse'; @@ -211,35 +145,19 @@ $labels['high'] = 'Alte'; $labels['highest'] = 'Maximal'; $labels['nosubject'] = '(sin subjecto)'; $labels['showimages'] = 'Monstrar imagines'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; -$labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Texto plan'; $labels['savesentmessagein'] = 'Salveguardar message inviate in'; $labels['dontsave'] = 'non salveguardar'; $labels['maxuploadsize'] = 'Le dimension maximal de iste file es $size'; $labels['addcc'] = 'Adder Cc'; $labels['addbcc'] = 'Adder Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'Monstrar nomine'; $labels['firstname'] = 'Nomine'; $labels['surname'] = 'Nomine de familia'; -$labels['middlename'] = 'Middle Name'; $labels['nameprefix'] = 'Prefixo'; -$labels['namesuffix'] = 'Suffix'; $labels['nickname'] = 'Pseudonymo'; -$labels['jobtitle'] = 'Job Title'; $labels['department'] = 'Departimento'; $labels['gender'] = 'Sexo:'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'E-posta'; $labels['phone'] = 'Telephono'; $labels['address'] = 'Adresse'; @@ -270,7 +188,6 @@ $labels['typemobile'] = 'Mobile'; $labels['typemain'] = 'Principal'; $labels['typehomefax'] = 'Fax de domo'; $labels['typeworkfax'] = 'Fax de labor'; -$labels['typecar'] = 'Car'; $labels['typepager'] = 'Pager'; $labels['typevideo'] = 'Video'; $labels['typeassistant'] = 'Assistente'; @@ -290,36 +207,21 @@ $labels['delete'] = 'Deler'; $labels['rename'] = 'Renominar'; $labels['addphoto'] = 'Adder'; $labels['replacephoto'] = 'Reimplaciar'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Crear un nove carta de contacto'; $labels['deletecontact'] = 'Deler contactos seligite'; -$labels['composeto'] = 'Compose mail to'; -$labels['contactsfromto'] = 'Contacts $from to $to of $count'; $labels['print'] = 'Imprimer'; $labels['export'] = 'Exportar'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; $labels['newcontactgroup'] = 'Crear un nove gruppo de contacto'; $labels['grouprename'] = 'Renominar gruppo'; $labels['groupdelete'] = 'Deler gruppo'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; -$labels['previouspage'] = 'Show previous page'; -$labels['firstpage'] = 'Show first page'; -$labels['nextpage'] = 'Show next page'; -$labels['lastpage'] = 'Show last page'; $labels['group'] = 'Gruppo'; $labels['groups'] = 'Gruppos'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Adresses personal'; $labels['searchsave'] = 'Salveguardar cerca'; $labels['searchdelete'] = 'Deler cerca'; $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importar contactos'; $labels['importfromfile'] = 'Importar ex file:'; -$labels['importtarget'] = 'Adder nove contactos al adressario'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Facite'; $labels['settingsfor'] = 'Configurationes pro'; $labels['about'] = 'A proposito'; @@ -327,105 +229,38 @@ $labels['preferences'] = 'Preferentias'; $labels['userpreferences'] = 'Preferentias de usator'; $labels['editpreferences'] = 'Modificar preferentias de usator'; $labels['identities'] = 'Identitates'; -$labels['manageidentities'] = 'Manage identities for this account'; $labels['newidentity'] = 'Nove identitate'; $labels['newitem'] = 'Nove elemento'; $labels['edititem'] = 'Modificar elemento'; $labels['preferhtml'] = 'Monstrar HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Message HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Formato de data'; $labels['timeformat'] = 'Formato de tempore'; -$labels['prettydate'] = 'Pretty dates'; $labels['setdefault'] = 'Fixar predeterminate'; $labels['autodetect'] = 'Auto'; $labels['language'] = 'Lingua'; $labels['timezone'] = 'Fuso horari'; -$labels['pagesize'] = 'Rows per page'; $labels['signature'] = 'Signatura'; -$labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; -$labels['htmleditor'] = 'Compose HTML messages'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Signatura HTML'; -$labels['showemail'] = 'Show email address with display name'; -$labels['previewpane'] = 'Show preview pane'; $labels['skin'] = 'Apparentia de interfacie'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; $labels['uisettings'] = 'Interfacie de usator'; $labels['serversettings'] = 'Configurationes de servitor'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'ignorar'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; $labels['always'] = 'sempre'; -$labels['showinlineimages'] = 'Display attached images below the message'; -$labels['autosavedraft'] = 'Automatically save draft'; $labels['everynminutes'] = 'cata $n minuta(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'nunquam'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'Inviar me_ssages'; -$labels['messagescomposition'] = 'Composing Messages'; $labels['mimeparamfolding'] = 'Nomines de attachamento'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'Optiones avantiate'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'Optiones principal'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Section'; $labels['maintenance'] = 'Mantenimento'; $labels['newmessage'] = 'Nove message'; $labels['signatureoptions'] = 'Optiones de signatura'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; $labels['autoaddsignature'] = 'Automaticamente inserta signatura'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; $labels['insertsignature'] = 'Insertar signatura'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; $labels['spellcheckoptions'] = 'Optiones de verification orthographic'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; $labels['addtodict'] = 'Adder al dictionario'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Dossier'; $labels['folders'] = 'Dossieres'; $labels['foldername'] = 'Nomine de dossier'; @@ -434,47 +269,19 @@ $labels['messagecount'] = 'Messages'; $labels['create'] = 'Crear'; $labels['createfolder'] = 'Crear un nove dossier'; $labels['managefolders'] = 'Gerer le dossieres'; -$labels['specialfolders'] = 'Special Folders'; $labels['properties'] = 'Proprietates'; $labels['folderproperties'] = 'Proprietates de dossier'; -$labels['parentfolder'] = 'Parent folder'; $labels['location'] = 'Location'; $labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; $labels['foldertype'] = 'Typo de dossier'; $labels['personalfolder'] = 'Dossier private'; -$labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'Dossier public'; $labels['sortby'] = 'Ordinar per'; -$labels['sortasc'] = 'Sort ascending'; -$labels['sortdesc'] = 'Sort descending'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; $labels['source'] = 'Fonte'; $labels['license'] = 'Licentia'; $labels['support'] = 'Obtener supporte'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; $labels['unicode'] = 'Unicode'; $labels['english'] = 'Anglese'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; $labels['japanese'] = 'Japonese'; $labels['korean'] = 'Coreano'; $labels['chinese'] = 'Chinese'; diff --git a/program/localization/ia/messages.inc b/program/localization/ia/messages.inc index b42b3bd63..50ef68145 100644 --- a/program/localization/ia/messages.inc +++ b/program/localization/ia/messages.inc @@ -15,160 +15,27 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Initio de session fallite'; -$messages['cookiesdisabled'] = 'Your browser does not accept cookies.'; -$messages['sessionerror'] = 'Your session is invalid or expired.'; -$messages['storageerror'] = 'Connection to storage server failed.'; $messages['servererror'] = 'Error de servitor!'; -$messages['servererrormsg'] = 'Server Error: $msg'; $messages['dberror'] = 'Error de base de datos!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; -$messages['nomessagesfound'] = 'No messages found in this mailbox.'; -$messages['loggedout'] = 'You have successfully terminated the session. Good bye!'; -$messages['mailboxempty'] = 'Mailbox is empty.'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Cargante ...'; -$messages['uploading'] = 'Uploading file...'; $messages['uploadingmany'] = 'Incargante files...'; $messages['loadingdata'] = 'Cargante datos...'; -$messages['checkingmail'] = 'Checking for new messages...'; $messages['sendingmessage'] = 'Inviante message...'; -$messages['messagesent'] = 'Message sent successfully.'; -$messages['savingmessage'] = 'Saving message...'; -$messages['messagesaved'] = 'Message saved to Drafts.'; $messages['successfullysaved'] = 'Salveguardate con successo.'; -$messages['addedsuccessfully'] = 'Contact added successfully to address book.'; -$messages['contactexists'] = 'A contact with the same e-mail address already exists.'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; -$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.'; -$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!'; $messages['nocontactsfound'] = 'Nulle contactos trovate.'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Falleva in inviar le message.'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'An error occured while saving.'; $messages['errormoving'] = 'Non pote mover le message(s)'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Il non pote deler le message(s).'; -$messages['errormarking'] = 'Could not mark the message(s).'; -$messages['deletecontactconfirm'] = 'Do you really want to delete selected contact(s)?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; -$messages['deletemessagesconfirm'] = 'Do you really want to delete selected message(s)?'; -$messages['deletefolderconfirm'] = 'Do you really want to delete this folder?'; -$messages['purgefolderconfirm'] = 'Do you really want to delete all messages in this folder?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; -$messages['formincomplete'] = 'The form was not completely filled out.'; -$messages['noemailwarning'] = 'Please enter a valid email address.'; $messages['nonamewarning'] = 'Per favor inserta nomine.'; -$messages['nopagesizewarning'] = 'Please enter a page size.'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; -$messages['norecipientwarning'] = 'Please enter at least one recipient.'; -$messages['nosubjectwarning'] = 'The "Subject" field is empty. Would you like to enter one now?'; -$messages['nobodywarning'] = 'Send this message without text?'; -$messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?'; -$messages['noldapserver'] = 'Please select an ldap server to search.'; -$messages['nosearchname'] = 'Please enter a contact name or email address.'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr messages trovate.'; $messages['contactsearchsuccessful'] = '$nr contactos trovate.'; -$messages['searchnomatch'] = 'Search returned no matches.'; $messages['searching'] = 'Cercante...'; $messages['checking'] = 'A verificar...'; -$messages['nospellerrors'] = 'No spelling errors found.'; -$messages['folderdeleted'] = 'Folder successfully deleted.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Delete con successo.'; -$messages['converting'] = 'Removing formatting...'; -$messages['messageopenerror'] = 'Could not load message from server.'; $messages['fileuploaderror'] = 'Incargamento de file falleva.'; -$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; $messages['selectimportfile'] = 'Per favor tu selige le file a incargar.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'Adresse de e-mail invalide: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; $messages['namecannotbeempty'] = 'Le nomine non pote esser vacue.'; $messages['nametoolong'] = 'Le nomine es troppo longe.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/id_ID/labels.inc b/program/localization/id_ID/labels.inc index 2915d802b..581428aab 100644 --- a/program/localization/id_ID/labels.inc +++ b/program/localization/id_ID/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Selamat datang di $product'; $labels['username'] = 'Username'; $labels['password'] = 'Password'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Konsep'; $labels['sent'] = 'Terkirim'; $labels['trash'] = 'Surat Terhapus'; $labels['junk'] = 'Sampah'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Tampilkan nama asli untuk folder spesial'; $labels['subject'] = 'Judul'; $labels['from'] = 'Pengirim'; $labels['sender'] = 'Pengirim'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Perlihatkan mode tinjauan'; $labels['folderactions'] = 'Tindakan pada folder...'; $labels['compact'] = 'Rampingkan'; $labels['empty'] = 'Kosong'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Impor pesan'; $labels['quota'] = 'Penggunaan ruang'; $labels['unknown'] = 'Tidak dikenal'; $labels['unlimited'] = 'Tidak terbatas'; @@ -311,14 +309,13 @@ $labels['nextpage'] = 'Perlihatkan himpunan selanjutnya'; $labels['lastpage'] = 'Perlihatkan himpunan terakhir'; $labels['group'] = 'Kelompok'; $labels['groups'] = 'Kelompok'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Daftar anggota grup'; $labels['personaladrbook'] = 'Alamat pribadi'; $labels['searchsave'] = 'Simpan pencarian'; $labels['searchdelete'] = 'Hapus pencarian'; $labels['import'] = 'Impor'; $labels['importcontacts'] = 'Impor kontak'; $labels['importfromfile'] = 'Impor dari berkas:'; -$labels['importtarget'] = 'Tambahkan kontak baru ke buku alamat:'; $labels['importreplace'] = 'Ganti seluruh buku alamat'; $labels['importdesc'] = 'Anda dapat mengunggah kontak dari buku alamat yang telah ada.
Saat ini kami mendukung import alamat dari format data vCard atau CSV (comma-separated).'; $labels['done'] = 'Selesai'; @@ -353,7 +350,7 @@ $labels['htmleditor'] = 'Tulis pesan HTML'; $labels['htmlonreply'] = 'balasan untuk pesan HTML saja'; $labels['htmlonreplyandforward'] = 'ketika meneruskan atau membalas pesan HTML'; $labels['htmlsignature'] = 'Tandatangan HTML'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'Tampilkan alamat email dengan nama'; $labels['previewpane'] = 'Unjuk pratinjau'; $labels['skin'] = 'Tampilan antarmuka'; $labels['logoutclear'] = 'Bersihkan Tong Sampah saat keluar'; @@ -423,7 +420,7 @@ $labels['spellcheckignorenums'] = 'Abaikan kata-kata yang bernomor'; $labels['spellcheckignorecaps'] = 'Abaikan kata-kata dengan huruf besar semua'; $labels['addtodict'] = 'Tambahkan ke kamus'; $labels['mailtoprotohandler'] = 'Daftarkan pengampu protokol untuk link mailto:'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'Kelola popup sebagai standar window'; $labels['forwardmode'] = 'Meneruskan pesan'; $labels['inline'] = 'dalam surat'; $labels['asattachment'] = 'sebagai sisipan'; diff --git a/program/localization/id_ID/messages.inc b/program/localization/id_ID/messages.inc index 7b32cfe45..020b03f8a 100644 --- a/program/localization/id_ID/messages.inc +++ b/program/localization/id_ID/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Terjadi error!'; $messages['loginfailed'] = 'Login gagal.'; $messages['cookiesdisabled'] = 'Browser Anda tidak menerima cookies.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Kontak yang diminta tidak ditemukan'; $messages['contactsearchonly'] = 'Masukkan jenis pencarian untuk mencari kontak'; $messages['sendingfailed'] = 'Gagal mengirim pesan.'; $messages['senttooquickly'] = 'Mohon tunggu $sec detik sebelum mengirim pesan ini.'; -$messages['errorsavingsent'] = 'Error ketika menyimpan pesan terkirim.'; -$messages['errorsaving'] = 'Error ketika menyimpan.'; $messages['errormoving'] = 'Pesan tidak bisa dipindahkan'; $messages['errorcopying'] = 'Pesan tidak dapat disalin'; $messages['errordeleting'] = 'Pesan tidak bisa dihapus'; @@ -100,16 +97,16 @@ $messages['converting'] = 'Mengembalikan pesan ke format awal...'; $messages['messageopenerror'] = 'Tidak dapat mengambil pesan dari server'; $messages['fileuploaderror'] = 'Gagal mengunggah berkas'; $messages['filesizeerror'] = 'Berkas terunggah mencapai ukuran maksimal dari $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; +$messages['copysuccess'] = 'Berhasil menyalin kontak $nr'; +$messages['movesuccess'] = 'Berhasil memindahkan kontak $nr'; +$messages['copyerror'] = 'Tidak dapat menyalin kontak'; +$messages['moveerror'] = 'Tidak dapat memindahkan kontak'; $messages['sourceisreadonly'] = 'Sumber dari alamat ini hanya dapat dibaca'; $messages['errorsavingcontact'] = 'Tidak bisa menyimpan alamat kontak'; $messages['movingmessage'] = 'Memindahkan pesan...'; $messages['copyingmessage'] = 'Menyalin pesan...'; $messages['copyingcontact'] = 'Menyalin kontak...'; -$messages['movingcontact'] = 'Moving contact(s)...'; +$messages['movingcontact'] = 'Memindahkan kontak(s)...'; $messages['deletingmessage'] = 'Menghapus pesan...'; $messages['markingmessage'] = 'Menandai Pesan...'; $messages['addingmember'] = 'Menambahkan kontak ke grup...'; @@ -128,8 +125,8 @@ $messages['importwait'] = 'Sedang mengimpor, harap menunggu...'; $messages['importformaterror'] = 'Proses import gagal. File yang di upload bukan file import yang valid.'; $messages['importconfirm'] = 'Berhasil mengimpor $inserted kontak'; $messages['importconfirmskipped'] = '$skipped entri yang sudah ada dilewatkan'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; +$messages['importmessagesuccess'] = 'Berhasil mengimport $nr pesan'; +$messages['importmessageerror'] = 'Gagal mengimport! File yang di upload buka pesan yang valid atau file mailbox'; $messages['opnotpermitted'] = 'Operasi tidak diperbolehkan!'; $messages['nofromaddress'] = 'kekurangan alamat e-mail pada identitas terpilih'; $messages['editorwarning'] = 'Beralih pada editor teks murni akan mengakibatkan semua pemformatan teks hilang. Lanjutkan?'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP Error : $msg'; $messages['emailformaterror'] = 'Alamat e-mail salah: $email'; $messages['toomanyrecipients'] = 'Terlalu banyak penerima. Batas maksimal penerima adalah $max'; $messages['maxgroupmembersreached'] = 'Jumlah grup melebihi jumlah maksimum $max'; -$messages['internalerror'] = 'Terjadi kesalahan internal. Silahkan diulang kembali'; $messages['contactdelerror'] = 'Kontak tidak bisa dihapus'; $messages['contactdeleted'] = 'Kontak berhasil dihapus'; $messages['contactrestoreerror'] = 'Tidak bisa mengembalikan kontak yang terhapus.'; diff --git a/program/localization/is_IS/labels.inc b/program/localization/is_IS/labels.inc index c1d9591f6..8b90730f7 100644 --- a/program/localization/is_IS/labels.inc +++ b/program/localization/is_IS/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Velkomin í $product'; $labels['username'] = 'Netfang'; $labels['password'] = 'Lykilorð'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'Drög'; $labels['sent'] = 'Sent'; $labels['trash'] = 'Rusl'; $labels['junk'] = 'Ruslpóstur'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Titill'; $labels['from'] = 'Frá'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Til'; $labels['cc'] = 'Afrit'; $labels['bcc'] = 'Blint afrit'; @@ -45,7 +41,6 @@ $labels['size'] = 'Stærð'; $labels['priority'] = 'Forgangur'; $labels['organization'] = 'Stofnun'; $labels['readstatus'] = 'Lesmerking'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Möppur'; $labels['messagesfromto'] = 'Skeyti $from til $to af $count'; $labels['threadsfromto'] = 'Þræðir $from til $to af $count'; @@ -55,9 +50,6 @@ $labels['copy'] = 'Afrit'; $labels['move'] = 'Færa'; $labels['moveto'] = 'Færa í...'; $labels['download'] = 'Hlaða niður'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Skráarheiti'; $labels['filesize'] = 'Skráarstærð'; $labels['addtoaddressbook'] = 'Bæta í nafnaskrá'; @@ -139,9 +131,7 @@ $labels['currpage'] = 'Núverandi síða'; $labels['unread'] = 'Ólesið'; $labels['flagged'] = 'Flaggað'; $labels['unanswered'] = 'Ósvarað'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Eytt'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Umhverfa'; $labels['filter'] = 'Sía'; $labels['list'] = 'Listi'; @@ -168,7 +158,6 @@ $labels['listmode'] = 'Listayfirlit'; $labels['folderactions'] = 'Möppuaðgerðir...'; $labels['compact'] = 'Pakka'; $labels['empty'] = 'Tæma'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Gagnamagn'; $labels['unknown'] = 'óþekkt'; $labels['unlimited'] = 'ótakmarkað'; @@ -176,14 +165,9 @@ $labels['quicksearch'] = 'Flýtileit'; $labels['resetsearch'] = 'Tæma leit'; $labels['searchmod'] = 'Leitarskilyrði'; $labels['msgtext'] = 'Allt skeytið'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Opna í nýjum glugga'; $labels['emlsave'] = 'Niðurhlaða (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Breyta sem nýju'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Senda skeytið núna'; $labels['savemessage'] = 'Vista drög'; $labels['addattachment'] = 'Hengja við'; @@ -213,9 +197,6 @@ $labels['nosubject'] = '(án titils)'; $labels['showimages'] = 'Sýna myndir'; $labels['alwaysshow'] = 'Sýna alltaf myndir frá $sender'; $labels['isdraft'] = 'Þetta eru drög að skeyti'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Venjulegur texti'; $labels['savesentmessagein'] = 'Vista send skeyti í'; @@ -290,36 +271,29 @@ $labels['delete'] = 'Eyða'; $labels['rename'] = 'Endurnefna'; $labels['addphoto'] = 'Bæta við'; $labels['replacephoto'] = 'Skipta út'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Búa til nýtt nafnspjald'; $labels['deletecontact'] = 'Eyða völdum tengiliðum'; $labels['composeto'] = 'Skrifa skeyti til'; $labels['contactsfromto'] = 'Netföng $from til $to af $count'; $labels['print'] = 'Prenta'; $labels['export'] = 'Flytja út'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Flytja út nafnspjöld á vCard formi'; $labels['newcontactgroup'] = 'Nýr tengiliðahópur'; $labels['grouprename'] = 'Breyta nafni hóps'; $labels['groupdelete'] = 'Fjarlægja hóp'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Sýna fyrri síðu'; $labels['firstpage'] = 'Sýna fyrstu síðu'; $labels['nextpage'] = 'Sýna næstu síðu'; $labels['lastpage'] = 'Sýna síðustu síðu'; $labels['group'] = 'Hópur'; $labels['groups'] = 'Hópar'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Persónuleg heimilisföng'; $labels['searchsave'] = 'Vista leit'; $labels['searchdelete'] = 'Eyða leit'; $labels['import'] = 'Flytja inn'; $labels['importcontacts'] = 'Flytja inn nafnspjöld'; $labels['importfromfile'] = 'Flytja inn af skrá'; -$labels['importtarget'] = 'Bæta nýjum tengiliðum við:'; $labels['importreplace'] = 'Skipta út allri netfangaskránni'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Búið'; $labels['settingsfor'] = 'Stillingar fyrir'; $labels['about'] = 'Um forritið'; @@ -334,8 +308,6 @@ $labels['edititem'] = 'Breyta'; $labels['preferhtml'] = 'Vil HTML'; $labels['defaultcharset'] = 'Venjulegt stafasett'; $labels['htmlmessage'] = 'HTML skeyti'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Snið dagsetningar'; $labels['timeformat'] = 'Tímasnið'; $labels['prettydate'] = 'Fallegar dagsetningar'; @@ -346,13 +318,9 @@ $labels['timezone'] = 'Tímabelti'; $labels['pagesize'] = 'Línur á síðu'; $labels['signature'] = 'Undirskrift'; $labels['dstactive'] = 'Sumar-/vetratími'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Skrifa HTML-skeyti'; $labels['htmlonreply'] = 'sem svar við HTML-skeytum aðeins'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML-undirskrift'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Sýna forskoðunarglugga'; $labels['skin'] = 'Sniðmát á viðmóti'; $labels['logoutclear'] = 'Tæma rusl við útskráningu'; @@ -370,14 +338,12 @@ $labels['readwhendeleted'] = 'Merkja skeyti sem lesið þegar því er hent'; $labels['flagfordeletion'] = 'Merkja skeyti til eyðingar í stað þess að eyða'; $labels['skipdeleted'] = 'Ekki sýna eydd skeyti'; $labels['deletealways'] = 'Ef ekki er hægt að setja skeytið í ruslafötuna, henda þeim'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Sýna myndir annarsstaðar frá'; $labels['fromknownsenders'] = 'frá þekktum sendendum'; $labels['always'] = 'alltaf'; $labels['showinlineimages'] = 'Sýna viðhangandi myndir fyrir neðan skeytið'; $labels['autosavedraft'] = 'Vista sjálfkrafa sem drög'; $labels['everynminutes'] = '$n mínútu fresti'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'aldrei'; $labels['immediately'] = 'samstundis'; $labels['messagesdisplaying'] = 'Sýni skeyti'; @@ -393,13 +359,11 @@ $labels['checkallfolders'] = 'Athuga ný skeyti í öllum möppum'; $labels['displaynext'] = 'Að eyðingu/færslu lokinni sýna næsta skeyti'; $labels['defaultfont'] = 'Sjálfgefið letur HTML-skeyta'; $labels['mainoptions'] = 'Aðalstillingar'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Hluti'; $labels['maintenance'] = 'Viðhald'; $labels['newmessage'] = 'Nýtt skeyti'; $labels['signatureoptions'] = 'Valkostir undirskriftar'; $labels['whenreplying'] = 'Þegar svarað'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'hefja nýtt skeyti fyrir ofan eldra'; $labels['replybottomposting'] = 'hefja nýtt skeyti undir eldra'; $labels['replyremovesignature'] = 'Þegar svarað fjarlægja upphaflega undirskrift úr skeyti'; @@ -412,7 +376,6 @@ $labels['afternseconds'] = 'eftir $n sekúndur'; $labels['reqmdn'] = 'Biðja ávallt um kvittun'; $labels['reqdsn'] = 'Biðja ávallt um sendingarstöðu'; $labels['replysamefolder'] = 'Setja svarskeyti í möppu sem upphaflegt skeyti er í'; -$labels['defaultabook'] = 'Default address book'; $labels['autocompletesingle'] = 'Sleppa aukanetföngum í sjálfklárun'; $labels['listnamedisplay'] = 'Lista tengiliði sem'; $labels['spellcheckbeforesend'] = 'Athuga stafsetningu áður en skeyti er sent'; @@ -421,11 +384,6 @@ $labels['spellcheckignoresyms'] = 'Hunsa orð með merki'; $labels['spellcheckignorenums'] = 'Hunsa orð með tölum'; $labels['spellcheckignorecaps'] = 'Hunsa orð sem eru í hástöfum'; $labels['addtodict'] = 'Bæta við orðalista'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Mappa'; $labels['folders'] = 'Möppur'; $labels['foldername'] = 'Nafn möppu'; @@ -450,7 +408,6 @@ $labels['sortby'] = 'Raða eftir'; $labels['sortasc'] = 'Raða vaxandi'; $labels['sortdesc'] = 'Raða minnkandi'; $labels['undo'] = 'Taka til baka'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Viðbætur'; $labels['version'] = 'Útgáfa'; $labels['source'] = 'Uppruni'; diff --git a/program/localization/is_IS/messages.inc b/program/localization/is_IS/messages.inc index d6eb1659c..06b707389 100644 --- a/program/localization/is_IS/messages.inc +++ b/program/localization/is_IS/messages.inc @@ -15,160 +15,44 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Innskráning mistókst'; $messages['cookiesdisabled'] = 'Vafrinn þinn vill ekki taka við kökum (cookies)'; $messages['sessionerror'] = 'Innskráningin þín ógild eða útrunnin'; $messages['storageerror'] = 'Tengin við IMAP-miðlara mistókst'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Engin skeyti eru í þessu pósthólfi'; $messages['loggedout'] = 'Þú hefur útskráðst. Bless!'; $messages['mailboxempty'] = 'Pósthólfið er tómt'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Hleð...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Hleð gögn...'; $messages['checkingmail'] = 'Gái að nýjum skeytum...'; -$messages['sendingmessage'] = 'Sending message...'; $messages['messagesent'] = 'Skeyti var sent'; $messages['savingmessage'] = 'Vista skeyti...'; $messages['messagesaved'] = 'Skeytið vistað í Drög'; $messages['successfullysaved'] = 'Vistun heppnaðist!'; $messages['addedsuccessfully'] = 'Netfangi var bætt í netfangaskrá'; $messages['contactexists'] = 'Þetta netfang er þegar skráð í netfangaskrána'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Til verndar hafa allar myndir í þessu skeyti verið blokkaðar.'; $messages['encryptedmessage'] = 'Þetta er dulkóðað skeyti og því miður er ekki hægt að birta það'; $messages['nocontactsfound'] = 'Engin netföng'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Sending misheppnaðist'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Villa kom upp þegar var verið að vista'; $messages['errormoving'] = 'Gat ekki fært skeytið'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Gat ekki eytt skeytinu'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Ertu viss um að þú viljir eyða völdum netföngum?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; -$messages['deletemessagesconfirm'] = 'Do you really want to delete selected message(s)?'; $messages['deletefolderconfirm'] = 'Ertu viss um að vilja eyða þessari möppu?'; -$messages['purgefolderconfirm'] = 'Do you really want to delete all messages in this folder?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Formið var ekki fyllt út að fullu'; $messages['noemailwarning'] = 'Sláðu inn gildt netfang'; $messages['nonamewarning'] = 'Sláðu inn nafn'; $messages['nopagesizewarning'] = 'Sláðu inn síðustærð'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Í það minnsta einn viðtakandi verður að vera'; $messages['nosubjectwarning'] = 'Efnislínan er tóm. Viltu slá eitthvað inn í hana?'; $messages['nobodywarning'] = 'Viltu senda tómt skeyti?'; $messages['notsentwarning'] = 'Skeytið hefur ekki verið send. Viltu henda skeytinu?'; $messages['noldapserver'] = 'Please select an ldap server to search'; $messages['nosearchname'] = 'Sláðu inn nafn eða netfang'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr skeyti fundust'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Leit skilaði engu'; $messages['searching'] = 'Leita...'; $messages['checking'] = 'Gái...'; $messages['nospellerrors'] = 'Engar innsláttarvillur fundust'; $messages['folderdeleted'] = 'Möppu var eytt'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; -$messages['deletedsuccessfully'] = 'Successfully deleted.'; -$messages['converting'] = 'Removing formatting...'; -$messages['messageopenerror'] = 'Could not load message from server.'; -$messages['fileuploaderror'] = 'File upload failed.'; -$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/it_IT/labels.inc b/program/localization/it_IT/labels.inc index 5cd18c2d4..ac8e2a6d4 100644 --- a/program/localization/it_IT/labels.inc +++ b/program/localization/it_IT/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Benvenuto in $product'; $labels['username'] = 'Utente'; $labels['password'] = 'Password'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Bozze'; $labels['sent'] = 'Inviata'; $labels['trash'] = 'Cestino'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Mostra nomi reali per le cartelle speciali'; $labels['subject'] = 'Oggetto'; $labels['from'] = 'Mittente'; $labels['sender'] = 'Mittente'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Modalità di visualizzazione'; $labels['folderactions'] = 'Operazioni cartella'; $labels['compact'] = 'Compatta'; $labels['empty'] = 'Svuota'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Importa messaggi'; $labels['quota'] = 'Spazio utilizzato'; $labels['unknown'] = 'sconosciuto'; $labels['unlimited'] = 'illimitato'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Annulla ricerca'; $labels['searchmod'] = 'Ambito di ricerca'; $labels['msgtext'] = 'Intero messaggio'; $labels['body'] = 'Body'; -$labels['type'] = 'Type'; +$labels['type'] = 'Tipo'; +$labels['namex'] = 'Nome'; $labels['openinextwin'] = 'Apri in una nuova finestra'; $labels['emlsave'] = 'Scarica (.eml)'; $labels['changeformattext'] = 'Visualizza nel formato testo semplice'; @@ -310,15 +309,18 @@ $labels['nextpage'] = 'Pagina successiva'; $labels['lastpage'] = 'Ultima pagina'; $labels['group'] = 'Gruppo'; $labels['groups'] = 'Gruppi'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Elenca membri dei gruppi'; $labels['personaladrbook'] = 'Rubrica Personale'; $labels['searchsave'] = 'Salva ricerca'; $labels['searchdelete'] = 'Elimina ricerca'; $labels['import'] = 'Importa'; $labels['importcontacts'] = 'Importa contatti'; $labels['importfromfile'] = 'Importa da file:'; -$labels['importtarget'] = 'Aggiungi nuovi contattu alla rubrica:'; +$labels['importtarget'] = 'Aggiungi contatti a'; $labels['importreplace'] = 'Sostituisci l\'intera rubrica'; +$labels['importgroups'] = 'Importa le assegnazioni di gruppo'; +$labels['importgroupsall'] = 'Tutti (crea i gruppi se necessario)'; +$labels['importgroupsexisting'] = 'Solo per i gruppi esistenti'; $labels['importdesc'] = 'Puoi caricare i contatti da una rubrica esistente.
Attualmente si possono importare contatti in formato vCard o CSV (comma-separated).'; $labels['done'] = 'Fatto'; $labels['settingsfor'] = 'Impostazioni per'; @@ -369,7 +371,7 @@ $labels['ignore'] = 'ignora'; $labels['readwhendeleted'] = 'Marca il messaggio come letto prima di eliminarlo'; $labels['flagfordeletion'] = 'Marca il messaggio come eliminato invece di eliminarlo'; $labels['skipdeleted'] = 'Non mostrare i messaggi marcati come eliminati'; -$labels['deletealways'] = 'Quando non è possinile spostare i messaggi nel Cestino eliminali'; +$labels['deletealways'] = 'Quando non è possibile spostare i messaggi nel Cestino, eliminali'; $labels['deletejunk'] = 'Elimina direttamente i messaggi in Spam'; $labels['showremoteimages'] = 'Mostra immagini remote contenute nel messaggio'; $labels['fromknownsenders'] = 'da mittenti conosciuti'; diff --git a/program/localization/it_IT/messages.inc b/program/localization/it_IT/messages.inc index f9e85f4bb..c5a81044e 100644 --- a/program/localization/it_IT/messages.inc +++ b/program/localization/it_IT/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Si è verificato un errore!'; $messages['loginfailed'] = 'Impossibile accedere. Utente o password non corretti'; $messages['cookiesdisabled'] = 'Il tuo browser non accetta i cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Il contatto richiesto non è stato trovato'; $messages['contactsearchonly'] = 'Inserisci dei termini per cercare i contatti'; $messages['sendingfailed'] = 'Impossibile inviare il messaggio'; $messages['senttooquickly'] = 'Per favore, attendi $sec secondi prima di inviare questo messaggio'; -$messages['errorsavingsent'] = 'C\'è stato un errore nel salvare il messaggio inviato'; -$messages['errorsaving'] = 'Impossibile salvare'; $messages['errormoving'] = 'Impossibile spostare il messaggio'; $messages['errorcopying'] = 'Impossibile copiare il messaggio'; $messages['errordeleting'] = 'Impossibile eliminare il messaggio'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Errore SMTP: $msg'; $messages['emailformaterror'] = 'Indirizzo e-mail non corretto: $email'; $messages['toomanyrecipients'] = 'Numero eccessivo di destinatari, ridurlo a $max'; $messages['maxgroupmembersreached'] = 'Il numero dei membri del gruppo eccede il massimo di $max'; -$messages['internalerror'] = 'Si è verificato un errore interno. Si prega di riprovare di nuovo.'; $messages['contactdelerror'] = 'Impossibile eliminare il/i contatto/i'; $messages['contactdeleted'] = 'Contatto/i correttamente eliminato/i'; $messages['contactrestoreerror'] = 'Impossibile ripristinare il/i contatto/i cancellato/i'; diff --git a/program/localization/ja_JP/labels.inc b/program/localization/ja_JP/labels.inc index 07bb86fbb..aadc8fce0 100644 --- a/program/localization/ja_JP/labels.inc +++ b/program/localization/ja_JP/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$productにようこそ'; $labels['username'] = 'ユーザー名'; $labels['password'] = 'パスワード'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = '検索を解除'; $labels['searchmod'] = '検索の条件'; $labels['msgtext'] = 'メッセージ全体'; $labels['body'] = '本文'; -$labels['type'] = 'Type'; +$labels['type'] = '種類'; +$labels['namex'] = '名前'; $labels['openinextwin'] = '新しいウィンドウで開く'; $labels['emlsave'] = 'ダウンロード(.eml形式)'; $labels['changeformattext'] = 'テキスト形式で表示'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = '検索情報を削除'; $labels['import'] = 'インポート'; $labels['importcontacts'] = '連絡先をインポート'; $labels['importfromfile'] = 'ファイルからインポート'; -$labels['importtarget'] = 'アドレス帳に新しい連絡先の追加:'; +$labels['importtarget'] = '次に連絡先を追加'; $labels['importreplace'] = 'アドレス帳全体と置き換え'; +$labels['importgroups'] = 'グループの割り当てをインポート'; +$labels['importgroupsall'] = 'すべて (必要ならグループを作成)'; +$labels['importgroupsexisting'] = '存在するグループだけ'; $labels['importdesc'] = '連絡先を既存のアドレス帳からアップロードできます。
現在、vCardまたはCSV(コンマ区切り)のデータ形式からアドレスのインポートをサポートしています。'; $labels['done'] = '完了'; $labels['settingsfor'] = '次の設定:'; diff --git a/program/localization/ja_JP/messages.inc b/program/localization/ja_JP/messages.inc index 19f316835..fb03bc0f8 100644 --- a/program/localization/ja_JP/messages.inc +++ b/program/localization/ja_JP/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'エラーが発生しました!'; $messages['loginfailed'] = 'ログインできませんでした。'; $messages['cookiesdisabled'] = 'ブラウザーがCookieを受け付けません。'; @@ -55,7 +54,7 @@ $messages['contactnotfound'] = '連絡先が見つかりません。'; $messages['contactsearchonly'] = '連絡先を探すための検索語を入力してください'; $messages['sendingfailed'] = 'メッセージを送信できませんでした。'; $messages['senttooquickly'] = 'このメッセージを送信するまで、$sec秒お待ちください。'; -$messages['errorsavingsent'] = '送信メッセージの保存中にエラーが発生しました。'; +$messages['errorsavingsent'] = '送信したメッセージの保存中にエラーが発生しました。'; $messages['errorsaving'] = '保存中にエラーが発生しました。'; $messages['errormoving'] = 'メッセージを移動できません。'; $messages['errorcopying'] = 'メッセージをコピーできません。'; diff --git a/program/localization/ka_GE/labels.inc b/program/localization/ka_GE/labels.inc index fae6f65c8..7a14b6216 100644 --- a/program/localization/ka_GE/labels.inc +++ b/program/localization/ka_GE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'მოგესალმებათ $product'; $labels['username'] = 'მომხმარებელი'; $labels['password'] = 'პაროლი'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'დროებითი'; $labels['sent'] = 'გაგზავნილი'; $labels['trash'] = 'წაშლილი'; $labels['junk'] = 'სპამი'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'სათაური'; $labels['from'] = 'გამგზავნი'; -$labels['sender'] = 'Sender'; $labels['to'] = 'ვის'; $labels['cc'] = 'ასლი'; $labels['bcc'] = 'ფარული'; $labels['replyto'] = 'პასუხი'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'თარიღი'; $labels['size'] = 'ზომა'; $labels['priority'] = 'პრიორიტეტი'; $labels['organization'] = 'ორგანიზაცია'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'საქაღალდეები'; -$labels['messagesfromto'] = 'Messages $from to $to of $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'შეტყობინება $nr დან $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'ასლი'; $labels['move'] = 'გადატანა'; $labels['moveto'] = 'გადატანა...'; $labels['download'] = 'გადმოწერა'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ფაილის სახელი'; $labels['filesize'] = 'ფაილის ზომა'; $labels['addtoaddressbook'] = 'მისამართებში დამატება'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'ოქტომბერი'; $labels['longnov'] = 'ნოემბერი'; $labels['longdec'] = 'დეკემბერი'; $labels['today'] = 'დღეს'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'შემოწმება ახალ შეტყობინებაზე'; $labels['compose'] = 'შეტყობინების დაწერა'; $labels['writenewmessage'] = 'ახალი შეტყობინება'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'პასუხი'; $labels['replytoallmessage'] = 'პასუხი ყველას'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'გადაგზავნა'; $labels['deletemessage'] = 'წაშლა'; $labels['movemessagetotrash'] = 'შეტყობინების წაშლილებში გადატანა'; @@ -122,16 +102,12 @@ $labels['nextmessage'] = 'შემდეგი შეტყობინე $labels['lastmessage'] = 'ბოლო შეტყობინების ნახვა'; $labels['backtolist'] = 'უკან ჩამონათვალში'; $labels['viewsource'] = 'შიგთავსი'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'მონიშნეთ შეტყობინებები'; $labels['markread'] = 'როგორც წაკითხული'; $labels['markunread'] = 'როგორც წაუკითხავი'; $labels['markflagged'] = 'როგორც მონიშნული'; $labels['markunflagged'] = 'როგორც მოუნიშნავი'; $labels['moreactions'] = 'მეტი მოქმედება...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'მონიშვნა'; $labels['all'] = 'ყველა'; $labels['none'] = 'არცერთი'; @@ -139,36 +115,23 @@ $labels['currpage'] = 'მიმდინარე გვერდი'; $labels['unread'] = 'წაუკითხავი'; $labels['flagged'] = 'მონიშნული'; $labels['unanswered'] = 'უპასუხო'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'წაშლილი'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'შებრუნებული'; $labels['filter'] = 'ფილტრი'; $labels['list'] = 'სია'; -$labels['threads'] = 'Threads'; $labels['expand-all'] = 'ყველას გაშლა'; $labels['expand-unread'] = 'წაუკითხავის გაშლა'; $labels['collapse-all'] = 'ყველას დაკეცვა'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; $labels['fromto'] = 'ვისგან/ვის'; $labels['flag'] = 'დროშა'; $labels['attachment'] = 'მიმაგრებული ფაილი'; $labels['nonesort'] = 'არცერთი'; $labels['sentdate'] = 'გაგზავნის თარიღი'; -$labels['arrival'] = 'Arrival date'; $labels['asc'] = 'ზრდადობით'; $labels['desc'] = 'კლებადობით'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'დალაგება'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'შეკუმშვა'; $labels['empty'] = 'გაცარიელება'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'შეზღუდვა'; $labels['unknown'] = 'უცნობი'; $labels['unlimited'] = 'შეუზღუდავი'; @@ -176,34 +139,21 @@ $labels['quicksearch'] = 'სწრაფი ძიება'; $labels['resetsearch'] = 'ძიების გასუფთავება'; $labels['searchmod'] = 'ძებნის ვარიანტები'; $labels['msgtext'] = 'ყველა შეტყობინება'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'გახსნა ახალ ფანჯარაში'; $labels['emlsave'] = 'გადმოწერა (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'რედაქტირება როგორც ახლის'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'შეტყობინების გაგზავნა'; $labels['savemessage'] = 'დროებით შენახვა'; $labels['addattachment'] = 'ფაილის ატვირთვა'; $labels['charset'] = 'კოდირება'; $labels['editortype'] = 'რედაქტორი'; $labels['returnreceipt'] = 'პასუხის მოთხოვნა'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ორთოგრაფიული შემოწმება'; $labels['resumeediting'] = 'რედაქტირების გაგრძელება'; $labels['revertto'] = 'გაუქმება'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'გზავნილები'; $labels['upload'] = 'ატვირთვა'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'დახურვა'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'დაბალი'; $labels['lowest'] = 'უდაბლესი'; $labels['normal'] = 'საშუალო'; @@ -212,10 +162,6 @@ $labels['highest'] = 'უმაღლესი'; $labels['nosubject'] = '(უსათაურო)'; $labels['showimages'] = 'გამოსახულების ჩვენება'; $labels['alwaysshow'] = 'ყოველთვის გამოაჩინე სურათები $sender –გან'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'ტექსტური'; $labels['savesentmessagein'] = 'შეინახე შეტყობინება'; @@ -224,7 +170,6 @@ $labels['maxuploadsize'] = 'მაქსიმალური დაშვებ $labels['addcc'] = 'დაამატე კოპიო'; $labels['addbcc'] = 'დაამატე ფარული კოპიო'; $labels['addreplyto'] = 'დაამატე გამომგზავნი'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'გამომგზავნს სურს შეიტყოს წერილის მიღება. გსურთ შეატყობინოთ გამომგზავნს?'; $labels['receiptread'] = 'გზავნილის დაბრუნება'; $labels['yourmessage'] = 'ეს არის მიღების დასტური თქვენს შეტყობინებაზე'; @@ -232,14 +177,8 @@ $labels['receiptnote'] = 'განმარტება: ეს ნიშნა $labels['name'] = 'სრული სახელი'; $labels['firstname'] = 'სახელი'; $labels['surname'] = 'გვარი'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; $labels['department'] = 'დეპარტამენტი'; $labels['gender'] = 'სქესი'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'ელ–ფოსტა'; $labels['phone'] = 'ტელეფონი'; $labels['address'] = 'მისამართი'; @@ -249,19 +188,13 @@ $labels['zipcode'] = 'ZIP კოდი'; $labels['region'] = 'შტატი/პროვინცია'; $labels['country'] = 'ქვეყანა'; $labels['birthday'] = 'დაბადების დღე'; -$labels['anniversary'] = 'Anniversary'; $labels['website'] = 'ვებგვერდი'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; $labels['male'] = 'მამრობითი'; $labels['female'] = 'მდედრობით'; $labels['manager'] = 'მენეჯერი'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; $labels['allfields'] = 'ყველა ველი'; $labels['search'] = 'ძებნა'; $labels['advsearch'] = 'გაფართოებული ძებნა'; -$labels['advanced'] = 'Advanced'; $labels['other'] = 'სხვა'; $labels['typehome'] = 'სახლი'; $labels['typework'] = 'სამსახური'; @@ -273,15 +206,12 @@ $labels['typeworkfax'] = 'სამსახურის ფაქსი'; $labels['typecar'] = 'მანქანა'; $labels['typepager'] = 'პეიჯერი'; $labels['typevideo'] = 'ვიდეო'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'ბლოგი'; $labels['typeprofile'] = 'პროფილი'; $labels['addfield'] = 'ველის დამატება...'; $labels['addcontact'] = 'კონტაქტებში დამატება'; $labels['editcontact'] = 'კონტაქტის რედაქტირება'; $labels['contacts'] = 'კონტაქტები'; -$labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'პირადი ინფორმაცია'; $labels['edit'] = 'რედაქტირება'; $labels['cancel'] = 'გაუქმება'; @@ -290,39 +220,31 @@ $labels['delete'] = 'წაშლა'; $labels['rename'] = 'გადარქმევა'; $labels['addphoto'] = 'დამატება'; $labels['replacephoto'] = 'გამოცვლა'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'კონტაქტის შექმნა'; $labels['deletecontact'] = 'მონიშნელი კონტაქტის წაშლა'; $labels['composeto'] = 'ფოსტის გაგზავნა შერჩეულ ადრესატებთან'; $labels['contactsfromto'] = 'კონტაქტები $from დან $to ში $count'; $labels['print'] = 'დაბეჭვდა'; $labels['export'] = 'ექსპორტი'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'კონტაქტების ექსპორტი vCard ფორმატში'; $labels['newcontactgroup'] = 'ახალი საკონტაქტო ჯგუფის შექმნა'; $labels['grouprename'] = 'ჯგუფის სახელის შეცვლა'; $labels['groupdelete'] = 'ჯგუფის წაშლა'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'წინას ჩვენება'; $labels['firstpage'] = 'პირველის ჩვენება'; $labels['nextpage'] = 'შემდეგის ჩვენება'; $labels['lastpage'] = 'ბოლოს ჩვენება'; $labels['group'] = 'ჯგუფი'; $labels['groups'] = 'ჯგუფები'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'პერსონალური მისამართები'; $labels['searchsave'] = 'ძებნის შენახვა'; $labels['searchdelete'] = 'ძებნის წაშლა'; $labels['import'] = 'შემოტანა'; $labels['importcontacts'] = 'კონტაქტების შემოტანა'; $labels['importfromfile'] = 'შემოტანა ფაილიდან:'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ჩაანაცვლეთ არსებული მისამართები'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'დასრულებულია'; $labels['settingsfor'] = 'პარამეტრები'; -$labels['about'] = 'About'; $labels['preferences'] = 'პარამეტრები'; $labels['userpreferences'] = 'მომხმარებლის პარამეტრები'; $labels['editpreferences'] = 'მომხმარებლის პარამეტრების რედაქტირება'; @@ -334,8 +256,6 @@ $labels['edititem'] = 'რედაქტირება'; $labels['preferhtml'] = 'როგორც HTML'; $labels['defaultcharset'] = 'ნაგულისხმები სიმბოლოთა ნაკრები'; $labels['htmlmessage'] = 'HTML შეტყობინება'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'თარიღის ფორმატი'; $labels['timeformat'] = 'დროის ფორმატი'; $labels['prettydate'] = 'კარგი თარიღები'; @@ -346,13 +266,8 @@ $labels['timezone'] = 'დროითი ზონა'; $labels['pagesize'] = 'სტრიქონი გვერდზე'; $labels['signature'] = 'ხელმოწერა'; $labels['dstactive'] = 'დროის გადაყვანა'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'შეტყობინების შექმნა HTML –ში'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML ხელმოწერა'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'ჩვენება'; $labels['skin'] = 'ინტერფეისი'; $labels['logoutclear'] = 'წაშლილების გასუფთავება გამოსვლისას'; @@ -363,21 +278,16 @@ $labels['mailboxview'] = 'საფოსტო ყუთის ჩვენე $labels['mdnrequests'] = 'მგზავნელის შეტყობინებები'; $labels['askuser'] = 'ჰკითხე მომხმარებელს'; $labels['autosend'] = 'გაგზავნე ავტომატურად'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'იგნორირება'; $labels['readwhendeleted'] = 'მონიშნე გზავნილი წაკითხულად წაშლის დროს'; $labels['flagfordeletion'] = 'აღნიშნეთ გზავნილები როგორც წასაშლელი წაშლის ნაცვლად'; $labels['skipdeleted'] = 'არ გამოაჩინო წაშლილი გზავნილები'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'გამოაჩინე მოშორებული სურათები'; $labels['fromknownsenders'] = 'ნაცნობი მგზავნელებისგან'; $labels['always'] = 'ყოველთვის'; $labels['showinlineimages'] = 'ატვირთული სურათები გამოაჩინე გზავნილის ქვემოთ'; $labels['autosavedraft'] = 'ავტომატური შენახვა'; $labels['everynminutes'] = 'ყოველ $n წუთში'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'არასდროს'; $labels['immediately'] = 'დაუყონებლივ'; $labels['messagesdisplaying'] = 'გამოაჩინე შეტყობინებები'; @@ -391,15 +301,12 @@ $labels['advancedoptions'] = 'დამატებითი პარამე $labels['focusonnewmessage'] = 'ფოკუსირება ახალ შეტყობინებებზე'; $labels['checkallfolders'] = 'შეამოწმე ყველა საქაღალდე ახალ შეტყობინებაზე'; $labels['displaynext'] = 'შეტყობინების წაშლის ან გადატანის შემდეგ გამოჩნდეს შემდეგი შეტყობინება'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'ძირითადი პარამეტრები'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'განყოფილება'; $labels['maintenance'] = 'მომსახურება'; $labels['newmessage'] = 'ახალი შეტყობინება'; $labels['signatureoptions'] = 'ხელმოწერის ოფციები'; $labels['whenreplying'] = 'პასუხის შემთხვევაში'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'დაიწყოს ახალი შეტყობინება ორიგინალის ზემოთ'; $labels['replybottomposting'] = 'დაიწყოს ახალი შეტყობინება ორიგინალის ქვემოთ'; $labels['replyremovesignature'] = 'წაიშალოს ხელმოწერა პასუხის შემთხვევაში'; @@ -407,25 +314,8 @@ $labels['autoaddsignature'] = 'ავტომატურად დაემა $labels['newmessageonly'] = 'მხოლოდ ახალი შეტყობინება'; $labels['replyandforwardonly'] = 'მხოლოდ გადაგზავნის და პასუხის შემთხვევაში'; $labels['insertsignature'] = 'ხელმოცერის ჩასმა'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; $labels['afternseconds'] = '$n წამის შემდეგ'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; $labels['addtodict'] = 'ლექსიკონში დამატება'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'საქაღალდე'; $labels['folders'] = 'საქაღალდეები'; $labels['foldername'] = 'საქაღალდის დასახელება'; @@ -435,27 +325,15 @@ $labels['create'] = 'შექმნა'; $labels['createfolder'] = 'საქაღალდის შექმნა'; $labels['managefolders'] = 'საქაღალდეების მართვა'; $labels['specialfolders'] = 'სპეციალური საქაღალდე'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; $labels['location'] = 'მდებარეობა'; $labels['info'] = 'ინფორმაცია'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; $labels['foldertype'] = 'დასტის ტიპი'; $labels['personalfolder'] = 'კერძო დასტა'; -$labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'საჯარო დასტა'; $labels['sortby'] = 'დალაგება'; $labels['sortasc'] = 'დალაგება ზრდადობით'; $labels['sortdesc'] = 'დალაგება კლებადობით'; $labels['undo'] = 'დაბრუნება'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'ბტ'; $labels['KB'] = 'კბტ'; $labels['MB'] = 'მბტ'; @@ -464,14 +342,12 @@ $labels['unicode'] = 'უნიკოდი'; $labels['english'] = 'ინსგლისური'; $labels['westerneuropean'] = 'დასავლურევროპული'; $labels['easterneuropean'] = 'აღმოსავლეთევროპული'; -$labels['southeasterneuropean'] = 'South-Eastern European'; $labels['baltic'] = 'ბალტიური'; $labels['cyrillic'] = 'კირილიცა'; $labels['arabic'] = 'არაბული'; $labels['greek'] = 'ბერძნული'; $labels['hebrew'] = 'ებრაული'; $labels['turkish'] = 'თურქული'; -$labels['nordic'] = 'Nordic'; $labels['thai'] = 'ტაი'; $labels['celtic'] = 'კელტური'; $labels['vietnamese'] = 'ვიეტნამური'; diff --git a/program/localization/ka_GE/messages.inc b/program/localization/ka_GE/messages.inc index 9779939c7..2c544e17d 100644 --- a/program/localization/ka_GE/messages.inc +++ b/program/localization/ka_GE/messages.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'შესვლა შეუძლებელია'; $messages['cookiesdisabled'] = 'თქვენი ბროუზერი კუკიებს არ პასუხობს'; $messages['sessionerror'] = 'თქვენი სესია არის მცდარი ან ვადაგასული'; @@ -24,17 +22,11 @@ $messages['storageerror'] = 'IMAP სერვერთან დაკავშ $messages['servererror'] = 'შეცდომა სერვერზე!'; $messages['servererrormsg'] = 'სერვერის შეცდომა: $msg'; $messages['dberror'] = 'მონაცემთა ბაზის შეცდომა!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; $messages['errornoperm'] = 'მოქმედების შესრულება შეუძლებალია. წვდომა აკრძალულია.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'არასწორი მოთხოვნა! მონაცემების შენახვა არ მოხერხდა.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'არ არის ახალი შეტყობინება'; $messages['loggedout'] = 'წარმატებით დაიხურა თქვენი სესია'; $messages['mailboxempty'] = 'საფოსტო ყუთი ცარიელია'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'იტვირთება...'; $messages['uploading'] = 'ფაილი იტვირთება...'; $messages['uploadingmany'] = 'ფაილების ატვირთვა...'; @@ -47,31 +39,22 @@ $messages['messagesaved'] = 'შეტყობინების დროე $messages['successfullysaved'] = 'წარმატებით შეინახა'; $messages['addedsuccessfully'] = 'კონტაქტი წარმატებით დაემატა მისამართებში'; $messages['contactexists'] = 'კონტაქტი ამ მისამართზე უკვე არსებობს'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'უსაფრთხოების მიზნით სურათების ჩვენება შეზღუდულია'; $messages['encryptedmessage'] = 'შეტყობინება დაშიფრულია და სამწუხაროდ ჩვენება შეუძლებელია'; $messages['nocontactsfound'] = 'კონტაქტი ვერ მოიძებნა'; $messages['contactnotfound'] = 'მოთხოვნილი კონტაქტი ვერ მოიძებნა'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'შეტყობინება ვერ გაიგზავნა'; $messages['senttooquickly'] = 'გთხოვთ მოიცადოთ $sec წამი. სანამ იგზავნება შეტყობინება'; -$messages['errorsavingsent'] = 'შეცდომა სანამ ინახება გაგზავნილი შეტყობინება'; -$messages['errorsaving'] = 'შენახვის დროს მოხდა შეცდომა'; $messages['errormoving'] = 'შეტყობინების გადატანა შეუძლებელია'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'შეტყობინების წაშლა შეუძლებელია'; $messages['errormarking'] = 'შეტყობინების მონიშვნა შეუძლებელია'; $messages['deletecontactconfirm'] = 'ნამდვილად გსურთ მონიშნული კონტაქტების წაშლა?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'ნამდვილად გსურთ მონიშნული შეტყობინებების წაშლა?'; $messages['deletefolderconfirm'] = 'ნამდვილად გსურთ ამ საქაღალდის წაშლა?'; $messages['purgefolderconfirm'] = 'ნამდვილად გსურთ ყველა შეტყობინების წაშლა აღნიშნულ საქაღალდეში?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; $messages['groupdeleting'] = 'ჯგუფის წაშლა...'; $messages['folderdeleting'] = 'საქაღალდის წაშლა...'; $messages['foldermoving'] = 'საქაღალდის გადატანა...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'ყველა ველი არ არის შევსებული'; $messages['noemailwarning'] = 'მიუთითეთ სწორი ელ–ფოსტის მისამართი'; $messages['nonamewarning'] = 'მიუთითეთ სახელი'; @@ -91,45 +74,22 @@ $messages['searching'] = 'ძიება...'; $messages['checking'] = 'შემოწმება...'; $messages['nospellerrors'] = 'ორთოგრაფიული შეცდომა არ არის'; $messages['folderdeleted'] = 'საქაღალდე წარმატებით წაიშალა'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'წარმატებით წაიშალა'; $messages['converting'] = 'შეტყობინების ფორმატირების გაუქმება...'; $messages['messageopenerror'] = 'შეტყობინება ვერ ჩაიტვირთა სერვერიდან'; $messages['fileuploaderror'] = 'ფაილი ვერ აიტვირთა'; $messages['filesizeerror'] = 'ატვირთული ფაილის ზომა მეტია დასაშვებ ფაილის მაქსიმალურ ზომაზე ($size)'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'აღნიშნული მისამართის მხოლოდ წაკითხვაა შესაძლებელი'; $messages['errorsavingcontact'] = 'საკონტაქტო მისამართის შენახვა შეუძლებელია'; $messages['movingmessage'] = 'შეტყობინების გადატანა...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'წარმატებით გაიგზავნა'; $messages['errorsendingreceipt'] = 'არ გაიგზავნა'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'წაშლა შეუძლებელია, ის თქვენთვის ერთადერთია'; $messages['forbiddencharacter'] = 'საქაღალდის სახელი შეიცავს აკრძალულ სიმბოლოებს'; $messages['selectimportfile'] = 'გთხოვთ მონიშნოთ ფაილი ასატვირთად'; $messages['addresswriterror'] = 'მონიშნულ მისამართებში ჩაწერა შეუძლებელია'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'გთხოვთ მოიცადოთ, მიმდინარეობს შემოტანა'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'წარმატებით დასრულდა $inserted კონტაქტების შემოტანა, $skipped არსებულის გამოტოვება:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'ოპერაცია შეზღუდულია'; $messages['nofromaddress'] = 'ელ–ფოსტის მისამართი გამოტოვებულია'; $messages['editorwarning'] = 'რედაქტორის გადართვა ტექსტურ რეჟიმში გამოიწვევს არსებული ტექსტის ფორმატის დაკარგვას. გსურთ გაგრძელება?'; @@ -141,34 +101,16 @@ $messages['smtptoerror'] = 'SMTP Error ($code): ვერ დაემატა $messages['smtprecipientserror'] = 'SMTP Error: მიმღებთა ჩამონათვალის დამუშავება ვერ მოხერხდა'; $messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'ელ-ფოსტის მისამართი არასწორია $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; $messages['contactdeleted'] = 'კონტაქტ(ებ)ი წარმატებით წაიშალა.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; $messages['contactrestored'] = 'კონრაქტ(ებ)ი წარმატებით აღდგა,'; $messages['groupdeleted'] = 'ჯგუფი წარმატებით წაიშალა.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; $messages['groupcreated'] = 'ჯგუფი წარმატებით შეიქმნა.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; $messages['messagedeleted'] = 'შეტყობინებები წარმატებით წაიშალა.'; $messages['messagemoved'] = 'შეტყობინებები გადატანილია წარმატებით.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; $messages['messagemarked'] = 'შეტყობინებები წარმატებით მოინიშნა.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; $messages['namecannotbeempty'] = 'სახელი არ შეიძლება იყოს ცარიელი.'; $messages['nametoolong'] = 'სახელი ძალიან მოკლეა.'; $messages['folderupdated'] = 'დასტა წარმატებით განახლდა.'; $messages['foldercreated'] = 'დასტა წარმატებით შეიქმნა.'; $messages['invalidimageformat'] = 'გამოსახულების ფორმატი არასწორია.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/km_KH/labels.inc b/program/localization/km_KH/labels.inc index 4c83ab8e7..9a2799922 100644 --- a/program/localization/km_KH/labels.inc +++ b/program/localization/km_KH/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product សូមស្វាគមន៍'; $labels['username'] = 'ឈ្មោះអ្នកប្រើ'; $labels['password'] = 'ពាក្យសំងាត់'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'សំបុត្រពង្រៀង'; $labels['sent'] = 'សំបុត្រដែលបានបញ្ជូន'; $labels['trash'] = 'ធុងសំរាម'; $labels['junk'] = 'សំបុត្រមិនល្អ'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'ចំណងជើង'; $labels['from'] = 'អ្នកផ្ញើ'; -$labels['sender'] = 'Sender'; $labels['to'] = 'អ្នកទទួល'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; @@ -45,19 +41,14 @@ $labels['size'] = 'ទំហំ'; $labels['priority'] = 'អទិភាព'; $labels['organization'] = 'អង្គភាព'; $labels['readstatus'] = 'ស្ថានភាពនៃការអាន'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'ថតទាំងអស់'; $labels['messagesfromto'] = 'សំបុត្រពី $from ទៅដល់ $toក្នុងចំណោម $count សំបុត្រ'; $labels['threadsfromto'] = 'បន្តុំសំបុត្រពី $from ទៅដល់ $toក្នុងចំណោម $count សំបុត្រ'; $labels['messagenrof'] = 'សំបុត្រ $nr នៃ $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'ចំលង'; $labels['move'] = 'ផ្ទេរ'; $labels['moveto'] = 'ផ្ទេរទៅ'; $labels['download'] = 'ទាញយក'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ឈ្មោះឯកសារ'; $labels['filesize'] = 'ទំហំឯកសារ'; $labels['addtoaddressbook'] = 'រក្សាទុកក្នុងសៀវភៅអាសយដ្ឋាន'; @@ -100,18 +91,13 @@ $labels['longoct'] = 'តុលា'; $labels['longnov'] = 'វិច្ឆិកា'; $labels['longdec'] = 'ធ្នូ'; $labels['today'] = 'ថ្ងៃនេះ'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'ពិនិត្យសំបុត្រថ្មី'; $labels['compose'] = 'សរសេរសំបុត្រថ្មី'; $labels['writenewmessage'] = 'សរសេរសំបុត្រថ្មី'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'ឆ្លើយតបទៅអ្នកផ្ញើ'; $labels['replytoallmessage'] = 'ឆ្លើយតបទៅ អ្នកទទួលទាំងអស់និង ក្រុម ឬ អ្នកផ្ញើ'; $labels['replyall'] = 'ឆ្លើយតបទៅទាំងអស់គ្នា'; $labels['replylist'] = 'ឆ្លើយតបទៅក្រុម'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'ផ្ញើសំបុត្របន្តរ'; $labels['deletemessage'] = 'លុបសំបុត្រចោល'; $labels['movemessagetotrash'] = 'ផ្ទេរសំបុត្រទៅក្នុងធុងសំរាម'; @@ -122,16 +108,11 @@ $labels['nextmessage'] = 'បង្ហាញសំបុត្របន្ $labels['lastmessage'] = 'បង្ហាញសំបុត្រចុងក្រោយ'; $labels['backtolist'] = 'ត្រលប់ទៅកាន់ក្រុមសំបុត្រ'; $labels['viewsource'] = 'បង្ហាញ Source របស់សំបុត្រ'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'កំណត់សំគាល់សំបុត្រ'; $labels['markread'] = 'កំណត់ថាបានអានរួច'; $labels['markunread'] = 'កំណត់ថាមិនទាន់បានអាន'; $labels['markflagged'] = 'កំណត់សំគាល់ដោយផ្កាយ'; $labels['markunflagged'] = 'លុបកំណត់សំគាល់ដោយផ្កាយ'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'ជ្រើសរើស'; $labels['all'] = 'ទាំងអស់'; $labels['none'] = 'មិនតំរៀប'; @@ -139,9 +120,7 @@ $labels['currpage'] = 'ទំព័រនេះ'; $labels['unread'] = 'មិនទាន់អាន'; $labels['flagged'] = 'មានកំណត់សំគាល់ដោយផ្កាយ'; $labels['unanswered'] = 'មិនទាន់ឆ្លើយតប'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'បានលុបរួច'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'បញ្ច្រស់'; $labels['filter'] = 'លក្ខខ័ណ្ឌ'; $labels['list'] = 'តារាង'; @@ -168,7 +147,6 @@ $labels['listmode'] = 'បង្ហាញជាតារាង'; $labels['folderactions'] = 'មុខងារថត'; $labels['compact'] = 'បង្រួម'; $labels['empty'] = 'ទទេរ'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'ទំហំសំបុត្រទាំងអស់ដែលមាន'; $labels['unknown'] = 'មិនស្គាល់'; $labels['unlimited'] = 'គ្មានកំនត់'; @@ -176,14 +154,9 @@ $labels['quicksearch'] = 'ស្វែងរក'; $labels['resetsearch'] = 'កំណត់លក្ខខ័ណ្ឌស្វែងរកជាថ្មី'; $labels['searchmod'] = 'កែសំរួលលក្ខខ័ណ្ឌស្វែងរក'; $labels['msgtext'] = 'សំបុត្រទាំងមូល'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'បើកក្នុងវីនដូវថ្មី'; $labels['emlsave'] = 'រក្សាទុកទិន្នន័យជាឯកសារប្រភេទ(.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'កែហើយរក្សាទុកដូចជាសំបុត្រថ្មី'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'ផ្ញើសំបុត្រនេះ'; $labels['savemessage'] = 'រក្សាទុកសំបុត្រពង្រៀង'; $labels['addattachment'] = 'ឯកសារភ្ជាប់'; @@ -191,17 +164,12 @@ $labels['charset'] = 'ប្រភេទអក្សរ'; $labels['editortype'] = 'ប្រភេទ Editor'; $labels['returnreceipt'] = 'អត្ថបទបញ្ជាក់ពីការត្រឡប់'; $labels['dsn'] = 'ប្រាប់អំពីស្ថានភាពផ្ញើ'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; $labels['editidents'] = 'ផ្លាស់ប្តូរអត្តសញ្ញាណ'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ពិនិត្យអក្ខរាវិរុទ្ធ'; $labels['resumeediting'] = 'បន្តរការកែតំរូវ'; $labels['revertto'] = 'ត្រលប់ទៅ'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'ឯកសារភ្ជាប់'; $labels['upload'] = 'ភ្ជាប់ឯកសារ'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'បិទ'; $labels['messageoptions'] = 'កំណត់ជំរើសរបស់សំបុត្រ'; $labels['low'] = 'ទាប'; @@ -212,10 +180,6 @@ $labels['highest'] = 'ខ្ពស់បំផុត'; $labels['nosubject'] = '(គ្មានចំណងជើង)'; $labels['showimages'] = 'បង្ហាញរូបភាព'; $labels['alwaysshow'] = 'បង្ហាញជានិច្ចរាល់រូបភាពបញ្ជូនពី$sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'អត្ថបទ HTML'; $labels['plaintoggle'] = 'អត្ថបទធម្មតា'; $labels['savesentmessagein'] = 'រក្សាសំបុត្រដែលបានផ្ញើក្នុង'; @@ -225,10 +189,8 @@ $labels['addcc'] = 'បន្ថែម Cc'; $labels['addbcc'] = 'បន្ថែម Bcc'; $labels['addreplyto'] = 'បន្ថែម Reply-To'; $labels['addfollowupto'] = 'បន្ថែម Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; $labels['receiptread'] = 'អត្ថបទផ្ញើត្រលប់ (បានអាន)'; $labels['yourmessage'] = 'នេះគឺជាអត្ថបទផ្ញើត្រលប់សំរាប់សំបុត្ររបស់លោកអ្នក។'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'ឈ្មោះសំរាប់បង្ហាញ'; $labels['firstname'] = 'នាមត្រកូល'; $labels['surname'] = 'នាមខ្លួន'; @@ -258,10 +220,6 @@ $labels['female'] = 'ស្រី'; $labels['manager'] = 'នាយក'; $labels['assistant'] = 'ជំនួយការ'; $labels['spouse'] = 'គ្រួសារ'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; $labels['other'] = 'ផ្សេងពីនេះ'; $labels['typehome'] = 'គេហដ្ឋាន'; $labels['typework'] = 'កន្លែងធ្វើការ'; @@ -274,9 +232,6 @@ $labels['typecar'] = 'រថយន្ត'; $labels['typepager'] = 'ឧបករណ៍ផ្តល់សារ'; $labels['typevideo'] = 'វីដេអូរ'; $labels['typeassistant'] = 'ជំនួយការ'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; $labels['addfield'] = 'បន្ថែម'; $labels['addcontact'] = 'បន្ថែមអាសយដ្ឋានទាក់ទង'; $labels['editcontact'] = 'កែប្រែអាសយដ្ឋានទាក់ទង'; @@ -290,39 +245,27 @@ $labels['delete'] = 'លុបចោល'; $labels['rename'] = 'ប្តូរឈ្មោះ'; $labels['addphoto'] = 'បន្ថែមរូបថត'; $labels['replacephoto'] = 'លុបរូបថត'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'បង្កើតអាសយដ្ឋានទាក់ទងថ្មី'; $labels['deletecontact'] = 'លុបអាសយដ្ឋានទាក់ទងដែលបានជ្រើសរើស'; $labels['composeto'] = 'ផ្ញើសំបុត្រទៅ'; $labels['contactsfromto'] = 'អាសយដ្ឋានទាក់ទង $from ដល់ $to នៃ$count'; $labels['print'] = 'បោះពុម្ភ'; $labels['export'] = 'ទាញនិងរក្សាទុក'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'ទាញនិងរក្សាទុកអាសយដ្ឋានជាប្រភេទvCard'; $labels['newcontactgroup'] = 'បង្កើតក្រុមអាសយដ្ឋានថ្មី'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'ទំព័រមុន'; $labels['firstpage'] = 'ទំព័រដំបូង'; $labels['nextpage'] = 'ទំព័របន្ទាប់'; $labels['lastpage'] = 'ទំព័រចុងក្រោយ'; $labels['group'] = 'ក្រុម'; $labels['groups'] = 'ក្រុម'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'អាសយដ្ឋានផ្ទាល់ខ្លួន'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'បញ្ចូល'; $labels['importcontacts'] = 'បញ្ចូលអាសយដ្ឋាន'; $labels['importfromfile'] = 'បញ្ចូលពី ឯកសារ'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ផ្លាស់ប្តូរអាសយដ្ឋានទាំងអស់'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'ចប់រួចរាល់'; $labels['settingsfor'] = 'កំណត់សំរាប់'; -$labels['about'] = 'About'; $labels['preferences'] = 'កំណត់តាមការចូលចិត្ត'; $labels['userpreferences'] = 'កំណត់តាមការចូលចិត្តរបស់អ្នកប្រើ'; $labels['editpreferences'] = 'ផ្លាស់ប្តូរការចូលចិត្តរបស់អ្នកប្រើ'; @@ -334,10 +277,6 @@ $labels['edititem'] = 'កែប្រែវត្ថុ'; $labels['preferhtml'] = 'បង្ហាញជា HTML'; $labels['defaultcharset'] = 'លេខកូតអក្សរមានស្រាប់'; $labels['htmlmessage'] = 'សំបុត្រប្រភេទ HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'កាលបរិច្ឆេតងាយស្រួលមើល'; $labels['setdefault'] = 'កំណត់ទុក'; $labels['autodetect'] = 'ស្វ័យប្រវត្តិ'; @@ -346,13 +285,9 @@ $labels['timezone'] = 'ម៉ោង'; $labels['pagesize'] = 'ចំនួនសំបុត្រក្នុងមួយទំព័រ'; $labels['signature'] = 'ហត្ថលេខា'; $labels['dstactive'] = 'ម៉ោងវស្សានរដូវ'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'សរសេរសំបុត្រតាមបែប HTML'; $labels['htmlonreply'] = 'ឆ្លើយតបសំបុត្រតាមបែប HTML'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'ហត្ថលេខាតាមបែប HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'បង្ហាញប្រអប់សំរាប់មើលសំបុត្រ'; $labels['skin'] = 'ការរចនាទំព័រ'; $labels['logoutclear'] = 'សំអាតធុងសំរាមពេលពិនិត្យចេញ'; @@ -370,14 +305,12 @@ $labels['readwhendeleted'] = 'កំណត់សំបុត្រថាបា $labels['flagfordeletion'] = 'កំណត់សញ្ញាផ្កាយអោយសំបុត្រថាបានលុបដោយមិនចាំបាច់លុបជាក់ស្តែង'; $labels['skipdeleted'] = 'មិនបង្ហាញសំបុត្រដែលបានលុប'; $labels['deletealways'] = 'លុបសំបុត្រចោលប្រសិនជាមិនអាចផ្ទេសំបុត្រនោះទៅធុងសំរាមបាន'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'បង្ហាញរូបភាពដែលគេផ្ញើមក'; $labels['fromknownsenders'] = 'ពីអ្នកផ្ញើដែលស្គាល់'; $labels['always'] = 'គ្រប់ពេល'; $labels['showinlineimages'] = 'បង្ហាញរូបភាពនៅក្រោមអត្ថបទសំបុត្រ'; $labels['autosavedraft'] = 'រក្សាទុកសំបុត្រពង្រៀងដោយស្វ័យប្រវត្តិ'; $labels['everynminutes'] = 'រៀងរាល់ $n នាទី'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'មិនដែល'; $labels['immediately'] = 'ភ្លាមៗ'; $labels['messagesdisplaying'] = 'កំពុងបង្ហាញសំបុត្រ'; @@ -391,15 +324,12 @@ $labels['advancedoptions'] = 'ការកំណត់ពឹស្តារ'; $labels['focusonnewmessage'] = 'ផ្តោតលើវីនដូវដែលកំពុងសរសេរសំបុត្រថ្មី'; $labels['checkallfolders'] = 'ពិនិត្យសំបុត្រថ្មីនៅគ្រប់ថតទាំងអស់'; $labels['displaynext'] = 'បន្ទាប់ពីសំបុត្រត្រូវបានលុប​ឬផ្ទេរបង្ហាញសំបុត្របន្ទាប់'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'ជំរើសដែលជាគោល'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'ផ្នែក'; $labels['maintenance'] = 'ការថែរក្សា'; $labels['newmessage'] = 'សំបុត្រថ្មី'; $labels['signatureoptions'] = 'កំណត់ហត្ថលេខា'; $labels['whenreplying'] = 'នៅពេលកំពុងឆ្លើយតប'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'ចាប់ផ្តើម​សរសេរ​ពី​លើ​សំបុត្រ​ដើម'; $labels['replybottomposting'] = 'ចាប់ផ្តើមសរសេរពីក្រោមសំបុត្រដើម'; $labels['replyremovesignature'] = 'នៅ​ពេល​ឆ្លើយ​តប​លុប​ហត្ថលេខា​ចេញ​ពីសំបុត្រ'; @@ -412,20 +342,6 @@ $labels['afternseconds'] = 'ក្រោយពី $n វិនាទី'; $labels['reqmdn'] = 'ក្រោយពី $n វិនាទី'; $labels['reqdsn'] = 'ក្រោយពី $n វិនាទី'; $labels['replysamefolder'] = 'ក្រោយពី $n វិនាទី'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'ថត'; $labels['folders'] = 'ថតទាំងអស់'; $labels['foldername'] = 'ឈ្មោះថត'; @@ -442,20 +358,9 @@ $labels['location'] = 'ទីកន្លែង'; $labels['info'] = 'ព័ត៌មាន'; $labels['getfoldersize'] = 'ទំហំថត'; $labels['changesubscription'] = 'ផ្លាស់ប្តូរការជាវ'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'តំរៀបតាម'; $labels['sortasc'] = 'តំរៀបតាមលំដាប់ចុះ'; $labels['sortdesc'] = 'តំរៀបតាមលំដាប់ឡើង'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; diff --git a/program/localization/km_KH/messages.inc b/program/localization/km_KH/messages.inc index d1db6cc7e..a2c4bab20 100644 --- a/program/localization/km_KH/messages.inc +++ b/program/localization/km_KH/messages.inc @@ -15,29 +15,20 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ការពិនិត្យចូលមិនបានសំរេចព្រោះមានបញ្ហាកើតឡើង'; $messages['cookiesdisabled'] = 'កម្មវិធីមើលគេហទំព័រនេះមិនទទួលយកCookies'; $messages['sessionerror'] = 'Session មិនត្រឹមត្រូវ ឬហួសកំណត់'; $messages['storageerror'] = 'មិនអាចភ្ជាប់ទៅកាន់ម៉ាស៊ីនIMAP'; $messages['servererror'] = 'មានបញ្ហានៅម៉ាស៊ីនមេ'; $messages['servererrormsg'] = 'បញ្ហា: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'មិនអាចប្រតិបត្តិបានពីព្រោះថតនេះត្រូវបានគេកំណត់សំរាប់តែមើល'; $messages['errornoperm'] = 'មិនអាចប្រតិបត្តិបានពីព្រោះមិនមានសិទ្ទគ្រប់គ្រាន់'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'មិនអាចរក្សាទុកទិន្នន័យបានពីព្រោះមានបញ្ហានៅពេលបញ្ជូនទិន្នន័យ'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'ពុំមានសំបុត្រក្នុងប្រអប់សំបុត្រនេះទេ'; $messages['loggedout'] = 'អ្នកបានពិនិត្យចេញដោយជោគជ័យ។'; $messages['mailboxempty'] = 'ប្រអប់សំបុត្រទទេ'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'កំពុងដំណើរការ...'; $messages['uploading'] = 'កំពុងបញ្ជូនឯកសារ...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'កំពុងបើកឯកសារ...'; $messages['checkingmail'] = 'កំពុងស្វែងរកមើលសំបុត្រថ្មី៝...'; $messages['sendingmessage'] = 'កំពុងផ្ញើសំបុត្រ...'; @@ -47,27 +38,20 @@ $messages['messagesaved'] = 'សំបុត្រត្រូវបានរក $messages['successfullysaved'] = 'រក្សាទុកដោយជោគជ័យ'; $messages['addedsuccessfully'] = 'អាសយដ្ឋានត្រូវបានរក្សាទុកដោយជោគជ័យ'; $messages['contactexists'] = 'ព័ត៌មានទាក់ទងដែលមានអ៊ីមែលនេះមានក្នុងសៀវភៅអាសយដ្ឋានរួចហើយ'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'រូបភាពដែលមានក្នុងសំបុត្រនេះត្រូវបានបិទដើម្បីរក្សាសុវត្ថភាព'; $messages['encryptedmessage'] = 'លោកអ្នកមិនអាចមើលសំបុត្រនេះបានទេពីព្រោះសំបុត្រនេះជាសំបុត្រសំងាត់'; $messages['nocontactsfound'] = 'ពុំមានអាសយដ្ឋានទាក់ទងទេ'; $messages['contactnotfound'] = 'អាសយដ្ឋានទាក់ទងដែលលោកអ្នកចង់រកពុំមានឡើយ'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'មិនអាចផ្ញើសំបុត្របាន'; $messages['senttooquickly'] = 'សូមរងចាំ $sec វិនាទីមុននឹងផ្ញើសំបុត្រនេះ'; -$messages['errorsavingsent'] = 'មានបញ្ហាកើតឡើងនៅពេលកំពុងរក្សាទុកសំបុត្រដែលបានផ្ញើរួច'; -$messages['errorsaving'] = 'មានបញ្ហាកើតឡើងនៅពេលកំពុងរក្សាសំបុត្រទុក'; $messages['errormoving'] = 'មិនអាចផ្ទេរសំបុត្របាន'; $messages['errorcopying'] = 'មិនអាចចំលងសំបុត្របាន'; $messages['errordeleting'] = 'មិនអាចលុបសំបុត្រចោលបាន'; $messages['errormarking'] = 'មិនអាចកំណត់ចំណាំលើសំបុត្របាន'; $messages['deletecontactconfirm'] = 'តើលោកអ្នកពិតជាចង់លុបព័ត៌មានទំនាក់ទំនងនេះមែនទេ?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'តើលោកអ្នកពិតជាចង់លុបសំបុត្រនេះមែនទេ?'; $messages['deletefolderconfirm'] = 'តើលោកអ្នកពិតជាចង់លុបថតនេះមែនទេ?'; $messages['purgefolderconfirm'] = 'តើលោកអ្នកពិតជាចង់លុបសំបុត្រទាំងអស់នៅក្នុងថតនេះមែនទេ?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'កំពុងលុបថតសំរាប់ទុកឯកសារ...'; $messages['foldermoving'] = 'កំពុងផ្ទេរថតសំរាប់ទុកឯកសារ...'; $messages['foldersubscribing'] = 'កំពុងកំណត់ប្រើថតសំរាប់ទុកឯកសារ...'; @@ -83,9 +67,7 @@ $messages['nobodywarning'] = 'តើលោកអ្នកចង់ផ្ញើ $messages['notsentwarning'] = 'សំបុត្រនេះមិនទាន់បានផ្ញើទេ។ តើលោកអ្នកចង់លុបចោលទេ?'; $messages['noldapserver'] = 'សូមកំណត់ម៉ាស៊ីន LDAPដើម្បីស្វែងរក'; $messages['nosearchname'] = 'សូមបំពេញឈ្មោះទំនាក់ទំនង ឬអាសយដ្ឋានអ៊ីមែល'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'រកឃើញសំបុត្រចំនួន $nr'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'រកមិនឃើញអ្វីទាំងអស់'; $messages['searching'] = 'កំពុងស្វែងរក...'; $messages['checking'] = 'កំពុងពិនិត្យរក...'; @@ -100,40 +82,24 @@ $messages['converting'] = 'កំពុងលុបការរចនាចោ $messages['messageopenerror'] = 'មិនអាចទាញយកសំបុត្រពីម៉ាស៊ីនមេបានទេ'; $messages['fileuploaderror'] = 'មិនអាចបញ្ជូលភ្ជាប់ឯកសារ'; $messages['filesizeerror'] = 'ទំហំឯកសារត្រូវបញ្ជូនលើសចំណុះទំហំធំបំផុតគឺ $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'លោកអ្នកមានសិទ្ធត្រឹមតែមើលប្រភពនៃអាសយដ្ឋាននេះ'; $messages['errorsavingcontact'] = 'មិនអាចរក្សាអាសយដ្ឋានបានទេ'; $messages['movingmessage'] = 'កំពុកផ្តេរសំបុត្រ...'; $messages['copyingmessage'] = 'កំពុងចំលងសំបុត្រ...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'កំពុងលុបសំបុត្រ...'; $messages['markingmessage'] = 'កំពុងកំណត់សំគាល់សំបុត្រ...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'បានបញ្ជូនអត្ថបទបញ្ជាក់ថាបានអានបានសំរេច'; $messages['errorsendingreceipt'] = 'មិនអាចបញ្ជូនអត្ថបទបញ្ជាក់ថាបានអាន ទេ'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'លោកអ្នកមិនអាចលុបអត្តសញ្ញាណនេះទេព្រោះវានៅសល់ចុងក្រោយគេ'; $messages['forbiddencharacter'] = 'ឈ្មោះថតនេះមានអក្សរដែលត្រូវហាមឃាត់'; $messages['selectimportfile'] = 'សូមជ្រើសរើសឯកសារដើម្បីបញ្ជូនភ្ជាប់'; $messages['addresswriterror'] = 'សៀវភៅអាសយដ្ឋាននោះមិនអាចសរសេរចូលបានទេ'; $messages['contactaddedtogroup'] = 'បានដាក់ពត៌មានទំនាក់ទំនងចូលក្នុងក្រុមនេះដោយជោគជ័យ'; $messages['contactremovedfromgroup'] = 'បានលុបពត៌មានទំនាក់ទំនងចេញពីក្រុមនេះដោយជោគជ័យ'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'សូមមេត្តារង់ចាំកំពុងទាញទិន្នន័យចូល ...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'ព័ត៌មានទំនាក់ទំនង $insertedបានបញ្ចូលដោយជោគជ័យ,ហើយបានរំលងចោលពត៌មានដែលមានស្រាប់$skipped :

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'ប្រតិ្តបត្តិការត្រូវបានគេហាមឃាត់!'; $messages['nofromaddress'] = 'ខ្វះអាសយដ្ឋានអ៊ីមែលក្នុងអត្តសញ្ណាណមួយនេះ'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; $messages['smtpconnerror'] = 'SMTP Error ($code):មិនអាចភ្ជាប់ទៅម៉ាស៊ីនមេ'; $messages['smtpautherror'] = 'SMTP Error ($code):ព័ត៌មានគនីយមិនត្រឹមត្រូវ'; $messages['smtpfromerror'] = 'SMTP Error ($code):មិនអាចកំនត់អ្នកផ្ញើ "$from" ($msg)'; @@ -143,32 +109,19 @@ $messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'អាសយដ្ឋានអ៊ីមែលមិនត្រឹមត្រូវទេ:$email'; $messages['toomanyrecipients'] = 'ចំនួនអ្នកទទួលច្រើនលើសកំនត់!សូមមេត្តាលុបចោលរហូតដល់ $max។'; $messages['maxgroupmembersreached'] = 'ចំនួនក្រុមលើសកំនត់ហើយចំនួនច្រើនបំផុតគឺ $max'; -$messages['internalerror'] = 'មានបញ្ហាខាងម៉ាស៊ីនមេ ។សូមព្យាយាមម្តងទៀត!'; $messages['contactdelerror'] = 'មិនអាចលុបអាសយដ្ឋានទំនាក់ទំនង'; $messages['contactdeleted'] = 'អាសយដ្ឋានទំនាក់ទំនងត្រូវបានលុបដោយជោគជ័យ'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; $messages['groupdeleted'] = 'លុបក្រុមបានដោយជោគជ័យ'; $messages['grouprenamed'] = 'ប្តូរឈ្មោះក្រុមបានដោយជោគជ័យ'; $messages['groupcreated'] = 'បង្កើតក្រុមបានដោយជោគជ័យ'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; $messages['messagedeleted'] = 'លុបសំបុត្របានដោយជោគជ័យ'; $messages['messagemoved'] = 'ផ្ទេរសំបុត្របានដោយជោគជ័យ'; $messages['messagecopied'] = 'ចំលងសំបុត្របានដោយជោគជ័យ'; $messages['messagemarked'] = 'កំណត់សំគាល់សំបុត្របានដោយជោគជ័យ'; $messages['autocompletechars'] = 'សូមសរសេរអក្សរយ៉ាងតិច $minដើម្បីបង្ហាយដោយស្វ័យប្រវត្តិ'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; $messages['namecannotbeempty'] = 'សូមសរសេរឈ្មោះ'; $messages['nametoolong'] = 'ឈ្មោះវែងពេក'; $messages['folderupdated'] = 'ផ្លាស់ប្តូរថតបានដោយជោគជ័យ'; $messages['foldercreated'] = 'បង្កើតថតបានដោយជោគជ័យ'; $messages['invalidimageformat'] = 'ប្រភេទរូបភាពមិនត្រឹមត្រូវ'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ko_KR/labels.inc b/program/localization/ko_KR/labels.inc index f4c18152c..bccd42163 100644 --- a/program/localization/ko_KR/labels.inc +++ b/program/localization/ko_KR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product에 오신 것을 환영합니다'; $labels['username'] = '사용자명'; $labels['password'] = '암호'; @@ -31,7 +29,7 @@ $labels['drafts'] = '임시 보관함'; $labels['sent'] = '보낸 편지함'; $labels['trash'] = '휴지통'; $labels['junk'] = '스팸 편지함'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = '특별 폴더에서 실제 이름 보이기'; $labels['subject'] = '제목'; $labels['from'] = '보내는 사람'; $labels['sender'] = '발신인'; @@ -139,7 +137,7 @@ $labels['currpage'] = '현재 페이지'; $labels['unread'] = '읽지 않음'; $labels['flagged'] = '깃발로 표시됨'; $labels['unanswered'] = '답장하지 않음'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = '첨부파일 포함'; $labels['deleted'] = '삭제됨'; $labels['undeleted'] = '삭제되지 않음'; $labels['invert'] = '반전'; @@ -168,7 +166,7 @@ $labels['listmode'] = '화면 모드 목록 보기'; $labels['folderactions'] = '폴더 명령'; $labels['compact'] = '간단하게'; $labels['empty'] = '비어 있음'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = '메시지 가져오기'; $labels['quota'] = '디스크 사용량'; $labels['unknown'] = '알 수 없음'; $labels['unlimited'] = '제한 없음'; @@ -177,11 +175,12 @@ $labels['resetsearch'] = '검색 재설정'; $labels['searchmod'] = '수정자 검색'; $labels['msgtext'] = '전체 메시지'; $labels['body'] = '본문'; -$labels['type'] = 'Type'; +$labels['type'] = '유형'; +$labels['namex'] = '이름'; $labels['openinextwin'] = '새 창에서 열기'; $labels['emlsave'] = '다운로드(.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; +$labels['changeformattext'] = '메시지를 평문 형식으로 표시'; +$labels['changeformathtml'] = 'HTML 형식으로 표시'; $labels['editasnew'] = '새 메시지로 편집'; $labels['send'] = '보내기'; $labels['sendmessage'] = '메일 보내기'; @@ -310,15 +309,18 @@ $labels['nextpage'] = '다음 페이지 보기'; $labels['lastpage'] = '마지막 페이지 보기'; $labels['group'] = '그룹'; $labels['groups'] = '그룹'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = '그룹 구성원 목록 보기'; $labels['personaladrbook'] = '개인 주소'; $labels['searchsave'] = '검색 저장'; $labels['searchdelete'] = '검색 삭제'; $labels['import'] = '가져오기'; $labels['importcontacts'] = '연락처 가져오기'; $labels['importfromfile'] = '파일에서 가져오기:'; -$labels['importtarget'] = '새 연락처를 주소록에 추가:'; +$labels['importtarget'] = '연락처 추가 위치'; $labels['importreplace'] = '전체 주소록을 바꾸기'; +$labels['importgroups'] = '그룹 할당 가져오기'; +$labels['importgroupsall'] = '전체 (필요에 따라 그룹 생성)'; +$labels['importgroupsexisting'] = '기존 그룹에만 해당'; $labels['importdesc'] = '기존 주소록에서 연락처를 가져올 수 있습니다.
현재 vCard 데이터 형식에서 주소 가져오기를 지원합니다.\''; $labels['done'] = '완료'; $labels['settingsfor'] = '설정'; @@ -352,7 +354,7 @@ $labels['htmleditor'] = 'HTML 메시지 작성'; $labels['htmlonreply'] = 'HTML 메시지 회신 시'; $labels['htmlonreplyandforward'] = '전달 또는 HTML 메시지 회신 시'; $labels['htmlsignature'] = 'HTML 서명'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = '이메일 주소를 표시 이름과 함께 보기'; $labels['previewpane'] = '미리보기 창 보기'; $labels['skin'] = '인터페이스 스킨'; $labels['logoutclear'] = '로그아웃할 때 휴지통 비우기'; @@ -422,7 +424,7 @@ $labels['spellcheckignorenums'] = '숫자가 포함된 단어 무시'; $labels['spellcheckignorecaps'] = '모두 대문자로 표기된 단어 무시'; $labels['addtodict'] = '사전에 추가'; $labels['mailtoprotohandler'] = 'mailto: 링크의 프로토콜 처리자 등록'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = '팝업을 일반 창같이 취급'; $labels['forwardmode'] = '메시지 전달'; $labels['inline'] = '본문 내용으로'; $labels['asattachment'] = '첨부파일로'; diff --git a/program/localization/ko_KR/messages.inc b/program/localization/ko_KR/messages.inc index a1103c766..f6f274c43 100644 --- a/program/localization/ko_KR/messages.inc +++ b/program/localization/ko_KR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = '오류 발생!'; $messages['loginfailed'] = '로그인이 실패하였습니다.'; $messages['cookiesdisabled'] = '브라우저가 쿠키를 지원하지 않습니다.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = '요청한 연락처를 찾을 수 없었습니 $messages['contactsearchonly'] = '연락처를 찾기 위해 일부 검색용어를 입력하세요.'; $messages['sendingfailed'] = '메시지 보내기를 실패하였음.'; $messages['senttooquickly'] = '이 메시지를 보내기 전에 $sec초 동안 기다리세요.'; -$messages['errorsavingsent'] = '보낸 메시지를 저장하는 동안 오류가 발생했습니다.'; -$messages['errorsaving'] = '저장 중 오류가 발생했습니다.'; $messages['errormoving'] = '메시지를 이동할 수 없었음.'; $messages['errorcopying'] = '메시지를 복사할 수 없었음.'; $messages['errordeleting'] = '메시지를 삭제할 수 없었음.'; @@ -100,16 +97,16 @@ $messages['converting'] = '서식 설정 삭제 중...'; $messages['messageopenerror'] = '서버에서 메시지를 불러올 수 없음.'; $messages['fileuploaderror'] = '파일 업로드를 실패함.'; $messages['filesizeerror'] = '업로드된 파일이 최대 크기인 $size를 초과하였습니다.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; +$messages['copysuccess'] = '$nr개의 연락처를 성공적으로 복사함'; +$messages['movesuccess'] = '$nr개의 연락처를 성공적으로 이동함'; +$messages['copyerror'] = '전체 연락처를 복사할 수 없없음'; +$messages['moveerror'] = '전체 연락처를 이동할 수 없없음'; $messages['sourceisreadonly'] = '이 주소의 소스는 읽기 전용입니다.'; $messages['errorsavingcontact'] = '연락처의 주소를 저장할 수 없음.'; $messages['movingmessage'] = '메시지를 이동하는 중...'; $messages['copyingmessage'] = '메시지 복사하는 중...'; $messages['copyingcontact'] = '연락처 복사하는 중...'; -$messages['movingcontact'] = 'Moving contact(s)...'; +$messages['movingcontact'] = '연락처 이동 중...'; $messages['deletingmessage'] = '메시지 삭제하는 중...'; $messages['markingmessage'] = '메시지에 표시하는 중...'; $messages['addingmember'] = '그룹에 연락처를 추가하는 중...'; @@ -128,8 +125,8 @@ $messages['importwait'] = '가져오는 중, 기다려주시기 바랍니다...' $messages['importformaterror'] = '가져오기를 실패함! 업로드된 파일은 유효하지 않은 가져오기 데이터 파일입니다.'; $messages['importconfirm'] = '$inserted 연락처를 성공적으로 가져옴'; $messages['importconfirmskipped'] = '기존 기재사항인 $skipped을(를) 건너뜀'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; +$messages['importmessagesuccess'] = '$nr개의 메시지를 성공적으로 가져옴'; +$messages['importmessageerror'] = '가져오기 실패! 업로드된 파일은 유효하지 않은 메시지 또는 메일함 파일임'; $messages['opnotpermitted'] = '작업이 허가되지 않음!'; $messages['nofromaddress'] = '선택된 신원에 이메일 주소 가 누락됨.'; $messages['editorwarning'] = '일반 텍스트 편집기로 바꾸면 모든 텍스트 서식이 사라집니다. 계속하시겠습니까?'; @@ -144,7 +141,6 @@ $messages['smtperror'] = 'SMTP 오류: $msg'; $messages['emailformaterror'] = '유효하지 않은 이메일 주소: $email'; $messages['toomanyrecipients'] = '수신인이 너무 많음. 수신인 수를 $max명으로 줄이세요.'; $messages['maxgroupmembersreached'] = '그룹 구성원의 수가 최대 인원인 $max명을 초과합니다.'; -$messages['internalerror'] = '내부 오류가 발생함. 재시도 해주시기 바랍니다.'; $messages['contactdelerror'] = '연락처를 삭제할 수 없음.'; $messages['contactdeleted'] = '연락처가 성공적으로 삭제됨.'; $messages['contactrestoreerror'] = '삭제된 연락처를 복구할 수 없음.'; diff --git a/program/localization/ku/labels.inc b/program/localization/ku/labels.inc index 27d54137e..c88b52d46 100644 --- a/program/localization/ku/labels.inc +++ b/program/localization/ku/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bixêr hatî $product \'ê'; $labels['username'] = 'Bikarhêner'; $labels['password'] = 'Nasnav'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'Hilanînî'; $labels['sent'] = 'Şandî'; $labels['trash'] = 'Çop'; $labels['junk'] = 'Biikêrnehatî'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Mijar'; $labels['from'] = 'Şandyar'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Standyar'; $labels['cc'] = 'Kopiya Karbon'; $labels['bcc'] = 'Kopiya karbon a Veşartî'; $labels['replyto'] = 'Navnîşanên Standyar'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Dîrok'; $labels['size'] = 'Mezinahî'; $labels['priority'] = 'Girîngî'; $labels['organization'] = 'Sazî'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Peldank'; $labels['messagesfromto'] = 'Peyam $count ên di navbera $from - $to'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$nr a peyama $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'Kopiya Karbon'; -$labels['move'] = 'Move'; $labels['moveto'] = 'bibe...'; $labels['download'] = 'daxe'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Navê pelê'; $labels['filesize'] = 'Mezinahiya pelê'; $labels['addtoaddressbook'] = 'Têxe lênûska navnîşanan'; @@ -75,43 +62,12 @@ $labels['wednesday'] = 'Çarşem'; $labels['thursday'] = 'Pêncşem'; $labels['friday'] = 'În'; $labels['saturday'] = 'Şemî'; -$labels['jan'] = 'Jan'; -$labels['feb'] = 'Feb'; -$labels['mar'] = 'Mar'; -$labels['apr'] = 'Apr'; -$labels['may'] = 'May'; -$labels['jun'] = 'Jun'; -$labels['jul'] = 'Jul'; -$labels['aug'] = 'Aug'; -$labels['sep'] = 'Sep'; -$labels['oct'] = 'Oct'; -$labels['nov'] = 'Nov'; -$labels['dec'] = 'Dec'; -$labels['longjan'] = 'January'; -$labels['longfeb'] = 'February'; -$labels['longmar'] = 'March'; -$labels['longapr'] = 'April'; -$labels['longmay'] = 'May'; -$labels['longjun'] = 'June'; -$labels['longjul'] = 'July'; -$labels['longaug'] = 'August'; -$labels['longsep'] = 'September'; -$labels['longoct'] = 'October'; -$labels['longnov'] = 'November'; -$labels['longdec'] = 'December'; $labels['today'] = 'Îro'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Li peyamên nû venihêre'; $labels['compose'] = 'Peyamekê biafirîne'; $labels['writenewmessage'] = 'Peyameke nû biafirîne'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'Bersivê bide peyamê'; $labels['replytoallmessage'] = 'Bersivê ji bo hemû kesên ku ev peyan standine bişîne'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'Bersivê bide peyamê'; $labels['deletemessage'] = 'Peyamê jê bibe'; $labels['movemessagetotrash'] = 'Peyamê dake çopê'; @@ -122,88 +78,33 @@ $labels['nextmessage'] = 'Peyama di rêzê de nîşan bide'; $labels['lastmessage'] = 'Peyama dawî nîşan bide'; $labels['backtolist'] = 'Vegere lîsteya peyaman'; $labels['viewsource'] = 'Çavkaniyê nîşan bide'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'Peyamê nîşan bike'; $labels['markread'] = 'Wekî xwendî'; $labels['markunread'] = 'Wekî nexwendî'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'Hilbijêre'; $labels['all'] = 'Hemû'; $labels['none'] = 'Ne yek jî'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Nexwendî'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'Ne yek jî'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Kompakt'; $labels['empty'] = 'Vala Bike'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Bikaranîna dîskê'; $labels['unknown'] = 'nayê zanîn'; $labels['unlimited'] = 'bêsînor'; $labels['quicksearch'] = 'Lêgerîna bilez'; $labels['resetsearch'] = 'Lêgerînê reset bike'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Peyamê niha bişîne'; $labels['savemessage'] = 'Hilîne'; $labels['addattachment'] = 'Pelekê lê zêde bike'; $labels['charset'] = 'Curetîp'; $labels['editortype'] = 'Cureyê serastkat'; $labels['returnreceipt'] = 'Rapora Vegerînê'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Kontrola rastnivîsê'; $labels['resumeediting'] = 'Serastkirinê bidomîne'; $labels['revertto'] = 'Şûnde bîne'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'Pêvek'; $labels['upload'] = 'Bar bike'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Bigire'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'Nizm'; $labels['lowest'] = 'Nizmtirîn'; $labels['normal'] = 'Asayî'; @@ -211,20 +112,11 @@ $labels['high'] = 'Bilind'; $labels['highest'] = 'Bilintirîn'; $labels['nosubject'] = '(bê mijar)'; $labels['showimages'] = 'Xuyakirina wêneyan'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Deqa tazî'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; $labels['addcc'] = 'Cc Têxê'; $labels['addbcc'] = 'Bcc Têxê'; $labels['addreplyto'] = 'Bibersivîne têxê'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'Şandyara/ê vê peyamê xwest dema ku te peyam vekir, jê re hişyarî here. Dixwazî jê re hişyarî here?'; $labels['receiptread'] = 'Rapora Vegerînê (xwendî)'; $labels['yourmessage'] = 'Ev rapora vegerîna peyama te ye'; @@ -232,97 +124,26 @@ $labels['receiptnote'] = 'Nîşe: Ev dide zanîn ka peyama te şand hat xwendin $labels['name'] = 'Navê xuya dibe'; $labels['firstname'] = 'Nav'; $labels['surname'] = 'Paşnav'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'E-Peyam'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Têkiliyeke nû têxê'; $labels['editcontact'] = 'Têkiliyê serast bike'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Serast bike'; $labels['cancel'] = 'Betal'; $labels['save'] = 'Tomar bike'; $labels['delete'] = 'Jê Bibe'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'kardeke nû a têkiliyê biafirîne'; $labels['deletecontact'] = 'Têkiliyên hilbijartî jê bibe'; $labels['composeto'] = 'Ji têkiliya hilbijartî re peyam bişîne'; $labels['contactsfromto'] = 'Têkiliyên $count ên di navbera $from - $to de'; $labels['print'] = 'çap bike'; $labels['export'] = 'Derxe'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Seta berê nîşan bide'; $labels['firstpage'] = 'Seta yekemîn nîşan bide'; $labels['nextpage'] = 'Seta di rêzê de nîşan bide'; $labels['lastpage'] = 'Seta dawî nîşan bide'; -$labels['group'] = 'Group'; $labels['groups'] = 'Kom'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Navnîşanên Takekesî'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Mîheng ji bo'; -$labels['about'] = 'About'; $labels['preferences'] = 'Vebijêrk'; $labels['userpreferences'] = 'Vebijêrkên bikarhêner'; $labels['editpreferences'] = 'Vebijêrkên bikarhêner serast bike'; @@ -332,100 +153,19 @@ $labels['newidentity'] = 'Nasnameya nû'; $labels['newitem'] = 'Parçeya nû'; $labels['edititem'] = 'Parçeyê serast bike'; $labels['preferhtml'] = 'Wekî HTML nîşan bide'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Peyama HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Kurtenivîsa Dîrokê'; $labels['setdefault'] = 'Wekî standard tomar bike'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Ziman'; $labels['timezone'] = 'Herêma demê'; $labels['pagesize'] = 'Hejmara peyamên her rûpelekê'; $labels['signature'] = 'Şanenav'; $labels['dstactive'] = 'Demjimêra havînî'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Peyameke HTML biafirîne'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Şanenava HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Panela berê nîşan bide'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'Xweber hilîne'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'qet'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Peldank'; $labels['folders'] = 'Peldank'; $labels['foldername'] = 'Navê peldankê'; @@ -434,48 +174,7 @@ $labels['messagecount'] = 'Peyam'; $labels['create'] = 'Biafirîne'; $labels['createfolder'] = 'Peldankeke nû biafirîne'; $labels['managefolders'] = 'Rêveberiya peldankan'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Şêweyê rêzkirinê'; $labels['sortasc'] = 'Wekî zêde dibe'; $labels['sortdesc'] = 'Wekî kêm dibe'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ku/messages.inc b/program/localization/ku/messages.inc index eec0b258b..6000aacb0 100644 --- a/program/localization/ku/messages.inc +++ b/program/localization/ku/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Têketin têk çû'; $messages['cookiesdisabled'] = 'Geroka te destûrê nade çerezan'; $messages['sessionerror'] = 'Danişîna te çewt e an jî bi dawî bûye'; $messages['storageerror'] = 'Girêdana pêşkêşkara IMAP têk çû'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Di vê peyamdankê de tu peyam nehat dîtin'; $messages['loggedout'] = 'Te danişînî bi dawî anî. Oxir be!'; $messages['mailboxempty'] = 'Peyamdank vala ye'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Tê barkirin...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Dane tên barkirin...'; $messages['checkingmail'] = 'Li peyamên nû vedinihêre...'; $messages['sendingmessage'] = 'Peyamê dişîne...'; @@ -47,128 +32,42 @@ $messages['messagesaved'] = 'Peyam di Hilanînî de hat hilanîn'; $messages['successfullysaved'] = 'Hat hilanîn'; $messages['addedsuccessfully'] = 'Têkilî li navnîşanan hat zêdekirin'; $messages['contactexists'] = 'Têkiliyeke bi vê navnîşanê jixwe heye'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Ji bo ewlekariya te wêneyên cuda yên vê peyamê hatin astenkirin.'; $messages['encryptedmessage'] = 'Ev peyamenek şîfrekirî ye, bibore, nayê vekirin!'; $messages['nocontactsfound'] = 'Tu têkiliyek nehat dîtin'; $messages['contactnotfound'] = 'Têkiliya dihat xwestin nehat dîtin'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Peyam nehat şandin'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Di tomarkirinê de çewtiyek derket'; $messages['errormoving'] = 'Ciyê peyamê nehat guherandin'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Peyam nehat jêbirin'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Ji dil dixwazî têkiliya/ên nîşankirî jê bibî?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Ji dil dixwazî peya/ên nîşankirî jê bibî?'; $messages['deletefolderconfirm'] = 'Ji dil dixwazî vê peldankê jê bibî?'; $messages['purgefolderconfirm'] = 'Ji dil dixwazî hemû peyamên di vê peldankê de jê bibî?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Form bi temamî nehat tijekirin'; $messages['noemailwarning'] = 'Tika ye, navnîşaneke rast têkevê'; $messages['nonamewarning'] = 'Tika ye, navekî têkevê'; $messages['nopagesizewarning'] = 'Tika ye, mezinahiyeke pelê têkevê'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Tika ye, herî kêm standyarekê têkevê'; $messages['nosubjectwarning'] = 'Qada "Mijar"ê vala ye. Dixwazî niha tiştekî lê binivîsî?'; $messages['nobodywarning'] = 'Peyamê bê nivîs bişeyînî?'; $messages['notsentwarning'] = 'Peyam nehat şandin. Dixwazî peyamê pişTgo bikî?'; $messages['noldapserver'] = 'Tika ye, ji bo lêgerînê pêşkêşkareke Idap têkevê'; $messages['nosearchname'] = 'Tika ye, nav an jî navnîşaneke têkiliyê têkevê'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr peyam hat(in) dîtin'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Di lêgerînê de tu tişt nehat dîtin'; $messages['searching'] = 'Digere...'; $messages['checking'] = 'Vedinihêre...'; $messages['nospellerrors'] = 'Tu şaşiyeke rastnivîsê nehat dîtin'; $messages['folderdeleted'] = 'Peldank hat jêbirin'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Hat jêbirin'; $messages['converting'] = 'Formatkirin ji peyamê tê birin...'; $messages['messageopenerror'] = 'Peyam ji pêşkêşkar nehat barkirin'; $messages['fileuploaderror'] = 'Barkirina pelê têk çû'; $messages['filesizeerror'] = 'Pel pir mezin e. Herî zêde divê $size be'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Çavkaniya vê navnîşanê tenê-xwendin e'; $messages['errorsavingcontact'] = 'Navnîşana têkiliyê nehat barkirin'; $messages['movingmessage'] = 'Ciyê peyamê tê guhertin...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'Rapora şandina serkeftî'; $messages['errorsendingreceipt'] = 'Rapor nehat şandin'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'Nikarî vê nasnameyê jê bibî. Ew ya dawî ye.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/lb_LU/labels.inc b/program/localization/lb_LU/labels.inc index 7b7c2b679..d32a263a1 100644 --- a/program/localization/lb_LU/labels.inc +++ b/program/localization/lb_LU/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Wëllkomm bei $product'; $labels['username'] = 'Benotzernumm'; $labels['password'] = 'Passwuert'; @@ -318,7 +316,6 @@ $labels['searchdelete'] = 'Sich läschen'; $labels['import'] = 'Importéieren'; $labels['importcontacts'] = 'Kontakter importéieren'; $labels['importfromfile'] = 'Aus Fichier importéieren:'; -$labels['importtarget'] = 'Nei Kontakter an d\'Adressbuch setzen:'; $labels['importreplace'] = 'Dat ganzt Adressbuch ersetzen'; $labels['importdesc'] = 'Du kanns Kontakter aus engem existéierenden Adressbuch eroplueden.
Mir ënnerstëtze momentan en Adress-Import vum vCard- oder CSV (mat Komma getrennt)-Date-Format.'; $labels['done'] = 'Erleedegt'; diff --git a/program/localization/lb_LU/messages.inc b/program/localization/lb_LU/messages.inc index 6176d9a2c..8ef0b2f6c 100644 --- a/program/localization/lb_LU/messages.inc +++ b/program/localization/lb_LU/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ee Feeler ass opgetrueden!'; $messages['loginfailed'] = 'Login feelgeschloen.'; $messages['cookiesdisabled'] = 'Däi Browser acceptéiert keng Cookien.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Den ugefrotene Kontakt gouf net fonnt.'; $messages['contactsearchonly'] = 'Gëff e puer Sichbegrëffer a fir Kontakter ze fannen'; $messages['sendingfailed'] = 'De Message konnt net verschéckt ginn.'; $messages['senttooquickly'] = 'Waart wann ech gelift $sec Sekonn(en) bevir s du de Message verschécks. '; -$messages['errorsavingsent'] = 'Beim Späichere vum verschéckte Message ass e Feeler opgetrueden'; -$messages['errorsaving'] = 'Beim Späicheren ass e Feeler opgetrueden.'; $messages['errormoving'] = 'D\'Messagë konnten net verréckelt ginn.'; $messages['errorcopying'] = 'D\'Messagë konnten net kopéiert ginn.'; $messages['errordeleting'] = 'D\'Messagë konnten net geläscht ginn.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP-Feeler: $msg'; $messages['emailformaterror'] = 'Ongëlteg E-Mail-Adress: $email'; $messages['toomanyrecipients'] = 'Zevill Empfänger. Reduzéier d\'Zuel vun den Empfänger op $max.'; $messages['maxgroupmembersreached'] = 'D\'Unzuel vu Gruppememberen iwwersteigt de Maximum vun $max.'; -$messages['internalerror'] = 'En interne Feeler ass opgetrueden. Probéier w.e.gl nach eng Kéier.'; $messages['contactdelerror'] = 'Kontakter konnten net geläscht ginn.'; $messages['contactdeleted'] = 'Kontakter erfollegräich geläscht.'; $messages['contactrestoreerror'] = 'Déi geläschte Kontakter konnten net recuperéiert ginn.'; diff --git a/program/localization/lt_LT/labels.inc b/program/localization/lt_LT/labels.inc index a77ac90a7..129b0de47 100644 --- a/program/localization/lt_LT/labels.inc +++ b/program/localization/lt_LT/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Sveiki! Čia $product'; $labels['username'] = 'Naudotojo vardas'; $labels['password'] = 'Slaptažodis'; @@ -31,7 +29,7 @@ $labels['drafts'] = 'Juodraščiai'; $labels['sent'] = 'Išsiųsti laiškai'; $labels['trash'] = 'Šiukšlinė'; $labels['junk'] = 'Brukalas'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Rodyti tikrus specialiųjų aplankų vardus'; $labels['subject'] = 'Tema'; $labels['from'] = 'Siuntėjas'; $labels['sender'] = 'Siuntėjas'; @@ -102,7 +100,7 @@ $labels['longdec'] = 'Gruodis'; $labels['today'] = 'Šiandien'; $labels['refresh'] = 'Atnaujinti'; $labels['checkmail'] = 'Tikrinti, ar yra naujų laiškų'; -$labels['compose'] = 'Rašyti naują laišką'; +$labels['compose'] = 'Rašyti'; $labels['writenewmessage'] = 'Rašyti naują laišką'; $labels['reply'] = 'Atsakyti'; $labels['replytomessage'] = 'Atsakyti siuntėjui'; @@ -129,7 +127,7 @@ $labels['markunread'] = 'Kaip neskaitytus'; $labels['markflagged'] = 'Pažymėti gairele'; $labels['markunflagged'] = 'Pašalinti gairelę'; $labels['moreactions'] = 'Kiti veiksmai…'; -$labels['more'] = 'Daugiau'; +$labels['more'] = 'Kita'; $labels['back'] = 'Grįžti'; $labels['options'] = 'Nuostatos'; $labels['select'] = 'Pažymėti'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Sąrašo rodymo veiksena'; $labels['folderactions'] = 'Veiksmai su aplankais…'; $labels['compact'] = 'Suglaudinti'; $labels['empty'] = 'Ištuštinti'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Importuoti laiškus'; $labels['quota'] = 'Disko naudojimas'; $labels['unknown'] = 'nežinomas'; $labels['unlimited'] = 'neribotas'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Atšaukti paiešką'; $labels['searchmod'] = 'Paieškos modifikatoriai'; $labels['msgtext'] = 'Visas laiškas'; $labels['body'] = 'Laiško tekstas'; -$labels['type'] = 'Type'; +$labels['type'] = 'Tipas'; +$labels['namex'] = 'Vardas'; $labels['openinextwin'] = 'Atverti naujame lange'; $labels['emlsave'] = 'Parsisiųsti (.eml)'; $labels['changeformattext'] = 'Rodyti grynojo teksto formatu'; @@ -310,14 +309,13 @@ $labels['nextpage'] = 'Rodyti tolesnį puslapį'; $labels['lastpage'] = 'Rodyti paskutinį puslapį'; $labels['group'] = 'Grupė'; $labels['groups'] = 'Grupės'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Išvardinti grupės narius'; $labels['personaladrbook'] = 'Asmeniniai adresai'; $labels['searchsave'] = 'Įrašyti kaip radinių aplanką'; $labels['searchdelete'] = 'Pašalinti radinių aplanką'; $labels['import'] = 'Importuoti'; $labels['importcontacts'] = 'Importuoti adresatus'; $labels['importfromfile'] = 'Importuoti iš failo:'; -$labels['importtarget'] = 'Pridėti naujus adresatus į adresų knygą:'; $labels['importreplace'] = 'Perrašyti visą adresų knygą'; $labels['importdesc'] = 'Galite įkelti kontaktus iš jau turimos adresų knygos.
Šiuo metu galima importuoti kontaktus iš vCard arba CSV (comma-separated) duomenų formatų.'; $labels['done'] = 'Baigta'; @@ -352,7 +350,7 @@ $labels['htmleditor'] = 'Laiškus kurti HTML formatu'; $labels['htmlonreply'] = 'tik atsakymus į HTML formato laiškus'; $labels['htmlonreplyandforward'] = 'atsakant į HTML laišką arba jį persiunčiant'; $labels['htmlsignature'] = 'HTML parašas'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'Rodyti el. pašto adresą ir asmenvardį'; $labels['previewpane'] = 'Rodyti laiško peržiūros polangį'; $labels['skin'] = 'Grafinis apvalkalas'; $labels['logoutclear'] = 'Išvalyti Šiukšlinę atsijungiant'; @@ -422,7 +420,7 @@ $labels['spellcheckignorenums'] = 'Nepaisyti žodžių su skaitmenimis'; $labels['spellcheckignorecaps'] = 'Nepaisyti žodžių vien iš didžiųjų raidžių'; $labels['addtodict'] = 'Įtraukti į žodyną'; $labels['mailtoprotohandler'] = 'Užregistruoti svetainę kaip dirbančią su „mailto:“ saitais'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'Iškylančiuosius langus traktuoti kaip įprastus'; $labels['forwardmode'] = 'Laiškų persiuntimo būdas'; $labels['inline'] = 'kaip citatą'; $labels['asattachment'] = 'kaip priedas'; diff --git a/program/localization/lt_LT/messages.inc b/program/localization/lt_LT/messages.inc index 8ffacb3a6..f3feedd47 100644 --- a/program/localization/lt_LT/messages.inc +++ b/program/localization/lt_LT/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Įvyko klaida!'; $messages['loginfailed'] = 'Prisijungti nepavyko.'; $messages['cookiesdisabled'] = 'Jūsų naršyklė nepriima slapukų.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Ieškotas adresatas nerastas.'; $messages['contactsearchonly'] = 'Įveskite reikšminius žodžius adresatų paieškai'; $messages['sendingfailed'] = 'Laiško išsiųsti nepavyko.'; $messages['senttooquickly'] = 'Turite luktelėti $sec sek., kad galėtumėte išsiųsti laišką.'; -$messages['errorsavingsent'] = 'Įrašant išsiųstą laišką įvyko klaida.'; -$messages['errorsaving'] = 'Įrašant įvyko klaida.'; $messages['errormoving'] = 'Laiško(-ų) perkelti nepavyko.'; $messages['errorcopying'] = 'Laiško(-ų) nukopijuoti nepavyko.'; $messages['errordeleting'] = 'Laiško(-ų) pašalinti nepavyko.'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP klaida: $msg'; $messages['emailformaterror'] = 'Netinkamas el. pašto adresas: $email'; $messages['toomanyrecipients'] = 'Per daug gavėjų. Sumažinkite jų bent iki $max.'; $messages['maxgroupmembersreached'] = 'Grupės narių skaičius viršijo maksimalų leistiną ($max).'; -$messages['internalerror'] = 'Įvyko klaida. Prašom bandyti iš naujo.'; $messages['contactdelerror'] = 'Nepavyko pašalinti adresato(-ų).'; $messages['contactdeleted'] = 'Adresatas(-ai) sėkmingai pašalintas(-i).'; $messages['contactrestoreerror'] = 'Nepavyko atkurti pašalinto(-ų) adresato(-ų).'; diff --git a/program/localization/lv_LV/labels.inc b/program/localization/lv_LV/labels.inc index b9c3b0c79..95afc4c49 100644 --- a/program/localization/lv_LV/labels.inc +++ b/program/localization/lv_LV/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Esiet laipni lūgti $product'; $labels['username'] = 'Lietotājvārds'; $labels['password'] = 'Parole'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Meklēšanas modifikatori:'; $labels['msgtext'] = 'Visā vēstulē'; $labels['body'] = 'Pamatteksts'; $labels['type'] = 'Tips'; +$labels['namex'] = 'Vārds'; $labels['openinextwin'] = 'Atvērt jaunā logā'; $labels['emlsave'] = 'lejupielādēt (.eml)'; $labels['changeformattext'] = 'Rādīt kā neformatētu tekstu'; @@ -317,8 +316,10 @@ $labels['searchdelete'] = 'Dzēst saglabāto meklēšanas pieprasījumu'; $labels['import'] = 'Importēt'; $labels['importcontacts'] = 'Importēt kontaktus'; $labels['importfromfile'] = 'Importēt no faila:'; -$labels['importtarget'] = 'Pievienot jaunus kontaktus adrešu grāmatai:'; +$labels['importtarget'] = 'Kontaktus pievienot'; $labels['importreplace'] = 'Aizvietot visu adrešu grāmatu'; +$labels['importgroupsall'] = 'Visus (ja nepieciešams, izveidojiet grupas)'; +$labels['importgroupsexisting'] = 'Tikai esošām grupām'; $labels['importdesc'] = 'Jūs varat ieimportēt kontaktus no jau esošas adrešu grāmatas.
Uz doto brīdi tiek atbalstīti vCard vai CSV (ar komatu atdalītie) datu formāti.'; $labels['done'] = 'Pabeigts'; $labels['settingsfor'] = 'Iestatījumi'; diff --git a/program/localization/lv_LV/messages.inc b/program/localization/lv_LV/messages.inc index 87d57174b..f27b01b84 100644 --- a/program/localization/lv_LV/messages.inc +++ b/program/localization/lv_LV/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Radās kļūda!'; $messages['loginfailed'] = 'Pieslēgties neizdevās'; $messages['cookiesdisabled'] = 'Jūsu pārlūkprogramma neatbalsta sīkdatnes (cookies)'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Pieprasītais kontakts nav atrasts'; $messages['contactsearchonly'] = 'Lai atrastu kontaktus, ievadiet meklēšanas kritērijus'; $messages['sendingfailed'] = 'Vēstule netika nosūtīta'; $messages['senttooquickly'] = 'Lūdzu uzgaidiet $sec sekundi(-es) pirms sūtiet šo vēstuli'; -$messages['errorsavingsent'] = 'Saglabājot vēstuli notika kļūda - vēstule netika saglabāta'; -$messages['errorsaving'] = 'Saglabājot notika kļūda'; $messages['errormoving'] = 'Vēstule(s) netika pārvietota(s)'; $messages['errorcopying'] = 'Vēstules pārkopēt neizdevās'; $messages['errordeleting'] = 'Vēstules izdzēst neizdevās'; @@ -100,13 +97,16 @@ $messages['converting'] = 'Tiek noņemts vēstules formatējums...'; $messages['messageopenerror'] = 'Nevarēja ielādēt vēstuli no servera'; $messages['fileuploaderror'] = 'Faila augšupielāde neveiksmīga'; $messages['filesizeerror'] = 'Augšupielādētais fails pārsniedz pieļaujamo $size izmēru.'; -$messages['copysuccess'] = 'Veiksmīgi nokopētas $nr adreses.'; -$messages['copyerror'] = 'Nevarēja nokopēt nevienu adresi.'; +$messages['copysuccess'] = '$nr kontakti tika veiksmīgi pārkopēti.'; +$messages['movesuccess'] = '$nr kontakti tika veiksmīgi pārvietoti.'; +$messages['copyerror'] = 'Kontaktus pārkopēt neizdevās.'; +$messages['moveerror'] = 'Kontaktus pārvietot neizdevās.'; $messages['sourceisreadonly'] = 'Adreses avots ir lasīšanas režīmā tikai'; $messages['errorsavingcontact'] = 'Kontakta adresi nevarēja saglabāt.'; $messages['movingmessage'] = 'Pārvieto vēstules...'; $messages['copyingmessage'] = 'Kopē vēstules...'; $messages['copyingcontact'] = 'Kopē kontaktus...'; +$messages['movingcontact'] = 'Pārvieto kontaktu(s)...'; $messages['deletingmessage'] = 'Dzēš vēstules...'; $messages['markingmessage'] = 'Atzīmē vēstules...'; $messages['addingmember'] = 'Kontaktus pievieno grupai...'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'SMTP kļūda: $msg'; $messages['emailformaterror'] = 'Nepareiza e-pasta adrese: $email'; $messages['toomanyrecipients'] = 'Pārāk daudz saņēmēju. Samaziniet skaitu līdz $max.'; $messages['maxgroupmembersreached'] = 'Grupas dalībnieku skaits pārsniedz limitu $max.'; -$messages['internalerror'] = 'Notika servera iekšējā kļūda. Lūdzu mēģiniet vēlreiz.'; $messages['contactdelerror'] = 'Kontaktus izdzēst neizdevās.'; $messages['contactdeleted'] = 'Kontakti izdzēsti veiksmīgi.'; $messages['contactrestoreerror'] = 'Izdzēstos kontaktus atjaunot neizdevās.'; diff --git a/program/localization/mk_MK/labels.inc b/program/localization/mk_MK/labels.inc index dcbf34149..2c6c422b3 100644 --- a/program/localization/mk_MK/labels.inc +++ b/program/localization/mk_MK/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Добредојдовте во $product'; $labels['username'] = 'Корисничко име'; $labels['password'] = 'Лозинка'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'Непратени'; $labels['sent'] = 'Пратени'; $labels['trash'] = 'Корпа'; $labels['junk'] = 'Ѓубре'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Наслов'; $labels['from'] = 'Праќач'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Примач'; $labels['cc'] = 'Копирај'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Препрати на'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Датум'; $labels['size'] = 'Големина'; $labels['priority'] = 'Приоритет'; $labels['organization'] = 'Организација'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Папки'; $labels['messagesfromto'] = 'Писма од $from до $to од $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Писмо $nr од $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'Копирај'; -$labels['move'] = 'Move'; $labels['moveto'] = 'Премести во...'; $labels['download'] = 'Преземи'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Име на податотеката'; $labels['filesize'] = 'Големина на податотеката'; $labels['addtoaddressbook'] = 'Додај во именик'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'Октомври'; $labels['longnov'] = 'Ноември'; $labels['longdec'] = 'Декември'; $labels['today'] = 'Денес'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Провери пошта'; $labels['compose'] = 'Пиши ново писмо'; $labels['writenewmessage'] = 'Ново писмо'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'Одговори на испраќачот'; $labels['replytoallmessage'] = 'Одговори на испраќачот и сите примачи'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'Препрати писмо'; $labels['deletemessage'] = 'Избриши писмо'; $labels['movemessagetotrash'] = 'Премести ги писмата во Корпа'; @@ -122,53 +102,23 @@ $labels['nextmessage'] = 'Прикажи го следното писмо'; $labels['lastmessage'] = 'Прикажи го последното писмо'; $labels['backtolist'] = 'Назад кон листа на писма'; $labels['viewsource'] = 'Покажи го изворот на писмото'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'Обележи ги писмата'; $labels['markread'] = 'Како прочитани'; $labels['markunread'] = 'Како непрочитани'; $labels['markflagged'] = 'Како обележано'; $labels['markunflagged'] = 'Како необележано'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'Одбери'; $labels['all'] = 'Сите'; $labels['none'] = 'Ниедно'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Непрочитани'; $labels['flagged'] = 'Обележано'; $labels['unanswered'] = 'Неодговорено'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Избришано'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Обратно'; $labels['filter'] = 'Филтер'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'Ниедно'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Компактно'; $labels['empty'] = 'Испразни'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Искористен простор'; $labels['unknown'] = 'непознато'; $labels['unlimited'] = 'неограничено'; @@ -176,34 +126,21 @@ $labels['quicksearch'] = 'Брзо пребарување'; $labels['resetsearch'] = 'Ново пребарување'; $labels['searchmod'] = 'Модификатори на пребарувањето'; $labels['msgtext'] = 'Цело писмо'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Отвори во нов прозорец'; $labels['emlsave'] = 'Преземи (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Уреди како ново'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Испрати сега'; $labels['savemessage'] = 'Зачувај го писмото во Непратени'; $labels['addattachment'] = 'Приложи податотека'; $labels['charset'] = 'Збир од знаци'; $labels['editortype'] = 'Тип на уредник'; $labels['returnreceipt'] = 'Врати'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Провери правопис'; $labels['resumeediting'] = 'Продолжи со уредување'; $labels['revertto'] = 'Врати на'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'Приложено'; $labels['upload'] = 'Подигни'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Затвори'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'Низок'; $labels['lowest'] = 'Најнизок'; $labels['normal'] = 'Нормален'; @@ -212,10 +149,6 @@ $labels['highest'] = 'Највисок'; $labels['nosubject'] = '(без наслов)'; $labels['showimages'] = 'Прикажи слики'; $labels['alwaysshow'] = 'Секогаш прикажувај ги сликите од $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Обичен текст'; $labels['savesentmessagein'] = 'Сними го пратеното писмо во'; @@ -224,7 +157,6 @@ $labels['maxuploadsize'] = 'Максималната дозволена голе $labels['addcc'] = 'Додај Cc'; $labels['addbcc'] = 'Додај Bcc'; $labels['addreplyto'] = 'Додај Одговори-на'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'Праќачот на оваа порака сака да биде известен кога ќе го прочитате писмото. Дали сакате да го известите?'; $labels['receiptread'] = 'Извести (прочитано)'; $labels['yourmessage'] = 'Ова е известување за вашата порака'; @@ -232,97 +164,32 @@ $labels['receiptnote'] = 'Напомена: Ова известување сам $labels['name'] = 'Име за приказ'; $labels['firstname'] = 'Име'; $labels['surname'] = 'Презиме'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'Е-пошта'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Додај нов контакт'; $labels['editcontact'] = 'Уреди контакт'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Уреди'; $labels['cancel'] = 'Откажи'; $labels['save'] = 'Зачувај'; $labels['delete'] = 'Избриши'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Додај ново име'; $labels['deletecontact'] = 'Избриши ги следните имиња'; $labels['composeto'] = 'Напиши порака за'; $labels['contactsfromto'] = 'Имиња од $from до $to од $count'; $labels['print'] = 'Испечати'; $labels['export'] = 'Извези како'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Извези ги контактите во vCard формат'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Прикажи претходна страна'; $labels['firstpage'] = 'Прикажи ја првата страна'; $labels['nextpage'] = 'Прикажи ја следната страна'; $labels['lastpage'] = 'Прикажи ја последната страна'; -$labels['group'] = 'Group'; $labels['groups'] = 'Групи'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Лични адреси'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'Увези'; $labels['importcontacts'] = 'Увези контакти'; $labels['importfromfile'] = 'Увези од податотека:'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Замени го целиот именик'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Завршено'; $labels['settingsfor'] = 'Нагодувања за'; -$labels['about'] = 'About'; $labels['preferences'] = 'Нагодувања'; $labels['userpreferences'] = 'Кориснички нагодувања'; $labels['editpreferences'] = 'Промени кориснички нагодувања'; @@ -332,12 +199,7 @@ $labels['newidentity'] = 'Нов идентитет'; $labels['newitem'] = 'Нов објект'; $labels['edititem'] = 'Промени објект'; $labels['preferhtml'] = 'Прикажи во HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML писмо'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Убави датуми'; $labels['setdefault'] = 'Постави за основно'; $labels['autodetect'] = 'Автоматски'; @@ -346,13 +208,8 @@ $labels['timezone'] = 'Часовна зона'; $labels['pagesize'] = 'Редови по страна'; $labels['signature'] = 'Потпис'; $labels['dstactive'] = 'Промени на времето'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Пиши HTML порака'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML потпис'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Прикажи прозорец за преглед'; $labels['skin'] = 'Модел на изгледот'; $labels['logoutclear'] = 'Исчисти ја Кантата при излез'; @@ -363,43 +220,33 @@ $labels['mailboxview'] = 'Приказ на поштенското сандач $labels['mdnrequests'] = 'Известувања за праќачот'; $labels['askuser'] = 'прашај го корисникот'; $labels['autosend'] = 'испрати автоматски'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'игнорирај'; $labels['readwhendeleted'] = 'Обележи го писмото како прочитано при бришење'; $labels['flagfordeletion'] = 'Обележи го писмото за бришење наместо да го избришеш'; $labels['skipdeleted'] = 'Не ги прикажувај избришаните писма'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Прикажи вметнати слики'; $labels['fromknownsenders'] = 'од познати праќачи'; $labels['always'] = 'секогаш'; $labels['showinlineimages'] = 'Прикажи приложени слики под писмото'; $labels['autosavedraft'] = 'Авоматски зачувувај во Непратени'; $labels['everynminutes'] = 'секои $n минути'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'никогаш'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'Прикажување на писма'; $labels['messagescomposition'] = 'Пишување на писма'; $labels['mimeparamfolding'] = 'Име на прикачените податотеки'; $labels['2231folding'] = 'Полн RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Полн RFC 2047 (друго)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'Напредни можности'; $labels['focusonnewmessage'] = 'Фокусирај го прозорецот на прелистувачот на новото писмо'; $labels['checkallfolders'] = 'Провери ги сите папки за нови писма'; $labels['displaynext'] = 'По бришење/преместување на писмото прикажи го следното писмо'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'Главни можности'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Заглавие'; $labels['maintenance'] = 'Одржување'; $labels['newmessage'] = 'Ново писмо'; $labels['signatureoptions'] = 'Можности за потписот'; $labels['whenreplying'] = 'При одговарање'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'новото писмо започни го над оригиналот'; $labels['replybottomposting'] = 'новото писмо започни го под оригиналот'; $labels['replyremovesignature'] = 'При одговарање отстрани го изворниот потпис од писмото'; @@ -407,25 +254,6 @@ $labels['autoaddsignature'] = 'Автоматски додавај потпис' $labels['newmessageonly'] = 'само нови писма'; $labels['replyandforwardonly'] = 'само одгорови и препраќања'; $labels['insertsignature'] = 'Вметни потпис'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Папка'; $labels['folders'] = 'Папки'; $labels['foldername'] = 'Име на папката'; @@ -435,47 +263,11 @@ $labels['create'] = 'Создај'; $labels['createfolder'] = 'Создај нова папка'; $labels['managefolders'] = 'Организирање на папки'; $labels['specialfolders'] = 'Специјални папки'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Сортирај по'; $labels['sortasc'] = 'Сортирај нагорно'; $labels['sortdesc'] = 'Сортирај надолно'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'Б'; $labels['KB'] = 'КБ'; $labels['MB'] = 'МБ'; $labels['GB'] = 'ГБ'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/mk_MK/messages.inc b/program/localization/mk_MK/messages.inc index 0ddfbe797..d123bada9 100644 --- a/program/localization/mk_MK/messages.inc +++ b/program/localization/mk_MK/messages.inc @@ -15,29 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Најавата не успеа'; $messages['cookiesdisabled'] = 'Вашиот прелистувач не прифаќа колачиња'; $messages['sessionerror'] = 'Сесијата е неважечка или е истечена'; $messages['storageerror'] = 'Поврзувањето со IMAP не успеа'; $messages['servererror'] = 'Грешка во серверот!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Неважечко барање! Податоците не се зачувани.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Немате писма во ова сандаче'; $messages['loggedout'] = 'Успешно се одјавивте. Ви благодариме и довидување!'; $messages['mailboxempty'] = 'Поштенското сандаче е празно.'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Вчитувам...'; $messages['uploading'] = 'Ја подигам податотеката...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Ги вчитувам податоците...'; $messages['checkingmail'] = 'Проверувам нова пошта...'; $messages['sendingmessage'] = 'Ја испраќам пораката...'; @@ -47,31 +35,21 @@ $messages['messagesaved'] = 'Пораката е зачувана во Непр $messages['successfullysaved'] = 'Успешно зачувано'; $messages['addedsuccessfully'] = 'Името е успешно додадено во Именикот'; $messages['contactexists'] = 'Веќе постои име со зададената Е-поштенска адреса'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'За да се заштити вашата приватност, сликите во оваа порака не се прикажани.'; $messages['encryptedmessage'] = 'Оваа порака е кодирана и не може да се прикаже. Жалиме!'; $messages['nocontactsfound'] = 'Нема пронајдено имиња.'; $messages['contactnotfound'] = 'Бараното име не е пронајдено'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Не упеав да го испратам писмото'; $messages['senttooquickly'] = 'Почекајте $sec секунда/и пред да го испратите писмото'; -$messages['errorsavingsent'] = 'Грешка при зачувувањето на пратеното писмо'; -$messages['errorsaving'] = 'Грешка при зачувувањето'; $messages['errormoving'] = 'Не можев да го преместам писмото'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Не можев да го избришам писмото'; $messages['errormarking'] = 'Не можев да го обележам писмото'; $messages['deletecontactconfirm'] = 'Дали сте сигурни дека сакате да го избришете одбраното(те) име(ња)?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Дали сте сигурни дека сакате да го(и) избришете обележаниот(те) писмо(а)?'; $messages['deletefolderconfirm'] = 'Дали сте сигурни дека сакате да ја избришете оваа папка?'; $messages['purgefolderconfirm'] = 'Дали сте сигурни дека сакате да ги избршете сите писма во оваа папка?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'Ја бришам папката...'; $messages['foldermoving'] = 'Ја преместувам папката...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Имате изоставено непополнети информации'; $messages['noemailwarning'] = 'Внесете валидна е-поштенска адреса'; $messages['nonamewarning'] = 'Внесете име'; @@ -85,51 +63,27 @@ $messages['noldapserver'] = 'Изберете LDAP сервер за преба $messages['nosearchname'] = 'Внесете име или е-поштенска адреса'; $messages['notuploadedwarning'] = 'Сè уште нема подигнати прилози. Почекајте или откажете го подигањето'; $messages['searchsuccessful'] = 'Пронајадени се $nr пораки'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Пребарувањето не даде резлутати'; $messages['searching'] = 'Пребарувам....'; $messages['checking'] = 'Проверувам...'; $messages['nospellerrors'] = 'Нема грешки во спелувањето'; $messages['folderdeleted'] = 'Папката е успешно избришана'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Успешно избришано'; $messages['converting'] = 'Форматирањето на писмото е отстрането...'; $messages['messageopenerror'] = 'Не можев да го вчитам писното од серверот'; $messages['fileuploaderror'] = 'Прикачувањето е неуспешно'; $messages['filesizeerror'] = 'Подигнатата податотека го надминува ограничувањето од $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Изворот на оваа адреса неможе да се промени'; $messages['errorsavingcontact'] = 'Името неможе да се сними'; $messages['movingmessage'] = 'Пораката се преместува...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'Известувањето е успешно пратено'; $messages['errorsendingreceipt'] = 'Известувањето не е пратено'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'Овој идентитет неможе да се избрише, тој е последниот.'; $messages['forbiddencharacter'] = 'Името на папката содржи несоодветен формат'; $messages['selectimportfile'] = 'Изберете ја податотеката која сакате да ја прикачите'; $messages['addresswriterror'] = 'Одбраниот именик не може да се менува'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'Убезувам,, почекајте...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'Успешно се увезени $inserted имиња, $skipped веќе постојат и се прескокнати:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Операцијата не е дозволена'; $messages['nofromaddress'] = 'Не е внесена е-пошта во одберениот идентитет'; $messages['editorwarning'] = 'Префрлањето на уредникот на обичен текст ќе резултира со губење на целото форматирање на текстот. Дали сакате да продолжите?'; @@ -141,34 +95,4 @@ $messages['smtptoerror'] = 'SMTP грешка ($code): Не успеав да г $messages['smtprecipientserror'] = 'SMTP грешка: Не успеав да ја испарсирам листата на примачи'; $messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'Неправилна поштенска адреса: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ml_IN/labels.inc b/program/localization/ml_IN/labels.inc index ad5cfee33..395893afb 100644 --- a/program/localization/ml_IN/labels.inc +++ b/program/localization/ml_IN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product ലേയ്ക്ക് സ്വാഗതം'; $labels['username'] = 'ഉപയോക്തൃനാമം'; $labels['password'] = 'രഹസ്യവാക്ക്'; @@ -31,33 +29,17 @@ $labels['drafts'] = 'പൂര്‍ത്തിയാകാത്തവ'; $labels['sent'] = 'അയച്ചവ'; $labels['trash'] = 'ചവറ്റുകുട്ട'; $labels['junk'] = 'ആവശ്യമില്ലാത്തവ'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'വിഷയം'; $labels['from'] = 'പ്രേഷിതന്‍'; -$labels['sender'] = 'Sender'; $labels['to'] = 'സ്വീകര്‍ത്താവ്'; -$labels['cc'] = 'Cc'; -$labels['bcc'] = 'Bcc'; -$labels['replyto'] = 'Reply-To'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'തീയതി'; $labels['size'] = 'വലിപ്പം'; $labels['priority'] = 'മുന്‍ഗണന'; -$labels['organization'] = 'Organization'; $labels['readstatus'] = 'അവസ്ഥ വായിക്കുക'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'ഫോള്‍ഡറുകള്‍'; -$labels['messagesfromto'] = 'Messages $from to $to of $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; -$labels['messagenrof'] = 'Message $nr of $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'പകര്‍ത്തുക'; $labels['move'] = 'നീക്കുക'; -$labels['moveto'] = 'Move to...'; $labels['download'] = 'ഡൗണ്‍ലോഡ്'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ഫയല്‍ നാമം'; $labels['filesize'] = 'ഫയലിന്റെ വലിപ്പം'; $labels['addtoaddressbook'] = 'മേല്‍വിലാസങ്ങളില്‍ ചേര്‍ക്കുക.'; @@ -103,15 +85,8 @@ $labels['today'] = 'ഇന്ന്'; $labels['refresh'] = 'പുതുക്കുക'; $labels['checkmail'] = 'പുതിയ സന്ദേശത്തിനായി തിരയുക'; $labels['compose'] = 'രചന'; -$labels['writenewmessage'] = 'Create a new message'; $labels['reply'] = 'മറുപടി'; -$labels['replytomessage'] = 'Reply to sender'; -$labels['replytoallmessage'] = 'Reply to list or to sender and all recipients'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; $labels['forward'] = 'കൈമാറുക'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'സന്ദേശം കൈമാറുക'; $labels['deletemessage'] = 'സന്ദേശം മായ്ക്കുക'; $labels['movemessagetotrash'] = 'സന്ദേശം ചവറ്റുകുട്ടയിലേക്ക് നീക്കുക'; @@ -120,14 +95,11 @@ $labels['previousmessage'] = 'മുന്‍പുളള സന്ദേശം $labels['firstmessage'] = 'ആദ്യത്തെ സന്ദേശം കാണിക്കുക.'; $labels['nextmessage'] = 'അടുത്ത സന്ദേശം കാണിക്കുക.'; $labels['lastmessage'] = 'അവസാനത്തെ സന്ദേശം കാണിക്കുക.'; -$labels['backtolist'] = 'Back to message list'; $labels['viewsource'] = 'ഉറവിടം കാണിക്കുക.'; $labels['mark'] = 'അടയാളപ്പെടുത്തു'; $labels['markmessages'] = 'സന്തേശങ്ങള്‍ അടയാളപ്പെടുത്തു'; $labels['markread'] = 'വായിച്ചതായി'; $labels['markunread'] = 'വായിക്കാത്തതായി'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; $labels['moreactions'] = 'കൂടുതല്‍ ചെയ്തികള്‍...'; $labels['more'] = 'കൂടുതല്‍'; $labels['back'] = 'പിന്നോട്ട്'; @@ -139,69 +111,39 @@ $labels['currpage'] = 'നിലവിലുളള പേജ്'; $labels['unread'] = 'വായിക്കാത്തത്'; $labels['flagged'] = 'അടയാളപ്പെടുത്തിയവ'; $labels['unanswered'] = 'മറുപടി കൊടുക്കാത്ത'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'മായ്ച്ചവ'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'തലതിരിക്കുക'; $labels['filter'] = 'അരിപ്പ'; $labels['list'] = 'പട്ടിക'; -$labels['threads'] = 'Threads'; $labels['expand-all'] = 'എല്ലാം വികസിപ്പിക്കുക'; $labels['expand-unread'] = 'വായിക്കാത്തവ വികസിപ്പിക്കുക'; $labels['collapse-all'] = 'എല്ലാം അടയ്ക്കുക'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; $labels['fromto'] = 'എവിടുന്ന് /എങ്ങൊട്ടു'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'ഒന്നുമില്ല'; $labels['sentdate'] = 'അയച്ച തീയതി'; $labels['arrival'] = 'വന്ന തീയതി'; $labels['asc'] = 'ആരോഹണം'; $labels['desc'] = 'അവരോഹണം'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; $labels['listorder'] = 'തരംതിരിക്കണ്ട രീതി'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'ചുരുക്കു'; $labels['empty'] = 'ശൂന്യം'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'ഡിസ്ക്ക് ഉപയോഗം'; $labels['unknown'] = 'അറിയാത്ത'; $labels['unlimited'] = 'പരിമിതികളില്ലാത്ത'; $labels['quicksearch'] = 'പെട്ടെന്ന് തെരയു'; -$labels['resetsearch'] = 'Reset search'; -$labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'മുഴുവന്‍ സന്ദേശവും'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'പുതിയ വിന്‍ഡോയില്‍ തുറക്കുക'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'പുതിയതായി തിരുത്തുക'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'സന്ദേശം അയയ്ക്കുക'; $labels['savemessage'] = 'പൂര്‍ത്തിയാകാത്തവ ആയി സൂക്ഷിക്കുക'; $labels['addattachment'] = 'ഒരു ഫയല്‍ മെയിലിനൊപ്പം ചേര്‍ക്കുക'; -$labels['charset'] = 'Charset'; $labels['editortype'] = 'തിരുത്തല്‍ രീതി'; -$labels['returnreceipt'] = 'Return receipt'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; $labels['originalmessage'] = 'യഥാര്‍ഥ സന്ദേശം'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'അക്ഷരത്തെറ്റു് പരിശോധിക്കുക'; $labels['resumeediting'] = 'തിരുത്തല്‍ തുടരുക'; -$labels['revertto'] = 'Revert to'; $labels['attach'] = 'സംയോജിപ്പിക്കു'; $labels['attachments'] = 'അറ്റാച്ച്മെന്റുകള്‍'; $labels['upload'] = 'അപ്‌ലോഡ് ചെയ്യുക'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'അടയ്ക്കുക'; $labels['messageoptions'] = 'സന്ദേശ ​ഐച്ഛികങ്ങള്‍...'; $labels['low'] = 'കുറഞ്ഞ'; @@ -211,30 +153,12 @@ $labels['high'] = 'കൂടിയ'; $labels['highest'] = 'ഏറ്റവും കൂടിയത്'; $labels['nosubject'] = '(വിഷയം ഇല്ല)'; $labels['showimages'] = 'ചിത്രങ്ങള്‍ കാണിക്കുക'; -$labels['alwaysshow'] = 'Always show images from $sender'; $labels['isdraft'] = 'ഇതൊരു കരടുരൂപമാണ്.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; -$labels['plaintoggle'] = 'Plain text'; -$labels['savesentmessagein'] = 'Save sent message in'; $labels['dontsave'] = 'സുക്ഷിക്കരുത്'; $labels['maxuploadsize'] = '$size ആണ് പരമാവധി ഫയല്‍ വലിപ്പം'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; -$labels['name'] = 'Display Name'; $labels['firstname'] = 'ആദ്യ നാമം'; $labels['surname'] = 'അവസാന നാമം'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; $labels['nickname'] = 'ചെല്ലപേര്'; $labels['jobtitle'] = 'ജോലിയുടെ പേര്'; $labels['department'] = 'വകുപ്പ്'; @@ -251,14 +175,12 @@ $labels['country'] = 'രാജ്യം'; $labels['birthday'] = 'പിറന്നാള്‍'; $labels['anniversary'] = 'വാര്‍ഷികം'; $labels['website'] = 'വെബ്സൈറ്റ്'; -$labels['instantmessenger'] = 'IM'; $labels['notes'] = 'കുറിപ്പുകള്‍'; $labels['male'] = 'പുരുഷന്‍'; $labels['female'] = 'സ്‌ത്രീ'; $labels['manager'] = 'പരിപാലകന്‍'; $labels['assistant'] = 'സഹായി'; $labels['spouse'] = 'ഭാര്യ/ഭര്‍ത്താവ്'; -$labels['allfields'] = 'All fields'; $labels['search'] = 'തെരയുക'; $labels['advsearch'] = 'വിപുലമായ തിരച്ചില്‍'; $labels['advanced'] = 'സങ്കീര്‍ണ്ണം'; @@ -277,11 +199,6 @@ $labels['typeassistant'] = 'സഹായി'; $labels['typehomepage'] = 'ഹോം പേജ്'; $labels['typeblog'] = 'ബ്ലോഗ്'; $labels['typeprofile'] = 'പ്രൊഫൈല്‍'; -$labels['addfield'] = 'Add field...'; -$labels['addcontact'] = 'Add new contact'; -$labels['editcontact'] = 'Edit contact'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'സ്വകാര്യ വിവരങ്ങള്‍'; $labels['edit'] = 'തിരുത്തുക'; $labels['cancel'] = 'റദ്ദാക്കുക'; @@ -290,173 +207,51 @@ $labels['delete'] = 'നീക്കം ചെയ്യുക'; $labels['rename'] = 'പേരുമാറ്റുക'; $labels['addphoto'] = 'ചേര്‍ക്കുക'; $labels['replacephoto'] = 'പകരം വയ്ക്കുക'; -$labels['uploadphoto'] = 'Upload photo'; -$labels['newcontact'] = 'Create new contact card'; -$labels['deletecontact'] = 'Delete selected contacts'; -$labels['composeto'] = 'Compose mail to'; -$labels['contactsfromto'] = 'Contacts $from to $to of $count'; $labels['print'] = 'അച്ചടി'; $labels['export'] = 'പുറത്തെടുക്കുക'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; $labels['grouprename'] = 'കുട്ടത്തിന്റെ പേര് മാറ്റുക'; $labels['groupdelete'] = 'കൂട്ടം മായ്ക്കുക'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'മുമ്പുളള താള്‍ കാണിയ്ക്കുക'; -$labels['firstpage'] = 'Show first page'; -$labels['nextpage'] = 'Show next page'; -$labels['lastpage'] = 'Show last page'; $labels['group'] = 'കൂട്ടം'; $labels['groups'] = 'കൂട്ടങ്ങള്‍'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'സ്വകാര്യ വിലാസങ്ങള്‍'; $labels['searchsave'] = 'തിരയല്‍ സൂക്ഷിക്കുക'; $labels['searchdelete'] = 'തിരയല്‍ നീക്കംചെയ്യുക'; $labels['import'] = 'പ്രോഗ്രമ്മിലേക്ക് എടുക്കുക'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'പൂര്‍ത്തീകരിച്ചു'; -$labels['settingsfor'] = 'Settings for'; $labels['about'] = 'വിവരം'; -$labels['preferences'] = 'Preferences'; $labels['userpreferences'] = 'ഉപയൊക്ത മുന്‍ഗണനകള്‍'; -$labels['editpreferences'] = 'Edit user preferences'; -$labels['identities'] = 'Identities'; -$labels['manageidentities'] = 'Manage identities for this account'; -$labels['newidentity'] = 'New identity'; -$labels['newitem'] = 'New item'; -$labels['edititem'] = 'Edit item'; $labels['preferhtml'] = 'HTML കാണിക്കുക'; -$labels['defaultcharset'] = 'Default Character Set'; -$labels['htmlmessage'] = 'HTML Message'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; -$labels['prettydate'] = 'Pretty dates'; -$labels['setdefault'] = 'Set default'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'ഭാഷ'; $labels['timezone'] = 'സമയ മേഖല'; $labels['pagesize'] = 'ഒരു താളിലെ വരികള്‍'; $labels['signature'] = 'ഒപ്പ്'; -$labels['dstactive'] = 'Daylight saving time'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'HTML സന്ദേശങ്ങള്‍ രചിക്കുക'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; -$labels['htmlsignature'] = 'HTML signature'; -$labels['showemail'] = 'Show email address with display name'; -$labels['previewpane'] = 'Show preview pane'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; $labels['serversettings'] = 'സേവകന്റെ ക്രമീകരണങ്ങള്‍'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; $labels['askuser'] = 'എന്നൊടു ചോദിക്കുക'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'അവഗണിക്കുക'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; $labels['always'] = 'എപ്പോഴും'; -$labels['showinlineimages'] = 'Display attached images below the message'; -$labels['autosavedraft'] = 'Automatically save draft'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'ഒരിക്കലുമില്ല'; $labels['immediately'] = 'ഉടനടി'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; $labels['2231folding'] = 'Full RFC 2231 (തണ്ടര്‍ബേട് )'; $labels['miscfolding'] = 'Full RFC 2231 ( മൈക്രൊസൊഫ്റ്റ് ഔട്ട്ലൂക്കു് )'; $labels['2047folding'] = 'Full RFC 2047 (മറ്റുള്ളവ)'; $labels['force7bit'] = '8-bit അക്ഷരങ്ങള്‍ക്കു "MIME encoding" ഉപയോഗിക്കുക'; $labels['advancedoptions'] = 'വിപുലീക്രിതമായ ക്രമീകരണങ്ങള്‍'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; $labels['defaultfont'] = 'HTML സന്ദേശത്തിന്റെ തനതായ ലിപി'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'വിഭാഗം'; -$labels['maintenance'] = 'Maintenance'; $labels['newmessage'] = 'പുതിയ സന്ദേശം'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; $labels['newmessageonly'] = 'പുതിയ സന്ദേശം മാത്രം'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; $labels['afternseconds'] = '$n നിമിഷങ്ങള്‍ കഴിഞ്ഞു്'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; $labels['spellcheckignorenums'] = 'അക്കങ്ങള്‍ ഉള്ള വാക്കുകളെ അവഗണിക്കുക'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; $labels['addtodict'] = 'നിഘണ്ടുവില്‍ ചേര്‍ക്കുക'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; -$labels['folder'] = 'Folder'; $labels['folders'] = 'ഫോള്‍ഡറുകള്‍'; -$labels['foldername'] = 'Folder name'; -$labels['subscribed'] = 'Subscribed'; -$labels['messagecount'] = 'Messages'; -$labels['create'] = 'Create'; -$labels['createfolder'] = 'Create new folder'; -$labels['managefolders'] = 'Manage folders'; -$labels['specialfolders'] = 'Special Folders'; $labels['properties'] = 'സവിശേഷതകള്‍'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; $labels['info'] = 'വിവരം'; $labels['getfoldersize'] = 'അറയുടെ വലുപ്പം അരിയാന്‍ ക്ലിക്ക് ചെയ്യുക'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; $labels['personalfolder'] = 'സ്വകാര്യ അറ'; -$labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'പൊതു - അറ'; -$labels['sortby'] = 'Sort by'; -$labels['sortasc'] = 'Sort ascending'; -$labels['sortdesc'] = 'Sort descending'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; $labels['support'] = 'സഹായം തേടുക'; -$labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; @@ -464,7 +259,6 @@ $labels['unicode'] = 'യൂണിക്കോഡ്'; $labels['english'] = 'ഇംഗ്ലീഷ്'; $labels['westerneuropean'] = 'പടിഞ്ഞാറന്‍ യൂറോപ്യന്‍'; $labels['easterneuropean'] = 'കിഴക്കന്‍ യൂറോപ്യന്‍'; -$labels['southeasterneuropean'] = 'South-Eastern European'; $labels['baltic'] = 'ബാള്‍ട്ടിക്ക്'; $labels['cyrillic'] = 'സിറില്ലിക്ക്'; $labels['arabic'] = 'അറബിക്ക്'; diff --git a/program/localization/ml_IN/messages.inc b/program/localization/ml_IN/messages.inc index a64c7b6ac..9abaeda99 100644 --- a/program/localization/ml_IN/messages.inc +++ b/program/localization/ml_IN/messages.inc @@ -15,160 +15,13 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; -$messages['loginfailed'] = 'Login failed.'; $messages['cookiesdisabled'] = 'തങ്കളുടെ ബ്രവു്സര്‍ കുക്കീസ് സ്വീകരിക്കുന്നതല്ല'; -$messages['sessionerror'] = 'Your session is invalid or expired.'; -$messages['storageerror'] = 'Connection to storage server failed.'; $messages['servererror'] = 'സര്‍വര്‍ പിഴവ് !'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; $messages['errornoperm'] = 'പ്രവര്‍ത്തനം തടസപ്പെട്ടു . അനുമതി നിഷേധിക്കപെട്ടിരിക്കുന്നു'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'അസാധുവായ അപേക്ഷ ! ഒരു രേഖയും സൂക്ഷിച്ചിട്ടില്ല'; -$messages['invalidhost'] = 'Invalid server name.'; -$messages['nomessagesfound'] = 'No messages found in this mailbox.'; -$messages['loggedout'] = 'You have successfully terminated the session. Good bye!'; -$messages['mailboxempty'] = 'Mailbox is empty.'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'തുറക്കുന്നു...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; -$messages['loadingdata'] = 'Loading data...'; $messages['checkingmail'] = 'പുതിയ സന്ദേസങ്ങള്‍കുവേണ്ടി തിരയുന്നു...'; $messages['sendingmessage'] = 'സന്ദേശം അയക്കുന്നു...'; -$messages['messagesent'] = 'Message sent successfully.'; -$messages['savingmessage'] = 'Saving message...'; -$messages['messagesaved'] = 'Message saved to Drafts.'; -$messages['successfullysaved'] = 'Successfully saved.'; -$messages['addedsuccessfully'] = 'Contact added successfully to address book.'; -$messages['contactexists'] = 'A contact with the same e-mail address already exists.'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; -$messages['blockedimages'] = 'To protect your privacy, remote images are blocked in this message.'; -$messages['encryptedmessage'] = 'This is an encrypted message and can not be displayed. Sorry!'; -$messages['nocontactsfound'] = 'No contacts found.'; -$messages['contactnotfound'] = 'The requested contact was not found.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'സന്ദേശം അയക്കാന്‍ സാധിച്ചില്ല.'; $messages['senttooquickly'] = 'സന്ദേശം അയക്കുന്നതിനു മുന്പു ദയവായ് $sec കാത്തിരിക്കൂ'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'An error occured while saving.'; -$messages['errormoving'] = 'Could not move the message(s).'; -$messages['errorcopying'] = 'Could not copy the message(s).'; -$messages['errordeleting'] = 'Could not delete the message(s).'; -$messages['errormarking'] = 'Could not mark the message(s).'; -$messages['deletecontactconfirm'] = 'Do you really want to delete selected contact(s)?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; -$messages['deletemessagesconfirm'] = 'Do you really want to delete selected message(s)?'; -$messages['deletefolderconfirm'] = 'Do you really want to delete this folder?'; -$messages['purgefolderconfirm'] = 'Do you really want to delete all messages in this folder?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; -$messages['formincomplete'] = 'The form was not completely filled out.'; -$messages['noemailwarning'] = 'Please enter a valid email address.'; -$messages['nonamewarning'] = 'Please enter a name.'; -$messages['nopagesizewarning'] = 'Please enter a page size.'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; -$messages['norecipientwarning'] = 'Please enter at least one recipient.'; -$messages['nosubjectwarning'] = 'The "Subject" field is empty. Would you like to enter one now?'; -$messages['nobodywarning'] = 'Send this message without text?'; -$messages['notsentwarning'] = 'Message has not been sent. Do you want to discard your message?'; -$messages['noldapserver'] = 'Please select an ldap server to search.'; -$messages['nosearchname'] = 'Please enter a contact name or email address.'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; -$messages['searchsuccessful'] = '$nr messages found.'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; -$messages['searchnomatch'] = 'Search returned no matches.'; -$messages['searching'] = 'Searching...'; -$messages['checking'] = 'Checking...'; -$messages['nospellerrors'] = 'No spelling errors found.'; -$messages['folderdeleted'] = 'Folder successfully deleted.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; -$messages['deletedsuccessfully'] = 'Successfully deleted.'; -$messages['converting'] = 'Removing formatting...'; -$messages['messageopenerror'] = 'Could not load message from server.'; -$messages['fileuploaderror'] = 'File upload failed.'; -$messages['filesizeerror'] = 'The uploaded file exceeds the maximum size of $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; -$messages['sourceisreadonly'] = 'This address source is read only.'; -$messages['errorsavingcontact'] = 'Could not save the contact address.'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/mr_IN/labels.inc b/program/localization/mr_IN/labels.inc index b9b963abf..9eb878782 100644 --- a/program/localization/mr_IN/labels.inc +++ b/program/localization/mr_IN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product वरती स्वागत आहे'; $labels['username'] = 'वापरकर्त्याचे नाव(तुमचे इमेल)'; $labels['password'] = 'परवलीचा शब्द'; @@ -31,15 +29,12 @@ $labels['drafts'] = 'मसुदा'; $labels['sent'] = 'पाठवलेले'; $labels['trash'] = 'कचरा पेटी'; $labels['junk'] = 'नको असलेले कचरा संदेश'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'विषय'; $labels['from'] = 'प्रेषक'; -$labels['sender'] = 'Sender'; $labels['to'] = 'प्रती'; $labels['cc'] = 'प्रत'; $labels['bcc'] = 'गुप्त प्रत'; $labels['replyto'] = 'यास उत्तर द्या'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'दिनांक'; $labels['size'] = 'आकार'; $labels['priority'] = 'प्राधान्य'; @@ -50,14 +45,10 @@ $labels['mailboxlist'] = 'फोल्डर्स'; $labels['messagesfromto'] = 'संदेश $from कडून $to साठी $count वा'; $labels['threadsfromto'] = 'धागे $from कडून $to साठी $count वा'; $labels['messagenrof'] = 'Message $nr of $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'नक्‍कल'; $labels['move'] = 'हलवा'; $labels['moveto'] = 'या फोल्डरमधे ठेवा'; $labels['download'] = 'उतरवून घ्या'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'फाईलचे नाव'; $labels['filesize'] = 'फाईलचा आकार'; $labels['addtoaddressbook'] = 'पत्ता नोंदवहीत नोंदवा'; @@ -108,10 +99,6 @@ $labels['reply'] = 'उत्तर दया'; $labels['replytomessage'] = 'पाठवणार्‍याला उत्तर द्या'; $labels['replytoallmessage'] = 'पाठवणार्‍याला आणि प्रत केलेल्या सर्वांना संदेश पाठवा'; $labels['replyall'] = 'सर्वांना उत्तर दया'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'हा संदेश पुढे पाठवा'; $labels['deletemessage'] = 'संदेश काढून टाका'; $labels['movemessagetotrash'] = 'संदेश कचरापेटीत टाका'; @@ -139,9 +126,7 @@ $labels['currpage'] = 'सध्‍याचे पान'; $labels['unread'] = 'न वाचलेले'; $labels['flagged'] = 'खूण लावलेले'; $labels['unanswered'] = 'उत्तर न दिलेले'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'काढून टाकलेला(ले)'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'उलट करा'; $labels['filter'] = 'गाळणी'; $labels['list'] = 'यादी'; @@ -168,7 +153,6 @@ $labels['listmode'] = 'यादी दर्शक पध्‍दत'; $labels['folderactions'] = 'फोल्डर कृती..'; $labels['compact'] = 'छोटा'; $labels['empty'] = 'रिकामा'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'डिस्कचा वापर'; $labels['unknown'] = 'माहित नसलेला'; $labels['unlimited'] = 'अमर्याद'; @@ -176,14 +160,9 @@ $labels['quicksearch'] = 'चटकन शोध'; $labels['resetsearch'] = 'परत शोध'; $labels['searchmod'] = 'बदलकर्त्‍यांना शोधा'; $labels['msgtext'] = 'संपूर्ण संदेश'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'नवीन खिडकी उघडा'; $labels['emlsave'] = 'इएमएल स्‍वरूपात उतरवून घ्या'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'नवीन आहे असा संपादित करा'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'आत्ता पाठवा'; $labels['savemessage'] = 'हा मसूदा साठवून ठेवा'; $labels['addattachment'] = 'फाईल सोबत जोडा'; @@ -201,7 +180,6 @@ $labels['revertto'] = 'परत जा'; $labels['attach'] = 'जोडा'; $labels['attachments'] = 'जोडलेल्या'; $labels['upload'] = 'चढवा'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बंद'; $labels['messageoptions'] = 'संदेश पर्याय..'; $labels['low'] = 'कमी'; @@ -213,9 +191,6 @@ $labels['nosubject'] = '(विषय नाही)'; $labels['showimages'] = 'चित्र दाखवा'; $labels['alwaysshow'] = '$sender कडून आलेल्या संदेशातील चित्रे नेहमी दाखवा'; $labels['isdraft'] = 'हा मसुदा संदेश आहे'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'एच टी एम एल'; $labels['plaintoggle'] = 'साधे लिखाण'; $labels['savesentmessagein'] = 'पाठवलेला संदेश या फोल्डरमधे ठेवा'; @@ -224,7 +199,6 @@ $labels['maxuploadsize'] = 'जास्‍तीत जास्‍त फा $labels['addcc'] = 'प्रत करा'; $labels['addbcc'] = 'गुप्त प्रत करा'; $labels['addreplyto'] = 'आणखी लोकांना संदेश पाठवा'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'हा संदेश पाठवणार्‍याने हा संदेश तुम्ही वाचल्यावर कळवावयाला सांगितले आहे. तुम्हाला असे कळवणे चालेल ना?'; $labels['receiptread'] = 'पोच पावती (संदेश वाचला)'; $labels['yourmessage'] = 'ही तुमच्या संदेशाची पोच पावती आहे.'; @@ -233,32 +207,24 @@ $labels['name'] = 'टोपणनाव'; $labels['firstname'] = 'नाव'; $labels['surname'] = 'आडनाव'; $labels['middlename'] = 'मधले नाव'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; $labels['nickname'] = 'टोपणनाव'; $labels['jobtitle'] = 'कामाचे शिर्षक'; $labels['department'] = 'विभाग'; $labels['gender'] = 'लिंग'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'इ-मेल्'; $labels['phone'] = 'दूरध्वनी'; $labels['address'] = 'पत्ता'; $labels['street'] = 'रस्ता'; $labels['locality'] = 'शहर'; -$labels['zipcode'] = 'ZIP Code'; $labels['region'] = 'राज्य / संस्थान'; $labels['country'] = 'देश'; $labels['birthday'] = 'वाढदिवस'; -$labels['anniversary'] = 'Anniversary'; $labels['website'] = 'संकेतस्थळ'; -$labels['instantmessenger'] = 'IM'; $labels['notes'] = 'टिपा'; $labels['male'] = 'पुरूष'; $labels['female'] = 'स्त्री'; $labels['manager'] = 'व्यवस्थापक'; $labels['assistant'] = 'सहाय्यक'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; $labels['search'] = 'शोध'; $labels['advsearch'] = 'प्रगत शोध'; $labels['advanced'] = 'आधुनिक'; @@ -268,20 +234,12 @@ $labels['typework'] = 'काम'; $labels['typeother'] = 'इतर'; $labels['typemobile'] = 'भ्रमणध्वनी'; $labels['typemain'] = 'मुख्य'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; $labels['typevideo'] = 'चलचित्र'; $labels['typeassistant'] = 'सहाय्यक'; $labels['typehomepage'] = 'मुख्य पृष्ठ'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नवीन पत्ता नोंदवहीत ठेवा'; $labels['editcontact'] = 'नोंदवहीतील पत्ता सुधारा'; $labels['contacts'] = 'संपर्क'; -$labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'वैयक्तिक माहिती'; $labels['edit'] = 'संदेश तयार करा'; $labels['cancel'] = 'रद्द करा'; @@ -290,36 +248,28 @@ $labels['delete'] = 'काढून टाका'; $labels['rename'] = 'दूसरे नाव द्या'; $labels['addphoto'] = 'समावेश करा'; $labels['replacephoto'] = 'बदला'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'नोंदवहीत नवीन संपर्क लिहिण्यासाठी'; $labels['deletecontact'] = 'खूण केलेले सर्व संपर्काचे पत्ते काढून टाका'; $labels['composeto'] = 'साठी नवीन संदेश तयार करा'; $labels['contactsfromto'] = '$from पासून ते $to पर्यंत $count पैकी'; $labels['print'] = 'छापा'; $labels['export'] = 'निर्यात करा'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'व्ही कार्ड स्वरुपात पत्ते निर्यात करा'; $labels['newcontactgroup'] = 'नवीन पत्‍त्‍यांचा गट बनवा'; -$labels['grouprename'] = 'Rename group'; $labels['groupdelete'] = 'गट नष्ट करा'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'आधिचा संच दाखवा'; $labels['firstpage'] = 'पहिला संच दाखवा'; $labels['nextpage'] = 'नंतरचा संच दाखवा'; $labels['lastpage'] = 'शेवटचा संच दाखवा'; $labels['group'] = 'गट'; $labels['groups'] = 'अनेक गट'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'वैयक्तिक पत्ते'; $labels['searchsave'] = 'शोध जतन करा'; $labels['searchdelete'] = 'शोध नष्ट करा'; $labels['import'] = 'आयात करा'; $labels['importcontacts'] = 'पत्ते आयात करा'; $labels['importfromfile'] = 'या फाईल मधून आयात करा'; -$labels['importtarget'] = 'नवीन पत्ता नोंदवहीत नोंदवा'; $labels['importreplace'] = 'संपूर्ण पत्ता नोंदवही बदला'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'झाले'; $labels['settingsfor'] = 'साठी सेटिंग्ज'; $labels['about'] = 'च्या विषयी'; @@ -334,10 +284,6 @@ $labels['edititem'] = 'प्रकार सुधारा'; $labels['preferhtml'] = 'एच टी एम एल दाखवा'; $labels['defaultcharset'] = 'नेहमीचा अक्षर संच'; $labels['htmlmessage'] = 'एच टी एम एल संदेश'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'विशेष दिवस'; $labels['setdefault'] = 'हा नेहमीसाठी वापरा'; $labels['autodetect'] = 'स्वयंचलित'; @@ -346,13 +292,8 @@ $labels['timezone'] = 'वेळ क्षेत्र'; $labels['pagesize'] = 'प्रत्येक पानावरील ओळी'; $labels['signature'] = 'सही'; $labels['dstactive'] = 'दिवसाची वेळ'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'एच टी एम एल संदेश तयारा करा'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'एच टी एम एल सही'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'प्रक्रियापूर्व तावदान दाखवा'; $labels['skin'] = 'दृष्य गोष्टी'; $labels['logoutclear'] = 'खात्यातून बाहेर पडतांना कचरा पेटी साफ करा'; @@ -363,21 +304,17 @@ $labels['mailboxview'] = 'टपालपेटी पहाणे'; $labels['mdnrequests'] = 'पाठवणार्‍याच्या सूचना'; $labels['askuser'] = 'वापरकर्त्याला विचारा'; $labels['autosend'] = 'स्वयंचलित (आपोआप पाठवणे)'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'दुर्लक्ष करा'; $labels['readwhendeleted'] = 'काढून टाकल्यावर संदेश वाचला असे दाखवा'; $labels['flagfordeletion'] = 'संदेश काढून टाकण्या ऎवजी संदेश काढून टाकण्यासाठी आहे अशी खूण करा'; $labels['skipdeleted'] = 'काढून टाकलेले संदेश दाखवू नका'; $labels['deletealways'] = 'जर संदेश कचरापेटीत गेले नाहीत तर काढून टाका'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'संदेशातील चित्रे दाखवा'; $labels['fromknownsenders'] = 'माहितीतील पाठवणार्‍याकडून संदेश'; $labels['always'] = 'नेहमी'; $labels['showinlineimages'] = 'सोबत जोडलेली चित्रे संदेशाच्या खाली दाखवा'; $labels['autosavedraft'] = 'मसूदा आपोआप जतन करा'; $labels['everynminutes'] = 'प्रत्येक $n मिनिटांनी'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'कधीच नाही'; $labels['immediately'] = 'ताबडतोब'; $labels['messagesdisplaying'] = 'संदेश दाखवा'; @@ -391,15 +328,12 @@ $labels['advancedoptions'] = 'अधिक पर्याय'; $labels['focusonnewmessage'] = 'ब्राऊझर खिडकी नवीन संदेशावर केंद्रित करा'; $labels['checkallfolders'] = 'सर्व फोल्डरमधे नवीन संदेश शोधा'; $labels['displaynext'] = 'संदेश काढल्‍यानंतर किंवा हलवल्‍यानंतर पुढचा संदेश दाखवा'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'मुख्‍य पर्याय'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'भाग'; $labels['maintenance'] = 'देखभाल'; $labels['newmessage'] = 'नवीन संदेश'; $labels['signatureoptions'] = 'सही पर्याय'; $labels['whenreplying'] = 'उत्‍तर देताना'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'नवीन संदेश मुळ संदेशाच्‍या वर चालू करा'; $labels['replybottomposting'] = 'नवीन संदेश मुळ संदेशाच्‍या खाली चालू करा'; $labels['replyremovesignature'] = 'उत्‍तर देताना मुळ सही संदेशातून काढून टाका'; @@ -411,21 +345,6 @@ $labels['previewpanemarkread'] = 'प्रदर्शित संदेश $labels['afternseconds'] = '$n क्षणानंतर'; $labels['reqmdn'] = 'नेहमी पोचपावतीची विनंती करा'; $labels['reqdsn'] = 'नेहमी पोचपावती स्थिती निर्देशाची विनंती करा'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'फोल्डर'; $labels['folders'] = 'फोल्डर्स'; $labels['foldername'] = 'फोल्डरचे नाव'; @@ -435,27 +354,9 @@ $labels['create'] = 'तयार करा'; $labels['createfolder'] = 'नवीन फोल्डर तयार करा'; $labels['managefolders'] = 'फोल्डर्सचे नियोजन करा'; $labels['specialfolders'] = 'विषेश फोल्डर'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'ने वर्गवारी करा'; $labels['sortasc'] = 'चढत्या क्रमाने'; $labels['sortdesc'] = 'उतरत्या क्रमाने'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'बाइट'; $labels['KB'] = 'केबी'; $labels['MB'] = 'एमबी'; diff --git a/program/localization/mr_IN/messages.inc b/program/localization/mr_IN/messages.inc index 748898b75..36eb8dc04 100644 --- a/program/localization/mr_IN/messages.inc +++ b/program/localization/mr_IN/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'काहीतरी चूक झाली'; $messages['loginfailed'] = 'प्रवेश करता आला नाही'; $messages['cookiesdisabled'] = 'तुमचा ब्राऊझर कुकीज घेऊ शकत नाही'; @@ -24,20 +23,14 @@ $messages['storageerror'] = 'आयमॅप सर्व्हरशी सं $messages['servererror'] = 'सर्व्‍हर चूक !'; $messages['servererrormsg'] = 'सर्व्हर चूक : $msg'; $messages['dberror'] = 'माहितीसाठा चूक !'; -$messages['requesttimedout'] = 'Request timed out'; $messages['errorreadonly'] = 'कृती करण्यास असमर्थ, फोल्डर फक्त बघण्यासाठी'; $messages['errornoperm'] = 'कृती करण्यास असमर्थ, परवानगी अमान्य'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'अवैध विनंती! माहिती साठवलेली नाही.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'या खात्यामधे कोणताही संदेश आलेला नाही'; $messages['loggedout'] = 'तुम्ही यशस्वीरित्या खाते बंद केले आहे . राम राम !'; $messages['mailboxempty'] = 'खात्यात कोणताही संदेश नाही'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'संदेश आणत आहे'; $messages['uploading'] = 'फाईल चढवली जात आहे...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'माहिती आणत आहे'; $messages['checkingmail'] = 'नवीन संदेश आले आहेत का हे पहात आहे'; $messages['sendingmessage'] = 'संदेश पाठवत आहे'; @@ -52,11 +45,8 @@ $messages['blockedimages'] = 'तुमची गोपनीयता पाळ $messages['encryptedmessage'] = 'हा गुप्त व सांकेतिक संदेश आहे. तो तुम्हाला असा दाखवता येणार नाही.'; $messages['nocontactsfound'] = 'कोणताच पत्ता नोंदवहीत नाही.'; $messages['contactnotfound'] = 'या नावाचा कोणताच पत्ता नोंदवहीत नाही.'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'संदेश पाठवता आला नाही.'; $messages['senttooquickly'] = 'कृपया हा संदेश पाठवण्यापूर्वी $sec थांबा'; -$messages['errorsavingsent'] = 'पाठवलेला संदेश ठेवून देतांना काहीतरी चूक झाली.'; -$messages['errorsaving'] = 'संदेश ठेवून देतांना काहीतरी चूक झाली.'; $messages['errormoving'] = 'संदेश तेथे ठेवता आला नाही.'; $messages['errorcopying'] = 'संदेशांची नक्‍कल करता आली नाही'; $messages['errordeleting'] = 'संदेश काढून टाकता आला नाही.'; @@ -66,12 +56,8 @@ $messages['deletegroupconfirm'] = 'निवडलेला गट तुम् $messages['deletemessagesconfirm'] = 'खूण केलेले सर्व संदेश खरोखरच तुम्हाला काढून टाकायचे आहेत का?'; $messages['deletefolderconfirm'] = 'हा फोल्डर खरोखरच तुम्हाला काढून टाकायचा आहेत का?'; $messages['purgefolderconfirm'] = 'या फोल्डरमधिल सर्व संदेश खरोखरच तुम्हाला काढून टाकायचे आहेत का?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'फोल्डर काढून टाकत आहे'; $messages['foldermoving'] = 'फोल्डर हलवत आहे.'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'फॉर्म पूर्णपणे भरलेला नाही.'; $messages['noemailwarning'] = 'योग्य, बरोबर, आणि वैध इमेल पत्ता द्या.'; $messages['nonamewarning'] = 'नाव द्या'; @@ -85,14 +71,11 @@ $messages['noldapserver'] = 'शोधण्यासाठी ldap सर्व $messages['nosearchname'] = 'कृपया ज्यांना तुम्हाला संदेश पाठवावयाचा आहे त्यांचे नाव किंवा इमेल पत्ता द्या.'; $messages['notuploadedwarning'] = 'सर्व फाईल अजून चढवल्‍या गेलेल्‍या नाहीत. कृपया वाट पहा किंवा मागे फिरा'; $messages['searchsuccessful'] = '$nr संदेष मिळाले.'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'शोध घेतल्यानंतर एकही संदेश मिळाला नाही'; $messages['searching'] = 'शोधत आहे......'; $messages['checking'] = 'तपासत आहे.....'; $messages['nospellerrors'] = 'शुध्दलेखनाची चूक सापडली नाही'; $messages['folderdeleted'] = 'फोल्डर यशस्वी रित्या काढून टाकण्यात आला आहे.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; $messages['folderpurged'] = 'फोल्डर यशस्वीरीत्या रिकामा केला'; $messages['folderexpunged'] = 'फोल्डर यशस्वीरीत्या संक्षिप्त केला'; $messages['deletedsuccessfully'] = 'यशस्वी रित्या काढून टाकण्यात आला आहे.'; @@ -100,20 +83,10 @@ $messages['converting'] = 'दृष्य स्वरुप काढून $messages['messageopenerror'] = 'सर्व्हरवरुन संदेश आणता आला नाही.'; $messages['fileuploaderror'] = 'फाईल चढवता आली नाही'; $messages['filesizeerror'] = 'तुम्ही चढवलेली फाईल क्षमतेपेक्षा जास्त मोठी आहे.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'पत्ता फक्त वाचण्यासाठी आहे.'; $messages['errorsavingcontact'] = 'पत्ता नोंदवहीत ठेवता आला नाही.'; $messages['movingmessage'] = 'संदेश हलवत आहे..'; $messages['copyingmessage'] = 'संदेशाची नक्‍कल करत आहे...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'पोचपावती यशस्वीरित्या पाठवण्यात आली आहे.'; $messages['errorsendingreceipt'] = 'पोचपावती पाठवता आली नाही.'; $messages['deleteidentityconfirm'] = 'तुम्हाला ही ओळख नक्की नष्ट करायची आहे का?'; @@ -123,13 +96,8 @@ $messages['selectimportfile'] = 'चढवण्यासाठी फाईल $messages['addresswriterror'] = 'निवडलेल्या पत्ता नोंदवहीत नोंद करता येत नाही.'; $messages['contactaddedtogroup'] = 'पत्‍ते यशस्‍वीरित्‍या हया गटात वाढवण्‍यात आले.'; $messages['contactremovedfromgroup'] = 'पत्‍ते यशस्‍वीरित्‍या हया गटातून काढून टाकले.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'आयात करत आहे, कृपया वाट पहा.....'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = '$inserted पत्ते यशस्वीरित्या आयात केल, $skipped आधिच असलेल्या नोंदी केल्या नाहीत:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'ही क्रिया करण्यास परवानगी नाही.'; $messages['nofromaddress'] = 'निवडलेल्या खात्यात इमेल पत्ता दिलेला नाही.'; $messages['editorwarning'] = 'टेक्स्ट संपादन निवडल्यास संदेशाचे दृष्य स्वरुप बदलून जाईल. तुम्हाला असेच करायचे आहे ना?'; @@ -143,32 +111,4 @@ $messages['smtperror'] = 'SMTP चूक : $msg'; $messages['emailformaterror'] = 'अवैध ईमेल पत्‍ता : $email'; $messages['toomanyrecipients'] = 'खूप जास्‍त प्राप्‍तकर्ते. प्राप्‍तकर्त्‍यांची संख्‍या $max पर्यंत कमी करा'; $messages['maxgroupmembersreached'] = 'गट सभासद संख्‍या $max पेक्षा जास्‍त झाली आहे'; -$messages['internalerror'] = 'अंतर्गत चूक झाली. कृपया परत प्रयत्‍न करा.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/ms_MY/labels.inc b/program/localization/ms_MY/labels.inc index b39a3bf7c..13d9d89fc 100644 --- a/program/localization/ms_MY/labels.inc +++ b/program/localization/ms_MY/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Selamat datang ke $product'; $labels['username'] = 'Nama Pengguna'; $labels['password'] = 'Katalaluan'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'Draf'; $labels['sent'] = 'Hantar'; $labels['trash'] = 'Tong Sampah'; $labels['junk'] = 'Junk'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Subjek'; $labels['from'] = 'Daripada'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Kepada'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; @@ -55,9 +51,6 @@ $labels['copy'] = 'Salin'; $labels['move'] = 'Alih'; $labels['moveto'] = 'Alih ke...'; $labels['download'] = 'Muat Turun'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Nama Fail'; $labels['filesize'] = 'Saiz Fail'; $labels['addtoaddressbook'] = 'Tambah ke buku alamat'; @@ -139,9 +132,7 @@ $labels['currpage'] = 'Muka terkini'; $labels['unread'] = 'Belum dibaca'; $labels['flagged'] = 'Ditanda'; $labels['unanswered'] = 'Belum dijawab'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Telah dipadam'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Songsangkan'; $labels['filter'] = 'Tapis'; $labels['list'] = 'Senarai'; @@ -168,7 +159,6 @@ $labels['listmode'] = 'Mod senarai paparan'; $labels['folderactions'] = 'Aksi folder'; $labels['compact'] = 'Kompak'; $labels['empty'] = 'Kosong'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Penggunaan cakera'; $labels['unknown'] = 'tidak diketahui'; $labels['unlimited'] = 'Tidak terhad'; @@ -176,14 +166,9 @@ $labels['quicksearch'] = 'Carian pantas'; $labels['resetsearch'] = 'Set semula carian'; $labels['searchmod'] = 'Pengubah carian'; $labels['msgtext'] = 'Keseluruhan mesej'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Buka dalam tetingkap baru'; $labels['emlsave'] = 'Muat-turun (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Ubah seperti baharu'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Hantar mesej'; $labels['savemessage'] = 'Simapan sebagai draf'; $labels['addattachment'] = 'Lampir fail'; @@ -213,9 +198,6 @@ $labels['nosubject'] = '(tiada subjek)'; $labels['showimages'] = 'Papar imej'; $labels['alwaysshow'] = 'selalu paparkan imej dari $sender'; $labels['isdraft'] = 'Ini adalah draf mesej'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Teks kosong'; $labels['savesentmessagein'] = 'Simpan mesej yang telah dihantar dalam'; @@ -232,97 +214,26 @@ $labels['receiptnote'] = 'Perhatian: Resip ini hanya untuk memberitahu yang mese $labels['name'] = 'Nama paparan'; $labels['firstname'] = 'Nama pertama'; $labels['surname'] = 'Nama akhir'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'E-Mel'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Tambah kontek baru'; $labels['editcontact'] = 'Ubahsuai Kontek'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Sunting'; $labels['cancel'] = 'Batal'; $labels['save'] = 'Simpan'; $labels['delete'] = 'Padam'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Cipta kad kontek baru'; $labels['deletecontact'] = 'Hapus kontek yang dipilih'; $labels['composeto'] = 'Karang mel kepada'; $labels['contactsfromto'] = 'Kontek $from ke $to dari $count'; $labels['print'] = 'Cetak'; $labels['export'] = 'Eksport'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Papar set sebelumnya'; $labels['firstpage'] = 'Papar set pertama'; $labels['nextpage'] = 'Papar set seterusnya'; $labels['lastpage'] = 'Papar set akhir'; -$labels['group'] = 'Group'; $labels['groups'] = 'Kumpulan'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Alamat-alamat Peribadi'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Tetapan bagi'; -$labels['about'] = 'About'; $labels['preferences'] = 'Keutamaan'; $labels['userpreferences'] = 'Keutamaan pengguna'; $labels['editpreferences'] = 'Sunting keutamaan pengguna'; @@ -332,29 +243,17 @@ $labels['newidentity'] = 'Identiti baru'; $labels['newitem'] = 'Butiran baru'; $labels['edititem'] = 'Ubahsuai butiran'; $labels['preferhtml'] = 'Papar HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Mesej HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Tarikh-tarikh cantik'; $labels['setdefault'] = 'Tetap asal'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Bahasa'; $labels['timezone'] = 'Zon Masa'; $labels['pagesize'] = 'Baris setiap muka'; $labels['signature'] = 'Tandatangan'; $labels['dstactive'] = 'Simpanan siang hari'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Karang mesej HTML'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Tandatangan HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Pamer ruang previu'; -$labels['skin'] = 'Interface skin'; $labels['logoutclear'] = 'Kosongkan Tong sampah ketika keluar'; $labels['logoutcompact'] = 'Padatkan Inbox ketika keluar'; $labels['uisettings'] = 'Antaramuka Pengguna'; @@ -363,69 +262,11 @@ $labels['mailboxview'] = 'Pandangan kotak Mel'; $labels['mdnrequests'] = 'Pemberitahuan Pengirim'; $labels['askuser'] = 'Tanya pengguna'; $labels['autosend'] = 'Hantar automatik'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'Biarkan'; $labels['readwhendeleted'] = 'Tanda mesej sebagai dibaca ketika hapus'; $labels['flagfordeletion'] = 'Tanda mesej untuk pembuangan (tidak delete terus)'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'Simpan draf dengan automatik'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'tidak pernah'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Kabinet Fail'; $labels['folders'] = 'Folder'; $labels['foldername'] = 'Nama Kabinet Fail'; @@ -434,48 +275,7 @@ $labels['messagecount'] = 'Mesej-mesej'; $labels['create'] = 'Cipta'; $labels['createfolder'] = 'Cipta kabinet fail baru'; $labels['managefolders'] = 'Urus kabinet fail'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Susun dengan'; $labels['sortasc'] = 'Susun menaik'; $labels['sortdesc'] = 'Susun menurun'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ms_MY/messages.inc b/program/localization/ms_MY/messages.inc index 8728512b1..c2140e216 100644 --- a/program/localization/ms_MY/messages.inc +++ b/program/localization/ms_MY/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Log masuk gagal'; $messages['cookiesdisabled'] = 'Pelayar anda tidak menerima cookies'; $messages['sessionerror'] = 'Sesi anda tidak sah atau telah tamat'; $messages['storageerror'] = 'Sambungan ke pelayan IMAP gagal'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Tiada mesej dijumpai dalam kotak mel ini'; $messages['loggedout'] = 'Sesi anda telah tamat. Selamat tinggal!'; $messages['mailboxempty'] = 'Kotak mail kosong'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Memuat...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Memuat data...'; $messages['checkingmail'] = 'Menyemak mesej baru...'; $messages['sendingmessage'] = 'Menghantar mesej...'; @@ -47,128 +32,42 @@ $messages['messagesaved'] = 'Mesej disimpan dalam Draf'; $messages['successfullysaved'] = 'Berjaya disimpan'; $messages['addedsuccessfully'] = 'Kontek berjaya disimpan ke dalam buku alamat'; $messages['contactexists'] = 'Kontek dengan alamat emel ini sudah wujud'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Untuk melindungi kebesasan peribadi anda, imej jauh dihalang dalam mesej ini.'; $messages['encryptedmessage'] = 'Ini adalah mesej yang di\'encrypted\' dan tidak boleh dipamerkan. Maaf!'; $messages['nocontactsfound'] = 'Tiada kontek dijumpai'; $messages['contactnotfound'] = 'Kontek yang diminta tidak dijumpai'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Gagal menghantar mesej'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Terdapat ralat ketika menyimpan'; $messages['errormoving'] = 'Tidak boleh pindah mesej'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Tidak boleh hapus mesej'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Adakah anda ingin hapuskan kontek yang dipilih?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Adakah anda ingin hapuskan mesej yang dipilih?'; $messages['deletefolderconfirm'] = 'Adakah anda ingin hapuskan kabinet fail ini?'; $messages['purgefolderconfirm'] = 'Adakah anda ingin hapuskan semua mesej dalam kabinet fail ini?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Borang tidak diisi dengan lengkap'; $messages['noemailwarning'] = 'Sila masukkan alamat emel yang sah'; $messages['nonamewarning'] = 'Sila masukkan nama'; $messages['nopagesizewarning'] = 'Sila masukkan saiz halaman'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Sila masukkan sekurang-kurangnya satu penerima'; $messages['nosubjectwarning'] = 'Ruang "Subjek" kosong. Adakah anda ingin masukkannya sekarang?'; $messages['nobodywarning'] = 'Hantar mesej ini tanpa teks?'; $messages['notsentwarning'] = 'Mesej tidak dihantar. Adakah anda ingin menyingkir mesej anda?'; $messages['noldapserver'] = 'Sila pilih satu pelayan ldap untuk carian'; $messages['nosearchname'] = 'Sila masukkan nama kontek atau alamat emel'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr mesej dijumpai'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Carian tiada padanan'; $messages['searching'] = 'Menggelintar...'; $messages['checking'] = 'Menyemak...'; $messages['nospellerrors'] = 'Tiada kesalah ejaan dijumpai'; $messages['folderdeleted'] = 'Kabinet fail berjaya dihapuskan'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'Berjaya dihapuskan'; $messages['converting'] = 'Singkir format dari mesej...'; $messages['messageopenerror'] = 'Tidak boleh muat mesej dari server'; $messages['fileuploaderror'] = 'Muatnaik fail gagal'; $messages['filesizeerror'] = 'Fail yang dimuatnaik melampaui saiz maksima $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Sumber alamat ini adalah untuk bacaan sahaja'; $messages['errorsavingcontact'] = 'Tidak boleh simmpan alamat kontek'; $messages['movingmessage'] = 'Memindah mesej...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'Berjaya menghantar resip bacaan'; $messages['errorsendingreceipt'] = 'Tidak dapat menghantar resip'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'Anda tidak boleh membuang identiti ini, ia milik anda yang terakhir.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/nb_NO/labels.inc b/program/localization/nb_NO/labels.inc index f9ccfab89..20bbd1383 100644 --- a/program/localization/nb_NO/labels.inc +++ b/program/localization/nb_NO/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Velkommen til $product'; $labels['username'] = 'Brukernavn'; $labels['password'] = 'Passord'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Kladd'; $labels['sent'] = 'Sendt'; $labels['trash'] = 'Slettet'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Emne'; $labels['from'] = 'Avsender'; $labels['sender'] = 'Avsender'; @@ -168,7 +165,6 @@ $labels['listmode'] = 'Listevisningsmodus'; $labels['folderactions'] = 'Mappehandlinger...'; $labels['compact'] = 'Rydd opp'; $labels['empty'] = 'Tøm'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Plassforbruk'; $labels['unknown'] = 'ukjent'; $labels['unlimited'] = 'ubegrenset'; @@ -177,7 +173,6 @@ $labels['resetsearch'] = 'Nullstill søk'; $labels['searchmod'] = 'Søke felt'; $labels['msgtext'] = 'Hele meldingen'; $labels['body'] = 'Meldingstekst'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Åpne i nytt vindu'; $labels['emlsave'] = 'Last ned (.eml)'; $labels['changeformattext'] = 'Vis i ren tekst'; @@ -310,14 +305,12 @@ $labels['nextpage'] = 'Vis neste sett'; $labels['lastpage'] = 'Vis siste sett'; $labels['group'] = 'Gruppe'; $labels['groups'] = 'Grupper'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Egne adresser'; $labels['searchsave'] = 'Lagre søk'; $labels['searchdelete'] = 'Slett søk'; $labels['import'] = 'Importer'; $labels['importcontacts'] = 'Importer kontakter'; $labels['importfromfile'] = 'Importer fra fil:'; -$labels['importtarget'] = 'Legg til kontakter i adresseboka:'; $labels['importreplace'] = 'Erstatt hele adresseboken'; $labels['importdesc'] = 'Du kan laste opp kontakter fra en eksisterende adressebok.
Vi støtter adressebøker i vCard eller CSV (kommaseparert) .'; $labels['done'] = 'Fullført'; @@ -422,7 +415,6 @@ $labels['spellcheckignorenums'] = 'Ignorer ord med tall'; $labels['spellcheckignorecaps'] = 'Ignorer ord med kun store bokstaver'; $labels['addtodict'] = 'Legg til i ordbok'; $labels['mailtoprotohandler'] = 'Registrer protokollhåndtering for mailto-lenker'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Meldinger videresendes'; $labels['inline'] = 'i teksten'; $labels['asattachment'] = 'som vedlegg'; diff --git a/program/localization/nb_NO/messages.inc b/program/localization/nb_NO/messages.inc index 23ee932d3..1d51017fb 100644 --- a/program/localization/nb_NO/messages.inc +++ b/program/localization/nb_NO/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Det oppsto en feil!'; $messages['loginfailed'] = 'Pålogging mislyktes'; $messages['cookiesdisabled'] = 'Nettleseren din tillater ikke informasjonskapsler (cookies)'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Den ønskede kontakten ble ikke funnet'; $messages['contactsearchonly'] = 'Skriv inn noen søkeord for å finne kontakter.'; $messages['sendingfailed'] = 'Kunne ikke sende e-posten'; $messages['senttooquickly'] = 'Vennligst vent $sec sekund(er) før du sender denne meldingen'; -$messages['errorsavingsent'] = 'En feil oppsto under lagring av sendt melding'; -$messages['errorsaving'] = 'Det oppstod en feil ved lagring av data'; $messages['errormoving'] = 'Kunne ikke flytte meldingen(e)'; $messages['errorcopying'] = 'Kunne ikke kopiere meldingen(e)'; $messages['errordeleting'] = 'Kunne ikke slette meldingen(e)'; @@ -100,16 +97,11 @@ $messages['converting'] = 'Fjerner formatering fra meldingen ...'; $messages['messageopenerror'] = 'Kunne ikke hente meldingen fra server'; $messages['fileuploaderror'] = 'Feil under opplastning.'; $messages['filesizeerror'] = 'Filen overstiger maksimum tillatt filstørrelse ($size)'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Denne adressekilden er skrivebeskyttet'; $messages['errorsavingcontact'] = 'Kunne ikke lagre kontaktadressen.'; $messages['movingmessage'] = 'Flytter e-post ...'; $messages['copyingmessage'] = 'Kopierer e-post...'; $messages['copyingcontact'] = 'Kopierer kontakt(er) …'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Sletter melding(er) …'; $messages['markingmessage'] = 'Markerer melding(er) ...'; $messages['addingmember'] = 'Legger til kontakt(er) i gruppa ...'; @@ -143,7 +135,6 @@ $messages['smtperror'] = 'SMTP-feil ($code): $msg'; $messages['emailformaterror'] = 'Ukorrekt e-postadresse: $email'; $messages['toomanyrecipients'] = 'For mange mottakere. Reduser antall mottakere til $max.'; $messages['maxgroupmembersreached'] = 'Antall gruppemedlemmer overskrider maksgrensen på $max'; -$messages['internalerror'] = 'Intern feil, prøv igjen senere.'; $messages['contactdelerror'] = 'Kunne ikke slette kontakt(er)'; $messages['contactdeleted'] = 'Kontakt(er) slettet uten feil.'; $messages['contactrestoreerror'] = 'Kunne ikke gjenopprette kontakt(er).'; diff --git a/program/localization/ne_NP/labels.inc b/program/localization/ne_NP/labels.inc index 826571d4f..97f30201b 100644 --- a/program/localization/ne_NP/labels.inc +++ b/program/localization/ne_NP/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product मा स्वागत छ'; $labels['username'] = 'प्रयोगकर्ताको नाम'; $labels['password'] = 'प्रवेश शब्द'; @@ -31,10 +29,8 @@ $labels['drafts'] = 'ड्राफ्टहरू'; $labels['sent'] = 'पठईएका मेलहरु'; $labels['trash'] = 'रद्दी टोकरी'; $labels['junk'] = 'स्पाम'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'विषय'; $labels['from'] = 'प्रेषक'; -$labels['sender'] = 'Sender'; $labels['to'] = 'प्रापक'; $labels['cc'] = 'बोधार्थ'; $labels['bcc'] = 'गुप्त बोधार्थ'; @@ -45,7 +41,6 @@ $labels['size'] = 'नाप'; $labels['priority'] = 'प्राथमिकता'; $labels['organization'] = 'संस्था'; $labels['readstatus'] = 'पढेको अवस्था'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'फोल्डरहरु'; $labels['messagesfromto'] = 'मेलहरु $from बाट $to सम्म, $count मध्यबाट'; $labels['threadsfromto'] = 'थ्रेडहरु $from बाट $to सम्म, $count मध्यबाट'; @@ -55,9 +50,6 @@ $labels['copy'] = 'प्रतिलिपि गर्नुहोस्'; $labels['move'] = 'सार्नुहोस'; $labels['moveto'] = 'यहाँ सार्नुहोस'; $labels['download'] = 'डाऊनलोड'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'फाईलको नाम'; $labels['filesize'] = 'फाईलको नाप'; $labels['addtoaddressbook'] = 'ठेगाना पुस्तिकामा भर्नुहोस'; @@ -124,86 +116,33 @@ $labels['backtolist'] = 'सन्देश सूची देखाउ $labels['viewsource'] = 'श्रोत देखाउनुहोस'; $labels['mark'] = 'चिन्ह लगाउनुहोस्'; $labels['markmessages'] = 'सन्देशमा चिन्ह लगाउनुहोस्'; -$labels['markread'] = 'As read'; -$labels['markunread'] = 'As unread'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; $labels['more'] = 'अझ धेरै'; $labels['back'] = 'पछाडि'; $labels['options'] = 'विकल्पहरू'; $labels['select'] = 'चयन गर्नुहोस्'; $labels['all'] = 'सबै'; $labels['none'] = 'हैन'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'नपढिएका |'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'हैन'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'छोटो गर्नुहोस'; $labels['empty'] = 'खाली गर्ने'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'डिस्कको उपभोग'; $labels['unknown'] = 'अज्ञात'; $labels['unlimited'] = 'अनगिन्ति'; $labels['quicksearch'] = 'स्फुर्ति खोज'; $labels['resetsearch'] = 'पन: खोज'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'तुरुन्तै मेल पठाउनुहोस'; $labels['savemessage'] = 'ड्राफ्ट जोगाउनुहोस'; $labels['addattachment'] = 'फाइल टाँस्नुहोस'; $labels['charset'] = 'क्यारेक्टर सेट'; $labels['editortype'] = 'सम्पादकको प्रकार'; $labels['returnreceipt'] = 'फिर्ति रसीद'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'हिज्जे जाँच'; $labels['resumeediting'] = 'पुन: सम्पादन गर्नुहोस'; $labels['revertto'] = 'पहिलेको स्थितीमा जानुहोस'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'टाँसिएका फाईलहरु'; $labels['upload'] = 'अपलोड'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'बन्द'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'कम'; $labels['lowest'] = 'सबै भन्दा कम'; $labels['normal'] = 'साधारण'; @@ -211,118 +150,31 @@ $labels['high'] = 'उच्च'; $labels['highest'] = 'उच्चतम'; $labels['nosubject'] = '(बिना विषयको)'; $labels['showimages'] = 'चित्र देखाउनुहोस'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'ऐच-टी-ऐम-एल (HTML)'; $labels['plaintoggle'] = 'सादा अक्षर'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'देखाउने नाम'; $labels['firstname'] = 'पहिलो नाम'; $labels['surname'] = 'थर'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'ई-मेल'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'नया सम्पर्क जोड्नुहोस'; $labels['editcontact'] = 'सम्पर्क सच्याउनुहोस'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'सच्याउनुहोस'; $labels['cancel'] = 'खारेज गर्नुहोस'; $labels['save'] = 'जोगाउनुहोस'; $labels['delete'] = 'मेटाउनुहोस'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'नया सम्पर्क कार्ड बनाउनुहोस'; $labels['deletecontact'] = 'छानिएका सम्पर्कहरु मेटाउनुहोस'; $labels['composeto'] = 'मेल लेखी पठाउनुहोस'; $labels['contactsfromto'] = 'सम्पर्कहरु $from बाट $to सम्म, $count मध्यबाट'; $labels['print'] = 'छाप्नुहोस'; $labels['export'] = 'ऐक्स्पोर्ट गर्नुहोस'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'पहिलेको सेट देखाउनुहोस'; $labels['firstpage'] = 'पहिलो सेट देखाउनुहोस'; $labels['nextpage'] = 'अर्को सेट देखाउनुहोस'; $labels['lastpage'] = 'अन्तिम सेट देखाउनुहोस'; -$labels['group'] = 'Group'; $labels['groups'] = 'समूहहरु'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'व्यक्तिगत ठेगानाहरु'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'तय'; -$labels['about'] = 'About'; $labels['preferences'] = 'रोजाइहरु'; $labels['userpreferences'] = 'यूसरका रोजाइहरु'; $labels['editpreferences'] = 'यूसरका रोजाइहर सम्पादन गर्नुहोस'; @@ -332,150 +184,27 @@ $labels['newidentity'] = 'नया पहिचान'; $labels['newitem'] = 'नया प्रकार'; $labels['edititem'] = 'प्रकार सम्पादन गर्नुहोस'; $labels['preferhtml'] = 'ऐच-टी-ऐम-ऐल(HTML) देखाउनुहोस'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ऐच-टी-ऐम-ऐल (HTML) रूपका मेल'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'सुन्दर तारिख'; $labels['setdefault'] = 'तय गर्नुहोस'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'भाषा'; $labels['timezone'] = 'समय क्षेत्र'; $labels['pagesize'] = 'हरेक पन्नामा यति'; $labels['signature'] = 'हस्ताक्षर'; $labels['dstactive'] = 'प्रकाश बचाव'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'ऐच-टी-ऐम-एल (HTML) मेल लखन गर्नुहोस'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'ऐच-टी-ऐम-एल (HTML) हस्ताक्षर'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'पूर्व दृष्य देखाउनुहोस'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'स्वत ड्राफ्ट जोगाउनुहोस'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'काहिलै नहुने'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'फोल्डर'; $labels['folders'] = 'फोल्डरहरु'; $labels['foldername'] = 'फोल्डरको नाम'; $labels['subscribed'] = 'सबस्क्राईब गरियो'; -$labels['messagecount'] = 'Messages'; $labels['create'] = 'बनाउनुहोस'; $labels['createfolder'] = 'नया फोलडर बनाउनुहोस'; $labels['managefolders'] = 'फोलडर व्यवस्थित गर्नुहोस'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'यसरी तय गर्नुहोस'; $labels['sortasc'] = 'पहिलो देखि अन्तिम सम्म तय गर्नुहोस'; $labels['sortdesc'] = 'अन्तिम देखि पहिलो सम्म तय गर्नुहोस'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ne_NP/messages.inc b/program/localization/ne_NP/messages.inc index a30cc87bc..7873f5715 100644 --- a/program/localization/ne_NP/messages.inc +++ b/program/localization/ne_NP/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'लागईन हुन पाएन'; $messages['cookiesdisabled'] = 'तपाईको ब्राऊसरले कुकी स्वीकार गारिरहेको छैन'; $messages['sessionerror'] = 'सत्र समाप्त वा अवैद्य'; $messages['storageerror'] = 'सर्वर संग सम्पर्क हुन पाएन'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'यो मेलबक्स मा कुनै मेल छैन'; $messages['loggedout'] = 'सत्र समाप्त । नमास्कार!'; $messages['mailboxempty'] = 'मेल बक्स खाली छ'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'लोड भईरहेको छ...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'डाटा लोड भईरहेको छै...'; $messages['checkingmail'] = 'नया मेलको खोजी भईरहेको छ...'; $messages['sendingmessage'] = 'मेल पठाईदै रहेको छ...'; @@ -47,128 +32,38 @@ $messages['messagesaved'] = 'मेल ड्राफ्ट फोल्डर $messages['successfullysaved'] = 'सफल्तापूर्वक जोगाईयो'; $messages['addedsuccessfully'] = 'सम्पर्क पुस्तिकामा सफल्तापूर्वक सम्पर्क प्रविष्ट गारियो'; $messages['contactexists'] = 'यो ई-मेल पहिलै लिईसकिएको छ'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'तपाईको प्राईवेसी को लागि तथा अन्य स्पामबाट बच्नकोलागि यो मेलमा चित्रहुरु देखाईएका छैनन्।'; $messages['encryptedmessage'] = 'माफ गर्नुहोसे, यो मेल ईन्क्रिफ्ट गरिएको रूपमा छ, त्यसैले देखाउन सकिदैन!'; $messages['nocontactsfound'] = 'कुनै सम्पर्क भेटिएन'; $messages['contactnotfound'] = 'अनुरोध गारिएको सम्पर्क भेटिएन'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'मेल पठाउन सकिएन'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'जोगाउदा-जोगाउदै गडबड भायो'; $messages['errormoving'] = 'मेल सार्न सकिएन'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'मेल मेटाउन सकिएन'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'तापाईले छान्नुभएको सम्पर्कहरु, साँचै मेट्न चहानुहुन्छ?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'तापाईले छान्नु भएको मेलहरु, साँचै मेट्न चहानुहुन्छ?'; $messages['deletefolderconfirm'] = 'तापाईले साँचै यो फोल्डर मेट्न चहानु हुन्छ?'; $messages['purgefolderconfirm'] = 'तापाईले साँचै यो फोल्डरमा भएका सबै मेलहरु मेट्न चहानुहुन्छ?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'फर्म पूर्ण रुपमा भरिएको छैन'; $messages['noemailwarning'] = 'कृपया वैद्य ई-मेल भर्नुहोस'; $messages['nonamewarning'] = 'कृपया नाम भर्नुहोस'; $messages['nopagesizewarning'] = 'कृपया पन्नाको नाप भर्नुहोस'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'कृपया कम-से-कम एउटा प्रापकको विवरण भर्नुहोस'; $messages['nosubjectwarning'] = 'मेलको कुनै विषय तोकिएको छैनै। केहि तोक्न चहानुहुन्छ ?'; $messages['nobodywarning'] = 'बिना केहि लेखि पठाउने?'; $messages['notsentwarning'] = 'मेल पठएको छैन.. मेल रद्द गर्न चहानुहुन्छ?'; $messages['noldapserver'] = 'कृपया खोजको निम्ति एउटा ऐलडाप सर्वर छान्नहोस'; $messages['nosearchname'] = 'कृपया सम्पर्कको नाम या ई-मेल भर्नुहोस'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr मेलहरु पाइयो'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'खोज असफल रहयो'; $messages['searching'] = 'खोजि भईरहेको छ...'; $messages['checking'] = 'जाँच भईरहेको छ...'; $messages['nospellerrors'] = 'कुनै गलत हिज्जे फेला परेनन्'; $messages['folderdeleted'] = 'फोल्डर सफल्तापूर्वक मेटियो'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'सफल्तापूर्वक मेटियो'; $messages['converting'] = 'मेलबाट फोर्माटिङ हटाईदै छ...'; $messages['messageopenerror'] = 'सर्वरबाट मेल लोड हुन सकेन'; $messages['fileuploaderror'] = 'फाईल अपलोड हुन असफल'; $messages['filesizeerror'] = 'अपलोड गरिएको फाईल हद $size भन्दा ठूलो छ'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'यो ठेगाना को श्रोत पढ्नको लागि मात्र उपलब्ध छ'; $messages['errorsavingcontact'] = 'स्मपर्कको ठेगाना जोगाउन सकिएन'; -$messages['movingmessage'] = 'Moving message(s)...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/nl_BE/labels.inc b/program/localization/nl_BE/labels.inc index 6882db592..2e76194e1 100644 --- a/program/localization/nl_BE/labels.inc +++ b/program/localization/nl_BE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; $labels['password'] = 'Wachtwoord'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Concepten'; $labels['sent'] = 'Verzonden berichten'; $labels['trash'] = 'Prullenbak'; $labels['junk'] = 'Spam'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Onderwerp'; $labels['from'] = 'Van'; $labels['sender'] = 'Afzender'; @@ -55,7 +52,6 @@ $labels['copy'] = 'Kopieer'; $labels['move'] = 'Verplaats'; $labels['moveto'] = 'Verplaats naar...'; $labels['download'] = 'Downloaden'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Weergeven'; $labels['showanyway'] = 'Toch weergeven'; $labels['filename'] = 'Bestandsnaam'; @@ -110,7 +106,6 @@ $labels['replytoallmessage'] = 'Antwoorden naar lijst of naar afzender en alle o $labels['replyall'] = 'Allen beantwoorden'; $labels['replylist'] = 'Lijst beantwoorden'; $labels['forward'] = 'Doorsturen'; -$labels['forwardinline'] = 'Forward inline'; $labels['forwardattachment'] = 'Doorsturen als bijlage'; $labels['forwardmessage'] = 'Bericht doorsturen'; $labels['deletemessage'] = 'Dit bericht verwijderen'; @@ -139,7 +134,6 @@ $labels['currpage'] = 'Huidige pagina'; $labels['unread'] = 'Ongelezen'; $labels['flagged'] = 'Geselecteerd'; $labels['unanswered'] = 'Onbeantwoord'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Verwijderd'; $labels['undeleted'] = 'Niet verwijderd'; $labels['invert'] = 'Selectie omkeren'; @@ -168,7 +162,6 @@ $labels['listmode'] = 'Lijstweergave mode'; $labels['folderactions'] = 'Acties voor map...'; $labels['compact'] = 'Comprimeren'; $labels['empty'] = 'Legen'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Gebruikte schijfruimte'; $labels['unknown'] = 'onbekend'; $labels['unlimited'] = 'onbeperkt'; @@ -176,12 +169,8 @@ $labels['quicksearch'] = 'Snelzoeken'; $labels['resetsearch'] = 'Zoek opnieuw'; $labels['searchmod'] = 'Zoekopties'; $labels['msgtext'] = 'Volledig bericht'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Openen in een nieuw venster'; $labels['emlsave'] = 'Opslaan (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Als nieuw bewerken'; $labels['send'] = 'Verzenden'; $labels['sendmessage'] = 'Bericht verzenden'; @@ -215,7 +204,6 @@ $labels['alwaysshow'] = 'Afbeeldingen van $sender altijd tonen'; $labels['isdraft'] = 'Dit is een concept bericht.'; $labels['andnmore'] = '$nr meer...'; $labels['togglemoreheaders'] = 'Toon meer berichthoofden'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Platte tekst'; $labels['savesentmessagein'] = 'Bewaar verzonden bericht in'; @@ -232,97 +220,37 @@ $labels['receiptnote'] = 'Opmerking: deze ontvangstbevestiging houdt enkel in da $labels['name'] = 'Naam'; $labels['firstname'] = 'Voornaam'; $labels['surname'] = 'Achternaam'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'E-mailadres'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Geselecteerde contactpersoon toevoegen'; $labels['editcontact'] = 'Contactpersoon bewerken'; $labels['contacts'] = 'Contactpersonen'; $labels['contactproperties'] = 'Eigenschappen van contactpersoon'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Bewerken'; $labels['cancel'] = 'Annuleren'; $labels['save'] = 'Opslaan'; $labels['delete'] = 'Verwijderen'; $labels['rename'] = 'Hernoemen'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Contactpersoon toevoegen'; $labels['deletecontact'] = 'Verwijder geselecteerde contactpersonen'; $labels['composeto'] = 'Mail sturen aan'; $labels['contactsfromto'] = 'Contactpersonen $from - $to van $count'; $labels['print'] = 'Afdrukken'; $labels['export'] = 'Exporteren'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Exporteer contactpersonen in vCard formaat'; $labels['newcontactgroup'] = 'Maak een nieuwe contactgroep'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Toon vorige'; $labels['firstpage'] = 'Toon eerste'; $labels['nextpage'] = 'Toon volgende'; $labels['lastpage'] = 'Toon laatste'; $labels['group'] = 'Groep'; $labels['groups'] = 'Groepen'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personlijke adressen'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'Importeer'; $labels['importcontacts'] = 'Contactpersonen importeren'; $labels['importfromfile'] = 'Importeer van bestand:'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'Vervang het complete adresboek'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Klaar'; $labels['settingsfor'] = 'Instellingen voor'; -$labels['about'] = 'About'; $labels['preferences'] = 'Voorkeuren'; $labels['userpreferences'] = 'Gebruikersvoorkeuren'; $labels['editpreferences'] = 'Gebruikersvoorkeuren bewerken'; @@ -334,10 +262,6 @@ $labels['edititem'] = 'Bewerken'; $labels['preferhtml'] = 'Gebruik HTML-opmaak'; $labels['defaultcharset'] = 'Standaard karakterset'; $labels['htmlmessage'] = 'HTML-bericht'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Uitgebreide datumweergave'; $labels['setdefault'] = 'Als standaard instellen'; $labels['autodetect'] = 'Automatisch'; @@ -346,13 +270,9 @@ $labels['timezone'] = 'Tijdzone'; $labels['pagesize'] = 'Berichten per pagina'; $labels['signature'] = 'Handtekening'; $labels['dstactive'] = 'Zomer/wintertijd'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'HTML berichten opmaken'; $labels['htmlonreply'] = 'enkel bij beantwoorden van een HTML bericht'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML handtekening'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Toon voorbeeldvenster'; $labels['skin'] = 'Opmaakprofiel'; $labels['logoutclear'] = 'Prullenbak legen bij uitloggen'; @@ -370,14 +290,12 @@ $labels['readwhendeleted'] = 'Bericht na verwijderen als gelezen markeren'; $labels['flagfordeletion'] = 'Bericht niet verwijderen maar als verwijderd markeren'; $labels['skipdeleted'] = 'Verwijderde berichten niet tonen'; $labels['deletealways'] = 'Verwijder bericht wanneer verplaatsen naar Prullenbak mislukt'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'Geef externe toegevoegde berichten weer'; $labels['fromknownsenders'] = 'Van bekende afzenders'; $labels['always'] = 'altijd'; $labels['showinlineimages'] = 'Toon bijgevoegde afbeeldingen onder het bericht'; $labels['autosavedraft'] = 'Automatisch als concept opslaan'; $labels['everynminutes'] = 'elke $n minuten'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'nooit'; $labels['immediately'] = 'onmiddellijk'; $labels['messagesdisplaying'] = 'Berichten weergave'; @@ -391,15 +309,12 @@ $labels['advancedoptions'] = 'Geavanceerde opties'; $labels['focusonnewmessage'] = 'Focus browserscherm bij nieuw bericht'; $labels['checkallfolders'] = 'Controleer alle mappen op nieuwe berichten'; $labels['displaynext'] = 'Na verplaatsen/verwijderen het volgende bericht tonen'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'Hoofdopties'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'Sectie'; $labels['maintenance'] = 'Onderhoud'; $labels['newmessage'] = 'Nieuw bericht'; $labels['signatureoptions'] = 'Opties voor handtekening'; $labels['whenreplying'] = 'Bij beantwoorden'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'begin bericht boven het origineel'; $labels['replybottomposting'] = 'begin bericht onder het origineel'; $labels['replyremovesignature'] = 'Verwijder handtekening uit het origneel bij beantwoorden'; @@ -412,20 +327,6 @@ $labels['afternseconds'] = 'Na $n seconden'; $labels['reqmdn'] = 'Vraag altijd een ontvangstbevestiging'; $labels['reqdsn'] = 'Vraag altijd een Delivery Status Notification'; $labels['replysamefolder'] = 'Plaats antwoorden in de map van het beantwoorde bericht'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Map'; $labels['folders'] = 'Mappen'; $labels['foldername'] = 'Naam'; @@ -442,20 +343,9 @@ $labels['location'] = 'Locatie'; $labels['info'] = 'Informatie'; $labels['getfoldersize'] = 'Klik voor de grootte van de map'; $labels['changesubscription'] = 'Klik voor abonnement te wijzigen'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Sorteren op'; $labels['sortasc'] = 'Oplopend sorteren'; $labels['sortdesc'] = 'Aflopend sorteren'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; diff --git a/program/localization/nl_BE/messages.inc b/program/localization/nl_BE/messages.inc index a7fe31078..a90e250d9 100644 --- a/program/localization/nl_BE/messages.inc +++ b/program/localization/nl_BE/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Er is een fout opgetreden!'; $messages['loginfailed'] = 'Aanmelden mislukt...'; $messages['cookiesdisabled'] = 'Uw browser accepteert geen cookies...'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Database Fout!'; $messages['requesttimedout'] = 'Aanvraag verlopen'; $messages['errorreadonly'] = 'Kon opdracht niet uitvoeren. Map is alleen-lezen.'; $messages['errornoperm'] = 'Kon opdracht niet uitvoeren. Toegang geweigerd.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Ongeldige aanvraag! Er zijn geen gegevens opgeslagen.'; $messages['invalidhost'] = 'Ongeldige server.'; $messages['nomessagesfound'] = 'Er zijn geen berichten in deze map...'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'De gevraagde contactpersoon was niet gevonden.'; $messages['contactsearchonly'] = 'Voer enkele zoektermen in om de contactpersonen te zoeken.'; $messages['sendingfailed'] = 'Kon het bericht niet versturen...'; $messages['senttooquickly'] = 'U moet $sec second(en) wachten om het bericht te versturen.'; -$messages['errorsavingsent'] = 'Er is een fout opgetreden tijdens het opslaan van het verzonden bericht.'; -$messages['errorsaving'] = 'Er is een fout opgetreden bij het opslaan van het bericht...'; $messages['errormoving'] = 'Kon de bericht(en) niet verplaatsen...'; $messages['errorcopying'] = 'Kon de bericht(en) niet kopiëren'; $messages['errordeleting'] = 'Kon de bericht(en) niet verwijderen...'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Opmaak van het bericht wordt gewist...'; $messages['messageopenerror'] = 'Kon het bericht niet ophalen van de server.'; $messages['fileuploaderror'] = 'Bestandsupload mislukt.'; $messages['filesizeerror'] = 'Het bestand overschrijdt de maximum grootte van $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Het adres kan niet worden opgeslagen.'; $messages['errorsavingcontact'] = 'Kon de contactpersoon niet bewaren.'; $messages['movingmessage'] = 'Bericht wordt verplaatst...'; $messages['copyingmessage'] = 'Bericht wordt gekopieerd...'; $messages['copyingcontact'] = 'Kopiëren contactpersonen...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Bericht wordt verwijderd...'; $messages['markingmessage'] = 'Bericht wordt gemarkeerd...'; $messages['addingmember'] = 'Contactpersonen worden toegevoegd aan de groep...'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Bezig met importeren, even geduld...'; $messages['importformaterror'] = 'Importeren mislukt! Het geüploade bestand is geen importeerbaar bestand.'; $messages['importconfirm'] = 'Er zijn $inserted contactpersonen succesvol geïmporteerd'; $messages['importconfirmskipped'] = '$skipped bestaande contactpersonen overgeslagen'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Deze actie is niet toegestaan!'; $messages['nofromaddress'] = 'De geselecteerde identiteit bevat geen emailadres.'; $messages['editorwarning'] = 'Door het overschakelen naar de platte tekst editor gaat alle opmaak verloren. Weet u zeker dat u verder wilt gaan?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'SMTP Fout: $msg'; $messages['emailformaterror'] = 'Ongeldig e-mailadres: $email'; $messages['toomanyrecipients'] = 'Te veel geadresseerden. Verminder de hoeveelheid geadresseerden tot $max.'; $messages['maxgroupmembersreached'] = 'Het aantal leden van de groep groter is dan de maximale van $max.'; -$messages['internalerror'] = 'Er is een interne fout opgetreden. Probeer het nogmaals.'; $messages['contactdelerror'] = 'Kon contactpersoon niet verwijderen.'; $messages['contactdeleted'] = 'Contactpersoon succesvol verwijderd.'; $messages['contactrestoreerror'] = 'Verwijderde contactpersonen konden niet hersteld worden.'; diff --git a/program/localization/nl_NL/labels.inc b/program/localization/nl_NL/labels.inc index 0f36b116e..f0e4a74b4 100644 --- a/program/localization/nl_NL/labels.inc +++ b/program/localization/nl_NL/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Welkom bij $product'; $labels['username'] = 'Gebruikersnaam'; $labels['password'] = 'Wachtwoord'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Zoekopties'; $labels['msgtext'] = 'Gehele bericht'; $labels['body'] = 'Inhoud'; $labels['type'] = 'Type'; +$labels['namex'] = 'Naam'; $labels['openinextwin'] = 'Openen in een nieuw venster'; $labels['emlsave'] = 'Opslaan (.eml)'; $labels['changeformattext'] = 'Weergeven als platte tekst'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Zoekopdracht verwijderen'; $labels['import'] = 'Importeren'; $labels['importcontacts'] = 'Contactpersonen importeren'; $labels['importfromfile'] = 'Importeer van bestand:'; -$labels['importtarget'] = 'Voeg nieuwe contactpersonen toe aan adresboek:'; +$labels['importtarget'] = 'Contacten toevoegen aan'; $labels['importreplace'] = 'Vervang het complete adresboek'; +$labels['importgroups'] = 'Importeer groepstoewijzingen'; +$labels['importgroupsall'] = 'Allemaal (maak groepen aan indien nodig)'; +$labels['importgroupsexisting'] = 'Alleen voor bestaande groepen'; $labels['importdesc'] = 'U kunt contactpersonen uploaden van een bestaand adresboek
Momenteel wordt het importeren van adresboeken in vCard-formaat of CSV-formaat (kommagescheiden tekstbestand) ondersteund.'; $labels['done'] = 'Klaar'; $labels['settingsfor'] = 'Instellingen voor'; diff --git a/program/localization/nl_NL/messages.inc b/program/localization/nl_NL/messages.inc index e31dc01fd..22f9e0f6b 100644 --- a/program/localization/nl_NL/messages.inc +++ b/program/localization/nl_NL/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Er is een fout opgetreden!'; $messages['loginfailed'] = 'Aanmelden mislukt.'; $messages['cookiesdisabled'] = 'Uw browser accepteert geen cookies.'; diff --git a/program/localization/nn_NO/labels.inc b/program/localization/nn_NO/labels.inc index 830ed9847..eae5fc639 100644 --- a/program/localization/nn_NO/labels.inc +++ b/program/localization/nn_NO/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Velkomen til $product'; $labels['username'] = 'Brukarnamn'; $labels['password'] = 'Passord'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Kladd'; $labels['sent'] = 'Sendt'; $labels['trash'] = 'Sletta'; $labels['junk'] = 'Søppel'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Emne'; $labels['from'] = 'Frå'; $labels['sender'] = 'Avsendar'; @@ -55,7 +52,6 @@ $labels['copy'] = 'Kopier'; $labels['move'] = 'Flytt'; $labels['moveto'] = 'flytt til …'; $labels['download'] = 'Last ned'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Vis'; $labels['showanyway'] = 'Vis likevel'; $labels['filename'] = 'Filnamn'; @@ -139,7 +135,6 @@ $labels['currpage'] = 'Gjeldande side'; $labels['unread'] = 'Uleste'; $labels['flagged'] = 'Flagga'; $labels['unanswered'] = 'Ikkje svara'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Sletta'; $labels['undeleted'] = 'Ikkje sletta'; $labels['invert'] = 'Inverter'; @@ -168,7 +163,6 @@ $labels['listmode'] = 'Listevisningmodus'; $labels['folderactions'] = 'Mappehandlingar'; $labels['compact'] = 'Kompakt'; $labels['empty'] = 'Tom'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Plassbruk'; $labels['unknown'] = 'ukjend'; $labels['unlimited'] = 'ubegrensa'; @@ -177,11 +171,8 @@ $labels['resetsearch'] = 'Tilbakestill søk'; $labels['searchmod'] = 'Søkeutsagn'; $labels['msgtext'] = 'Heile eposten'; $labels['body'] = 'Meldingstekst'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Opna i nytt vindauga'; $labels['emlsave'] = 'Last ned (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Rediger som ny'; $labels['send'] = 'Send'; $labels['sendmessage'] = 'Send meldinga no'; @@ -310,14 +301,12 @@ $labels['nextpage'] = 'Neste side'; $labels['lastpage'] = 'Siste side'; $labels['group'] = 'Gruppe'; $labels['groups'] = 'Gruppar'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Personlege adresser'; $labels['searchsave'] = 'Lagre søk'; $labels['searchdelete'] = 'Slett søk'; $labels['import'] = 'Importer'; $labels['importcontacts'] = 'Importer kontaktar'; $labels['importfromfile'] = 'Importer frå fil:'; -$labels['importtarget'] = 'Legg til kontakter i adresseboka'; $labels['importreplace'] = 'Byt ut heile adresseboka'; $labels['importdesc'] = 'Du kan laste opp kontaktar frå ei eksisterande adressebok.
Vi støttar adressebøker i formata vCard og CSV (kommaseparert).'; $labels['done'] = 'Ferdig'; @@ -352,7 +341,6 @@ $labels['htmleditor'] = 'Lag HTML-meldingar'; $labels['htmlonreply'] = 'ved svar på HTML-melding'; $labels['htmlonreplyandforward'] = 'ved vidaresending av eller svar på HTML-melding'; $labels['htmlsignature'] = 'HTML-signatur'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Vis førehandsvisningsboks'; $labels['skin'] = 'Bunad'; $labels['logoutclear'] = 'Fjern alt i «sletta element» ved utlogging'; @@ -422,7 +410,6 @@ $labels['spellcheckignorenums'] = 'Ignorer ord med tal'; $labels['spellcheckignorecaps'] = 'Ignorer ord med berre store bokstavar'; $labels['addtodict'] = 'Legg til i ordliste'; $labels['mailtoprotohandler'] = 'Registrer protokollhandsaming for mailto-lenkjer'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Meldingar vidaresendast'; $labels['inline'] = 'i teksten'; $labels['asattachment'] = 'som vedlegg'; diff --git a/program/localization/nn_NO/messages.inc b/program/localization/nn_NO/messages.inc index 409b6f414..5c8386c64 100644 --- a/program/localization/nn_NO/messages.inc +++ b/program/localization/nn_NO/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Noko gjekk feil.'; $messages['loginfailed'] = 'Feil ved innlogging.'; $messages['cookiesdisabled'] = 'Nettlesaren din tillet ikkje informasjonskapslar (cookies).'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Databasefeil!'; $messages['requesttimedout'] = 'Førespurnaden fekk tidsavbrot'; $messages['errorreadonly'] = 'Klarte ikkje utføra handlinga. Mappa kan berre lesast.'; $messages['errornoperm'] = 'Klarte ikkje utføra handlinga. Nekta tilgang.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Eg forstår ingen ting! Ingen data lagra.'; $messages['invalidhost'] = 'Ugyldig tenarnamn.'; $messages['nomessagesfound'] = 'Ingen meldingar i denne postkassa.'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'Fann ikkje kontakten du såg etter.'; $messages['contactsearchonly'] = 'Skriv søkeord for å finna kontaktar'; $messages['sendingfailed'] = 'Klarte ikkje senda meldinga.'; $messages['senttooquickly'] = 'Du må venta $sec sekund for å senda meldinga.'; -$messages['errorsavingsent'] = 'Klarte ikkje lagra den sende meldinga.'; -$messages['errorsaving'] = 'Det skjedde ein feil ved lagring.'; $messages['errormoving'] = 'Klarte ikkje flytte meldinga(r).'; $messages['errorcopying'] = 'Klarte ikkje kopiera meldinga(r).'; $messages['errordeleting'] = 'Klarte ikkje sletta meldinga(r).'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Fjernar formatering frå meldinga …'; $messages['messageopenerror'] = 'Klarte ikkje lasta meldinga frå tenaren.'; $messages['fileuploaderror'] = 'Filopplasting feila.'; $messages['filesizeerror'] = 'Fila du lasta opp, er større enn største tillatne filstorleik, $size.'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Denne adressekjelda er berre lesbar.'; $messages['errorsavingcontact'] = 'Klarte ikkje lagra kontaktadressa.'; $messages['movingmessage'] = 'Flyttar melding(ar) …'; $messages['copyingmessage'] = 'Kopierer melding(ar) …'; $messages['copyingcontact'] = 'Kopierer kontakt(ar) …'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Slettar melding(ar) …'; $messages['markingmessage'] = 'Merkar melding(ar) …'; $messages['addingmember'] = 'Legg til kontakt(ar) i gruppa …'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Importerer, vent …'; $messages['importformaterror'] = 'Importering feila. Den opplasta fila er i feil format.'; $messages['importconfirm'] = 'Importerte $inserted kontaktar'; $messages['importconfirmskipped'] = 'Hoppa over $skipped oppføringar som fanst frå før'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Ulovleg operasjon.'; $messages['nofromaddress'] = 'Manglar e-postadresse i denne identiteten.'; $messages['editorwarning'] = 'Å byta til rein tekst vil fjerna all tekstformateringa. Vil du halda fram?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'SMTP-feil: $msg'; $messages['emailformaterror'] = 'Ugyldig e-postadresse: $email'; $messages['toomanyrecipients'] = 'For mange mottakarar. Senk talet til $max.'; $messages['maxgroupmembersreached'] = 'Ei gruppe kan ikkje ha fleire enn $max medlemmer.'; -$messages['internalerror'] = 'Intern feil. Prøv igjen.'; $messages['contactdelerror'] = 'Klarte ikkje sletta kontakt(ar).'; $messages['contactdeleted'] = 'Kontakt(ar) sletta utan feil.'; $messages['contactrestoreerror'] = 'Klarte ikkje gjenoppretta kontakt(ar).'; diff --git a/program/localization/pl_PL/csv2vcard.inc b/program/localization/pl_PL/csv2vcard.inc index 52a77bfdb..c6c5be414 100644 --- a/program/localization/pl_PL/csv2vcard.inc +++ b/program/localization/pl_PL/csv2vcard.inc @@ -15,7 +15,6 @@ | Author: Aleksander Machniak | +-----------------------------------------------------------------------+ */ - $map = array(); $map['anniversary'] = "Rocznica"; $map['assistants_name'] = "Asystent"; diff --git a/program/localization/pl_PL/labels.inc b/program/localization/pl_PL/labels.inc index af2c972f6..4c13fb7c6 100644 --- a/program/localization/pl_PL/labels.inc +++ b/program/localization/pl_PL/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Witamy w $product'; $labels['username'] = 'Nazwa'; $labels['password'] = 'Hasło'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Wyczyść filtr'; $labels['searchmod'] = 'Parametry wyszukiwania'; $labels['msgtext'] = 'Cała wiadomość'; $labels['body'] = 'Treść'; -$labels['type'] = 'Type'; +$labels['type'] = 'Typ'; +$labels['namex'] = 'Nazwa'; $labels['openinextwin'] = 'Otwórz w nowym oknie'; $labels['emlsave'] = 'Pobierz (.eml)'; $labels['changeformattext'] = 'Wyświetl w formacie tekstowym'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Usuń wyszukiwanie'; $labels['import'] = 'Importuj'; $labels['importcontacts'] = 'Import kontaktów'; $labels['importfromfile'] = 'Import z pliku:'; -$labels['importtarget'] = 'Dodaj nowe kontakty do książki adresowej:'; +$labels['importtarget'] = 'Dodaj kontakty do'; $labels['importreplace'] = 'Zastąp całą książkę adresową'; +$labels['importgroups'] = 'Importuj powiązania z grupami'; +$labels['importgroupsall'] = 'Wszystkie (utwórz grupy jeśli potrzeba)'; +$labels['importgroupsexisting'] = 'Tylko do isniejących grup'; $labels['importdesc'] = 'Import kontaktów z isniejącej książki adresowej.
Obecnie obsługiwany jest import w formacie vCard lub CSV (pola oddzielone przecinkiem).'; $labels['done'] = 'Wykonane'; $labels['settingsfor'] = 'Ustawienia dla'; @@ -360,7 +362,7 @@ $labels['logoutcompact'] = 'Przy wylogowaniu porządkuj folder Odebrane'; $labels['uisettings'] = 'Interfejs użytkownika'; $labels['serversettings'] = 'Ustawienia serwera'; $labels['mailboxview'] = 'Widok skrzynki pocztowej'; -$labels['mdnrequests'] = 'Na żadanie potwierdzenia odbioru'; +$labels['mdnrequests'] = 'Na żądanie potwierdzenia odbioru'; $labels['askuser'] = 'pytaj mnie'; $labels['autosend'] = 'wyślij potwierdzenie'; $labels['autosendknown'] = 'wyślij potwierdzenie tylko do moich kontaktów, pytaj o pozostałe'; @@ -387,7 +389,7 @@ $labels['2231folding'] = 'RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'RFC 2047 (przestarzałe)'; $labels['force7bit'] = 'Używaj kodowania MIME dla znaków 8-bitowych'; -$labels['advancedoptions'] = 'opcje zaawansowane'; +$labels['advancedoptions'] = 'Opcje zaawansowane'; $labels['focusonnewmessage'] = 'Informuj przeglądarkę o nowej wiadomości'; $labels['checkallfolders'] = 'Sprawdzaj czy nadeszły nowe wiadomości we wszystkich folderach'; $labels['displaynext'] = 'Po usunięciu/przeniesieniu wiadomości wyświetl następną'; diff --git a/program/localization/pl_PL/messages.inc b/program/localization/pl_PL/messages.inc index d6e4ea0e7..0ad357b69 100644 --- a/program/localization/pl_PL/messages.inc +++ b/program/localization/pl_PL/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Wystąpił błąd!'; $messages['loginfailed'] = 'Błąd logowania!'; $messages['cookiesdisabled'] = 'Twoja przeglądarka nie obsługuje ciasteczek!'; @@ -100,13 +99,16 @@ $messages['converting'] = 'Konwertowanie tekstu...'; $messages['messageopenerror'] = 'Nie można załadować wiadomości z serwera.'; $messages['fileuploaderror'] = 'Załączanie pliku nie powiodło się.'; $messages['filesizeerror'] = 'Plik przekracza maksymalną wielkość $size.'; -$messages['copysuccess'] = 'Pomyślnie skopiowano następującą liczbę adresów: $nr.'; -$messages['copyerror'] = 'Nie można skopiować żadnego adresu.'; +$messages['copysuccess'] = 'Pomyślnie skopiowano $nr kontaktów.'; +$messages['movesuccess'] = 'Pomyślnie przeniesiono $nr kontaktów.'; +$messages['copyerror'] = 'Nie udało się skopiować żadnego kontaktu.'; +$messages['moveerror'] = 'Nie udało się przenieść żadnego kontaktu.'; $messages['sourceisreadonly'] = 'Źródło adresu jest tylko do odczytu.'; $messages['errorsavingcontact'] = 'Nie można było zapisać adresu kontaktu.'; $messages['movingmessage'] = 'Przenoszenie wiadomości...'; $messages['copyingmessage'] = 'Kopiowanie wiadomości...'; $messages['copyingcontact'] = 'Kopiowanie kontaktów...'; +$messages['movingcontact'] = 'Przenoszenie kontaktów...'; $messages['deletingmessage'] = 'Usuwanie wiadomości...'; $messages['markingmessage'] = 'Oznaczanie wiadomości...'; $messages['addingmember'] = 'Dodawanie kontaktów do grupy...'; @@ -166,6 +168,6 @@ $messages['invalidimageformat'] = 'Niepoprawny format obrazka.'; $messages['mispellingsfound'] = 'Wykryto błędy pisowni w tej wiadomości.'; $messages['parentnotwritable'] = 'Nie można utworzyć/przenieść folderu w wybrane miejsce. Brak upranień.'; $messages['messagetoobig'] = 'Ta część wiadomości jest zbyt duża aby ją przetworzyć.'; -$messages['attachmentvalidationerror'] = 'UWAGA! Ten załącznik jest podejrzany ponieważ jego typ nie jest zgodny z typem zadeklarownym w wiadomości. Jeśli nie ufasz temu nadawcy nie powinieneś otwierać go w przeglądarce, bo może zawierać złośliwe oprogramowanie.

Spodziwany: $expected; znaleziono: $detected'; +$messages['attachmentvalidationerror'] = 'UWAGA! Ten załącznik jest podejrzany ponieważ jego typ nie jest zgodny z typem zadeklarownym w wiadomości. Jeśli nie ufasz temu nadawcy nie powinieneś otwierać go w przeglądarce, gdyż może zawierać złośliwe oprogramowanie.

Zadeklarowany: $expected; wykryty: $detected'; $messages['noscriptwarning'] = 'Uwaga: Usługa wymaga Javascriptu! Aby z niej skorzystać proszę włączyć obsługę języka Javascript w ustawieniach przeglądarki.'; ?> diff --git a/program/localization/ps/labels.inc b/program/localization/ps/labels.inc index ed993cb5b..9b4c8d813 100644 --- a/program/localization/ps/labels.inc +++ b/program/localization/ps/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product ته ښه راغلاست'; $labels['username'] = 'کارن نوم'; $labels['password'] = 'پټنوم'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'بارليک'; $labels['sent'] = 'لېږل شوي ليکونه'; $labels['trash'] = 'کثافت دانۍ'; $labels['junk'] = 'جنک'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'مضمون'; $labels['from'] = 'استوونکی'; -$labels['sender'] = 'Sender'; $labels['to'] = 'ترلاسه کوونکی'; $labels['cc'] = 'لمېسل'; $labels['bcc'] = 'پټليکی'; $labels['replyto'] = 'ځوابول'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'نېټه'; $labels['size'] = 'کچه'; $labels['priority'] = 'لومړيتوب'; $labels['organization'] = 'ټولنه'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'پوښۍ'; $labels['messagesfromto'] = 'له ټاکلي استوزو څخه ټاکلي شمېرل شوو استوزو ته'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'له $nr ځخه استوزو $count استوزو ته'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'لمېسل'; -$labels['move'] = 'Move'; $labels['moveto'] = 'ته خوځوي'; $labels['download'] = 'ښکته کول'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'فايل نوم'; $labels['filesize'] = 'فايل کچه'; $labels['addtoaddressbook'] = 'د پتو کتاب ته يې ورزيات کړئ'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'اکتوبر'; $labels['longnov'] = 'نومبر'; $labels['longdec'] = 'ډسمبر'; $labels['today'] = 'نن'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'نوي استوزي وګوره'; $labels['compose'] = 'استوزه وليکه'; $labels['writenewmessage'] = 'نوي استوزي جوړول'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'استوونکي ته ځواب ورکړئ'; $labels['replytoallmessage'] = 'استوونکي او ټولو ترلاسه کوونکو ته ځواب لېږل'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'استوزه بل ته استول'; $labels['deletemessage'] = 'استوزه ړنګول'; $labels['movemessagetotrash'] = 'استوزه کثافت داني ته واستوه'; @@ -122,88 +102,39 @@ $labels['nextmessage'] = 'ورپسې استوزه وښيه'; $labels['lastmessage'] = 'پای /آخري استوزه وښيه'; $labels['backtolist'] = 'بيرته د استوزو لست ته'; $labels['viewsource'] = 'سرچينه وښيه'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'استوزي په نښه کړئ'; $labels['markread'] = 'لوستل شوي په توګه'; $labels['markunread'] = 'د نالوستل شوي په توګه'; $labels['markflagged'] = 'د بي کاره په توګه'; $labels['markunflagged'] = 'د کارونې په توګه'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'ټاکل'; $labels['all'] = 'ټول'; $labels['none'] = 'هېڅ'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'نالوستي'; $labels['flagged'] = 'بې کاره'; $labels['unanswered'] = 'ناځواب شوي'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; $labels['filter'] = 'چڼول'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'هېڅ'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'کېښکلی'; $labels['empty'] = 'تش'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'ټيکلي لارښود'; $labels['unknown'] = 'نامعلوم'; $labels['unlimited'] = 'بي کچه'; $labels['quicksearch'] = 'ژر پلټنه'; $labels['resetsearch'] = 'د پلټنې بياسمون'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'په نوي کړکۍ کې پرانيزه'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'اوس يې واستوه'; $labels['savemessage'] = 'دا ګارليک خوندي کړه'; $labels['addattachment'] = 'يو فايل ونښلوه'; $labels['charset'] = 'چيرست'; $labels['editortype'] = 'د ټايب سمونګر'; $labels['returnreceipt'] = 'د رسليک راګرځېدل'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ليکدود کتنه'; $labels['resumeediting'] = 'کارمخينې سمونه'; $labels['revertto'] = 'ته بېرته اړول'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'نښلني'; $labels['upload'] = 'پورته کول'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'بندول'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'ټيټ'; $labels['lowest'] = 'خورا ټيټ'; $labels['normal'] = 'نورمال'; @@ -212,10 +143,6 @@ $labels['highest'] = 'خورا لوړ'; $labels['nosubject'] = 'هېڅ موضوع'; $labels['showimages'] = 'انځورونه وښيه'; $labels['alwaysshow'] = 'تل له $استوونکي څخه انځورونه وښيه'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'ايچ ټی ايمل ال'; $labels['plaintoggle'] = 'ساده متن'; $labels['savesentmessagein'] = 'استول شوي استوزه په خوندي کړه'; @@ -224,7 +151,6 @@ $labels['maxuploadsize'] = 'لږترلږه د اجازه شوي فايل کچه $labels['addcc'] = 'څرګندليک'; $labels['addbcc'] = 'پټليک'; $labels['addreplyto'] = 'ته ورزيات کړه'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'ددې استوزي استوونکی پوښتي چېد استوزي لوستلو سره سم تاسې خبر کړي،. غواړئ چې استوونکی خبرشي؟'; $labels['receiptread'] = 'رسليک راګرځېدل (لوستل'; $labels['yourmessage'] = 'دا رسليک راګرځېدل ستاسې استوزي لپاره دی'; @@ -232,97 +158,32 @@ $labels['receiptnote'] = 'يادونه: دا رسليک تاسې ته يوازې $labels['name'] = 'نوم ښوونه'; $labels['firstname'] = 'نوم'; $labels['surname'] = 'کورنی نوم'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'برېښناليک'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'نوی اړيکلوری ورزيات کړه'; $labels['editcontact'] = 'اړيکلوري سمون'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'سمون'; $labels['cancel'] = 'لري کول'; $labels['save'] = 'ساتل'; $labels['delete'] = 'ړنګول'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'نوي اړيکلوري کارټ جوړ کړه'; $labels['deletecontact'] = 'ټاکل شوي اړيکلوري ړنګ کړه'; $labels['composeto'] = 'ته ليک وليکه'; $labels['contactsfromto'] = 'له دومره اړيکلورو څخه دومره شمېرل شوي Contacts $from to $to of $count'; $labels['print'] = 'چاپ'; $labels['export'] = 'بهرول'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'اړيکلوري د ويکارډ په بڼه واستوئ'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'پخوانی غونډ وښيه'; $labels['firstpage'] = 'لومړی غونډ وښيه'; $labels['nextpage'] = 'ورپسې غونډ وښيه'; $labels['lastpage'] = 'پای غونډ وښيه'; -$labels['group'] = 'Group'; $labels['groups'] = 'ډلې'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'ځاني پتې'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'رانقلول'; $labels['importcontacts'] = 'اړيکلوري نقل کړئ'; $labels['importfromfile'] = 'له فايل څخه رانقل کړئ'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'ټول ادرس کتاب بدل کړئ'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'ترسره شو'; $labels['settingsfor'] = 'لپاره برابرونې'; -$labels['about'] = 'About'; $labels['preferences'] = 'غورونې'; $labels['userpreferences'] = 'کارن غورونې'; $labels['editpreferences'] = 'د کارن غورونو سمون'; @@ -332,12 +193,7 @@ $labels['newidentity'] = 'نوي پېژندنه'; $labels['newitem'] = 'نوی توک'; $labels['edititem'] = 'توک سمون'; $labels['preferhtml'] = 'ايچ ټي ام ايل ښوون'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ايچ ټي ام ايل استوزه'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'په زړه پورې نېټې'; $labels['setdefault'] = 'تلوالي برابرول'; $labels['autodetect'] = 'په خپلواکه توګه'; @@ -346,13 +202,8 @@ $labels['timezone'] = 'سيميز وخت'; $labels['pagesize'] = 'په هر مخ پرتې کښې'; $labels['signature'] = 'لاسليک'; $labels['dstactive'] = 'ورځنيو کارونو لنډيز ساتل'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'ايچ ټي‌ام ايل استوزي وليکه'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'ايچ ټي ام ايل لاسليک'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'پخوانی چوکاټ وښييه'; $labels['skin'] = 'انټرفيس بڼه'; $labels['logoutclear'] = 'کثافت داني د وتنې په وخت کې پاکه کړه'; @@ -363,69 +214,26 @@ $labels['mailboxview'] = 'ليکبکس ښکار کړه'; $labels['mdnrequests'] = 'د استوونکي خبرتياوې'; $labels['askuser'] = 'له کاروونکي څخه وپوښته'; $labels['autosend'] = 'په خپلواکه توګه واستوه'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'لرې کړه'; $labels['readwhendeleted'] = 'په ړنګ شوو کې استوزي د لوستل شوي په توګه په نښه کړه'; $labels['flagfordeletion'] = 'استوزه د ړنګ شوي پرځای بېکاره کړه'; $labels['skipdeleted'] = 'ړنګ شوي استوزي مه ښکاره کوه'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'انځورونه له لري په ليکه کې ښکاره کړه'; $labels['fromknownsenders'] = 'له اشنا استوونکو څخه'; $labels['always'] = 'تل'; $labels['showinlineimages'] = 'نښلول شوي انځورونه تر استوزې لاندې ښکاره کړه'; $labels['autosavedraft'] = 'بارليک په خپل سري توګه خوندي‌کړه'; $labels['everynminutes'] = 'هر ه ګڼه په دقيقو کې'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'هېڅ'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'استوزي ښيي'; $labels['messagescomposition'] = 'استوزي ليکي'; $labels['mimeparamfolding'] = 'د نښلول شوو نومونه'; $labels['2231folding'] = 'بشپړ RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Full RFC 2047 (نور)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'پرمختللي لارې'; $labels['focusonnewmessage'] = 'فوکاس براوسر کړکۍ په نوي استوزي کې'; $labels['checkallfolders'] = 'په ټولو پوښيو کې نوي استوزي وګورئ'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'پوښۍ'; $labels['folders'] = 'پوښۍ'; $labels['foldername'] = 'پوښۍ نوم'; @@ -435,47 +243,11 @@ $labels['create'] = 'جوړول، رامنځ ته کول'; $labels['createfolder'] = 'نوې پوښۍ جوړ کړه'; $labels['managefolders'] = 'پوښيو څارل'; $labels['specialfolders'] = 'ځانګړي پوښۍۍ'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'اڼل'; $labels['sortasc'] = 'له پورته نه ښکته خوا ته برابرول'; $labels['sortdesc'] = 'له ښکته نه پورته خوا ته برابرول'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'بي'; $labels['KB'] = 'کي بي'; $labels['MB'] = 'ام بي'; $labels['GB'] = 'جي بي'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ps/messages.inc b/program/localization/ps/messages.inc index f4f966cb1..a900d328f 100644 --- a/program/localization/ps/messages.inc +++ b/program/localization/ps/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'ننوتنه په بري سره ترسره نه شوه'; $messages['cookiesdisabled'] = 'ستاسو لټوني ککوړي ونه منل'; $messages['sessionerror'] = 'ستاسې ناسته ناباوري يا له مينځه تللې ده'; $messages['storageerror'] = 'له ای ميپ سرور سره پيوستون په بري سره ترسره نه شو'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'ليکبکس کې هېڅ استوزي ونه مونده'; $messages['loggedout'] = 'تاسې له ناستې څخه په بشپړه توګه وويستل شوئ الله په امان'; $messages['mailboxempty'] = 'ليکبکس تش دی'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'د کار په حال کې'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'اومتوک د کار په حال کې'; $messages['checkingmail'] = 'نوي استوزي ګوري'; $messages['sendingmessage'] = 'استوزه استوي.'; @@ -47,31 +32,20 @@ $messages['messagesaved'] = 'استوزه په بارليک کې خوندي شو $messages['successfullysaved'] = 'په بري‌سره خوندي شوه'; $messages['addedsuccessfully'] = 'اړيکلوری په بري سره پتې کتاب ته ور زيات شو'; $messages['contactexists'] = 'يو اړيکلوری له دې برېښناليک پتې سره شتون لري'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'ستاسو د پټتيآ خوندي کېدو لپاره ، له لري انځورنه په دې استوزي‌کې بند کړئ'; $messages['encryptedmessage'] = 'دا يوه پټه استوزه ده او نه څرګندېږي. بښنه غواړو'; $messages['nocontactsfound'] = 'هېڅ اړيکلوری يې ونه موند'; $messages['contactnotfound'] = 'وړاندی شوی اړيکلوری ونه مونده'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'استوزي استونه په بري سره پای ته ونه رسېده'; $messages['senttooquickly'] = 'مهرباني وکړئ $صبر وکړئ د دې استوزې له لېږلو مخکې'; -$messages['errorsavingsent'] = 'دخوندي کولو او لېږلو پر مهال يوه تيروتنه رامنځ ته شوه'; -$messages['errorsaving'] = 'دخوندي کولو پر مهال يوه تيروتنه رامنځ ته شوه'; $messages['errormoving'] = 'استوزه ونه خوځول شوه'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'استوزه ړنګه نه شوه'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'په رښتيا سره غواړئ چې ټاکل شوی اړيکلوری ړنګ کړئ؟'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'په رښتيا سره غواړئ چې ټاکل شوي استوزي‌ړنګ کړئ؟'; $messages['deletefolderconfirm'] = 'په رښتيآ سره غواړئ چې دا پوښۍ ړنګه کړئ؟'; $messages['purgefolderconfirm'] = 'په رښتيا سره غواړئ چې ددې پوښۍ ټول استوزي‌ړنګ کړئ؟'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'پوښۍ ړنګوي'; $messages['foldermoving'] = 'پوښۍ خوځوي'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'دا پورمه بشپړه ډکه شوې نه ده'; $messages['noemailwarning'] = 'مهرباني وکړئ د يوه شته برېښناليک پته ورځای کړئ'; $messages['nonamewarning'] = 'مهرباني‌وکړئ يو نوم وليکئ'; @@ -83,92 +57,29 @@ $messages['nobodywarning'] = 'دا استوزه پرته له متن څخه اس $messages['notsentwarning'] = 'استوزه نه ده لېږل شوې. غواړئ چې استوزه مو لرې وغورځوئ'; $messages['noldapserver'] = 'مهرباني وکړئ يو ال ډپ سرور د پلټلو لپاره وټاکئ'; $messages['nosearchname'] = 'مهرباني وکړئ د يو اړيکلوري‌نوم يا برېښناليک پته وليکئ'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'استوزي ومونده$'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'د پلټلو بيا راګرځېدل هېڅ سمون ونه خوړه'; $messages['searching'] = 'پلټي'; $messages['checking'] = 'ګوري'; $messages['nospellerrors'] = 'هېڅ ليکدودي‌تيروتنه ونه مونده'; $messages['folderdeleted'] = 'پوښۍ په بشپړه توګه ړنګه شوه'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'په بشپړه توګه ړنګ شول'; $messages['converting'] = 'له استوزي څخه بڼې ړنګېږي'; $messages['messageopenerror'] = 'له سرور څخه استوزي پرمخ نه شي تلی'; $messages['fileuploaderror'] = 'دفايل پورته کول په بري سره سرته ونه رسيده'; $messages['filesizeerror'] = 'د پورته شوي فايل کچه بايد لږترلږه له $څخه تيری ونه کړي'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'ددې پتې يوازې سرچينه لوستل کېږي'; $messages['errorsavingcontact'] = 'د پتې اړيکلوری يې خوندي‌نه شو کړای'; $messages['movingmessage'] = 'استوزه خوځوي'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'يو لوستل شوی رسليک په بشپړه توګه واستول شو'; $messages['errorsendingreceipt'] = 'رسليک يې ونه شوای ليږلی'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'تاسې نه شئ کولی چې دا پېژندنه ړنګه کړئ، داستاسو اخرنی پيژندنه ده'; $messages['forbiddencharacter'] = 'د پوښۍ نوم له فوربايډن تورو څخه جوړ دی'; $messages['selectimportfile'] = 'مهرباني وکړئ‌يو فايل د پورته کولو لپاره وټاکئ'; $messages['addresswriterror'] = 'ټاکل شوی پتې کتاب د بياليکلو نه دی'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'نقلوي...صبر وکړئ'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'په بشپړه توګه نقل شو $اړيکلوري داخل شول, $شته تيرشوي انټاير څخه تيرشول:

$نومونه

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'چار اجازه نه لري'; $messages['nofromaddress'] = 'په ټاکل شوي پيژندنه کې برېښناليک پتې له لاسه ورکړي'; $messages['editorwarning'] = 'که د متن بڼو له منځه تللو ګواښ وي نو د متن سمون پرانيزئ. غواړئ چې دوام ورکړئ'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/pt_BR/labels.inc b/program/localization/pt_BR/labels.inc index 9235e3346..13db63e99 100644 --- a/program/localization/pt_BR/labels.inc +++ b/program/localization/pt_BR/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Usuário'; $labels['password'] = 'Senha'; diff --git a/program/localization/pt_BR/messages.inc b/program/localization/pt_BR/messages.inc index 447173a7f..2f5782373 100644 --- a/program/localization/pt_BR/messages.inc +++ b/program/localization/pt_BR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ocorreu um erro!'; $messages['loginfailed'] = 'Falha no login'; $messages['cookiesdisabled'] = 'Seu navegador não aceita cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'O contato solicitado não foi encontrado.'; $messages['contactsearchonly'] = 'Informe os termos de pesquisa para localizar os contatos'; $messages['sendingfailed'] = 'Falha no envio da mensagem.'; $messages['senttooquickly'] = 'Aguarde $sec s para enviar a mensagem.'; -$messages['errorsavingsent'] = 'Ocorreu um erro ao salvar a mensagem enviada.'; -$messages['errorsaving'] = 'Ocorreu um erro ao salvar.'; $messages['errormoving'] = 'Não foi possível mover a(s) mensagem(ns).'; $messages['errorcopying'] = 'Não foi possível copiar a(s) mensagem(ns).'; $messages['errordeleting'] = 'Não foi possível apagar a(s) mensagem(ns).'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Erro SMTP: $msg'; $messages['emailformaterror'] = 'Endereço de e-mail inválido: $email'; $messages['toomanyrecipients'] = 'Há muitos destinatários. Reduza o número de destinatários para $max.'; $messages['maxgroupmembersreached'] = 'O número de membros do grupo excede o máximo de $max'; -$messages['internalerror'] = 'Ocorreu um erro interno. Por favor tente novamente.'; $messages['contactdelerror'] = 'Não foi possível excluir o(s) contato(s).'; $messages['contactdeleted'] = 'Contato(s) excluído(s) com sucesso.'; $messages['contactrestoreerror'] = 'Não foi possivel recuperar o(s) contato(s) excluído(s).'; diff --git a/program/localization/pt_PT/labels.inc b/program/localization/pt_PT/labels.inc index 137840ea3..b12830031 100644 --- a/program/localization/pt_PT/labels.inc +++ b/program/localization/pt_PT/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bem-vindo ao $product'; $labels['username'] = 'Utilizador'; $labels['password'] = 'Palavra-passe'; @@ -177,7 +175,8 @@ $labels['resetsearch'] = 'Limpar pesquisa'; $labels['searchmod'] = 'Pesquisar em'; $labels['msgtext'] = 'Mensagem completa'; $labels['body'] = 'Corpo'; -$labels['type'] = 'Type'; +$labels['type'] = 'Tipo'; +$labels['namex'] = 'Nome'; $labels['openinextwin'] = 'Abrir numa nova janela'; $labels['emlsave'] = 'Guardar como (.eml)'; $labels['changeformattext'] = 'Mostrar em formato de texto simples'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Eliminar pesquisa'; $labels['import'] = 'Importar'; $labels['importcontacts'] = 'Importação de contactos'; $labels['importfromfile'] = 'Importar do ficheiro:'; -$labels['importtarget'] = 'Adicionar novo contacto ao livro de endereços:'; +$labels['importtarget'] = 'Adicionar contactos a'; $labels['importreplace'] = 'Substituir todo o livro de endereços.'; +$labels['importgroups'] = 'Importar atribuições de grupo'; +$labels['importgroupsall'] = 'Todos (criar grupos se necessário)'; +$labels['importgroupsexisting'] = 'Apenas para grupos existentes'; $labels['importdesc'] = 'Pode enviar/carregar contactos de um livro de endereços existente.
Neste momento suportamos a importação nos seguintes formatos: vCard ou CSV (valores separados por vírgula).'; $labels['done'] = 'Terminado'; $labels['settingsfor'] = 'Configurações para'; @@ -361,8 +363,8 @@ $labels['uisettings'] = 'Interface do utilizador'; $labels['serversettings'] = 'Definições do servidor'; $labels['mailboxview'] = 'Visualização da Caixa de Entrada'; $labels['mdnrequests'] = 'Enviar notificações'; -$labels['askuser'] = 'perguntar ao ultilizador'; -$labels['autosend'] = 'enviar automáticamente'; +$labels['askuser'] = 'perguntar ao utilizador'; +$labels['autosend'] = 'enviar automaticamente'; $labels['autosendknown'] = 'enviar recibo de leitura apenas para os meus contactos'; $labels['autosendknownignore'] = 'enviar recibo para os meus contactos, caso contrário, ignorar'; $labels['ignore'] = 'ignorar'; diff --git a/program/localization/pt_PT/messages.inc b/program/localization/pt_PT/messages.inc index ad924d65e..06e78198d 100644 --- a/program/localization/pt_PT/messages.inc +++ b/program/localization/pt_PT/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ocorreu um erro!'; $messages['loginfailed'] = 'O utilizador ou palavra-passe que introduziu não correspondem.'; $messages['cookiesdisabled'] = 'O seu navegador não suporta cookies'; @@ -55,8 +54,8 @@ $messages['contactnotfound'] = 'O contacto especificado não foi encontrado'; $messages['contactsearchonly'] = 'Insira os termos de pesquisa para localizar os contactos'; $messages['sendingfailed'] = 'Falha no envio da mensagem'; $messages['senttooquickly'] = 'Por favor espere $sec seg(s) antes de enviar esta mensagem'; -$messages['errorsavingsent'] = 'Ocorreu um erro ao guardar a mensagem enviada'; -$messages['errorsaving'] = 'Ocorreu um erro ao guardar'; +$messages['errorsavingsent'] = 'Ocorreu um erro ao gravar a mensagem enviada.'; +$messages['errorsaving'] = 'Ocorreu um erro ao gravar.'; $messages['errormoving'] = 'Não foi possível mover a mensagem'; $messages['errorcopying'] = 'Não foi possível copiar a mensagem'; $messages['errordeleting'] = 'Não foi possível eliminar a mensagem'; diff --git a/program/localization/ro_RO/labels.inc b/program/localization/ro_RO/labels.inc index d863017d2..953cfe8da 100644 --- a/program/localization/ro_RO/labels.inc +++ b/program/localization/ro_RO/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Bine aţi venit la $product'; $labels['username'] = 'Utilizator'; $labels['password'] = 'Parolă'; diff --git a/program/localization/ro_RO/messages.inc b/program/localization/ro_RO/messages.inc index 16eb0cd0a..c3e74597f 100644 --- a/program/localization/ro_RO/messages.inc +++ b/program/localization/ro_RO/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'A avut loc o EROARE!'; $messages['loginfailed'] = 'Autentificare eşuată'; $messages['cookiesdisabled'] = 'Browserul dumneavoastră nu acceptă cookies'; @@ -24,13 +23,13 @@ $messages['storageerror'] = 'Conectarea la serverul IMAP a eşuat'; $messages['servererror'] = 'Eroare de server!'; $messages['servererrormsg'] = 'Eroare Server: $msg'; $messages['dberror'] = 'Eroare bază de date!'; -$messages['requesttimedout'] = 'Timpul alocat cereri a expirat'; -$messages['errorreadonly'] = 'Nu se poate efectua operaţia. Dosarul este doar-citire.'; -$messages['errornoperm'] = 'Nu se poate efectua operaţia. Acces interzis.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; +$messages['requesttimedout'] = 'Timpul alocat cererii a expirat'; +$messages['errorreadonly'] = 'Nu se poate efectua operaţiunea. Dosarul este disponibil doar pentru citire.'; +$messages['errornoperm'] = 'Nu se poate efectua operaţiunea. Acces interzis.'; +$messages['erroroverquota'] = 'Nu se poate efectua operația. Nu există spațiu liber.'; +$messages['erroroverquotadelete'] = 'Nu există spațiu liber. Folosiți SHIFT+DEL pentru a șterge un mesaj.'; $messages['invalidrequest'] = 'Solicitare invalidă! Datele nu au fost salvate.'; -$messages['invalidhost'] = 'Hosname invalid'; +$messages['invalidhost'] = 'Nume server invalid.'; $messages['nomessagesfound'] = 'Nu a fost găsit nici un mesaj în această căsuţă poştală'; $messages['loggedout'] = 'Sesiune încheiată cu succes. La revedere!'; $messages['mailboxempty'] = 'Căsuţa poştală este goală'; @@ -39,34 +38,32 @@ $messages['loading'] = 'Se încarcă...'; $messages['uploading'] = 'Fişierul se încarcă...'; $messages['uploadingmany'] = 'Încarc fişierele...'; $messages['loadingdata'] = 'Se încarcă informaţiile...'; -$messages['checkingmail'] = 'Se caută mesaje noi...'; +$messages['checkingmail'] = 'Se verifică pentru mesaje noi...'; $messages['sendingmessage'] = 'Trimitere mesaj...'; $messages['messagesent'] = 'Mesajul a fost trimis cu succes!'; $messages['savingmessage'] = 'Salvare mesaj...'; $messages['messagesaved'] = 'Mesajul a fost salvat în Ciorne'; -$messages['successfullysaved'] = 'Salvarea s-a efectuat cu succes'; +$messages['successfullysaved'] = 'Salvat cu succes.'; $messages['addedsuccessfully'] = 'Contactul a fost adăugat cu succes în agendă'; -$messages['contactexists'] = 'Mai există un contact cu această adresă de e-mail'; +$messages['contactexists'] = 'Un contact cu această adresă de e-mail există deja.'; $messages['contactnameexists'] = 'Există deja un contact cu acelaşi nume.'; $messages['blockedimages'] = 'Pentru a vă proteja intimitatea, imaginile externe au fost blocate.'; $messages['encryptedmessage'] = 'Acesta este un mesaj criptat şi nu poate fi afişat. Ne pare rău.'; $messages['nocontactsfound'] = 'Nu s-a găsit nici un contact'; $messages['contactnotfound'] = 'Contactul solicitat nu a fost găsit.'; -$messages['contactsearchonly'] = 'Introdu nişte termeni decăutare pentru a găsi contactele'; +$messages['contactsearchonly'] = 'Introdu nişte termeni de căutare pentru a găsi contactele'; $messages['sendingfailed'] = 'Nu s-a reuşit trimiterea mesajului'; $messages['senttooquickly'] = 'Vă rugăm aşteptaţi $sec sec. înainte de a trimite acest mesaj'; -$messages['errorsavingsent'] = 'A intervenit o eroare în timp ce se efectua salvarea mesajului trimis'; -$messages['errorsaving'] = 'A intervenit o eroare în timp ce se efectua salvarea'; -$messages['errormoving'] = 'Mesajul(e) nu a(u) putut fi mutat(e)'; -$messages['errorcopying'] = 'Mesajul(e) nu a(u) putut fi copiat(e)'; -$messages['errordeleting'] = 'Mesajul(e) nu a(u) putut fi şters(e)'; -$messages['errormarking'] = 'Mesajul(e) nu a(u) putut fi marcat(e)'; -$messages['deletecontactconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi contactul(ele) selectate?'; -$messages['deletegroupconfirm'] = 'Chiar vrei să ştergi grupul selectat?'; -$messages['deletemessagesconfirm'] = 'Chiar doriţi să ştergeţi mesajele selectate ?'; +$messages['errormoving'] = 'Nu am putut muta mesajul (mesajele).'; +$messages['errorcopying'] = 'Nu am putut copia mesajul (mesajele).'; +$messages['errordeleting'] = 'Nu am putut şterge mesajul (mesajele).'; +$messages['errormarking'] = 'Nu am putut marca mesajul (mesajele)'; +$messages['deletecontactconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi contactul/ele selectat(e)?'; +$messages['deletegroupconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi grupul selectat?'; +$messages['deletemessagesconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi mesajul (mesajele) selectate ?'; $messages['deletefolderconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi acest dosar?'; $messages['purgefolderconfirm'] = 'Sunteţi sigur că doriţi să ştergeţi toate mesajele din acest dosar?'; -$messages['contactdeleting'] = 'Şterg contactul(ele)...'; +$messages['contactdeleting'] = 'Şterg contactul (ele)...'; $messages['groupdeleting'] = 'Şterg grupul...'; $messages['folderdeleting'] = 'Se şterge dosarul...'; $messages['foldermoving'] = 'Se mută dosarul...'; @@ -99,14 +96,17 @@ $messages['deletedsuccessfully'] = 'Mesaj şters cu succes !'; $messages['converting'] = 'Resetez mesajul la parametrii iniţiali...'; $messages['messageopenerror'] = 'Nu s-a putut încărca mesajul din server'; $messages['fileuploaderror'] = 'Încărcarea pe server a eşuat'; -$messages['filesizeerror'] = 'Fişierul încărcat depăşeşte mărimea de $size'; -$messages['copysuccess'] = '$nr adrese s-au copiat cu succes'; -$messages['copyerror'] = 'Nu s-a putut copia nicio adresă'; -$messages['sourceisreadonly'] = 'Sursa acestei adrese este "read-only"(se poate doar citi)'; +$messages['filesizeerror'] = 'Fişierul încărcat depăşeşte dimensiunea de $size'; +$messages['copysuccess'] = 'Am copiat cu succes $nr contacte.'; +$messages['movesuccess'] = 'Am mutat cu succes $nr contacte.'; +$messages['copyerror'] = 'Nu am putut copia nici un contact.'; +$messages['moveerror'] = 'Nu am putut muta nici un contact.'; +$messages['sourceisreadonly'] = 'Sursa acestei adrese este "read-only" (se poate doar citi)'; $messages['errorsavingcontact'] = 'Nu s-a putut salva adresa de contact'; $messages['movingmessage'] = 'Mutare mesaj....'; $messages['copyingmessage'] = 'Copiere mesaj...'; $messages['copyingcontact'] = 'Copiez contact(ele)...'; +$messages['movingcontact'] = 'Se muta contactul (contactele) ...'; $messages['deletingmessage'] = 'Şterg mesaj(ele)...'; $messages['markingmessage'] = 'Marchez mesaj(ele)...'; $messages['addingmember'] = 'Adaug contact(ele) la grup...'; @@ -117,18 +117,20 @@ $messages['deleteidentityconfirm'] = 'Chiar vrei să ştergi aceasă identitate? $messages['nodeletelastidentity'] = 'Nu puteţi şterge această identitate, este ultima.'; $messages['forbiddencharacter'] = 'Numele dosarului conţine un caracter nepermis.'; $messages['selectimportfile'] = 'Va rugăm să selectaţi fişierul pentru încărcare'; -$messages['addresswriterror'] = 'Agenda selectată nu poate fi actualizată'; +$messages['addresswriterror'] = 'Agenda selectată nu poate fi actualizată, aceasta fiind disponibila doar pentru citire.'; $messages['contactaddedtogroup'] = 'Contactele au fost adăugate cu succes la acest grup'; $messages['contactremovedfromgroup'] = 'Contactele au fost şterse cu succes din acest grup'; $messages['nogroupassignmentschanged'] = 'Atribuirile la grupuri nu au fost modificate.'; $messages['importwait'] = 'Datele sunt importate, vă rugăm să aşteptaţi...'; $messages['importformaterror'] = 'Importul a eșuat! Fișierul încărcat nu este un fișier valid pentru import de date.'; -$messages['importconfirm'] = 'Contactele $inserted au fost importate cu succes, $skipped intrări au fost ignorate deoarece ele există deja:$names'; +$messages['importconfirm'] = '$inserted contacte au fost importate cu succes, $skipped intrări au fost ignorate deoarece ele există deja: $names'; $messages['importconfirmskipped'] = 'Am sărit peste $skipped înregistrări'; -$messages['opnotpermitted'] = 'Operaţia nu este permisă!'; +$messages['importmessagesuccess'] = 'Am importat cu succes $nr mesaje.'; +$messages['importmessageerror'] = 'Importarea a esuat. Fisierul incarca nu este un mesaj valid pentru email.'; +$messages['opnotpermitted'] = 'Operaţiunea nu este permisă!'; $messages['nofromaddress'] = 'Nu există o adresă de e-mail în identitatea selectată'; $messages['editorwarning'] = 'Trecerea în mod text a editorului va cauza pierderea formatării textului. Doriţi să continuaţi?'; -$messages['httpreceivedencrypterror'] = 'Vă rugăm să luaţi legătura cu administratorul serverului de mail, deoarece există o eroare în configuraţia acestuia. Mesajul d-voastră nu a fost trimis.'; +$messages['httpreceivedencrypterror'] = 'Vă rugăm să luaţi legătura cu administratorul serverului de mail, deoarece există o eroare în configuraţia acestuia. Mesajul d-voastră nu a fost trimis.'; $messages['smtpconnerror'] = 'Eroare SMTP ($code): Conexiunea cu serverul a eşuat'; $messages['smtpautherror'] = 'Eroare SMTP ($code): Autentificare eşuată'; $messages['smtpfromerror'] = 'Eroare SMTP ($code): Nu s-a putut seta expeditorul "$from" ($msg)'; @@ -138,7 +140,6 @@ $messages['smtperror'] = 'Eroare SMTP: $msg'; $messages['emailformaterror'] = 'Adresă de e-mail incorectă: $email'; $messages['toomanyrecipients'] = 'Prea mulţi destinatari. Reduceţi numărul de destinatari la $max.'; $messages['maxgroupmembersreached'] = 'Numărul de membri ai grupului depăşeşte maximul de $max.'; -$messages['internalerror'] = 'A avut loc o eroare internă. Încearcă mai târziu.'; $messages['contactdelerror'] = 'Nu am putut şterge contact(ele).'; $messages['contactdeleted'] = 'Contact(ele) au fost şterse cu succes.'; $messages['contactrestoreerror'] = 'Nu am putut restaura contact(ele) şterse.'; @@ -147,13 +148,13 @@ $messages['groupdeleted'] = 'Grupul a fost şters cu succes.'; $messages['grouprenamed'] = 'Grupul a fost redenumit cu succes.'; $messages['groupcreated'] = 'Grupul a fost creat cu succes.'; $messages['savedsearchdeleted'] = 'Căutarea salvată a fost ştearsă cu succes.'; -$messages['savedsearchdeleteerror'] = 'Nu a putut şterge căutarea salvată.'; +$messages['savedsearchdeleteerror'] = 'Nu am putut şterge căutarea salvată.'; $messages['savedsearchcreated'] = 'Căutarea a fost salvată cu succes.'; $messages['savedsearchcreateerror'] = 'Nu am putut salva căutarea.'; -$messages['messagedeleted'] = 'Mesaj(ele) a(u) fost şters(e) cu succes.'; -$messages['messagemoved'] = 'Mesaj(ele) a(u) fost mutat(e) cu succes.'; -$messages['messagecopied'] = 'Mesaj(ele) a(u) fost copiat(e) cu succes.'; -$messages['messagemarked'] = 'Mesaj(ele) a(u) fost marcat(e) cu succes.'; +$messages['messagedeleted'] = 'Mesajul (ele) a (u) fost şters (e) cu succes.'; +$messages['messagemoved'] = 'Mesajul (ele) a (u) fost mutat (e) cu succes.'; +$messages['messagecopied'] = 'Mesajul (ele) a (u) fost copiat (e) cu succes.'; +$messages['messagemarked'] = 'Mesajul (ele) a (u) fost marcat (e) cu succes.'; $messages['autocompletechars'] = 'Introdu măcar $min caractere pentru autocompletare.'; $messages['autocompletemore'] = 'Au fost găsite mai multe înregistrări. Introdu mai multe caractere.'; $messages['namecannotbeempty'] = '"Nume" nu poate fi gol.'; @@ -165,5 +166,5 @@ $messages['mispellingsfound'] = 'Au fost găsite greşeli de ortografie în mesa $messages['parentnotwritable'] = 'Nu pot crea/muta dosarul în dosarul părinte selectat. Fără drepturi de acces.'; $messages['messagetoobig'] = 'Partea de mesaj este prea mare pentru a o procesa.'; $messages['attachmentvalidationerror'] = 'ATENȚIE! Acest atașament este suspect, fiindcă tipul lui nu coincide cu tipul declarat în mesaj. Dacă nu aveți încredere în expeditor, nu vă recomandăm să deschideți fișierul, fiindcă poate avea conținut malițios.

Așteptat: $expected; găsit: $detected'; -$messages['noscriptwarning'] = 'Atenție: Serviciul de webmail necesită Javascript! Pentru al utiliza vă rugăm activați Javascript în navigator.'; +$messages['noscriptwarning'] = 'Atenție: Serviciul de webmail necesită Javascript! Pentru a-l utiliza vă rugăm activați Javascript în setările browserului.'; ?> diff --git a/program/localization/ru_RU/labels.inc b/program/localization/ru_RU/labels.inc index 86937e5b4..109793666 100644 --- a/program/localization/ru_RU/labels.inc +++ b/program/localization/ru_RU/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Добро пожаловать в $product!'; $labels['username'] = 'Имя пользователя'; $labels['password'] = 'Пароль'; @@ -318,8 +316,11 @@ $labels['searchdelete'] = 'Удалить запрос'; $labels['import'] = 'Импортировать'; $labels['importcontacts'] = 'Импортировать контакты'; $labels['importfromfile'] = 'Импортировать из файла:'; -$labels['importtarget'] = 'Добавить новые контакты в адресную книгу:'; +$labels['importtarget'] = 'Добавить контакты в'; $labels['importreplace'] = 'Заменить всю адресную книгу'; +$labels['importgroups'] = 'Распределение по группам при импорте.'; +$labels['importgroupsall'] = 'Все (создать группы при необходимости)'; +$labels['importgroupsexisting'] = 'Только для существующих групп'; $labels['importdesc'] = 'Вы можете загрузить контакты из существующей адресной книги.
В настоящее время мы поддерживаем импорт адресов в формате визитной карточки vCard или CSV (данные разделённые запятой).'; $labels['done'] = 'Завершено'; $labels['settingsfor'] = 'Настройки для'; diff --git a/program/localization/ru_RU/messages.inc b/program/localization/ru_RU/messages.inc index cdd7b5ac2..d8da5ee5c 100644 --- a/program/localization/ru_RU/messages.inc +++ b/program/localization/ru_RU/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Произошла ошибка!'; $messages['loginfailed'] = 'Неудачная попытка входа.'; $messages['cookiesdisabled'] = 'Ваш браузер не принимает cookie.'; diff --git a/program/localization/si_LK/labels.inc b/program/localization/si_LK/labels.inc index ef7911900..9baa37028 100644 --- a/program/localization/si_LK/labels.inc +++ b/program/localization/si_LK/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '$product වෙත පිළිගනිමු'; $labels['username'] = 'පරිශීලක නාමය'; $labels['password'] = 'මුරපදය'; @@ -31,33 +29,23 @@ $labels['drafts'] = 'කටු සටහන්'; $labels['sent'] = 'යැවූ'; $labels['trash'] = 'ඉවතලන බඳුන'; $labels['junk'] = 'සුන්බුන්'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'මාතෘකාව'; $labels['from'] = 'වෙතින්'; -$labels['sender'] = 'Sender'; $labels['to'] = 'වෙත'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'පිළිතුරු සඳහා'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'දිනය'; $labels['size'] = 'ප්‍රමාණය'; $labels['priority'] = 'ප්‍රමුඛත්වය'; $labels['organization'] = 'සංවිධානය'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'බහාලුම්'; $labels['messagesfromto'] = '$from වෙතින් $to වෙත පණිවිඩ $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'පණිවිඩ $count න් $nr'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'පිටපත් කරන්න'; $labels['move'] = 'ගෙනයන්න'; $labels['moveto'] = 'ගෙන යන්න...'; $labels['download'] = 'බාගත කරන්න'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ගොනුවේ නම'; $labels['filesize'] = 'ගොනුවේ ප්‍රමාණය'; $labels['addtoaddressbook'] = 'ලිපින පොතට එක් කරන්න'; @@ -100,18 +88,13 @@ $labels['longoct'] = 'ඔක්තෝම්බර්'; $labels['longnov'] = 'නොවැම්බර්'; $labels['longdec'] = 'දෙසැම්බර්'; $labels['today'] = 'අද'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'අඵත් පණිවිඩ සඳහා පිරික්සීම'; $labels['compose'] = 'පණිවිඩයක් සෑදීම'; $labels['writenewmessage'] = 'අඵත් පණිවිඩයක්'; $labels['reply'] = 'පිළිතුරු දෙන්න'; $labels['replytomessage'] = 'පණිවිඩයට පිළිතුරු'; $labels['replytoallmessage'] = 'එවන්නාට සහ සැමට පිළිතුරු'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; $labels['forward'] = 'ඉදිරියට'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'පණිවිඩය ඉදිරියට'; $labels['deletemessage'] = 'පණිවිඩය මකන්න'; $labels['movemessagetotrash'] = 'පණිවිඩය ලටපට වෙත ගෙන යන්න'; @@ -126,8 +109,6 @@ $labels['mark'] = 'සලකුණු කරන්න'; $labels['markmessages'] = 'පණිවිඩ සලකුණු කරන්න'; $labels['markread'] = 'කියවු ලෙස'; $labels['markunread'] = 'නොකියවු ලෙස'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; $labels['moreactions'] = 'තවත් ක්‍රියා...'; $labels['more'] = 'තවත්'; $labels['back'] = 'ආපසු'; @@ -137,73 +118,40 @@ $labels['all'] = 'සියල්ල'; $labels['none'] = 'කිසිවක් නැත'; $labels['currpage'] = 'දැනට ඇති පිටුව'; $labels['unread'] = 'නොකියවූ'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'මකා දැමූ'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; $labels['filter'] = 'පෙරන්න'; $labels['list'] = 'ලැයිස්තුව'; -$labels['threads'] = 'Threads'; $labels['expand-all'] = 'සියල්ල දිගහරින්න'; -$labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'සියල්ල හකුළන්න'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; $labels['fromto'] = 'වෙතින්/වෙත'; -$labels['flag'] = 'Flag'; $labels['attachment'] = 'ඇමුණුම'; $labels['nonesort'] = 'කිසිවක් නැත'; $labels['sentdate'] = 'යැවූ දිනය'; $labels['arrival'] = 'ලගාවූ දිනය'; $labels['asc'] = 'ආරෝහණ'; $labels['desc'] = 'අවරෝහණ'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; $labels['folderactions'] = 'බහාලුම් ක්‍රියා...'; $labels['compact'] = 'සංයුක්ත'; $labels['empty'] = 'හිස්'; -$labels['importmessages'] = 'Import messages'; -$labels['quota'] = 'Disk usage'; $labels['unknown'] = 'නොදනී'; $labels['unlimited'] = 'අසීමිත'; $labels['quicksearch'] = 'ඉක්මන් සෙවුම'; $labels['resetsearch'] = 'සෙවුම යලි පිහිටවීම'; -$labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'සම්පූර්ණ පණිවිඩය'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'නව කවුළුවක විවෘත කරන්න'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'පණිවිඩය යවන්න'; $labels['savemessage'] = 'කටු සටහනක් ලෙස සුරකින්න'; $labels['addattachment'] = 'ගොනුවක් අමුණන්න'; $labels['charset'] = 'අකුරැ කට්ටලය'; $labels['editortype'] = 'සම්පාදන ආකාරය'; $labels['returnreceipt'] = 'නැවත ලබන්නා'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'අක්‍ෂර වින්‍යාසය පරික්‍ෂාකරන්න'; $labels['resumeediting'] = 'සම්පාදන නැවත ඇරඹීම'; $labels['revertto'] = 'ආපසු ඒම'; $labels['attach'] = 'අමුණන්න'; $labels['attachments'] = 'ඇමුණුම්'; $labels['upload'] = 'ඇතුල් කරීම'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'වසන්න'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'අඩු'; $labels['lowest'] = 'අඩුම'; $labels['normal'] = 'සාමාන්‍ය'; @@ -211,20 +159,11 @@ $labels['high'] = 'ඉහළ'; $labels['highest'] = 'ඉහළම'; $labels['nosubject'] = '(මාතෘකාව නොමැත)'; $labels['showimages'] = 'රූප පෙන්වන්න'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'පැහැදිලි අකුරු'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; $labels['addcc'] = 'Cc එක් කරන්න'; $labels['addbcc'] = 'Bcc එක් කරන්න'; $labels['addreplyto'] = '\'පිළිතුරු සඳහා\' එක් කරන්න'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'මෙම පණිවුඩය එවන්නා ඔබ එය කියවු බව අසයි. එය දැන්වීමට ඔබ කැමතිද?'; $labels['receiptread'] = 'ලැබීම් ලදුපත (කියවීම)'; $labels['yourmessage'] = 'මෙය ඔබගේ පණිවුඩයේ ලැබීම් ලදුපතයි'; @@ -232,20 +171,14 @@ $labels['receiptnote'] = 'සටහන: ලැබීම් ලදුපත ම $labels['name'] = 'ප්‍රදර්ශනය වන නම'; $labels['firstname'] = 'මුල් නම'; $labels['surname'] = 'අවසන් නම'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; $labels['nickname'] = 'සුරතල් නම'; $labels['jobtitle'] = 'රැකියා තනතුර'; $labels['department'] = 'දෙපාර්තමේන්තුව'; $labels['gender'] = 'ස්ත්‍රි/පුරුෂ භාවය'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'විද්‍යුත් තැපෑල'; $labels['phone'] = 'දුරකථනය'; $labels['address'] = 'ලිපිනය'; -$labels['street'] = 'Street'; $labels['locality'] = 'නගරය'; -$labels['zipcode'] = 'ZIP Code'; $labels['region'] = 'ප්‍රාන්තය/පළාත'; $labels['country'] = 'රට'; $labels['birthday'] = 'උපන්දිනය'; @@ -257,10 +190,7 @@ $labels['male'] = 'පුරුෂ'; $labels['female'] = 'ස්ත්‍රී'; $labels['manager'] = 'කළමණාකරු'; $labels['assistant'] = 'සහායක'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; $labels['search'] = 'සොයන්න'; -$labels['advsearch'] = 'Advanced Search'; $labels['advanced'] = 'සංකීර්ණ‍'; $labels['other'] = 'වෙනත්'; $labels['typehome'] = 'නිවස'; @@ -269,19 +199,14 @@ $labels['typeother'] = 'වෙනත්'; $labels['typemobile'] = 'ජංගම'; $labels['typemain'] = 'ප්‍රධාන'; $labels['typehomefax'] = 'ගෘහස්ථ ෆැක්ස්'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; $labels['typepager'] = 'පේජරය'; $labels['typevideo'] = 'වීඩියෝ'; $labels['typeassistant'] = 'සහායක'; -$labels['typehomepage'] = 'Home Page'; $labels['typeblog'] = 'බ්ලොග්'; $labels['typeprofile'] = 'පැතිකඩ'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'නව සබඳතාවය එක් කරන්න'; $labels['editcontact'] = 'ලිපිනය වෙනස් කිරීම'; $labels['contacts'] = 'සබඳතා'; -$labels['contactproperties'] = 'Contact properties'; $labels['personalinfo'] = 'පුද්ගලික තොරතුරු'; $labels['edit'] = 'සංස්කරණය'; $labels['cancel'] = 'අවලංගු කරන්න'; @@ -289,37 +214,20 @@ $labels['save'] = 'සුරකින්න'; $labels['delete'] = 'මකන්න'; $labels['rename'] = 'නම වෙනස් කරන්න'; $labels['addphoto'] = 'එක් කරන්න'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'අඵත් ලිපින පතක් සෑදීම'; $labels['deletecontact'] = 'තෝරාගත් ලිපින මකාදමන්න'; $labels['composeto'] = 'පනිවුඩයක් සෑදීම'; $labels['contactsfromto'] = '$from ගෙන් $to ලිපින $count'; $labels['print'] = 'මුද්‍රණය කරන්න'; $labels['export'] = 'අපනයනය'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'පෙර පිටුව පෙන්වන්න'; $labels['firstpage'] = 'පළමුවන පිටුව පෙන්වන්න'; $labels['nextpage'] = 'මීළඟ පිටුව පෙන්වන්න'; $labels['lastpage'] = 'අවසාන පිටුව පෙන්වන්න'; $labels['group'] = 'කණ්ඩායම'; $labels['groups'] = 'කණ්ඩායම්'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'පුද්ගලික ලිපිනය'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'ආනයනය කරන්න'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'අවසානයි'; $labels['settingsfor'] = 'සඳහා සැකසුම්'; $labels['about'] = 'පිළිබඳ'; @@ -332,100 +240,37 @@ $labels['newidentity'] = 'අඵත් අනන්නයතාව'; $labels['newitem'] = 'අඵත් අයිතම'; $labels['edititem'] = 'අයිතම වෙනස් කිරීම්'; $labels['preferhtml'] = 'HTML විදහා පෙන්වීම'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML පණිවිඩය'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'සුරුබුහුටි දින'; $labels['setdefault'] = 'පළමු තත්වයට'; $labels['autodetect'] = 'ස්වයංක්‍රීය'; $labels['language'] = 'භාෂාව'; $labels['timezone'] = 'කාල කලාපය'; -$labels['pagesize'] = 'Rows per page'; $labels['signature'] = 'අත්සන'; $labels['dstactive'] = 'දිවා එළිය ඉතිරි කිරීම'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'HTML පණිවිඩයක් සෑදීම'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML අත්සන'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'පූර්වදර්ශන කොටස පෙන්නන්න'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; $labels['uisettings'] = 'පරිශීලක අතුරුමුහුණත'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; $labels['askuser'] = 'මගෙන් විමසන්න'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'නොසලකා හරින්න'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; $labels['always'] = 'සැමවිට'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'ස්වයංක්‍රීයව කටු සටහන සුරකින්න'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'කිසි විටෙකත් නැති'; $labels['immediately'] = 'හැකි ඉක්මනින්'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; $labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Full RFC 2047 (වෙනත්)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'අංශය'; $labels['maintenance'] = 'නඩත්තු කිරීම'; $labels['newmessage'] = 'අලුත් පණිවිඩයක්'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; $labels['autoaddsignature'] = 'ස්වයංක්‍රීයව අත්සන ඇතුලත් කරන්න'; $labels['newmessageonly'] = 'අලුත් පණිවිඩය පමණක්'; -$labels['replyandforwardonly'] = 'replies and forwards only'; $labels['insertsignature'] = 'අත්සන ඇතුලත් කරන්න'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; $labels['afternseconds'] = 'තත්පර $nකට පසු'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; $labels['spellcheckignoresyms'] = 'සලකුණු සහිත වචන නොසලකා හරින්න'; $labels['spellcheckignorenums'] = 'අංක සහිත වචන නොසලකා හරින්න'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; $labels['addtodict'] = 'ශබ්ද කෝෂයට එක් කරන්න'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'බහාලුම'; $labels['folders'] = 'බහාලුම්'; $labels['foldername'] = 'බහාලුමේ නම'; @@ -437,20 +282,14 @@ $labels['managefolders'] = 'බහාලුම් කළමනාකරණය $labels['specialfolders'] = 'විශේෂ බහාලුම්'; $labels['properties'] = 'වත්කම්'; $labels['folderproperties'] = 'බහාලුමේ වත්කම්'; -$labels['parentfolder'] = 'Parent folder'; $labels['location'] = 'ස්ථානය'; $labels['info'] = 'තොරතුරු'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; $labels['foldertype'] = 'බහාලුම් වර්ගය'; $labels['personalfolder'] = 'පුද්ගලික බහාලුම'; -$labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'පොදු බහාලුම'; $labels['sortby'] = 'වර්ග කරන්න'; $labels['sortasc'] = 'ආරෝහණ වර්ග කිරීම'; $labels['sortdesc'] = 'අවරෝහණ වර්ග කිරීම'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'ප්ලගිනය'; $labels['version'] = 'අනුවාදය'; $labels['source'] = 'මූලාශ්‍රය'; @@ -463,10 +302,7 @@ $labels['GB'] = 'GB'; $labels['unicode'] = 'යුනිකේත'; $labels['english'] = 'ඉංග්‍රීසි'; $labels['westerneuropean'] = 'බටහිර යුරෝපීය'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; $labels['baltic'] = 'බෝල්ටික්'; -$labels['cyrillic'] = 'Cyrillic'; $labels['arabic'] = 'අරාබි'; $labels['greek'] = 'ග්‍රීක'; $labels['hebrew'] = 'හීබෲ'; diff --git a/program/localization/si_LK/messages.inc b/program/localization/si_LK/messages.inc index e2e18c387..0c6fa1156 100644 --- a/program/localization/si_LK/messages.inc +++ b/program/localization/si_LK/messages.inc @@ -15,29 +15,15 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'දෝෂයක් මතුවිය!'; $messages['loginfailed'] = 'ඇතුල්වීම අසාර්ථකයි.'; $messages['cookiesdisabled'] = 'ඔබේ බෞසරය කුකී බාර ගන්නේ නැත'; $messages['sessionerror'] = 'ඔබේ වාරය අවලංගු හෝ කාලය ඉකුත් වී ඇත'; -$messages['storageerror'] = 'Connection to storage server failed.'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; $messages['dberror'] = 'දත්ත ගබඩාවේ දෝෂය!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'ලියුම් පෙට්ටියේ පනිවුඩ නැත'; $messages['loggedout'] = 'ඔබගේ වාරය සාර්ථකව අවසන් විය. අයුබොවන්!'; $messages['mailboxempty'] = 'ලියුම් පෙට්ටිය හිස්'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'පූරනය...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'දත්ත පූරනය...'; $messages['checkingmail'] = 'අලුත් පණිවිඩ පරීක්ෂා කරමින්...'; $messages['sendingmessage'] = 'පණිවිඩය යවමින්...'; @@ -47,128 +33,56 @@ $messages['messagesaved'] = 'පනිවුඩය කටු සටහනේ ත $messages['successfullysaved'] = 'සුරැකීම සාර්ථකයි.'; $messages['addedsuccessfully'] = 'ලිපිනය සාර්ථකව ලිපින පොතට එකතු කරන ලදී.'; $messages['contactexists'] = 'ඉහත ලිපිනය සහිත විද්යුත් තැපැල් ලිපිනයක් ලිපින පොතේ ඇත.'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'ඔබගෙ පොද්ගලිකත්වය හේතුවෙන්, දුරස්ථ රූප අවහිර කර ඇත.'; $messages['encryptedmessage'] = 'මෙම පනිවුඩය රහස් කේතනය කර ඇති බැවින් පෙන්විය නොහැක. සමාවන්න!'; $messages['nocontactsfound'] = 'ලිපින සොයා ගත නොහැක'; $messages['contactnotfound'] = 'ඉල්ලූ ලිපිනය සොයාගත නොහැක'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'පණිවිඩය යැවීම අසාර්ථකයි.'; $messages['senttooquickly'] = 'කරුණාකර මෙම පණිවිඩය යැවීමට පෙර තත්පර $secක් රැදී සිටින්න.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'පණිවිඩය සුරැකීමේදී දෝෂයක් මතුවිය.'; $messages['errormoving'] = 'පනිවුඩය ගෙන යාමට නොහැක'; $messages['errorcopying'] = 'පණිවිඩ(ය) පිටපත් කල නොහැක.'; $messages['errordeleting'] = 'පණිවිඩ(ය) මකා දැමීමට නොහැක.'; $messages['errormarking'] = 'පණිවිඩ(ය) සලකුණු කල නොහැක.'; $messages['deletecontactconfirm'] = 'තෝරා ඇති ලිපින ඔබට මකා දැමීමට සැබවින්ම වුවමනාද?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'තෝරා ඇති පණිවිඩ(ය) ඔබට මකා දැමීමට සැබවින්ම වුවමනාද?'; $messages['deletefolderconfirm'] = 'ඔබට මෙම බහාලුම මකා දැමීමට සැබවින්ම වුවමනාද?'; $messages['purgefolderconfirm'] = 'මෙම බහාලමේ ඇති සියලුම පණිවිඩ ඔබට මකා දැමීමට සැබවින්ම වුවමනාද?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'බහාලුම මකාදමමින්...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'පෝරමය සම්පූර්ණයෙන් පුරවා නොමැත.'; $messages['noemailwarning'] = 'කරුණාකර වලංගු විද්යුත් ලිපිනයක් ඇතුලත් කරන්න.'; $messages['nonamewarning'] = 'කරුණාකර නම ඇතුලත් කරන්න.'; $messages['nopagesizewarning'] = 'කරුණාකර පිටුවේ ප්‍රමාණය ඇතුලත් කරන්න.'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'කරුණාකර යටත් පිරිසෙයින් එක් ලබන්නෙකු හෝ ඇතුලත් කරන්න'; $messages['nosubjectwarning'] = '"මාතෘකාව" හිස්. මාතෘකාවක් ඇතුලත් කිරීමට ඔබ කැමතිද?'; $messages['nobodywarning'] = 'මෙම හිස් පනිවුඩය යවන්නද?'; $messages['notsentwarning'] = 'පණිවිඩය යැවීමට නොහැකි විය. ඔබට එය බැහැර කිරීමට වුවමනාද?'; $messages['noldapserver'] = 'සෙවුම සඳහා කරුණාකර ldap සම්බන්ධතාවයක් තෝරා ගන්න'; $messages['nosearchname'] = 'කරුණාකර ලිපිනයෙහි නම හෝ විද්යුත් තැපැල් ලිපිනය ඇතුලත් කරන්න'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = '$nr පනිවුඩය හමු විය'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'සෙවුමට අදාල ගැලපීමක් නොමැත.'; $messages['searching'] = 'සොයමින්...'; $messages['checking'] = 'පරික්‍ෂාකරමින්...'; $messages['nospellerrors'] = 'වියාකරන දොෂ නොමැත'; $messages['folderdeleted'] = 'බහාලුම සාර්ථකව මකා දමන ලදී.'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'සාර්ථකව මකාදමන ලදී.'; $messages['converting'] = 'පනිවුඩයෙන් ආකෘතීකරණය ඉවත් කිරීම'; $messages['messageopenerror'] = 'පනිවුඩය පූරනය කිරීමට නොහැක'; $messages['fileuploaderror'] = 'ගොනුව ඇතුලත් කිරීමට නොහැක'; $messages['filesizeerror'] = 'ඇතුලත් කල ගොනුවෙ ප්රමාණය උපරිම අගය $size ඉක්මවා ඇත'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'මෙම ලිපින මූලාශ්රය කියවීම සඳහා පමනි'; $messages['errorsavingcontact'] = 'ලිපිනය තැන්පත් කීරීමට නොහැක'; $messages['movingmessage'] = 'පණිවිඩ(ය) ගෙනයමින්...'; $messages['copyingmessage'] = 'පණිවිඩ(ය) පිටපත් කරමින්...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'පණිවිඩ(ය) මකා දමමින්...'; $messages['markingmessage'] = 'පණිවිඩ(ය) සලකුණු කරමින්...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; $messages['errorsendingreceipt'] = 'කියවීම් භාර ගැනීම යැවීමට නොහැක'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'අවසාන අනන්‍යතාවය මකා දැමිය නොහැක'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'ආනයනය කරමින්, කරුණාකර රැදී සිටින්න...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; $messages['emailformaterror'] = 'අවලංගු විද්‍යුත් තැපැල් ලිපිනය: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; $messages['messagedeleted'] = 'පණිවිඩ(ය) මකා දැමීම සාර්ථකයි.'; $messages['messagemoved'] = 'පණිවිඩ(ය) ගෙනයෑම සාර්ථකයි.'; $messages['messagecopied'] = 'පණිවිඩ(ය) පිටපත් කිරීම සාර්ථකයි.'; $messages['messagemarked'] = 'පණිවිඩ(ය) සලකුණු කිරීම සාර්ථකයි.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; $messages['namecannotbeempty'] = 'නම හිස්ව තැබිය නොහැක.'; $messages['nametoolong'] = 'නම දිග වැඩිය.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/sk_SK/labels.inc b/program/localization/sk_SK/labels.inc index 67dc9210b..36d9850a0 100644 --- a/program/localization/sk_SK/labels.inc +++ b/program/localization/sk_SK/labels.inc @@ -15,26 +15,24 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Vitajte v $product'; -$labels['username'] = 'Prihlasovacie meno'; +$labels['username'] = 'Meno používateľa'; $labels['password'] = 'Heslo'; $labels['server'] = 'Server'; $labels['login'] = 'Prihlásiť'; $labels['logout'] = 'Odhlásiť'; -$labels['mail'] = 'E-Mail'; +$labels['mail'] = 'E-mail'; $labels['settings'] = 'Nastavenia'; -$labels['addressbook'] = 'Kontakty'; +$labels['addressbook'] = 'Adresár kontaktov'; $labels['inbox'] = 'Doručená pošta'; -$labels['drafts'] = 'Rozpísané'; +$labels['drafts'] = 'Koncepty'; $labels['sent'] = 'Odoslané'; $labels['trash'] = 'Kôš'; $labels['junk'] = 'Nevyžiadaná pošta'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; +$labels['show_real_foldernames'] = 'Pri osobitných priečinkoch zobrazovať reálne názvy'; $labels['subject'] = 'Predmet'; $labels['from'] = 'Odosielateľ'; -$labels['sender'] = 'Sender'; +$labels['sender'] = 'Odosielateľ'; $labels['to'] = 'Adresát'; $labels['cc'] = 'Kópia'; $labels['bcc'] = 'Tajná kópia'; @@ -55,9 +53,9 @@ $labels['copy'] = 'Kopírovať'; $labels['move'] = 'Presunúť'; $labels['moveto'] = 'presunúť do...'; $labels['download'] = 'stiahnuť'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; +$labels['open'] = 'Otvoriť'; +$labels['showattachment'] = 'Zobraziť'; +$labels['showanyway'] = 'Zobraziť aj napriek tomu'; $labels['filename'] = 'Meno súboru'; $labels['filesize'] = 'Veľkosť súboru'; $labels['addtoaddressbook'] = 'Pridať do adresára'; @@ -139,7 +137,7 @@ $labels['currpage'] = 'Aktuálna stránka'; $labels['unread'] = 'Neprečítané'; $labels['flagged'] = 'Označené'; $labels['unanswered'] = 'Neoznačené'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = 'S prílohou'; $labels['deleted'] = 'Zmazané'; $labels['undeleted'] = 'Nevymazané'; $labels['invert'] = 'Prevrátiť'; @@ -168,7 +166,7 @@ $labels['listmode'] = 'Režim zobrazenia zoznamu'; $labels['folderactions'] = 'Akcie so zložkou...'; $labels['compact'] = 'Zhustiť priečinok'; $labels['empty'] = 'Vyprázdniť'; -$labels['importmessages'] = 'Import messages'; +$labels['importmessages'] = 'Importovať správy'; $labels['quota'] = 'Zaplnenie schránky'; $labels['unknown'] = 'neznáme'; $labels['unlimited'] = 'neobmedzené'; @@ -176,12 +174,13 @@ $labels['quicksearch'] = 'Rýchle vyhľadávanie'; $labels['resetsearch'] = 'Vyčistiť vyhľadávanie'; $labels['searchmod'] = 'Parametre hľadanie'; $labels['msgtext'] = 'Celá správa'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; +$labels['body'] = 'Telo'; +$labels['type'] = 'Typ'; +$labels['namex'] = 'Meno'; $labels['openinextwin'] = 'Otvoriť v novom okne'; $labels['emlsave'] = 'Stiahnuť'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; +$labels['changeformattext'] = 'Zobraziť vo formáte čistého textu'; +$labels['changeformathtml'] = 'Zobraziť vo formáte HTML'; $labels['editasnew'] = 'Upraviť ako novú'; $labels['send'] = 'Odoslať'; $labels['sendmessage'] = 'Odoslať správu'; @@ -297,8 +296,8 @@ $labels['composeto'] = 'Vytvoriť správu pre'; $labels['contactsfromto'] = 'Kontakty od $from do $to z $count'; $labels['print'] = 'Tlač'; $labels['export'] = 'Export'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; +$labels['exportall'] = 'Exportovať všetko'; +$labels['exportsel'] = 'Exportovať vybrané'; $labels['exportvcards'] = 'Exportovať kontakty vo formáte vCard'; $labels['newcontactgroup'] = 'Vytvoriť novú skupinu kontaktov'; $labels['grouprename'] = 'Premenovať skupinu'; @@ -310,16 +309,19 @@ $labels['nextpage'] = 'Nasledujúca stránka'; $labels['lastpage'] = 'Posledná stránka'; $labels['group'] = 'Skupina'; $labels['groups'] = 'Skupiny'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Zoznam členov skupiny'; $labels['personaladrbook'] = 'Osobné adresy'; $labels['searchsave'] = 'Uložiť vyhľadávanie'; $labels['searchdelete'] = 'Zmazať vyhľadávanie'; $labels['import'] = 'Import'; $labels['importcontacts'] = 'Importovať kontakty'; $labels['importfromfile'] = 'Importovať zo súboru:'; -$labels['importtarget'] = 'Pridať nové kontakty do adresára:'; +$labels['importtarget'] = 'Pridať kontakty do'; $labels['importreplace'] = 'Nahradiť celý zoznam kontaktov'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; +$labels['importgroups'] = 'Importovať priradenia do skupín'; +$labels['importgroupsall'] = 'Všetky (vytvoriť skupiny, ak je to potrebné)'; +$labels['importgroupsexisting'] = 'Len pre existujúce skupiny'; +$labels['importdesc'] = 'Môžete vložiť kontakty zo svojho existujúceho adresára.
Momentálne je možné importovanie adries z formátu vCard alebo CSV (údaje oddeľované čiarkou).'; $labels['done'] = 'Hotovo'; $labels['settingsfor'] = 'Nastavenia pre'; $labels['about'] = 'O programe'; @@ -334,8 +336,8 @@ $labels['edititem'] = 'Upraviť položku'; $labels['preferhtml'] = 'Uprednostniť HTML zobrazenie'; $labels['defaultcharset'] = 'Predvolené kódovanie'; $labels['htmlmessage'] = 'HTML správa'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; +$labels['messagepart'] = 'Časť'; +$labels['digitalsig'] = 'Digitálny podpis'; $labels['dateformat'] = 'Formát dátumu'; $labels['timeformat'] = 'Formát času'; $labels['prettydate'] = 'Krajší dátum'; @@ -352,7 +354,7 @@ $labels['htmleditor'] = 'Vytvoriť HTML správu'; $labels['htmlonreply'] = 'len v odpovedi na HTML správy'; $labels['htmlonreplyandforward'] = 'pri preposielaní alebo odpovedi na HTML správu'; $labels['htmlsignature'] = 'HTML podpis'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = 'Zobrazovať e-mailovú adresu so zobrazeným menom'; $labels['previewpane'] = 'Ukázať náhľad'; $labels['skin'] = 'Vzhľad'; $labels['logoutclear'] = 'Vyprázdniť kôš pri odhlásení'; @@ -377,7 +379,7 @@ $labels['always'] = 'vždy'; $labels['showinlineimages'] = 'Zobraziť pripojené obrázky pod správou'; $labels['autosavedraft'] = 'Automaticky uložiť koncept'; $labels['everynminutes'] = 'každých $n minút'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; +$labels['refreshinterval'] = 'Obnoviť (skontrolovať nové správy a podobne)'; $labels['never'] = 'nikdy'; $labels['immediately'] = 'ihneď'; $labels['messagesdisplaying'] = 'Zobrazovanie správ'; @@ -412,7 +414,7 @@ $labels['afternseconds'] = 'po $n sekundách'; $labels['reqmdn'] = 'Vždy požadovať doručenku'; $labels['reqdsn'] = 'Vždy vyžadovať potvrdenie o doručení správy'; $labels['replysamefolder'] = 'Umietniť odpoveď do adresára, kde je umiestnená správa, na ktorú sa odpovedalo'; -$labels['defaultabook'] = 'Default address book'; +$labels['defaultabook'] = 'Predvolený adresár'; $labels['autocompletesingle'] = 'Vynechať alternatívnu emailovú adresu pri automatickom dopĺňaní'; $labels['listnamedisplay'] = 'Zobraziť kontakt ako'; $labels['spellcheckbeforesend'] = 'Skontrolovať pravopis pred odoslaním správy'; @@ -422,7 +424,7 @@ $labels['spellcheckignorenums'] = 'Ignorovať slová s číslami'; $labels['spellcheckignorecaps'] = 'Ignorovať slová písané veľkými písmenami'; $labels['addtodict'] = 'Pridať do slovníka'; $labels['mailtoprotohandler'] = 'Zaregistrovať handler pre odkazy „mailto:“'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['standardwindows'] = 'S vyskakovacími oknami pracovať ako so štandardnými oknami'; $labels['forwardmode'] = 'Preposielanie správ'; $labels['inline'] = 'v tele spávy'; $labels['asattachment'] = 'ako príloha'; diff --git a/program/localization/sk_SK/messages.inc b/program/localization/sk_SK/messages.inc index a9dabb8e4..db830c2a7 100644 --- a/program/localization/sk_SK/messages.inc +++ b/program/localization/sk_SK/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Vyskytla sa chyba!'; $messages['loginfailed'] = 'Chybné prihlásenie'; $messages['cookiesdisabled'] = 'Váš internetový prehliadač nepodporuje cookies, ktoré sú potrebné pre prihlásenie'; @@ -27,14 +26,14 @@ $messages['dberror'] = 'Databázová chyba!'; $messages['requesttimedout'] = 'Čas požiadavky vypršal'; $messages['errorreadonly'] = 'Nemožno vykonať operáciu. Adresár je len na čítanie'; $messages['errornoperm'] = 'Nemožno vykonať operáciu. Prístup odmietnutý'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; +$messages['erroroverquota'] = 'Nemožno vykonať operáciu. Na disku nie je dostatok voľného miesta.'; +$messages['erroroverquotadelete'] = 'Na disku nie je dostatok voľného miesta. Vymažte nejakú správu pomocou klávesov SHIFT+DEL.'; $messages['invalidrequest'] = 'Chybný požiadavek. Žiadne údaje neboli uložené.'; $messages['invalidhost'] = 'Neplatný názov servera'; $messages['nomessagesfound'] = 'Vo Vašej schránke nie je žiadna správa'; $messages['loggedout'] = 'Odhlásenie prebehlo úspešne. Dovidenia.'; $messages['mailboxempty'] = 'Schránka je prázdna'; -$messages['refreshing'] = 'Refreshing...'; +$messages['refreshing'] = 'Obnovuje sa...'; $messages['loading'] = 'Načítava sa...'; $messages['uploading'] = 'Nahrávám súbor...'; $messages['uploadingmany'] = 'Nahrávam súbory...'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Požadovaný kontakt nebol nájdený'; $messages['contactsearchonly'] = 'Zadaj nejaký vyhľadávací výraz pre hľadanie kontaktov.'; $messages['sendingfailed'] = 'Odosielanie správy zlyhalo'; $messages['senttooquickly'] = 'Počkajte $sec sekúnd pred odoslaním tejto správy'; -$messages['errorsavingsent'] = 'Pri ukladaní odoslanej správy nastala chyba'; -$messages['errorsaving'] = 'Vyskytla sa chyba pri ukladaní'; $messages['errormoving'] = 'Správa sa nedá presunúť'; $messages['errorcopying'] = 'Správa sa nedá skopírovať'; $messages['errordeleting'] = 'Správa sa nedá zmazať'; @@ -100,16 +97,16 @@ $messages['converting'] = 'Odstraňuje sa formátovanie správy...'; $messages['messageopenerror'] = 'Nedá sa načítať správa zo servera'; $messages['fileuploaderror'] = 'Načítanie súboru nebolo úspešné'; $messages['filesizeerror'] = 'Načítavaný súbor prekročil maximálnu veľkosť $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; +$messages['copysuccess'] = 'Počet úspešne skopírovaných kontaktov: $nr.'; +$messages['movesuccess'] = 'Počet úspešne presunutých kontaktov: $nr.'; +$messages['copyerror'] = 'Kontakty nie je možné kopírovať.'; +$messages['moveerror'] = 'Kontakty nemožno presúvať.'; $messages['sourceisreadonly'] = 'Tento zdroj adries je len na čítanie'; $messages['errorsavingcontact'] = 'Nedá sa uložiť adresa kontaktu'; $messages['movingmessage'] = 'Správa sa presúva...'; $messages['copyingmessage'] = 'Správa sa kopíruje...'; $messages['copyingcontact'] = 'Kopírujem kontakt(y)'; -$messages['movingcontact'] = 'Moving contact(s)...'; +$messages['movingcontact'] = 'Presúvanie kontaktu (kontaktov)...'; $messages['deletingmessage'] = 'Mažem správu(y)...'; $messages['markingmessage'] = 'Označujem správu(y)...'; $messages['addingmember'] = 'Pridávam kontakt(y) do skupiny...'; @@ -125,11 +122,11 @@ $messages['contactaddedtogroup'] = 'Kontakty boli úspešne presunuty do tejto s $messages['contactremovedfromgroup'] = 'Kontakty boli úspešne odstráneny z tejto skupiny'; $messages['nogroupassignmentschanged'] = 'Priradenia do skupín neboli zmenené.'; $messages['importwait'] = 'Prebieha import, počkajte ...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; +$messages['importformaterror'] = 'Import nebol úspešný! Odoslaný súbor nie je platným súborom, z ktorého je možné vykonať import údajov.'; $messages['importconfirm'] = 'Úspešne sa načítalo $inserted kontaktov, preskočilo sa $skipped existujúcich záznamov:

$names

'; $messages['importconfirmskipped'] = 'Preskočených $skipped existujúcich záznamov'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; +$messages['importmessagesuccess'] = 'Počet úspešne naimportovaných správ: $nr'; +$messages['importmessageerror'] = 'Importovanie bolo neúspešné! Odoslaný súbor nie je platným súborom pre správu alebo poštový priečinok'; $messages['opnotpermitted'] = 'Operácia nie je povolená!'; $messages['nofromaddress'] = 'Zvolená identita neobsahuje e-mailovú adresu'; $messages['editorwarning'] = 'Prepnutie na editor obyčajného textu spôsobí stratu formátovania. Chcete napriek tomu pokračovať?'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'Chyba SMTP: $msg'; $messages['emailformaterror'] = 'Neplatná e-mailová adresa: $email'; $messages['toomanyrecipients'] = 'Príliš veľa príjemcov. Zmenšite počet príjemcov na $max.'; $messages['maxgroupmembersreached'] = 'Počet členov skupiny dosiahol maxima z $max'; -$messages['internalerror'] = 'Došlo k internej chybe. Skúste to znova'; $messages['contactdelerror'] = 'Nemôžem vymazať kontakt(y)'; $messages['contactdeleted'] = 'Kontakt(y) bol vymazaný'; $messages['contactrestoreerror'] = 'Nemôžem obnoviť zmazané kontakty'; @@ -169,6 +165,6 @@ $messages['invalidimageformat'] = 'Zlý formát obrázku'; $messages['mispellingsfound'] = 'V správe boli nájdené pravopisné chyby'; $messages['parentnotwritable'] = 'Nemôžem vytvoriť/presunúť adresár do zvoleného nadradeného adresára. Nemáte oprávnenia na zmenu.'; $messages['messagetoobig'] = 'Časť správy je príliš veľká na spracovanie.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; +$messages['attachmentvalidationerror'] = 'UPOZORNENIE! Táto príloha je podozrivá, pretože jej typ sa nezhoduje s typom uvedeným v správe. Ak odosielateľovi prílohy nedôverujete, nemali by ste prílohu otvárať. Môže totiž obsahovať škodlivý obsah.

Očakávaná hodnota: $expected; nájdená hodnota: $detected'; +$messages['noscriptwarning'] = 'Upozornenie: Táto webmailová služba vyžaduje Javascript! Ak ju chcete používať, prosím aktivujte Javascript v nastaveniach svojho prehliadača.'; ?> diff --git a/program/localization/sl_SI/labels.inc b/program/localization/sl_SI/labels.inc index 142191357..f93684d69 100644 --- a/program/localization/sl_SI/labels.inc +++ b/program/localization/sl_SI/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Dobrodošli v $product'; $labels['username'] = 'Uporabniško ime'; $labels['password'] = 'Geslo'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Spremembe iskanja'; $labels['msgtext'] = 'Celotno sporočilo'; $labels['body'] = 'Vsebina sporočila'; $labels['type'] = 'Tip'; +$labels['namex'] = 'Ime'; $labels['openinextwin'] = 'Odpri v novem oknu'; $labels['emlsave'] = 'Prenos datoteke (.eml)'; $labels['changeformattext'] = 'Prikaži kot golo besedilo'; @@ -317,7 +316,6 @@ $labels['searchdelete'] = 'Izbriši iskanje'; $labels['import'] = 'Uvozi'; $labels['importcontacts'] = 'Uvozi stike'; $labels['importfromfile'] = 'Uvozi iz datoteke:'; -$labels['importtarget'] = 'Dodaj nove stike v imenik:'; $labels['importreplace'] = 'Zamenjaj celoten imenik'; $labels['importdesc'] = 'Stike lahko naložite iz obstoječega imenika.
Trenutno je podprt uvoz stikov v zapisu vCard ali v CSV (z vejico ločene vrednosti) zapisu.'; $labels['done'] = 'Dokončano'; diff --git a/program/localization/sl_SI/messages.inc b/program/localization/sl_SI/messages.inc index 07b94ae08..f1beffc0f 100644 --- a/program/localization/sl_SI/messages.inc +++ b/program/localization/sl_SI/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Prišlo je do napake!'; $messages['loginfailed'] = 'Prijava ni uspela'; $messages['cookiesdisabled'] = 'Vaš spletni brskalnik ne sprejema piškotkov.'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Iskanega stika ni bilo mogoče najti.'; $messages['contactsearchonly'] = 'Vpišite iskalni parameter za iskanje stika'; $messages['sendingfailed'] = 'Sporočila ni bilo mogoče poslati.'; $messages['senttooquickly'] = 'Počakajte $sec sekund in nato znova poskusite s pošiljanjem sporočila.'; -$messages['errorsavingsent'] = 'Pri shranjevanju poslanega sporočila je prišlo do napake.'; -$messages['errorsaving'] = 'Pri shranjevanju je prišlo do napake.'; $messages['errormoving'] = 'Sporočila ni bilo mogoče premakniti.'; $messages['errorcopying'] = 'Sporočila ni bilo mogoče kopirati.'; $messages['errordeleting'] = 'Sporočila ni bilo mogoče izbrisati.'; @@ -100,13 +97,16 @@ $messages['converting'] = 'Odstranjevanje nastavitev oblikovanja...'; $messages['messageopenerror'] = 'Sporočila ni bilo mogoče prenesti iz strežnika'; $messages['fileuploaderror'] = 'Prenos datoteke je spodletel'; $messages['filesizeerror'] = 'Naložena datoteka presega največjo dovoljeno velikost $size'; -$messages['copysuccess'] = '$nr naslovov je bilo uspešno prenešenih'; -$messages['copyerror'] = 'Nobenih naslovov ni bilo mogoče kopirati'; +$messages['copysuccess'] = 'Uspešno ste kopirali $nr stikov.'; +$messages['movesuccess'] = 'Uspešno ste premaknili $nr stikov.'; +$messages['copyerror'] = 'Stikov ni bilo mogoče kopirati.'; +$messages['moveerror'] = 'Stikov ni bilo mogoče premakniti.'; $messages['sourceisreadonly'] = 'Ta naslov je na voljo samo za branje'; $messages['errorsavingcontact'] = 'Stika ni bilo mogoče shraniti'; $messages['movingmessage'] = 'Premikanje sporočila...'; $messages['copyingmessage'] = 'Kopiranje sporočila...'; $messages['copyingcontact'] = 'Kopiranje stika/ov'; +$messages['movingcontact'] = 'Premikanje stika(ov)...'; $messages['deletingmessage'] = 'Brisanje sporočil/a'; $messages['markingmessage'] = 'Označevanje sporočil/a'; $messages['addingmember'] = 'Dodajanje stika/ov v skupino...'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'Napaka pri pošiljanju:$msg'; $messages['emailformaterror'] = 'Nepravilen elektronski naslov: $email'; $messages['toomanyrecipients'] = 'Navedli ste preveč prejemnikov. Zmanjšajte število prejemnikov na $max'; $messages['maxgroupmembersreached'] = 'Število članov skupine presega največje dovoljeno število $max.'; -$messages['internalerror'] = 'Prišlo je do napake. Poskusite znova.'; $messages['contactdelerror'] = 'Stika/ov ni bilo mogoče izbrisati'; $messages['contactdeleted'] = 'Stik/i so bili uspešno izbrisani'; $messages['contactrestoreerror'] = 'Ni bilo mogoče obnoviti izbrisanih stikov.'; diff --git a/program/localization/sq_AL/labels.inc b/program/localization/sq_AL/labels.inc index d45272e93..fa822a728 100644 --- a/program/localization/sq_AL/labels.inc +++ b/program/localization/sq_AL/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Mirëseerdhe te $product'; $labels['username'] = 'Përdoruesi'; $labels['password'] = 'Fjalëkalimi'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'Drafte'; $labels['sent'] = 'Dërguar'; $labels['trash'] = 'Fshirë'; $labels['junk'] = 'Reklama'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Tema'; $labels['from'] = 'Dërguesi'; -$labels['sender'] = 'Sender'; $labels['to'] = 'Marrësi'; $labels['cc'] = 'Kopje'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Reply-To'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Data'; $labels['size'] = 'Madhësia'; $labels['priority'] = 'Përparësia'; $labels['organization'] = 'Organizata'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'Kutitë'; $labels['messagesfromto'] = 'Mesazhet $from në $to nga $count'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'Mesazhi $nr nga $count'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'Kopje'; -$labels['move'] = 'Move'; $labels['moveto'] = 'ço te...'; $labels['download'] = 'shkarko'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Emër skedari'; $labels['filesize'] = 'Madhësi skedari'; $labels['addtoaddressbook'] = 'Shto në librin e adresave'; @@ -75,43 +62,12 @@ $labels['wednesday'] = 'e mërkurë'; $labels['thursday'] = 'e enjte'; $labels['friday'] = 'e premte'; $labels['saturday'] = 'e shtunë'; -$labels['jan'] = 'Jan'; -$labels['feb'] = 'Feb'; -$labels['mar'] = 'Mar'; -$labels['apr'] = 'Apr'; -$labels['may'] = 'May'; -$labels['jun'] = 'Jun'; -$labels['jul'] = 'Jul'; -$labels['aug'] = 'Aug'; -$labels['sep'] = 'Sep'; -$labels['oct'] = 'Oct'; -$labels['nov'] = 'Nov'; -$labels['dec'] = 'Dec'; -$labels['longjan'] = 'January'; -$labels['longfeb'] = 'February'; -$labels['longmar'] = 'March'; -$labels['longapr'] = 'April'; -$labels['longmay'] = 'May'; -$labels['longjun'] = 'June'; -$labels['longjul'] = 'July'; -$labels['longaug'] = 'August'; -$labels['longsep'] = 'September'; -$labels['longoct'] = 'October'; -$labels['longnov'] = 'November'; -$labels['longdec'] = 'December'; $labels['today'] = 'sot'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'Shiko për mesazhe të reja'; $labels['compose'] = 'Shkruaj një mesazh'; $labels['writenewmessage'] = 'Krijo një mesazh të ri'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'Ktheji përgjigje mesazhit'; $labels['replytoallmessage'] = 'Ktheji përgjigje dërguesit dhe të gjithë marrësve'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'Pasoje mesazhin'; $labels['deletemessage'] = 'Fshije mesazhin'; $labels['movemessagetotrash'] = 'Hidhe mesazhin në kosh'; @@ -122,88 +78,33 @@ $labels['nextmessage'] = 'Shfaq mesazhin pasardhës'; $labels['lastmessage'] = 'Shfaq mesazhin e fundit'; $labels['backtolist'] = 'Kthehu te lista e mesazheve'; $labels['viewsource'] = 'Shfaq tekstin'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'Shëno mesazhet'; $labels['markread'] = 'Si të lexuara'; $labels['markunread'] = 'Si të palexuara'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'Zgjidh'; $labels['all'] = 'Të gjitha'; $labels['none'] = 'Asnjë'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'Palexuar'; -$labels['flagged'] = 'Flagged'; -$labels['unanswered'] = 'Unanswered'; -$labels['withattachment'] = 'With attachment'; -$labels['deleted'] = 'Deleted'; -$labels['undeleted'] = 'Not deleted'; -$labels['invert'] = 'Invert'; -$labels['filter'] = 'Filter'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'Asnjë'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'Zvogëlo'; $labels['empty'] = 'Boshatis'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Përdorimi i diskut'; $labels['unknown'] = 'i panjohur'; $labels['unlimited'] = 'i pakufizuar'; $labels['quicksearch'] = 'Kërkim i shpejtë'; $labels['resetsearch'] = 'Pastro kërkimin'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Dërgoje mesazhin tani'; $labels['savemessage'] = 'Ruaje si draft'; $labels['addattachment'] = 'Bashkangjit një skedar'; $labels['charset'] = 'Bashkësi shkronjash'; $labels['editortype'] = 'Lloj editori'; $labels['returnreceipt'] = 'Njoftim marrje'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'Kontroll gabimesh'; $labels['resumeediting'] = 'Vazhdo editimin'; $labels['revertto'] = 'Ktheje te'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'Bashkangjitjet'; $labels['upload'] = 'Ngarko'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'Mbyll'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'I ulët'; $labels['lowest'] = 'Më i ulëti'; $labels['normal'] = 'Normal'; @@ -211,20 +112,11 @@ $labels['high'] = 'I lartë'; $labels['highest'] = 'Më i larti'; $labels['nosubject'] = '(pa subjekt)'; $labels['showimages'] = 'Shfaq imazhet'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'TEXT'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; $labels['addcc'] = 'Shto Cc'; $labels['addbcc'] = 'Shto Bcc'; $labels['addreplyto'] = 'Shto Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'Dërguesi i këtij mesazhi ka kërkuar që të njoftohet kur ju të lexoni këtë mesazh. Dëshironi ta njoftoni dërguesin?'; $labels['receiptread'] = 'Njoftim Leximi'; $labels['yourmessage'] = 'Ky është një njoftim leximi për mesazhin tuaj'; @@ -232,97 +124,26 @@ $labels['receiptnote'] = 'Shënim: Ky njoftim tregon vetëm që mesazhi u shfaq $labels['name'] = 'Emri që thirret'; $labels['firstname'] = 'Emri'; $labels['surname'] = 'Mbiemri'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'E-Mail'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'Shto një kontakt të ri'; $labels['editcontact'] = 'Ndrysho kontaktin'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'Ndrysho'; $labels['cancel'] = 'Anullo'; $labels['save'] = 'Ruaj'; $labels['delete'] = 'Fshi'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'Krijo nje kartë të re kontakti'; $labels['deletecontact'] = 'Fshi kontaktet e zgjedhura'; $labels['composeto'] = 'Shkruaj email për'; $labels['contactsfromto'] = 'Kontaktet $from në $to nga $count'; $labels['print'] = 'Shtyp'; $labels['export'] = 'Eksporto'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'Shfaq grupin e mëparshëm'; $labels['firstpage'] = 'Shfaq grupin e parë'; $labels['nextpage'] = 'Shfaq grupin tjetër'; $labels['lastpage'] = 'Shfaq grupin e fundit'; -$labels['group'] = 'Group'; $labels['groups'] = 'Grupet'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Adresat Personale'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'Konfigurimet për'; -$labels['about'] = 'About'; $labels['preferences'] = 'Preferencat'; $labels['userpreferences'] = 'Preferencat e përdoruesit'; $labels['editpreferences'] = 'Ndrysho preferencat e përdoruesit'; @@ -332,100 +153,19 @@ $labels['newidentity'] = 'Identitet i ri'; $labels['newitem'] = 'Element i ri'; $labels['edititem'] = 'Ndrysho element'; $labels['preferhtml'] = 'Shfaq HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'Mesazh HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'Data të këndshme'; $labels['setdefault'] = 'Bëje identitet kryesor'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'Gjuha'; $labels['timezone'] = 'Brezi orar'; $labels['pagesize'] = 'Rreshtat për faqe'; $labels['signature'] = 'Nënshkrim'; $labels['dstactive'] = 'Ndryshim ore'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Shkruaj mesazhe HTML'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'Nënshkrimi HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Shiko si duket'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'Ruaje automatikisht si draft'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'kurrë'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; -$labels['advancedoptions'] = 'Advanced options'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; -$labels['newmessage'] = 'New Message'; -$labels['signatureoptions'] = 'Signature Options'; -$labels['whenreplying'] = 'When replying'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; -$labels['autoaddsignature'] = 'Automatically add signature'; -$labels['newmessageonly'] = 'new message only'; -$labels['replyandforwardonly'] = 'replies and forwards only'; -$labels['insertsignature'] = 'Insert signature'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Kutia'; $labels['folders'] = 'Kutitë'; $labels['foldername'] = 'Emër kutie'; @@ -434,48 +174,7 @@ $labels['messagecount'] = 'Mesazhe'; $labels['create'] = 'Krijo'; $labels['createfolder'] = 'Krijo kuti të re'; $labels['managefolders'] = 'Sistemo kutitë'; -$labels['specialfolders'] = 'Special Folders'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'Rradhit sipas'; $labels['sortasc'] = 'Rradhitje rritëse'; $labels['sortdesc'] = 'Rradhitje zbritëse'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; -$labels['B'] = 'B'; -$labels['KB'] = 'KB'; -$labels['MB'] = 'MB'; -$labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/sq_AL/messages.inc b/program/localization/sq_AL/messages.inc index 8ef402116..d4b981318 100644 --- a/program/localization/sq_AL/messages.inc +++ b/program/localization/sq_AL/messages.inc @@ -15,29 +15,14 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'Hyrja dështoi'; $messages['cookiesdisabled'] = 'Shfletuesi juaj nuk i pranon sheqerkat'; $messages['sessionerror'] = 'Sesioni juaj është i pavlefshëm ose i ka kaluar afati'; $messages['storageerror'] = 'Lidhja me serverin IMAP dështoi'; -$messages['servererror'] = 'Server Error!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'Nuk ka mesazhe në këtë kuti postare'; $messages['loggedout'] = 'Sesionin e mbyllët me sukses. Mirupafshim!'; $messages['mailboxempty'] = 'Kutia postare është bosh'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'Po ngarkohet...'; -$messages['uploading'] = 'Uploading file...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'Po ngarkohen të dhëna...'; $messages['checkingmail'] = 'Po shoh për mesazhe të reja...'; $messages['sendingmessage'] = 'Po dërgoj mesazhin...'; @@ -47,128 +32,42 @@ $messages['messagesaved'] = 'Mesazhi u ruajt te kutia Drafte'; $messages['successfullysaved'] = 'U ruajt me sukses'; $messages['addedsuccessfully'] = 'Kontakti u shtua me sukses në librin e adresave'; $messages['contactexists'] = 'Këtë adresë e-mail e ka një kontakt tjetër'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'Për të mbrojtur fshehtësinë tuaj, imazhet e largëta të këtij mesazhi janë bllokuar.'; $messages['encryptedmessage'] = 'Ky është një mesazh i koduar dhe nuk mund te shfaqet. Më vjen keq!'; $messages['nocontactsfound'] = 'Nuk ka kontakte'; $messages['contactnotfound'] = 'Kontakti që kërkoni nuk gjendet'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'Dërgimi i mesazhit dështoi'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'Pati nje problem gjatë ruajtjes'; $messages['errormoving'] = 'Nuk e lëviza dot mesazhin'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'Nuk e fshiva dot mesazhin'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'Me të vërtetë doni ti fshini kontaktet e zgjedhura?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'Me të vërtetë doni ti fshini mesazhet e zgjedhura?'; $messages['deletefolderconfirm'] = 'Me të vërtetë doni ta fshini këtë kuti?'; $messages['purgefolderconfirm'] = 'Me të vërtetë doni ti fshini të gjitha mesazhet në këtë kuti?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; -$messages['folderdeleting'] = 'Deleting folder...'; -$messages['foldermoving'] = 'Moving folder...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'Formulari nuk ishte i gjithi i plotësuar'; $messages['noemailwarning'] = 'Ju lutem jepni një adresë email të rregullt'; $messages['nonamewarning'] = 'Ju lutem jepni një emër'; $messages['nopagesizewarning'] = 'Ju lutem jepni nje madhësi për faqen'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'Ju lutem shënoni të paktën një marrës'; $messages['nosubjectwarning'] = 'Fusha e temës është bosh. Dëshironi të shënoni një temë tani?'; $messages['nobodywarning'] = 'Ta dërgoj mesazhin pa tekst?'; $messages['notsentwarning'] = 'Mesazhi nuk u dërgua. Doni ta hidhni poshtë mesazhin?'; $messages['noldapserver'] = 'Ju lutem jepni një server ldap për të kërkuar'; $messages['nosearchname'] = 'Ju lutem jepni një adresë email ose një emër kontakti'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'U gjetën $nr mesazhe'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'Kërkimi nuk gjeti gjë'; $messages['searching'] = 'Po kërkoj...'; $messages['checking'] = 'Po kontrolloj...'; $messages['nospellerrors'] = 'Nuk u gjetën gabime'; $messages['folderdeleted'] = 'Kutia u fshi me sukses'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'U fshi me sukses'; $messages['converting'] = 'Po i heq formatimin mesazhit...'; $messages['messageopenerror'] = 'Nuk marr dot mesazhe nga serveri'; $messages['fileuploaderror'] = 'Ngarkimi i skedarit dështoi'; $messages['filesizeerror'] = 'Skedari i ngarkuar e kalon madhësinë kufi prej $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Ky burim adrese është vetëm i lexueshëm'; $messages['errorsavingcontact'] = 'Nuk e ruajta dot adresën e kontaktit'; $messages['movingmessage'] = 'Po lëviz mesazhin...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'U dërgua me sukses një njoftim leximi'; $messages['errorsendingreceipt'] = 'Nuk mund të dërgohet njoftimi'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'Ju nuk mund ta fshini këtë identitet sepse nuk ju ka mbetur tjetër.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; -$messages['importwait'] = 'Importing, please wait...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/sr_CS/labels.inc b/program/localization/sr_CS/labels.inc index 2fe36ca17..e2d40b1b6 100644 --- a/program/localization/sr_CS/labels.inc +++ b/program/localization/sr_CS/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Добродошли на $product'; $labels['username'] = 'Корисничко име'; $labels['password'] = 'Лозинка'; @@ -31,15 +29,12 @@ $labels['drafts'] = 'U pripremi'; $labels['sent'] = 'Послате'; $labels['trash'] = 'Канта'; $labels['junk'] = 'Смеће'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Наслов'; $labels['from'] = 'Од'; -$labels['sender'] = 'Sender'; $labels['to'] = 'За'; $labels['cc'] = 'Cc'; $labels['bcc'] = 'Bcc'; $labels['replyto'] = 'Одговори'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'Датум'; $labels['size'] = 'Величина'; $labels['priority'] = 'Приоритет'; @@ -55,9 +50,6 @@ $labels['copy'] = 'Копирај'; $labels['move'] = 'Пребаци'; $labels['moveto'] = 'Пребаци у...'; $labels['download'] = 'Преузми (скидање)'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'Име датотекеe'; $labels['filesize'] = 'Величина датотеке'; $labels['addtoaddressbook'] = 'Додај у именик'; @@ -110,7 +102,6 @@ $labels['replytoallmessage'] = 'Одговори пошиљаоцу и свим $labels['replyall'] = 'Одговори свима'; $labels['replylist'] = 'Листа за одговоре'; $labels['forward'] = 'Проследи'; -$labels['forwardinline'] = 'Forward inline'; $labels['forwardattachment'] = 'Проследи као прилог'; $labels['forwardmessage'] = 'Проследи поруку'; $labels['deletemessage'] = 'Избриши поруку'; @@ -139,19 +130,13 @@ $labels['currpage'] = 'Тренутна страница'; $labels['unread'] = 'Непрочитане'; $labels['flagged'] = 'Означено'; $labels['unanswered'] = 'Неодговорено'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Обрисано'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'Уведи'; $labels['filter'] = 'Филтер'; $labels['list'] = 'Листа'; $labels['threads'] = 'Нити'; $labels['expand-all'] = 'Прошири све'; -$labels['expand-unread'] = 'Expand Unread'; $labels['collapse-all'] = 'Сажми све'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; $labels['expand_only_unread'] = 'само са непрочитаним порукама'; $labels['fromto'] = 'Од/За'; $labels['flag'] = 'Застава'; @@ -163,27 +148,19 @@ $labels['asc'] = 'растући'; $labels['desc'] = 'опадајући'; $labels['listcolumns'] = 'Лист колона'; $labels['listsorting'] = 'Сортирање колонe'; -$labels['listorder'] = 'Sorting order'; $labels['listmode'] = 'Лист режим приказивања'; $labels['folderactions'] = 'Поставке фасцикле'; $labels['compact'] = 'Компакција'; $labels['empty'] = 'Испразни'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Квота'; $labels['unknown'] = 'непозната'; $labels['unlimited'] = 'бесконачна'; $labels['quicksearch'] = 'Брза претрага'; $labels['resetsearch'] = 'Прикажи све поруке'; -$labels['searchmod'] = 'Search modifiers'; $labels['msgtext'] = 'Цела порука'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'Отвори у новом прозору'; $labels['emlsave'] = 'Довнлоад (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'Модификуј као ново'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'Пошаљи поруку'; $labels['savemessage'] = 'Сачувај у Снимљене'; $labels['addattachment'] = 'Приложи датотеку'; @@ -212,10 +189,6 @@ $labels['highest'] = 'Највиши'; $labels['nosubject'] = '(без наслова)'; $labels['showimages'] = 'Прикажи слике'; $labels['alwaysshow'] = 'Увек покажи слике од $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Обичан текст'; $labels['savesentmessagein'] = 'Послате поруке сачувај у'; @@ -224,7 +197,6 @@ $labels['maxuploadsize'] = 'Максимална величина податка $labels['addcc'] = 'Додај Cc'; $labels['addbcc'] = 'Додај Bcc'; $labels['addreplyto'] = 'Додај Одговор-за'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'Пошиљалац ове поруке је замолио да буде обавештен када прочитате ову поруку. Да ли желите да обавестите пошиљаоца?'; $labels['receiptread'] = 'Обавештење о приспећу (прочитана порука)'; $labels['yourmessage'] = 'Ово је обавештење о приспећу за вашу поруку'; @@ -297,8 +269,6 @@ $labels['composeto'] = 'Напиши поруку...'; $labels['contactsfromto'] = 'Контакти $from до $to од укупно $count'; $labels['print'] = 'Штампај'; $labels['export'] = 'Извези'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'Извези конакте у vCard формату'; $labels['newcontactgroup'] = 'Креирај нову контакт групу'; $labels['grouprename'] = 'Преименуј групу'; @@ -310,16 +280,13 @@ $labels['nextpage'] = 'Прикажи следећу страну'; $labels['lastpage'] = 'Прикажи последњи скуп'; $labels['group'] = 'Група'; $labels['groups'] = 'Групе'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Личне адресе'; $labels['searchsave'] = 'Сачувај претрагу'; $labels['searchdelete'] = 'Избриши претрагу'; $labels['import'] = 'Увези'; $labels['importcontacts'] = 'Увези контакте'; $labels['importfromfile'] = 'Увези из датотеке:'; -$labels['importtarget'] = 'Додај нове контакте у адресар'; $labels['importreplace'] = 'Измени цели адресар'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'Готово'; $labels['settingsfor'] = 'Подешавања за'; $labels['about'] = 'Инфо'; @@ -332,10 +299,7 @@ $labels['newidentity'] = 'Додај идентитет'; $labels['newitem'] = 'Нова ставка'; $labels['edititem'] = 'Измена ставке'; $labels['preferhtml'] = 'Предност дај ХТМЛ формату'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'ХТМЛ формат поруке'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; $labels['dateformat'] = 'Формат датума'; $labels['timeformat'] = 'Формат времена'; $labels['prettydate'] = 'Форматирани датум'; @@ -346,13 +310,9 @@ $labels['timezone'] = 'Временска зона'; $labels['pagesize'] = 'Редова по страни'; $labels['signature'] = 'Потпис'; $labels['dstactive'] = 'Летње померање времена'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'Састави HTML поруке'; $labels['htmlonreply'] = 'само при одговору на HTML поруку'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML потпис'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Прикажи панел за преглед'; $labels['skin'] = 'Интерфејс'; $labels['logoutclear'] = 'Избриши смеће при логовању'; @@ -360,24 +320,13 @@ $labels['logoutcompact'] = 'Компактно сандуче при логов $labels['uisettings'] = 'Кориснички интерфејс'; $labels['serversettings'] = 'Поставке сервера'; $labels['mailboxview'] = 'Преглед сандучета'; -$labels['mdnrequests'] = 'On request for return receipt'; $labels['askuser'] = 'питај ме'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'игнорисати'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; $labels['skipdeleted'] = 'Не приказуј избрисане поруке'; $labels['deletealways'] = 'Ако слање поруке у отпад не успе, обришите их'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; $labels['always'] = 'увек'; $labels['showinlineimages'] = 'Покажи приложене слике испод поруке'; $labels['autosavedraft'] = 'Аутоматски чувај у Снимљене'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'никад'; $labels['immediately'] = 'одмах'; $labels['messagesdisplaying'] = 'прикажи поруке'; @@ -386,7 +335,6 @@ $labels['mimeparamfolding'] = 'имена прилога'; $labels['2231folding'] = 'Full RFC 2231 (тхундербирд )'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'Full RFC 2047 (други)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'Напредне опције'; $labels['focusonnewmessage'] = 'Фокусирати прозор претраживача на новој поруци'; $labels['checkallfolders'] = 'Проверите све фасцикле за нове поруке'; @@ -399,7 +347,6 @@ $labels['maintenance'] = 'Поправке'; $labels['newmessage'] = 'Нова порука'; $labels['signatureoptions'] = 'Опције потписа'; $labels['whenreplying'] = 'При одговору'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'Почни нову поруку преко оригинала'; $labels['replybottomposting'] = 'Почни нову поруку испод оригинала'; $labels['replyremovesignature'] = 'При одговору одстрани оригинални потпис из поруке'; @@ -412,20 +359,12 @@ $labels['afternseconds'] = 'након $n секунди'; $labels['reqmdn'] = 'Увек затражи повратну скрипту'; $labels['reqdsn'] = 'Увек затражи обавештење о статусу слања поруке'; $labels['replysamefolder'] = 'Сачувај одговоре у фасциклу поруке на коју се одговара'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; $labels['listnamedisplay'] = 'Листи контакате као'; $labels['spellcheckbeforesend'] = 'Проверите правопис пре слања поруке'; $labels['spellcheckoptions'] = 'Опције Провере правописа'; $labels['spellcheckignoresyms'] = 'игнориши речи са симболима'; $labels['spellcheckignorenums'] = 'игнориши речи са бројевима'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; $labels['addtodict'] = 'Додај у речник'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'Фасцикла'; $labels['folders'] = 'Фасцикле'; $labels['foldername'] = 'Име фасцикле'; @@ -450,7 +389,6 @@ $labels['sortby'] = 'Сортирај по'; $labels['sortasc'] = 'Сортирај растуће'; $labels['sortdesc'] = 'Сортирај опадајуће'; $labels['undo'] = 'Унатраг'; -$labels['installedplugins'] = 'Installed plugins'; $labels['plugin'] = 'Додаци'; $labels['version'] = 'Верзија'; $labels['source'] = 'Извор'; diff --git a/program/localization/sr_CS/messages.inc b/program/localization/sr_CS/messages.inc index 1f86fa8fd..7a4c89356 100644 --- a/program/localization/sr_CS/messages.inc +++ b/program/localization/sr_CS/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Дошло је до грешке!'; $messages['loginfailed'] = 'Неуспешно пријављивање'; $messages['cookiesdisabled'] = 'Ваш интернет прегледач не подржава колачиће'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Грешка у бази података!'; $messages['requesttimedout'] = 'Захтев је истекао'; $messages['errorreadonly'] = 'Не може да изврши операцију. Фасцикла се може само читати.'; $messages['errornoperm'] = 'Извршење операције није могуће. Одбијен захтев за дозволу.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Погрешан захтев! Подаци нису сачувани.'; $messages['invalidhost'] = 'Погрешно име сервера.'; $messages['nomessagesfound'] = 'Немате порука у сандучету.'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'Жељени контакт није нађен' $messages['contactsearchonly'] = 'Унесите шта тражите да пронађете контакте'; $messages['sendingfailed'] = 'Грешка при слању поруке'; $messages['senttooquickly'] = 'Молимо Вас да сачекате $sec секунд(и) пре него пошаљете ову поруку'; -$messages['errorsavingsent'] = 'Приликом похрањивања послате поруке десила се грешка'; -$messages['errorsaving'] = 'Грешка при снимању поруке'; $messages['errormoving'] = 'Грешка при премештању поруке'; $messages['errorcopying'] = 'Копирање поруке није било успешно'; $messages['errordeleting'] = 'Грешка при брисању поруке'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Уклањање форматирања из пору $messages['messageopenerror'] = 'Порука се не може учитати са сервера'; $messages['fileuploaderror'] = 'Слање датотеке неуспешно'; $messages['filesizeerror'] = 'Послата датотека не може да прекорачи величину од $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Овај извор адресе је само за читање'; $messages['errorsavingcontact'] = 'Неуспело снимање адресе контакта'; $messages['movingmessage'] = 'Премештам поруку...'; $messages['copyingmessage'] = 'Копирам поруке...'; $messages['copyingcontact'] = 'Умножава контакте...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'бришем поруке...'; $messages['markingmessage'] = 'Означавам поруке...'; $messages['addingmember'] = 'Додаје контакте у групу...'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Увоз података, молимо сачека $messages['importformaterror'] = 'Увоз је неуспешан! Послата датотека није допуштена за увоз.'; $messages['importconfirm'] = 'Успешно увезжени $inserted контакти '; $messages['importconfirmskipped'] = 'Прескочени $skipped постојећи уноси '; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Операција није дозвољена!'; $messages['nofromaddress'] = 'Недостаје имејл адреса у изабраном налогу'; $messages['editorwarning'] = 'Пребацивање на обичан текст едитор ће изазвати губитак целог форматирања. Да ли желите да наставите?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'SMTP Error ($code): $msg'; $messages['emailformaterror'] = 'Имејл адреса није валидна: $email'; $messages['toomanyrecipients'] = 'Превише прималаца. Смањите број прималаца на $max.'; $messages['maxgroupmembersreached'] = 'Број чланова гупе прелази максимум од $max'; -$messages['internalerror'] = 'Десила се интерна грешка. Молимо покушајте поново'; $messages['contactdelerror'] = 'Брисање контакта неуспешно'; $messages['contactdeleted'] = 'Брисање контакта успешно'; $messages['contactrestoreerror'] = 'Не може да врати обрисане контакте.'; diff --git a/program/localization/sv_SE/labels.inc b/program/localization/sv_SE/labels.inc index 1a1048c29..48f71ab57 100644 --- a/program/localization/sv_SE/labels.inc +++ b/program/localization/sv_SE/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Välkommen till $product'; $labels['username'] = 'Användarnamn'; $labels['password'] = 'Lösenord'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Sökalternativ'; $labels['msgtext'] = 'Hela meddelandet'; $labels['body'] = 'Innehåll'; $labels['type'] = 'Typ'; +$labels['namex'] = 'Namn'; $labels['openinextwin'] = 'Öppna i nytt fönster'; $labels['emlsave'] = 'Spara (.eml)'; $labels['changeformattext'] = 'Visa i text-format'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Ta bort sökning'; $labels['import'] = 'Importera'; $labels['importcontacts'] = 'Importera kontakter'; $labels['importfromfile'] = 'Importera från fil:'; -$labels['importtarget'] = 'Lägg till nya kontakter till adressbok:'; +$labels['importtarget'] = 'Lägg till kontakter i'; $labels['importreplace'] = 'Ersätt samtliga kontakter i adressboken'; +$labels['importgroups'] = 'Importera grupptillhörigheter'; +$labels['importgroupsall'] = 'Alla (skapa grupper om nödvändigt)'; +$labels['importgroupsexisting'] = 'Endast till befintliga grupper'; $labels['importdesc'] = 'Kontakter kan importeras från en befintlig adressbok.
Programmet stödjer inläsning av kontakter i formatet vCard eller formatet CSV (kommaseparerad data).'; $labels['done'] = 'Klart'; $labels['settingsfor'] = 'Inställningar för'; diff --git a/program/localization/sv_SE/messages.inc b/program/localization/sv_SE/messages.inc index 3aeb6e2bb..2773ae4c7 100644 --- a/program/localization/sv_SE/messages.inc +++ b/program/localization/sv_SE/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Ett fel uppstod!'; $messages['loginfailed'] = 'Inloggningen misslyckades'; $messages['cookiesdisabled'] = 'Din webbläsare accepterar inte cookies'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'Efterfrågad kontakt hittades inte'; $messages['contactsearchonly'] = 'Ange sökord för att hitta kontakter'; $messages['sendingfailed'] = 'Meddelandet kunde inte skickas'; $messages['senttooquickly'] = 'Vänta ytterligare $sec sekunder med att skicka meddelandet'; -$messages['errorsavingsent'] = 'Ett fel inträffade när det skickade meddelandet skulle sparas'; -$messages['errorsaving'] = 'Meddelandet kunde inte sparas'; $messages['errormoving'] = 'Meddelandet kunde inte flyttas'; $messages['errorcopying'] = 'Meddelandet kunde inte kopieras'; $messages['errordeleting'] = 'Meddelandet kunde inte tas bort'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP-fel: $msg'; $messages['emailformaterror'] = 'Felaktig adress: $email'; $messages['toomanyrecipients'] = 'Förmånga mottagare. Minska antalet till högst $max'; $messages['maxgroupmembersreached'] = 'Antalet gruppmedlemmar får inte överstiga $max'; -$messages['internalerror'] = 'Ett internt fel uppstod. Försök igen.'; $messages['contactdelerror'] = 'Kontakt kunde inte tas bort'; $messages['contactdeleted'] = 'Kontakt borttagen.'; $messages['contactrestoreerror'] = 'Borttagna kontakter kunde inte återskapas'; diff --git a/program/localization/ta_IN/labels.inc b/program/localization/ta_IN/labels.inc index 8b2233511..dd8c134ba 100644 --- a/program/localization/ta_IN/labels.inc +++ b/program/localization/ta_IN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'நல்வரவு'; $labels['username'] = 'பயனர்'; $labels['password'] = 'கடவுச்சொல்'; @@ -31,33 +29,22 @@ $labels['drafts'] = 'வரைவுகள்'; $labels['sent'] = 'அனுப்பிய அஞ்சல்'; $labels['trash'] = 'குப்பை'; $labels['junk'] = 'எரிதம்'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'தலைப்பு'; $labels['from'] = 'அனுப்புனர்'; -$labels['sender'] = 'Sender'; $labels['to'] = 'பெறுனர்'; $labels['cc'] = 'நகல்'; $labels['bcc'] = 'மறை நகல்'; $labels['replyto'] = 'பதிலளி'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'தேதி'; $labels['size'] = 'அளவு'; $labels['priority'] = 'முக்கியத்துவம்'; $labels['organization'] = 'நிறுவனம்'; -$labels['readstatus'] = 'Read status'; -$labels['listoptions'] = 'List options...'; $labels['mailboxlist'] = 'அடைவுகள்'; $labels['messagesfromto'] = 'செய்திகள் $countல் $from லிருந்து $to வரை'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = '$countல் $nr வது செய்தி'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'நகல்'; -$labels['move'] = 'Move'; $labels['moveto'] = 'இதற்கு அனுப்பு...'; $labels['download'] = 'பதிவிறக்கு'; -$labels['open'] = 'Open'; -$labels['showattachment'] = 'Show'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'கோப்பு பெயர்'; $labels['filesize'] = 'கோப்பு அளவு'; $labels['addtoaddressbook'] = 'தொடர்புகளுக்கு சேர்க்கவும்'; @@ -100,18 +87,11 @@ $labels['longoct'] = 'அக்டோபர்'; $labels['longnov'] = 'நவம்பர்'; $labels['longdec'] = 'டிசம்பர்'; $labels['today'] = 'இன்று'; -$labels['refresh'] = 'Refresh'; $labels['checkmail'] = 'புது அஞ்சல்களை பார்க்கவும்'; $labels['compose'] = 'அஞ்சல் எழுது'; $labels['writenewmessage'] = 'புது அஞ்சல் எழுதவும்'; -$labels['reply'] = 'Reply'; $labels['replytomessage'] = 'அனுப்புனருக்கு பதிலளி'; $labels['replytoallmessage'] = 'அனுப்புனர் மற்றும் எல்லா பெறுனர்களுக்கும் பதிலளி'; -$labels['replyall'] = 'Reply all'; -$labels['replylist'] = 'Reply list'; -$labels['forward'] = 'Forward'; -$labels['forwardinline'] = 'Forward inline'; -$labels['forwardattachment'] = 'Forward as attachment'; $labels['forwardmessage'] = 'செய்தியை முன்அனுப்பு'; $labels['deletemessage'] = 'செய்தியை நீக்கு'; $labels['movemessagetotrash'] = 'செய்தியை குப்பைக்கு நகர்த்து'; @@ -122,53 +102,23 @@ $labels['nextmessage'] = 'அடுத்த செய்தியை க $labels['lastmessage'] = 'கடைசி செய்தியை காட்டு'; $labels['backtolist'] = 'செய்தி பட்டியலுக்கு செல்லவும்'; $labels['viewsource'] = 'மூலத்தை காட்டு'; -$labels['mark'] = 'Mark'; $labels['markmessages'] = 'செய்திகளை குறியிடு'; $labels['markread'] = 'படித்ததாக குறியிடு'; $labels['markunread'] = 'படிக்காததாக குறியிடு'; $labels['markflagged'] = 'நட்சத்திரமிட்டதாக குறியிடு'; $labels['markunflagged'] = 'நட்சத்திரமிடாததாக குறியிடு'; -$labels['moreactions'] = 'More actions...'; -$labels['more'] = 'More'; -$labels['back'] = 'Back'; -$labels['options'] = 'Options'; $labels['select'] = 'தேர்ந்தெடு'; $labels['all'] = 'எல்லாம்'; $labels['none'] = 'எதுவுமில்லை'; -$labels['currpage'] = 'Current page'; $labels['unread'] = 'படிக்காதது'; $labels['flagged'] = 'நட்சத்திரமிட்டது'; $labels['unanswered'] = 'பதிலளிக்காதது'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'நீக்கியது'; -$labels['undeleted'] = 'Not deleted'; $labels['invert'] = 'தலைகீழ்'; $labels['filter'] = 'வடிப்பான்'; -$labels['list'] = 'List'; -$labels['threads'] = 'Threads'; -$labels['expand-all'] = 'Expand All'; -$labels['expand-unread'] = 'Expand Unread'; -$labels['collapse-all'] = 'Collapse All'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; -$labels['fromto'] = 'From/To'; -$labels['flag'] = 'Flag'; -$labels['attachment'] = 'Attachment'; $labels['nonesort'] = 'எதுவுமில்லை'; -$labels['sentdate'] = 'Sent date'; -$labels['arrival'] = 'Arrival date'; -$labels['asc'] = 'ascending'; -$labels['desc'] = 'descending'; -$labels['listcolumns'] = 'List columns'; -$labels['listsorting'] = 'Sorting column'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'குறுகிய'; $labels['empty'] = 'காலி'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'பயன்பாட்டு அளவு'; $labels['unknown'] = 'தெரியாத'; $labels['unlimited'] = 'அளவில்லா'; @@ -176,34 +126,21 @@ $labels['quicksearch'] = 'விரைவு தேடல்'; $labels['resetsearch'] = 'தேடலை மறுஅமை'; $labels['searchmod'] = 'மாற்றிகளை தேடு'; $labels['msgtext'] = 'முழு செய்தி'; -$labels['body'] = 'Body'; -$labels['type'] = 'Type'; $labels['openinextwin'] = 'புது சாளரத்தில் திற'; $labels['emlsave'] = 'பதிவிறக்கு (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; $labels['editasnew'] = 'புதியதாக திருத்து'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'இப்போது அனுப்பு'; $labels['savemessage'] = 'இந்த வரைவை சேமி'; $labels['addattachment'] = 'ஒரு கோப்பை இணைக்கவும்'; $labels['charset'] = 'எழுத்து குறிமுறை'; $labels['editortype'] = 'திருத்தும் வகை'; $labels['returnreceipt'] = 'திரும்பு சீட்டு'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'எழுத்துப்பிழை சரிபார்'; $labels['resumeediting'] = 'திருத்துவதை தொடரவும்'; $labels['revertto'] = 'முந்திய நிலைக்கு திரும்பவும்'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'கோப்பு இணைப்புகள்'; $labels['upload'] = 'பதிவேற்று'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'மூடு'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'குறைந்த'; $labels['lowest'] = 'மிக குறைந்த'; $labels['normal'] = 'சாதாரண'; @@ -212,10 +149,6 @@ $labels['highest'] = 'மிக அதிக'; $labels['nosubject'] = '(தலைப்பில்லா)'; $labels['showimages'] = 'படங்களை காட்டு'; $labels['alwaysshow'] = '$-னிடமிருந்து வரும் படங்களை காட்டு'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'எளிய உரை'; $labels['savesentmessagein'] = 'அனுப்பிய அஞ்சலை இங்கு சேமிக்கவும்'; @@ -224,7 +157,6 @@ $labels['maxuploadsize'] = 'அனுமதிக்கப்படும் அ $labels['addcc'] = 'நகல் சேர்'; $labels['addbcc'] = 'மறை நகல் சேர்'; $labels['addreplyto'] = 'பதிலளிக்க வேண்டியவர்களை சேர்'; -$labels['addfollowupto'] = 'Add Followup-To'; $labels['mdnrequest'] = 'இந்த செய்தியின் அனுப்புனர் இதை படித்தவுடன் அறிவிக்கும்படி கேட்டார். அறிவிக்க விரும்புகிறீர்களா ?'; $labels['receiptread'] = 'திரும்பு சீட்டு (படி)'; $labels['yourmessage'] = 'இது உங்கள் செய்தியின் திரும்பு சீட்டு'; @@ -232,97 +164,32 @@ $labels['receiptnote'] = 'குறிப்பு: இந்த ஒப்பு $labels['name'] = 'காட்சி பெயர்'; $labels['firstname'] = 'முதற் பெயர்'; $labels['surname'] = 'கடைசி பெயர்'; -$labels['middlename'] = 'Middle Name'; -$labels['nameprefix'] = 'Prefix'; -$labels['namesuffix'] = 'Suffix'; -$labels['nickname'] = 'Nickname'; -$labels['jobtitle'] = 'Job Title'; -$labels['department'] = 'Department'; -$labels['gender'] = 'Gender'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'மின்னஞ்சல்'; -$labels['phone'] = 'Phone'; -$labels['address'] = 'Address'; -$labels['street'] = 'Street'; -$labels['locality'] = 'City'; -$labels['zipcode'] = 'ZIP Code'; -$labels['region'] = 'State/Province'; -$labels['country'] = 'Country'; -$labels['birthday'] = 'Birthday'; -$labels['anniversary'] = 'Anniversary'; -$labels['website'] = 'Website'; -$labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; -$labels['male'] = 'male'; -$labels['female'] = 'female'; -$labels['manager'] = 'Manager'; -$labels['assistant'] = 'Assistant'; -$labels['spouse'] = 'Spouse'; -$labels['allfields'] = 'All fields'; -$labels['search'] = 'Search'; -$labels['advsearch'] = 'Advanced Search'; -$labels['advanced'] = 'Advanced'; -$labels['other'] = 'Other'; -$labels['typehome'] = 'Home'; -$labels['typework'] = 'Work'; -$labels['typeother'] = 'Other'; -$labels['typemobile'] = 'Mobile'; -$labels['typemain'] = 'Main'; -$labels['typehomefax'] = 'Home Fax'; -$labels['typeworkfax'] = 'Work Fax'; -$labels['typecar'] = 'Car'; -$labels['typepager'] = 'Pager'; -$labels['typevideo'] = 'Video'; -$labels['typeassistant'] = 'Assistant'; -$labels['typehomepage'] = 'Home Page'; -$labels['typeblog'] = 'Blog'; -$labels['typeprofile'] = 'Profile'; -$labels['addfield'] = 'Add field...'; $labels['addcontact'] = 'புது தொடர்பை சேர்'; $labels['editcontact'] = 'தொடர்பை திருத்து'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'திருத்து'; $labels['cancel'] = 'ரத்து'; $labels['save'] = 'சேமி'; $labels['delete'] = 'நீக்கு'; -$labels['rename'] = 'Rename'; -$labels['addphoto'] = 'Add'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'புது தொடர்பு அட்டையை உருவாக்கு'; $labels['deletecontact'] = 'தேர்ந்தெடுத்த தொடர்புகளை நீக்கு'; $labels['composeto'] = 'இவர்-கு அஞ்சல் எழுது'; $labels['contactsfromto'] = 'தொடர்புகள் $countல் $from லிருந்து $to வரை'; $labels['print'] = 'அச்சிடு'; $labels['export'] = 'ஏற்றுமதி'; -$labels['exportall'] = 'Export all'; -$labels['exportsel'] = 'Export selected'; $labels['exportvcards'] = 'தொடர்புகளை vCard வடிவத்தில் ஏற்றுமதி செய்யவும்'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'முந்திய குழுவை காட்டு'; $labels['firstpage'] = 'முதல் குழுவை காட்டு'; $labels['nextpage'] = 'அடுத்த குழுவை காட்டு'; $labels['lastpage'] = 'கடைசி குழுவை காட்டு'; -$labels['group'] = 'Group'; $labels['groups'] = 'குழுக்கள்'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'சுய முகவரி'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; $labels['import'] = 'இறக்குமதி'; $labels['importcontacts'] = 'தொடர்புகளை இறக்குமதி செய்யவும்'; $labels['importfromfile'] = 'இந்த கோப்பிலிருந்து இறக்குமதி செய்யவும்:'; -$labels['importtarget'] = 'Add new contacts to address book:'; $labels['importreplace'] = 'எல்லா தொடர்புகளையும் மாற்றி அமை'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; $labels['done'] = 'முடிந்தது'; $labels['settingsfor'] = 'இதற்கான அமைப்புகள்'; -$labels['about'] = 'About'; $labels['preferences'] = 'விருப்பங்கள்'; $labels['userpreferences'] = 'பயனர் விருப்பங்கள்'; $labels['editpreferences'] = 'பயனர் விருப்பங்களை திருத்து'; @@ -332,12 +199,7 @@ $labels['newidentity'] = 'புது அடையாளம்'; $labels['newitem'] = 'புது உருப்படி'; $labels['edititem'] = 'உருப்படியை திருத்து'; $labels['preferhtml'] = 'HTML காட்டு'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'HTML செய்தி'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'நல்ல தேதி'; $labels['setdefault'] = 'இயல்பை அமை'; $labels['autodetect'] = 'தானியங்கி'; @@ -346,13 +208,8 @@ $labels['timezone'] = 'நேர மண்டலம்'; $labels['pagesize'] = 'ஒரு பக்கத்திற்கான வரிகள்'; $labels['signature'] = 'கையொப்பம்'; $labels['dstactive'] = 'பகல் ஒளி சேமிப்பு நேரம்'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'HTML செய்திகளை எழுது'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'HTML கையொப்பம்'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'முந்திய பாத்தியை காட்டு'; $labels['skin'] = 'முகப்பு தோற்றம்'; $labels['logoutclear'] = 'வெளியேறும் போது குப்பையை காலி செய்'; @@ -363,43 +220,33 @@ $labels['mailboxview'] = 'அஞ்சல் பெட்டி காட்ச $labels['mdnrequests'] = 'அனுப்புனர் அறிவிப்புகள்'; $labels['askuser'] = 'பயனரை கேள்'; $labels['autosend'] = 'தானாக அனுப்பு'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; $labels['ignore'] = 'தவிர்'; $labels['readwhendeleted'] = 'செய்தியை நீக்கும் போது படித்ததாக குறி'; $labels['flagfordeletion'] = 'நீக்குவதற்கு பதிலாக நீக்குவதாக நட்சத்திரமிடு'; $labels['skipdeleted'] = 'நீக்கிய செய்திகளை காட்டாதே'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; $labels['showremoteimages'] = 'தொலை தூர துணை படங்களை காட்டு'; $labels['fromknownsenders'] = 'தெரிந்த அனுப்புனரிடமிருந்து'; $labels['always'] = 'எப்போதும்'; $labels['showinlineimages'] = 'இணைத்த படங்களை செய்திகளுக்கு கீழே காட்டவும்'; $labels['autosavedraft'] = 'தானாக வரைவுகளை சேமி'; $labels['everynminutes'] = 'ஒவ்வொரு $n நிமிடங்களுக்கும்'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'எப்போதுமில்லை'; -$labels['immediately'] = 'immediately'; $labels['messagesdisplaying'] = 'செய்திகளை காட்டுகிறது'; $labels['messagescomposition'] = 'செய்திகளை எழுதுகிறது'; $labels['mimeparamfolding'] = 'இணைப்பு பெயர்கள்'; $labels['2231folding'] = 'முழு RFC 2231 (Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; $labels['2047folding'] = 'முழு RFC 2047 (மற்ற)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'மேம்பட்ட விருப்பங்கள்'; $labels['focusonnewmessage'] = 'உலாவி சாளரத்தை புது செய்திக்காக கவனி'; $labels['checkallfolders'] = 'புது செய்திகளுக்காக எல்லா அடைவுகளையும் சரிபார்'; $labels['displaynext'] = 'செய்தியை நீக்கு/நகர் பிறகு அடுத்த செய்தியை காட்டு'; -$labels['defaultfont'] = 'Default font of HTML message'; $labels['mainoptions'] = 'முக்கிய விருப்பங்கள்'; -$labels['browseroptions'] = 'Browser Options'; $labels['section'] = 'பிரிவு'; $labels['maintenance'] = 'பராமரிப்பு'; $labels['newmessage'] = 'புது செய்தி'; $labels['signatureoptions'] = 'கையொப்ப விருப்பங்கள்'; $labels['whenreplying'] = 'பதிலளிக்கும் போது'; -$labels['replyempty'] = 'do not quote the original message'; $labels['replytopposting'] = 'புது செய்தியை அசலின் மேல் துவக்கு'; $labels['replybottomposting'] = 'புது செய்தியை அசலின் கீழ் துவக்கு'; $labels['replyremovesignature'] = 'பதிலளிக்கும் போது அசல் கையெழுத்தை செய்தியிலிருந்து நீக்கவும்'; @@ -407,25 +254,6 @@ $labels['autoaddsignature'] = 'தானாக கையொப்பத்த $labels['newmessageonly'] = 'புது செய்தி மட்டும்'; $labels['replyandforwardonly'] = 'பதிலளிப்பு முன்அனுப்பு மட்டும்'; $labels['insertsignature'] = 'கையோப்பமிடு'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; -$labels['asattachment'] = 'as attachment'; $labels['folder'] = 'அடைவு'; $labels['folders'] = 'அடைவுகள்'; $labels['foldername'] = 'அடைவு பெயர்'; @@ -435,47 +263,11 @@ $labels['create'] = 'உருவாக்கு'; $labels['createfolder'] = 'புது அடைவு உருவாக்கு'; $labels['managefolders'] = 'அடைவுகளை நிற்வகி'; $labels['specialfolders'] = 'சிறப்பு அடைவுகள்'; -$labels['properties'] = 'Properties'; -$labels['folderproperties'] = 'Folder properties'; -$labels['parentfolder'] = 'Parent folder'; -$labels['location'] = 'Location'; -$labels['info'] = 'Information'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; -$labels['foldertype'] = 'Folder Type'; -$labels['personalfolder'] = 'Private Folder'; -$labels['otherfolder'] = 'Other User\'s Folder'; -$labels['sharedfolder'] = 'Public Folder'; $labels['sortby'] = 'வாரியாக அடுக்கு'; $labels['sortasc'] = 'ஏறு வரிசையாக அடுக்கு'; $labels['sortdesc'] = 'இறங்கு வரிசையாக அடுக்கு'; -$labels['undo'] = 'Undo'; -$labels['installedplugins'] = 'Installed plugins'; -$labels['plugin'] = 'Plugin'; -$labels['version'] = 'Version'; -$labels['source'] = 'Source'; -$labels['license'] = 'License'; -$labels['support'] = 'Get support'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; -$labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/ta_IN/messages.inc b/program/localization/ta_IN/messages.inc index 98ccd526d..d496b3836 100644 --- a/program/localization/ta_IN/messages.inc +++ b/program/localization/ta_IN/messages.inc @@ -15,29 +15,17 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - -$messages['errortitle'] = 'An error occurred!'; $messages['loginfailed'] = 'நுழைவு தோல்வியடைந்தது'; $messages['cookiesdisabled'] = 'உங்கள் உலாவி நினைவிகளை அனுமதிப்பதில்லை'; $messages['sessionerror'] = 'உங்கள் அமர்வு செல்லாது அல்லது முடிவுற்றது'; $messages['storageerror'] = 'IMAP சேவையகத்திற்கான இணைப்பு தோல்வியடைந்தது'; $messages['servererror'] = 'சேவையக பிழை!'; -$messages['servererrormsg'] = 'Server Error: $msg'; -$messages['dberror'] = 'Database Error!'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'செல்லாத வேண்டுகோள்! எந்த தரவும் சேமிக்கப்படவில்லை.'; -$messages['invalidhost'] = 'Invalid server name.'; $messages['nomessagesfound'] = 'இந்த தபால் பெட்டியில் எந்த தரவும் சேமிக்கப்படவில்லை'; $messages['loggedout'] = 'நீங்கள் அமர்வை வெற்றிகரமாக முடித்தீர்கள். வணக்கம்'; $messages['mailboxempty'] = 'தபால் பெட்டி காலியாக உள்ளது'; -$messages['refreshing'] = 'Refreshing...'; $messages['loading'] = 'ஏற்றுகிறது...'; $messages['uploading'] = 'கோப்பை ஏற்றுகிறது...'; -$messages['uploadingmany'] = 'Uploading files...'; $messages['loadingdata'] = 'தரவை ஏற்றுகிறது...'; $messages['checkingmail'] = 'புது செய்திகளை சரிபார்க்கிறது...'; $messages['sendingmessage'] = 'செய்தியை அனுப்புகிறது...'; @@ -47,31 +35,21 @@ $messages['messagesaved'] = 'செய்தி வரைவில் சேம $messages['successfullysaved'] = 'வெற்றிகரமாக சேமிக்கப்பட்டது'; $messages['addedsuccessfully'] = 'தொடர்பு சேமிக்கப்பட்டது'; $messages['contactexists'] = 'இந்த மின்னஞ்சல் முகவரியுடன் ஒரு தொடர்பு ஏற்கனவே உள்ளது'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'உங்கள் தனிப்பட்ட தகவலை பாதுகாக்க, தொலை தூரப் படங்கள் இந்த செய்தியில் தடுக்கப்பட்டது'; $messages['encryptedmessage'] = 'மன்னிக்கவும்! இந்த செய்தி குறிமுறையாக்கப்பட்டது அதனால் காட்ட முடியாது.'; $messages['nocontactsfound'] = 'எந்த தொடர்புகளும் காணப்படவில்லை'; $messages['contactnotfound'] = 'நீங்கள் வேண்டிய தொடர்பு காணப்படவில்லை'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'செய்தி அனுப்புவது தோல்வியுற்றது'; $messages['senttooquickly'] = 'இந்த செய்தி அனுப்புவதற்கு முன்பு தயவு செய்து $sec வினாடி(கள்) காத்திருக்கவும்.'; -$messages['errorsavingsent'] = 'அனுப்பிய அஞ்சலை சேமிக்கும் போது பிழை ஏற்பட்டது'; -$messages['errorsaving'] = 'சேமிக்கும் போது பிழை ஏற்பட்டது'; $messages['errormoving'] = 'செய்தியை நகர்த்த முடியவில்லை'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'செய்தியை நீக்க முடியவில்லை'; $messages['errormarking'] = 'செய்தியை நட்சத்திரமிட முடியவில்லை'; $messages['deletecontactconfirm'] = 'நீங்கள் தேர்ந்தெடுத்த தொடர்புகளை நீக்க விரும்புகிறீர்களா ?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'நீங்கள் தேர்ந்தெடுத்த செய்திகளை நீக்க விரும்புகிறீர்களா ?'; $messages['deletefolderconfirm'] = 'நீங்கள் இந்த அடைவை நீக்க விரும்புகிறீர்களா ?'; $messages['purgefolderconfirm'] = 'நீங்கள் இந்த அடைவிலிருக்கும் எல்லா செய்திகளையும் நீக்க விரும்புகிறீர்களா ?'; -$messages['contactdeleting'] = 'Deleting contact(s)...'; -$messages['groupdeleting'] = 'Deleting group...'; $messages['folderdeleting'] = 'அடைவை நீக்குகிறது...'; $messages['foldermoving'] = 'அடைவை நகர்த்துகிறது...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'விண்ணப்பத்தை முழுமையாக நிறைவு செய்யவில்லை'; $messages['noemailwarning'] = 'தயவு செய்து உண்மையான மின்னஞ்சலை எழுதுங்கள்'; $messages['nonamewarning'] = 'தயவு செய்து பெயரை எழுதுங்கள்'; @@ -85,51 +63,27 @@ $messages['noldapserver'] = 'தயவு செய்து தேடுவத $messages['nosearchname'] = 'தயவு செய்து தொடர்பின் பெயரோ மின்னஞ்சல் முகவரியோ எழுதுங்கள்'; $messages['notuploadedwarning'] = 'எல்லா இணைப்புகளும் ஏற்றப்படவில்லை. தயவு செய்து காத்திருங்கள் அல்லது ஏற்றத்தை ரத்து செய்யுங்கள்.'; $messages['searchsuccessful'] = '$nr செய்திகள் கண்டுபிடிக்கப்பட்டது'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'தேடுதல் எந்த பொருத்தத்தையும் அனுப்பவில்லை'; $messages['searching'] = 'தேடுகிறது...'; $messages['checking'] = 'சரி பார்க்கிறது...'; $messages['nospellerrors'] = 'எழுத்து பிழைகள் இல்லை'; $messages['folderdeleted'] = 'அடைவு வெற்றிகரமாக நீக்கப்பட்டது'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'வெற்றிகரமாக நீக்கப்பட்டது'; $messages['converting'] = 'வடிவத்தை நீக்குகிறது...'; $messages['messageopenerror'] = 'சேவையகத்திலிருந்து செய்தியை ஏற்ற முடியவில்லை'; $messages['fileuploaderror'] = 'கோப்பு ஏற்றம் தோல்வியடாந்தது'; $messages['filesizeerror'] = 'ஏற்றிய கோப்பு அதிகபட்ச அளவான $size-ஐ மீறியது'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'இந்த முகவரியின் மூலத்தை படிக்க மட்டும்தான் முடியும்'; $messages['errorsavingcontact'] = 'தொடர்பு முகவரியை சேமிக்க முடியவில்லை'; $messages['movingmessage'] = 'செய்தியை நகர்த்துகிறது...'; -$messages['copyingmessage'] = 'Copying message(s)...'; -$messages['copyingcontact'] = 'Copying contact(s)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; -$messages['deletingmessage'] = 'Deleting message(s)...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; $messages['receiptsent'] = 'படித்த சீட்டு வெற்றிகரமாக அனுப்பப்பட்டது'; $messages['errorsendingreceipt'] = 'சீட்டை அனுப்ப முடியவில்லை'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; $messages['nodeletelastidentity'] = 'நீங்கள் இந்த அடையாளத்தை நீக்க முடியாது இது தான் கடைசி'; $messages['forbiddencharacter'] = 'அடைவு பெயரில் தடை செய்யப்பட்ட எழுத்துக்கள் உள்ளது'; $messages['selectimportfile'] = 'தயவு செய்து ஏற்றுவதற்கு ஒரு கோப்பை தேர்ந்தெடுங்கள்'; $messages['addresswriterror'] = 'நீங்கள் தேர்ந்தெடுத்த தொடர்புகளில் எழுத முடியாது'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'ஏற்றுகிறது, தயவு செய்து காத்திருங்கள்...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; $messages['importconfirm'] = 'வெற்றிகரமாக $inserted தொடர்புகள் ஏற்றப்பட்டது, ஏற்கனவே உள்ள $skipped தொடர்புகள் தவிர்க்கப்பட்டது:

$names

'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'பணி அனுமதிக்கப்படவில்லை!'; $messages['nofromaddress'] = 'நீங்கள் தேர்ந்தெடுத்த அடையாளத்தில் மின்னஞ்சல் இல்லை'; $messages['editorwarning'] = 'எளிய உரை திருத்திக்கு மாறுவதன் மூலம் எல்லா உரை வடிவங்களும் தொலைந்து போகக் கூடும். தொடர விரும்புகிறீர்களா ?'; @@ -141,34 +95,4 @@ $messages['smtptoerror'] = 'SMTP பிழை ($code): "$to" பெறுனர $messages['smtprecipientserror'] = 'SMTP பிழை : பெறுனர் பட்டியலை பிரிக்க முடியவில்லை'; $messages['smtperror'] = 'SMTP பிழை: $msg'; $messages['emailformaterror'] = 'தவறான மின்னஞ்சல் முகவரி: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/th_TH/labels.inc b/program/localization/th_TH/labels.inc index 06e399660..9ee0858e2 100644 --- a/program/localization/th_TH/labels.inc +++ b/program/localization/th_TH/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'ยินดีต้อนรับสู่ $product'; $labels['username'] = 'บัญชีผู้ใช้'; $labels['password'] = 'รหัสผ่าน'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'กล่องจดหมายร่าง'; $labels['sent'] = 'กล่องขาออก'; $labels['trash'] = 'ถังขยะ'; $labels['junk'] = 'กล่องจดหมายขยะ'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'หัวจดหมาย'; $labels['from'] = 'ผู้ส่ง'; $labels['sender'] = 'ผู้ส่ง'; @@ -39,7 +36,6 @@ $labels['to'] = 'ผู้รับ'; $labels['cc'] = 'คัดลอก'; $labels['bcc'] = 'แอบสำเนาถึง'; $labels['replyto'] = 'ตอบกลับ'; -$labels['followupto'] = 'Followup-To'; $labels['date'] = 'วันที่'; $labels['size'] = 'ขนาด'; $labels['priority'] = 'ระดับความสำคัญ'; @@ -48,16 +44,12 @@ $labels['readstatus'] = 'สถานะการเปิดอ่าน'; $labels['listoptions'] = 'ตัวเลือกการแสดงรายการ'; $labels['mailboxlist'] = 'กล่องจดหมาย'; $labels['messagesfromto'] = 'จดหมายจาก $from ถึง $to จำนวน $count ฉบับ'; -$labels['threadsfromto'] = 'Threads $from to $to of $count'; $labels['messagenrof'] = 'จดหมายฉบับที่ $nr จาก $count ฉบับ'; -$labels['fromtoshort'] = '$from – $to of $count'; $labels['copy'] = 'คัดลอก'; $labels['move'] = 'เลื่อน'; $labels['moveto'] = 'ย้ายไป...'; $labels['download'] = 'ดาวน์โหลด'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'แสดง'; -$labels['showanyway'] = 'Show it anyway'; $labels['filename'] = 'ชื่อไฟล์'; $labels['filesize'] = 'ขนาดไฟล์'; $labels['addtoaddressbook'] = 'บันทึกในสมุดรายชื่อ'; @@ -110,7 +102,6 @@ $labels['replytoallmessage'] = 'ตอบกลับถึงทุกคนใ $labels['replyall'] = 'ตอบกลับทั้งหมด'; $labels['replylist'] = 'รายชื่อตอบกลับ'; $labels['forward'] = 'ส่งต่อ'; -$labels['forwardinline'] = 'Forward inline'; $labels['forwardattachment'] = 'ส่งต่อเป็นไฟล์แนบ'; $labels['forwardmessage'] = 'ส่งต่อจดหมาย'; $labels['deletemessage'] = 'ลบจดหมาย'; @@ -126,8 +117,6 @@ $labels['mark'] = 'ทำเครื่องหมาย'; $labels['markmessages'] = 'ทำเครื่องหมายข้อความ'; $labels['markread'] = 'ว่าอ่านแล้ว'; $labels['markunread'] = 'ว่ายังไม่ได้อ่าน'; -$labels['markflagged'] = 'As flagged'; -$labels['markunflagged'] = 'As unflagged'; $labels['moreactions'] = 'การกระทำเพิ่มเติม...'; $labels['more'] = 'เพิ่มเติม'; $labels['back'] = 'ย้อนกลับ'; @@ -137,73 +126,41 @@ $labels['all'] = 'ทั้งหมด'; $labels['none'] = 'ไม่เลือก'; $labels['currpage'] = 'หน้าปัจจุบัน'; $labels['unread'] = 'จดหมายที่ไม่ได้อ่าน'; -$labels['flagged'] = 'Flagged'; $labels['unanswered'] = 'ยังไม่ได้ตอบ'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'ลบแล้ว'; $labels['undeleted'] = 'ยังไม่ได้ลบ'; -$labels['invert'] = 'Invert'; $labels['filter'] = 'ตัวกรองข้อมูล'; $labels['list'] = 'รายการ'; -$labels['threads'] = 'Threads'; $labels['expand-all'] = 'แสดงทั้งหมด'; $labels['expand-unread'] = 'แสดงเฉพาะที่ยังไม่ได้อ่าน'; $labels['collapse-all'] = 'ปิดทั้งหมด'; -$labels['threaded'] = 'Threaded'; -$labels['autoexpand_threads'] = 'Expand message threads'; -$labels['do_expand'] = 'all threads'; -$labels['expand_only_unread'] = 'only with unread messages'; $labels['fromto'] = 'จาก/ถึง'; -$labels['flag'] = 'Flag'; $labels['attachment'] = 'ไฟล์แนบ'; $labels['nonesort'] = 'ไม่เลือก'; $labels['sentdate'] = 'วันที่ส่ง'; $labels['arrival'] = 'วันที่มาถึง'; $labels['asc'] = 'เรียงจากน้อยมามาก'; $labels['desc'] = 'เรีียงจากมากไปน้อย'; -$labels['listcolumns'] = 'List columns'; $labels['listsorting'] = 'จัดเรียงคอลัมน์'; -$labels['listorder'] = 'Sorting order'; -$labels['listmode'] = 'List view mode'; -$labels['folderactions'] = 'Folder actions...'; $labels['compact'] = 'แบบย่อ'; $labels['empty'] = 'ว่างเปล่า'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'พื้นที่ใช้งาน'; $labels['unknown'] = 'ไม่ทราบ'; $labels['unlimited'] = 'ไม่จำกัด'; $labels['quicksearch'] = 'ค้นหาแบบด่วน'; $labels['resetsearch'] = 'ล้างการค้นหา'; -$labels['searchmod'] = 'Search modifiers'; -$labels['msgtext'] = 'Entire message'; $labels['body'] = 'เนื้อหา'; -$labels['type'] = 'Type'; -$labels['openinextwin'] = 'Open in new window'; -$labels['emlsave'] = 'Download (.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; -$labels['editasnew'] = 'Edit as new'; -$labels['send'] = 'Send'; $labels['sendmessage'] = 'ส่งจดหมาย'; $labels['savemessage'] = 'บันทึกฉบับร่าง'; $labels['addattachment'] = 'แนบไฟล์'; $labels['charset'] = 'Charset'; -$labels['editortype'] = 'Editor type'; $labels['returnreceipt'] = 'ตอบกลับผู้รับ'; -$labels['dsn'] = 'Delivery status notification'; -$labels['mailreplyintro'] = 'On $date, $sender wrote:'; -$labels['originalmessage'] = 'Original Message'; -$labels['editidents'] = 'Edit identities'; -$labels['spellcheck'] = 'Spell'; $labels['checkspelling'] = 'ตรวจสอบคำผิด'; $labels['resumeediting'] = 'แก้ไขต่อ'; $labels['revertto'] = 'ย้นกลับไปยัง'; -$labels['attach'] = 'Attach'; $labels['attachments'] = 'ไฟล์แนบ'; $labels['upload'] = 'อัพโหลด'; -$labels['uploadprogress'] = '$percent ($current from $total)'; $labels['close'] = 'ปิด'; -$labels['messageoptions'] = 'Message options...'; $labels['low'] = 'ต่ำ'; $labels['lowest'] = 'ต่ำสุด'; $labels['normal'] = 'ปกติ'; @@ -211,24 +168,8 @@ $labels['high'] = 'สูง'; $labels['highest'] = 'สูงสุด'; $labels['nosubject'] = '(ไม่มีหัวข้อ)'; $labels['showimages'] = 'แสดงรูป'; -$labels['alwaysshow'] = 'Always show images from $sender'; -$labels['isdraft'] = 'This is a draft message.'; -$labels['andnmore'] = '$nr more...'; -$labels['togglemoreheaders'] = 'Show more message headers'; -$labels['togglefullheaders'] = 'Toggle raw message headers'; $labels['htmltoggle'] = 'HTML'; $labels['plaintoggle'] = 'Plain text'; -$labels['savesentmessagein'] = 'Save sent message in'; -$labels['dontsave'] = 'don\'t save'; -$labels['maxuploadsize'] = 'Maximum allowed file size is $size'; -$labels['addcc'] = 'Add Cc'; -$labels['addbcc'] = 'Add Bcc'; -$labels['addreplyto'] = 'Add Reply-To'; -$labels['addfollowupto'] = 'Add Followup-To'; -$labels['mdnrequest'] = 'The sender of this message has asked to be notified when you read this message. Do you wish to notify the sender?'; -$labels['receiptread'] = 'Return Receipt (read)'; -$labels['yourmessage'] = 'This is a Return Receipt for your message'; -$labels['receiptnote'] = 'Note: This receipt only acknowledges that the message was displayed on the recipient\'s computer. There is no guarantee that the recipient has read or understood the message contents.'; $labels['name'] = 'ชื่อแสดง'; $labels['firstname'] = 'ชื่อ'; $labels['surname'] = 'สกุล'; @@ -239,7 +180,6 @@ $labels['nickname'] = 'ชื่อเล่น'; $labels['jobtitle'] = 'ตำแหน่งงาน'; $labels['department'] = 'แผนก'; $labels['gender'] = 'เพศ'; -$labels['maidenname'] = 'Maiden Name'; $labels['email'] = 'อีเมล์'; $labels['phone'] = 'โทรศัพท์'; $labels['address'] = 'ที่อยู่'; @@ -249,15 +189,12 @@ $labels['zipcode'] = 'รหัสไปรษณีย์'; $labels['region'] = 'รัฐ/จังหวัด'; $labels['country'] = 'ประเทศ'; $labels['birthday'] = 'วันเกิด'; -$labels['anniversary'] = 'Anniversary'; $labels['website'] = 'เว็บไซต์'; $labels['instantmessenger'] = 'IM'; -$labels['notes'] = 'Notes'; $labels['male'] = 'ชาย'; $labels['female'] = 'หญิง'; $labels['manager'] = 'ผู้จัดการ'; $labels['assistant'] = 'ผู้ช่วย'; -$labels['spouse'] = 'Spouse'; $labels['allfields'] = 'ช่องข้อมูลทั้่งหมด'; $labels['search'] = 'ค้นหา'; $labels['advsearch'] = 'ค้นหาขั้นสูง'; @@ -267,30 +204,23 @@ $labels['typehome'] = 'บ้าน'; $labels['typework'] = 'สถานที่ทำงาน'; $labels['typeother'] = 'อื่นๆ'; $labels['typemobile'] = 'มือถือ'; -$labels['typemain'] = 'Main'; $labels['typehomefax'] = 'โทรสารที่บ้าน'; $labels['typeworkfax'] = 'โทรสารที่ทำงาน'; $labels['typecar'] = 'รถ'; $labels['typepager'] = 'เพจเจอร์'; $labels['typevideo'] = 'วีดีโอ'; -$labels['typeassistant'] = 'Assistant'; $labels['typehomepage'] = 'โฮมเพจ'; $labels['typeblog'] = 'บล็อก'; $labels['typeprofile'] = 'โปรไฟล์'; $labels['addfield'] = 'เพิ่มช่องข้อมูล...'; $labels['addcontact'] = 'เพิ่มรายชื่อ'; $labels['editcontact'] = 'แก้ไขรายชื่อ'; -$labels['contacts'] = 'Contacts'; -$labels['contactproperties'] = 'Contact properties'; -$labels['personalinfo'] = 'Personal information'; $labels['edit'] = 'แก้ไข'; $labels['cancel'] = 'ยกเลิก'; $labels['save'] = 'บันทึก'; $labels['delete'] = 'ลบ'; $labels['rename'] = 'เปลี่ยนชื่อ'; $labels['addphoto'] = 'เพิ่ม'; -$labels['replacephoto'] = 'Replace'; -$labels['uploadphoto'] = 'Upload photo'; $labels['newcontact'] = 'สร้างรายชื่อใหม่'; $labels['deletecontact'] = 'ลบรายชื่อที่เลือก'; $labels['composeto'] = 'เขียนจดหมายถึง'; @@ -299,30 +229,9 @@ $labels['print'] = 'พิมพ์'; $labels['export'] = 'ส่งออก'; $labels['exportall'] = 'ส่งออกทั้งหมด'; $labels['exportsel'] = 'ส่งออกเฉพาะที่เลือก'; -$labels['exportvcards'] = 'Export contacts in vCard format'; -$labels['newcontactgroup'] = 'Create new contact group'; -$labels['grouprename'] = 'Rename group'; -$labels['groupdelete'] = 'Delete group'; -$labels['groupremoveselected'] = 'Remove selected contacts from group'; $labels['previouspage'] = 'หน้าที่แล้ว'; -$labels['firstpage'] = 'Show first page'; $labels['nextpage'] = 'หน้าถัดไป'; -$labels['lastpage'] = 'Show last page'; -$labels['group'] = 'Group'; -$labels['groups'] = 'Groups'; -$labels['listgroup'] = 'List group members'; -$labels['personaladrbook'] = 'Personal Addresses'; -$labels['searchsave'] = 'Save search'; -$labels['searchdelete'] = 'Delete search'; -$labels['import'] = 'Import'; -$labels['importcontacts'] = 'Import contacts'; -$labels['importfromfile'] = 'Import from file:'; -$labels['importtarget'] = 'Add new contacts to address book:'; -$labels['importreplace'] = 'Replace the entire address book'; -$labels['importdesc'] = 'You can upload contacts from an existing address book.
We currently support importing addresses from the vCard or CSV (comma-separated) data format.'; -$labels['done'] = 'Done'; $labels['settingsfor'] = 'ตั้งค่าสำหรับ'; -$labels['about'] = 'About'; $labels['preferences'] = 'ปรับแต่ง'; $labels['userpreferences'] = 'ข้อมูลส่วนตัว'; $labels['editpreferences'] = 'แก้ไขข้อมูลส่วนตัว'; @@ -332,99 +241,27 @@ $labels['newidentity'] = 'ชื่อแสดงตัวใหม่'; $labels['newitem'] = 'New item'; $labels['edititem'] = 'Edit item'; $labels['preferhtml'] = 'อ่านแบบ HTML'; -$labels['defaultcharset'] = 'Default Character Set'; $labels['htmlmessage'] = 'จดหมาย HTML'; -$labels['messagepart'] = 'Part'; -$labels['digitalsig'] = 'Digital Signature'; -$labels['dateformat'] = 'Date format'; -$labels['timeformat'] = 'Time format'; $labels['prettydate'] = 'แสดงวันที่แบบย่อ'; $labels['setdefault'] = 'ตั้งเป็นค่าใช้งาน'; -$labels['autodetect'] = 'Auto'; $labels['language'] = 'ภาษา'; $labels['timezone'] = 'เขตเวลา'; $labels['pagesize'] = 'จำนวนจดหมายต่อหน้า'; $labels['signature'] = 'ลายมือชื่อ'; $labels['dstactive'] = 'Daylight savings'; -$labels['showinextwin'] = 'Open message in a new window'; -$labels['composeextwin'] = 'Compose in a new window'; $labels['htmleditor'] = 'เขียนจดหมายแบบ HTML'; -$labels['htmlonreply'] = 'on reply to HTML message'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; $labels['htmlsignature'] = 'ลายมือชื่อแบบ HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'แสดงหน้าต่างตัวอย่างแสดงผล'; -$labels['skin'] = 'Interface skin'; -$labels['logoutclear'] = 'Clear Trash on logout'; -$labels['logoutcompact'] = 'Compact Inbox on logout'; -$labels['uisettings'] = 'User Interface'; -$labels['serversettings'] = 'Server Settings'; -$labels['mailboxview'] = 'Mailbox View'; -$labels['mdnrequests'] = 'On request for return receipt'; -$labels['askuser'] = 'ask me'; -$labels['autosend'] = 'send receipt'; -$labels['autosendknown'] = 'send receipt to my contacts, otherwise ask me'; -$labels['autosendknownignore'] = 'send receipt to my contacts, otherwise ignore'; -$labels['ignore'] = 'ignore'; -$labels['readwhendeleted'] = 'Mark the message as read on delete'; -$labels['flagfordeletion'] = 'Flag the message for deletion instead of delete'; -$labels['skipdeleted'] = 'Do not show deleted messages'; -$labels['deletealways'] = 'If moving messages to Trash fails, delete them'; -$labels['deletejunk'] = 'Directly delete messages in Junk'; -$labels['showremoteimages'] = 'Display remote inline images'; -$labels['fromknownsenders'] = 'from known senders'; -$labels['always'] = 'always'; -$labels['showinlineimages'] = 'Display attached images below the message'; $labels['autosavedraft'] = 'บันทึกเป็นจดหมายร่างอัตโนมัติ'; -$labels['everynminutes'] = 'every $n minute(s)'; -$labels['refreshinterval'] = 'Refresh (check for new messages, etc.)'; $labels['never'] = 'ไม่ใช้'; -$labels['immediately'] = 'immediately'; -$labels['messagesdisplaying'] = 'Displaying Messages'; -$labels['messagescomposition'] = 'Composing Messages'; -$labels['mimeparamfolding'] = 'Attachment names'; -$labels['2231folding'] = 'Full RFC 2231 (Thunderbird)'; -$labels['miscfolding'] = 'RFC 2047/2231 (MS Outlook)'; -$labels['2047folding'] = 'Full RFC 2047 (other)'; -$labels['force7bit'] = 'Use MIME encoding for 8-bit characters'; $labels['advancedoptions'] = 'ตัวเลือกขั้นสูง'; -$labels['focusonnewmessage'] = 'Focus browser window on new message'; -$labels['checkallfolders'] = 'Check all folders for new messages'; -$labels['displaynext'] = 'After message delete/move display the next message'; -$labels['defaultfont'] = 'Default font of HTML message'; -$labels['mainoptions'] = 'Main Options'; -$labels['browseroptions'] = 'Browser Options'; -$labels['section'] = 'Section'; -$labels['maintenance'] = 'Maintenance'; $labels['newmessage'] = 'ข้อความใหม่'; $labels['signatureoptions'] = 'ตัวเลือกสำหรับลายเซ็็นต์'; $labels['whenreplying'] = 'เมื่อตอบกลับ'; -$labels['replyempty'] = 'do not quote the original message'; -$labels['replytopposting'] = 'start new message above the quote'; -$labels['replybottomposting'] = 'start new message below the quote'; -$labels['replyremovesignature'] = 'When replying remove original signature from message'; $labels['autoaddsignature'] = 'เพิ่มลายเซ็นต์เข้าไปอัตโนมัติ'; $labels['newmessageonly'] = 'เฉพาะข้อความใหม่เท่านั้น'; $labels['replyandforwardonly'] = 'ตอบกลับและส่งต่อเท่านั้น'; $labels['insertsignature'] = 'แทรกลายเซ็นต์'; -$labels['previewpanemarkread'] = 'Mark previewed messages as read'; -$labels['afternseconds'] = 'after $n seconds'; -$labels['reqmdn'] = 'Always request a return receipt'; -$labels['reqdsn'] = 'Always request a delivery status notification'; -$labels['replysamefolder'] = 'Place replies in the folder of the message being replied to'; -$labels['defaultabook'] = 'Default address book'; -$labels['autocompletesingle'] = 'Skip alternative email addresses in autocompletion'; -$labels['listnamedisplay'] = 'List contacts as'; -$labels['spellcheckbeforesend'] = 'Check spelling before sending a message'; -$labels['spellcheckoptions'] = 'Spellcheck Options'; -$labels['spellcheckignoresyms'] = 'Ignore words with symbols'; -$labels['spellcheckignorenums'] = 'Ignore words with numbers'; -$labels['spellcheckignorecaps'] = 'Ignore words with all letters capitalized'; -$labels['addtodict'] = 'Add to dictionary'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; -$labels['forwardmode'] = 'Messages forwarding'; -$labels['inline'] = 'inline'; $labels['asattachment'] = 'เป็นไฟล์แนบ'; $labels['folder'] = 'กล่องจดหมาย'; $labels['folders'] = 'กล่องจดหมาย'; @@ -438,13 +275,9 @@ $labels['specialfolders'] = 'โฟลเดอร์พิเศษ'; $labels['properties'] = 'คุณสมบัติ'; $labels['folderproperties'] = 'คุณสมบัติเกี่ยวกับโฟลเดอร์'; $labels['parentfolder'] = 'โฟลเดอร์แม่'; -$labels['location'] = 'Location'; $labels['info'] = 'ข้อมูล'; -$labels['getfoldersize'] = 'Click to get folder size'; -$labels['changesubscription'] = 'Click to change subscription'; $labels['foldertype'] = 'ประเภทโฟลเดอร์'; $labels['personalfolder'] = 'โฟลเดอร์ส่วนตัว'; -$labels['otherfolder'] = 'Other User\'s Folder'; $labels['sharedfolder'] = 'โฟลเดอร์สาธารณะ'; $labels['sortby'] = 'เรียงตาม'; $labels['sortasc'] = 'เรียงจากหน้าไปหลัง'; @@ -453,29 +286,10 @@ $labels['undo'] = 'เลิกทำ'; $labels['installedplugins'] = 'ปลั๊กอินที่ติดตั้ง'; $labels['plugin'] = 'ปลั๊กอิน'; $labels['version'] = 'รุ่น'; -$labels['source'] = 'Source'; $labels['license'] = 'สัญญาอนุญาต'; -$labels['support'] = 'Get support'; $labels['B'] = 'B'; $labels['KB'] = 'KB'; $labels['MB'] = 'MB'; $labels['GB'] = 'GB'; $labels['unicode'] = 'Unicode'; -$labels['english'] = 'English'; -$labels['westerneuropean'] = 'Western European'; -$labels['easterneuropean'] = 'Eastern European'; -$labels['southeasterneuropean'] = 'South-Eastern European'; -$labels['baltic'] = 'Baltic'; -$labels['cyrillic'] = 'Cyrillic'; -$labels['arabic'] = 'Arabic'; -$labels['greek'] = 'Greek'; -$labels['hebrew'] = 'Hebrew'; -$labels['turkish'] = 'Turkish'; -$labels['nordic'] = 'Nordic'; -$labels['thai'] = 'Thai'; -$labels['celtic'] = 'Celtic'; -$labels['vietnamese'] = 'Vietnamese'; -$labels['japanese'] = 'Japanese'; -$labels['korean'] = 'Korean'; -$labels['chinese'] = 'Chinese'; ?> diff --git a/program/localization/th_TH/messages.inc b/program/localization/th_TH/messages.inc index f39da7789..46d960aff 100644 --- a/program/localization/th_TH/messages.inc +++ b/program/localization/th_TH/messages.inc @@ -15,21 +15,13 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'เกิดข้อผิดพลาดบางประการ!'; $messages['loginfailed'] = 'ไม่สามารถเข้าสู่ระบบได้'; $messages['cookiesdisabled'] = 'Browser ของคุณไม่ได้เปิดการใช้งาน Cookie ไว้'; $messages['sessionerror'] = 'Your session is invalid or expired'; $messages['storageerror'] = 'ไม่สามารถติดต่อ IMAP Server ได้'; $messages['servererror'] = 'เกิดข้อผิดพลาดเกี่ยวกับเซิร์ฟเวอร์'; -$messages['servererrormsg'] = 'Server Error: $msg'; $messages['dberror'] = 'เกิดข้อผิดพลาดเกี่ยวกับฐานข้อมูล'; -$messages['requesttimedout'] = 'Request timed out'; -$messages['errorreadonly'] = 'Unable to perform operation. Folder is read-only.'; -$messages['errornoperm'] = 'Unable to perform operation. Permission denied.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; -$messages['invalidrequest'] = 'Invalid request! No data was saved.'; $messages['invalidhost'] = 'ชื่อเซิร์ฟเวอร์ไม่ถูกต้อง'; $messages['nomessagesfound'] = 'ไม่มีจดหมายในกล่องจดหมายนี้'; $messages['loggedout'] = 'ทำการออกจากระบบเรียบร้อย'; @@ -47,22 +39,14 @@ $messages['messagesaved'] = 'จดหมายถูกบันทึกเป $messages['successfullysaved'] = 'บันทึกเรียบร้อยแล้ว'; $messages['addedsuccessfully'] = 'รายชื่อถูกบันทึกเรียบร้อยแล้ว'; $messages['contactexists'] = 'อีเมล์นี้มีอยู่แล้ว'; -$messages['contactnameexists'] = 'A contact with the same name already exists.'; $messages['blockedimages'] = 'เพื่อปกป้องความส่วนตัว รูปจากภายนอกในจดหมายนี้จะถูกปิดบังไว้'; $messages['encryptedmessage'] = 'จดหมายถูกเข้ารหัสไม่สามารถแสดงผลได้'; $messages['nocontactsfound'] = 'ไม่พบรายชื่อที่ค้นหา'; $messages['contactnotfound'] = 'ไม่พบรายชื่อที่ค้นหา'; -$messages['contactsearchonly'] = 'Enter some search terms to find contacts'; $messages['sendingfailed'] = 'การส่งจดหมายล้มเหลว'; -$messages['senttooquickly'] = 'Please wait $sec sec(s). before sending this message.'; -$messages['errorsavingsent'] = 'An error occured while saving sent message.'; -$messages['errorsaving'] = 'เกิดข้อผิดพลาดระหว่างการบันทึก'; $messages['errormoving'] = 'ไม่สามารถย้ายจดหมายได้'; -$messages['errorcopying'] = 'Could not copy the message(s).'; $messages['errordeleting'] = 'ไม่สามารถลบจดหมายได้'; -$messages['errormarking'] = 'Could not mark the message(s).'; $messages['deletecontactconfirm'] = 'คุณมั่นใจที่ต้องการลบรายชื่อที่เลือกใช่หรือไม่?'; -$messages['deletegroupconfirm'] = 'Do you really want to delete selected group?'; $messages['deletemessagesconfirm'] = 'คุณมั่นใจที่ต้องการลบจดหมายที่เลือกใช่หรือไม่?'; $messages['deletefolderconfirm'] = 'คุณมั่นใจที่ต้องการลบแฟ้มนี้หรือไม่?'; $messages['purgefolderconfirm'] = 'คุณมั่นใจที่ต้องการลบจดหมายทั้งหมดในแฟ้มนี้ใช่หรือไม่?'; @@ -70,105 +54,32 @@ $messages['contactdeleting'] = 'กำลังลบรายชื่อผู $messages['groupdeleting'] = 'กำลังลบกลุ่ม...'; $messages['folderdeleting'] = 'กำลังลบโฟลเดอร์...'; $messages['foldermoving'] = 'กำลังย้ายโฟลเดอร์...'; -$messages['foldersubscribing'] = 'Subscribing folder...'; -$messages['folderunsubscribing'] = 'Unsubscribing folder...'; $messages['formincomplete'] = 'ฟอร์มยังไม่ครบถ้วนสมบูรณ์'; $messages['noemailwarning'] = 'โปรดใส่อีเมล์ให้ถูกต้อง'; $messages['nonamewarning'] = 'โปรดใส่ชื่อ'; $messages['nopagesizewarning'] = 'โปรดใส่จำนวนหน้า'; -$messages['nosenderwarning'] = 'Please enter sender e-mail address.'; $messages['norecipientwarning'] = 'โปรดใส่ผู้รับอย่างน้อย 1 ชื่อ'; $messages['nosubjectwarning'] = 'หัวจดหมายว่างเปล่า คุณต้องการใส่หัวจดหมายเดี๋ยวนี้หรือไม่?'; $messages['nobodywarning'] = 'คุณต้องการส่งจดหมายโดยไม่มีข้อความใช่หรือไม่?'; $messages['notsentwarning'] = 'จดหมายยังไม่ถูกส่ง คุณต้องการยกเลิกหรือไม่?'; $messages['noldapserver'] = 'โปรดเลือก LDAP Server เพื่อค้นหา'; $messages['nosearchname'] = 'โปรดใสชื่อหรืออีเมล์'; -$messages['notuploadedwarning'] = 'Not all attachments have been uploaded yet. Please wait or cancel the upload.'; $messages['searchsuccessful'] = 'พบจดหมายจำนวน $nr ฉบับ'; -$messages['contactsearchsuccessful'] = '$nr contacts found.'; $messages['searchnomatch'] = 'การค้นหาไม่พบ'; $messages['searching'] = 'กำลังค้นหา...'; $messages['checking'] = 'กำลังตรวจสอบ...'; $messages['nospellerrors'] = 'ไม่พบคำที่สะกดผิด'; $messages['folderdeleted'] = 'ลบแฟ้มเสร็จสมบูรณ์'; -$messages['foldersubscribed'] = 'Folder successfully subscribed.'; -$messages['folderunsubscribed'] = 'Folder successfully unsubscribed.'; -$messages['folderpurged'] = 'Folder has successfully been emptied.'; -$messages['folderexpunged'] = 'Folder has successfully been compacted.'; $messages['deletedsuccessfully'] = 'ลบเสร็จสมบูรณ์'; $messages['converting'] = 'นำเอาหารจัดรูปแบบในจดหมายออก...'; $messages['messageopenerror'] = 'ไม่สามารถอ่านจดหมายจาก Server ได้'; $messages['fileuploaderror'] = 'การอัพโหลดล้มเหลว'; $messages['filesizeerror'] = 'ไฟล์มีขนาดใหญ่เกิน $size'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'จดหมายนี้เป็นแบบอ่านอย่างเดียว'; $messages['errorsavingcontact'] = 'ไม่สามารถบันทึกรายชื่อได้'; $messages['movingmessage'] = 'กำลังย้ายข้อความ...'; $messages['copyingmessage'] = 'กำลังคัดลอกข้อความ...'; $messages['copyingcontact'] = 'กำลังคัดลอกรายชื่อผู้ติดต่อ...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'กำลังลบข้อความ...'; -$messages['markingmessage'] = 'Marking message(s)...'; -$messages['addingmember'] = 'Adding contact(s) to the group...'; -$messages['removingmember'] = 'Removing contact(s) from the group...'; -$messages['receiptsent'] = 'Successfully sent a read receipt.'; -$messages['errorsendingreceipt'] = 'Could not send the receipt.'; -$messages['deleteidentityconfirm'] = 'Do you really want to delete this identity?'; -$messages['nodeletelastidentity'] = 'You cannot delete this identity, it\'s your last one.'; -$messages['forbiddencharacter'] = 'Folder name contains a forbidden character.'; -$messages['selectimportfile'] = 'Please select a file to upload.'; -$messages['addresswriterror'] = 'The selected address book is not writeable.'; -$messages['contactaddedtogroup'] = 'Successfully added the contacts to this group.'; -$messages['contactremovedfromgroup'] = 'Successfully removed contacts from this group.'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; $messages['importwait'] = 'กำลังนำเข้าข้อมูล, โปรดรอสักครู่'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; -$messages['importconfirm'] = 'Successfully imported $inserted contacts'; -$messages['importconfirmskipped'] = 'Skipped $skipped existing entries'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; -$messages['opnotpermitted'] = 'Operation not permitted!'; -$messages['nofromaddress'] = 'Missing e-mail address in selected identity.'; -$messages['editorwarning'] = 'Switching to the plain text editor will cause all text formatting to be lost. Do you wish to continue?'; -$messages['httpreceivedencrypterror'] = 'A fatal configuration error occurred. Contact your administrator immediately. Your message can not be sent.'; -$messages['smtpconnerror'] = 'SMTP Error ($code): Connection to server failed.'; -$messages['smtpautherror'] = 'SMTP Error ($code): Authentication failed.'; -$messages['smtpfromerror'] = 'SMTP Error ($code): Failed to set sender "$from" ($msg).'; -$messages['smtptoerror'] = 'SMTP Error ($code): Failed to add recipient "$to" ($msg).'; -$messages['smtprecipientserror'] = 'SMTP Error: Unable to parse recipients list.'; -$messages['smtperror'] = 'SMTP Error: $msg'; -$messages['emailformaterror'] = 'Invalid e-mail address: $email'; -$messages['toomanyrecipients'] = 'Too many recipients. Reduce the number of recipients to $max.'; -$messages['maxgroupmembersreached'] = 'The number of group members exceeds the maximum of $max.'; -$messages['internalerror'] = 'An internal error occured. Please try again.'; -$messages['contactdelerror'] = 'Could not delete contact(s).'; -$messages['contactdeleted'] = 'Contact(s) deleted successfully.'; -$messages['contactrestoreerror'] = 'Could not restore deleted contact(s).'; -$messages['contactrestored'] = 'Contact(s) restored successfully.'; -$messages['groupdeleted'] = 'Group deleted successfully.'; -$messages['grouprenamed'] = 'Group renamed successfully.'; -$messages['groupcreated'] = 'Group created successfully.'; -$messages['savedsearchdeleted'] = 'Saved search deleted successfully.'; -$messages['savedsearchdeleteerror'] = 'Could not delete saved search.'; -$messages['savedsearchcreated'] = 'Saved search created successfully.'; -$messages['savedsearchcreateerror'] = 'Could not create saved search.'; -$messages['messagedeleted'] = 'Message(s) deleted successfully.'; -$messages['messagemoved'] = 'Message(s) moved successfully.'; -$messages['messagecopied'] = 'Message(s) copied successfully.'; -$messages['messagemarked'] = 'Message(s) marked successfully.'; -$messages['autocompletechars'] = 'Enter at least $min characters for autocompletion.'; -$messages['autocompletemore'] = 'More matching entries found. Please type more characters.'; -$messages['namecannotbeempty'] = 'Name cannot be empty.'; -$messages['nametoolong'] = 'Name is too long.'; -$messages['folderupdated'] = 'Folder updated successfully.'; -$messages['foldercreated'] = 'Folder created successfully.'; -$messages['invalidimageformat'] = 'Not a valid image format.'; -$messages['mispellingsfound'] = 'Spelling errors detected in the message.'; -$messages['parentnotwritable'] = 'Unable to create/move folder into selected parent folder. No access rights.'; -$messages['messagetoobig'] = 'The message part is too big to process it.'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; ?> diff --git a/program/localization/tr_TR/labels.inc b/program/localization/tr_TR/labels.inc index 3ab173b2f..bcecd51f7 100644 --- a/program/localization/tr_TR/labels.inc +++ b/program/localization/tr_TR/labels.inc @@ -15,9 +15,7 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - -$labels['welcome'] = '$product, Hoş Geldiniz'; +$labels['welcome'] = '$product E-Posta Sistemine Hoş Geldiniz'; $labels['username'] = 'Kullanıcı Adı'; $labels['password'] = 'Parola'; $labels['server'] = 'Sunucu'; @@ -178,6 +176,7 @@ $labels['searchmod'] = 'Arama detayları'; $labels['msgtext'] = 'Tüm posta gövdesi'; $labels['body'] = 'Gövde'; $labels['type'] = 'Tip'; +$labels['namex'] = 'Ad'; $labels['openinextwin'] = 'Yeni pencerede aç'; $labels['emlsave'] = 'İndir (.eml)'; $labels['changeformattext'] = 'Düz yazı formatında göster'; @@ -317,8 +316,11 @@ $labels['searchdelete'] = 'Aramayı sil'; $labels['import'] = 'İçe aktar'; $labels['importcontacts'] = 'Kişileri içe aktar'; $labels['importfromfile'] = 'Dosyadan içe aktar:'; -$labels['importtarget'] = 'Yeni kişiler eklenecek adres defteri:'; +$labels['importtarget'] = 'Kişileri ekle'; $labels['importreplace'] = 'Tüm adres defterinin yerine geçsin'; +$labels['importgroups'] = 'Grup atamalarını içe aktar'; +$labels['importgroupsall'] = 'Tümü (Gerekirse grupları oluştur)'; +$labels['importgroupsexisting'] = 'Sadece mevcut gruplar için'; $labels['importdesc'] = 'Mevcut bir adres defterinden kişileri yükleyebilirsiniz.
Şu anda vCard veya CSV (virgülle ayrılmış) veri formatları desteklenmektedir.'; $labels['done'] = 'Tamam'; $labels['settingsfor'] = 'Ayarlar'; diff --git a/program/localization/tr_TR/messages.inc b/program/localization/tr_TR/messages.inc index 1831340af..0b2ac1e46 100644 --- a/program/localization/tr_TR/messages.inc +++ b/program/localization/tr_TR/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Bir hata oluştu!'; $messages['loginfailed'] = 'Giriş Başarısız'; $messages['cookiesdisabled'] = 'Tarayıcınız çerezleri kabul etmiyor'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = 'İstenen kişi bulunamadı'; $messages['contactsearchonly'] = 'Kişi aramak için arama terimleri giriniz'; $messages['sendingfailed'] = 'Posta gönderilemedi'; $messages['senttooquickly'] = 'Lütfen bu postayı göndermeden önce $sec saniye bekleyin'; -$messages['errorsavingsent'] = 'Gönderilen postayı kaydederken hata oluştu'; -$messages['errorsaving'] = 'Kaydederken bir hata oluştu'; $messages['errormoving'] = 'Posta taşınamadı'; $messages['errorcopying'] = 'Posta kopyalanamadı'; $messages['errordeleting'] = 'Posta silinemedi'; @@ -100,13 +97,16 @@ $messages['converting'] = 'Postanın biçimlendirmesi kaldırılıyor...'; $messages['messageopenerror'] = 'Sunucudan posta yüklenemedi'; $messages['fileuploaderror'] = 'Dosya yükleme başarısız'; $messages['filesizeerror'] = 'Yüklenen dosya en büyük dosya boyunu ($size) aşıyor'; -$messages['copysuccess'] = '$nr adres kopyalandı'; -$messages['copyerror'] = 'Hiçbir adres kopyalanamadı'; +$messages['copysuccess'] = '$nr adet kişi başarıyla kopyalandı.'; +$messages['movesuccess'] = '$nr adet kişi başarıyla taşındı.'; +$messages['copyerror'] = 'Kişiler kopyalanamadı.'; +$messages['moveerror'] = 'Kişiler taşınamadı.'; $messages['sourceisreadonly'] = 'Adres kaynağı salt okunur durumda'; $messages['errorsavingcontact'] = 'Kişinin adresi kaydedilemedi'; $messages['movingmessage'] = 'Posta(lar) taşınıyor...'; $messages['copyingmessage'] = 'Posta(lar) kopyalanıyor...'; $messages['copyingcontact'] = 'Kişile(ler) kopyalanıyor...'; +$messages['movingcontact'] = 'Kişi(ler) taşınıyor...'; $messages['deletingmessage'] = 'Posta(lar) siliniyor...'; $messages['markingmessage'] = 'Posta(lar) işaretleniyor...'; $messages['addingmember'] = 'Gruba kişi(ler) ekleniyor...'; @@ -140,7 +140,6 @@ $messages['smtperror'] = 'SMTP Hatası: $msg'; $messages['emailformaterror'] = 'Hatalı e-posta adresi: $email'; $messages['toomanyrecipients'] = 'Çok fazla alıcı. En fazla $max alıcı girebilirsiniz.'; $messages['maxgroupmembersreached'] = 'Grup üyelerinin sayısı $max sınırını aşıyor.'; -$messages['internalerror'] = 'Bir hata oluştu. Lütfen tekrar deneyin.'; $messages['contactdelerror'] = 'Kişi(ler) silinemedi'; $messages['contactdeleted'] = 'Kişi(ler) silindi'; $messages['contactrestoreerror'] = 'Silinen kişi(ler) geri getirilemiyor.'; diff --git a/program/localization/uk_UA/labels.inc b/program/localization/uk_UA/labels.inc index ae90bd00f..f530c212e 100644 --- a/program/localization/uk_UA/labels.inc +++ b/program/localization/uk_UA/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Ласкаво просимо до $product'; $labels['username'] = 'Ім\'я користувача'; $labels['password'] = 'Пароль'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Чернетки'; $labels['sent'] = 'Надіслані'; $labels['trash'] = 'Кошик'; $labels['junk'] = 'Спам'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Тема'; $labels['from'] = 'Відправник'; $labels['sender'] = 'Відправник'; @@ -139,7 +136,6 @@ $labels['currpage'] = 'Поточна сторінка'; $labels['unread'] = 'Непрочитані'; $labels['flagged'] = 'Із зірочкою'; $labels['unanswered'] = 'Без відповіді'; -$labels['withattachment'] = 'With attachment'; $labels['deleted'] = 'Видалені'; $labels['undeleted'] = 'Не видалено'; $labels['invert'] = 'Інвертувати виділення'; @@ -177,7 +173,6 @@ $labels['resetsearch'] = 'Очистити пошук'; $labels['searchmod'] = 'Де шукати'; $labels['msgtext'] = 'В усьому листі'; $labels['body'] = 'Тіло повідомлення'; -$labels['type'] = 'Type'; $labels['namex'] = 'Ім\'я'; $labels['openinextwin'] = 'Відкрити в новому вікні'; $labels['emlsave'] = 'Зберегти (.eml)'; @@ -311,17 +306,13 @@ $labels['nextpage'] = 'Наступна сторінка'; $labels['lastpage'] = 'Остання сторінка'; $labels['group'] = 'Група'; $labels['groups'] = 'Групи'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = 'Персональні адреси'; $labels['searchsave'] = 'Зберегти пошук'; $labels['searchdelete'] = 'Видалити пошук'; $labels['import'] = 'Імпорт'; $labels['importcontacts'] = 'Імпортувати контакти'; $labels['importfromfile'] = 'Імпортувати з файлу:'; -$labels['importtarget'] = 'Add contacts to'; $labels['importreplace'] = 'Замінити всю адресну книгу'; -$labels['importgroups'] = 'Import group assignments'; -$labels['importgroupsall'] = 'All (create groups if necessary)'; $labels['importgroupsexisting'] = 'Лише для існуючих груп'; $labels['importdesc'] = 'Ви можете завантажити контакти з існуючої адресної книги.
В даний час ми підтримуємо імпорт адрес в форматі візитної картки vCard або CSV (дані розділені комами).'; $labels['done'] = 'Готово'; @@ -356,7 +347,6 @@ $labels['htmleditor'] = 'Створювати листи в HTML'; $labels['htmlonreply'] = 'тільки у відповідь на HTML повідомлення'; $labels['htmlonreplyandforward'] = 'під час пересилання або відповіді на повідомлення HTML'; $labels['htmlsignature'] = 'Підпис в HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Показати панель перегляду'; $labels['skin'] = 'Тема'; $labels['logoutclear'] = 'Очищати кошик при виході'; @@ -426,7 +416,6 @@ $labels['spellcheckignorenums'] = 'Ігнорувати слова із числ $labels['spellcheckignorecaps'] = 'Ігнорувати слова із великими буквами'; $labels['addtodict'] = 'Додати до словника'; $labels['mailtoprotohandler'] = 'Зареєструвати обробник для посилань mailto'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Пересилання повідомлень'; $labels['inline'] = 'у тексті'; $labels['asattachment'] = 'як вкладення'; diff --git a/program/localization/uk_UA/messages.inc b/program/localization/uk_UA/messages.inc index c555f9374..669190c2e 100644 --- a/program/localization/uk_UA/messages.inc +++ b/program/localization/uk_UA/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Виникла помилка!'; $messages['loginfailed'] = 'Невдала спроба входу'; $messages['cookiesdisabled'] = 'Ваш переглядач не приймає cookie'; @@ -27,8 +26,7 @@ $messages['dberror'] = 'Помилка бази даних!'; $messages['requesttimedout'] = 'Тайм-аут запиту'; $messages['errorreadonly'] = 'Неможливо виконати операцію. Папка доступна тільки для читання.'; $messages['errornoperm'] = 'Неможливо виконати операцію. Доступ заборонено'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; +$messages['erroroverquota'] = 'Неможливо виконати операцію. Немає вільного місця на диску.'; $messages['invalidrequest'] = 'Невірний запит! Дані не збережено.'; $messages['invalidhost'] = 'Невірне ім\'я серверу.'; $messages['nomessagesfound'] = 'Листів не знайдено'; @@ -55,8 +53,6 @@ $messages['contactnotfound'] = 'Запитаний контакт не знай $messages['contactsearchonly'] = 'Введіть деякі критерії пошуку, щоб знайти контакти'; $messages['sendingfailed'] = 'Не вдалося відправити листа'; $messages['senttooquickly'] = 'Будь ласка, зачекайте $sec секунд для відправки листа'; -$messages['errorsavingsent'] = 'Помилка при збереженні відправленого листа'; -$messages['errorsaving'] = 'Помилка при збереженні'; $messages['errormoving'] = 'Не вдалося перемістити листи'; $messages['errorcopying'] = 'Не вдалося зкопіювати листи'; $messages['errordeleting'] = 'Не вдалося видалити листи'; @@ -100,16 +96,11 @@ $messages['converting'] = 'Видалення форматування...'; $messages['messageopenerror'] = 'Не вдалося завантажити повідомлення з сервера'; $messages['fileuploaderror'] = 'Не вдалося вкласти файл'; $messages['filesizeerror'] = 'Розмір вибраного файлу перевищує максимально дозволений ($size)'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Дане джерело адрес доступне лише для читання'; $messages['errorsavingcontact'] = 'Неможливо зберегти адресу контакту'; $messages['movingmessage'] = 'Переміщення листа...'; $messages['copyingmessage'] = 'Копіювання листа...'; $messages['copyingcontact'] = 'Копіювання контакту(ів)...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Видалення листа (ів)'; $messages['markingmessage'] = 'Позначення листа (ів)'; $messages['addingmember'] = 'Додання контакту(ів) до групи...'; @@ -128,8 +119,7 @@ $messages['importwait'] = 'Імпортування, будь ласка, зач $messages['importformaterror'] = 'Помилка імпорту! Завантажений файл має невідомий формат даних.'; $messages['importconfirm'] = 'Успішно імпортовано $inserted контактів, пропущено $skipped існуючих:

$names

'; $messages['importconfirmskipped'] = 'Пропущені $skipped наявні записи'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; +$messages['importmessageerror'] = 'Імпорт не вдався! Завантажений файл не є припустимим повідомлення або файлом поштової скриньки'; $messages['opnotpermitted'] = 'Дія заборонена!'; $messages['nofromaddress'] = 'В обраному профілі не вистачає адреси електронної пошти'; $messages['editorwarning'] = 'Перемикання в режим звичайного тексту спричинить втрату всього форматування. Продовжити?'; @@ -143,7 +133,6 @@ $messages['smtperror'] = 'Помилка SMTP: $msg'; $messages['emailformaterror'] = 'Невірна електронна адреса: $email'; $messages['toomanyrecipients'] = 'Занадто багато отримувачів. Зменшіть їх число до $max.'; $messages['maxgroupmembersreached'] = 'Число адрес у групі перевищило максимум у $max.'; -$messages['internalerror'] = 'Виникла внутрішня помилка. Будь ласка, спробуйте ще раз'; $messages['contactdelerror'] = 'Неможливо видалити контакт(и)'; $messages['contactdeleted'] = 'Контакт(и) видалено успішно'; $messages['contactrestoreerror'] = 'Неможливо відновити видалений(і) контакт(и).'; diff --git a/program/localization/ur_PK/labels.inc b/program/localization/ur_PK/labels.inc index f05f85109..797c98f11 100644 --- a/program/localization/ur_PK/labels.inc +++ b/program/localization/ur_PK/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = ' $product میں خوش آمدید'; $labels['server'] = 'سَروَر'; $labels['mail'] = 'میل'; diff --git a/program/localization/ur_PK/messages.inc b/program/localization/ur_PK/messages.inc index 9a3c2babb..da4e39679 100644 --- a/program/localization/ur_PK/messages.inc +++ b/program/localization/ur_PK/messages.inc @@ -15,6 +15,4 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - - ?> diff --git a/program/localization/vi_VN/labels.inc b/program/localization/vi_VN/labels.inc index 34a6625e4..6bd6d4402 100644 --- a/program/localization/vi_VN/labels.inc +++ b/program/localization/vi_VN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = 'Chào bạn đã đến với $product'; $labels['username'] = 'Tên đăng nhập'; $labels['password'] = 'Mật khẩu'; @@ -31,7 +29,6 @@ $labels['drafts'] = 'Thư nháp'; $labels['sent'] = 'Đã gửi'; $labels['trash'] = 'Sọt rác'; $labels['junk'] = 'Thư rác'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = 'Tiêu đề'; $labels['from'] = 'Người gửi'; $labels['sender'] = 'Người gửi'; @@ -55,7 +52,6 @@ $labels['copy'] = 'Sao chép'; $labels['move'] = 'Di Chuyển'; $labels['moveto'] = 'Di chuyển tới...'; $labels['download'] = 'Tải về'; -$labels['open'] = 'Open'; $labels['showattachment'] = 'Hiển thị'; $labels['showanyway'] = 'Tiếp tục hiển thị'; $labels['filename'] = 'Tên tập tin'; @@ -139,7 +135,7 @@ $labels['currpage'] = 'Trang hiện tại'; $labels['unread'] = 'Chưa đọc'; $labels['flagged'] = 'Đã đánh dấu'; $labels['unanswered'] = 'Chưa trả lời'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = 'Có tệp tin đính kèm'; $labels['deleted'] = 'Đã xóa'; $labels['undeleted'] = 'Chưa xóa được'; $labels['invert'] = 'Đảo ngược'; @@ -168,7 +164,6 @@ $labels['listmode'] = 'Xem dạng danh sách'; $labels['folderactions'] = 'Thao tác với thư mục'; $labels['compact'] = 'Nén'; $labels['empty'] = 'Trống'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = 'Lượng đĩa sử dụng'; $labels['unknown'] = 'Không rõ'; $labels['unlimited'] = 'không giới hạn'; @@ -177,11 +172,12 @@ $labels['resetsearch'] = 'Thiết lập lại tìm kiếm'; $labels['searchmod'] = 'Tìm kiếm với từ khóa và ký tự đặc biệt [() : " - ]'; $labels['msgtext'] = 'Toàn bộ thư'; $labels['body'] = 'Nội dung thư'; -$labels['type'] = 'Type'; +$labels['type'] = 'Định dạng'; +$labels['namex'] = 'Họ tên'; $labels['openinextwin'] = 'Mở trong khung cửa mới'; $labels['emlsave'] = 'Tải về theo định dạng .eml'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; +$labels['changeformattext'] = 'Hiển thị ở chế độ text'; +$labels['changeformathtml'] = 'Hiển thị ở chế độ HTML'; $labels['editasnew'] = 'Sửa như một email mới'; $labels['send'] = 'Gửi'; $labels['sendmessage'] = 'Gửi thư'; @@ -310,14 +306,13 @@ $labels['nextpage'] = 'Hiển thị trang kế tiếp'; $labels['lastpage'] = 'Hiển thị trang cuối'; $labels['group'] = 'Nhóm'; $labels['groups'] = 'Các nhóm'; -$labels['listgroup'] = 'List group members'; +$labels['listgroup'] = 'Danh sách các thành viên nhóm'; $labels['personaladrbook'] = 'Các địa chỉ cá nhân'; $labels['searchsave'] = 'Lưu tìm kiếm'; $labels['searchdelete'] = 'Xóa tìm kiếm'; $labels['import'] = 'Nhập'; $labels['importcontacts'] = 'Nhập liên lạc'; $labels['importfromfile'] = 'Nhập từ tập tin:'; -$labels['importtarget'] = 'Thêm liên lạc mới vào sổ địa chỉ'; $labels['importreplace'] = 'Thay thế toàn bộ sổ địa chỉ'; $labels['importdesc'] = 'Bạn có thể cập nhật các liên hệ từ một sổ địa chỉ có sẵn.
Hiện tại, chúng tôi hỗ trợ nhập địa chỉ từ dạng dữ liệu
vCard hoặc CSV (dạng thức dữ liệu ngăn cách bằng dấu phẩy)'; $labels['done'] = 'Hoàn tất'; @@ -352,7 +347,6 @@ $labels['htmleditor'] = 'Soạn thư dạng HTML'; $labels['htmlonreply'] = 'Chỉ trả lời lại bằng thư HTML'; $labels['htmlonreplyandforward'] = 'Khi chuyển tiếp hoặc trả lời thư theo định dạng HTML'; $labels['htmlsignature'] = 'Chữ ký HTML'; -$labels['showemail'] = 'Show email address with display name'; $labels['previewpane'] = 'Hiển thị ô Xem thử'; $labels['skin'] = 'Bề mặt giao diện'; $labels['logoutclear'] = 'Xóa sạch rác khi thoát'; @@ -422,7 +416,6 @@ $labels['spellcheckignorenums'] = 'Bỏ qua các từ kèm số'; $labels['spellcheckignorecaps'] = 'Bỏ qua các từ được viết hoa'; $labels['addtodict'] = 'Thêm vào từ điển'; $labels['mailtoprotohandler'] = 'Xác định cách xử lý giao thức mailto: liên kết'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = 'Chuyển tiếp thư'; $labels['inline'] = 'nội tuyến'; $labels['asattachment'] = 'dạng gửi kèm'; diff --git a/program/localization/vi_VN/messages.inc b/program/localization/vi_VN/messages.inc index f1d3b0127..b2d7c71ff 100644 --- a/program/localization/vi_VN/messages.inc +++ b/program/localization/vi_VN/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = 'Xuất hiện 1 lỗi'; $messages['loginfailed'] = 'Không đăng nhập được'; $messages['cookiesdisabled'] = 'Trình duyệt không hỗ trợ cookies'; @@ -27,8 +26,6 @@ $messages['dberror'] = 'Lỗi cơ sở dữ liệu'; $messages['requesttimedout'] = 'Yêu cầu hết hạn'; $messages['errorreadonly'] = 'Không thể thực hiện thao tác. Thư mục chỉ cho phép đọc.'; $messages['errornoperm'] = 'Bạn không đủ quyền hạn để thực hiện thao tác này.'; -$messages['erroroverquota'] = 'Unable to perform operation. No free disk space.'; -$messages['erroroverquotadelete'] = 'No free disk space. Use SHIFT+DEL to delete a message.'; $messages['invalidrequest'] = 'Yêu cầu không hợp lệ! Không có dữ liệu nào được lưu.'; $messages['invalidhost'] = 'Sai thông tin máy chủ'; $messages['nomessagesfound'] = 'Không thấy có thư nào trong hộp thư này.'; @@ -55,8 +52,6 @@ $messages['contactnotfound'] = 'Không tìm thấy liên lạc được yêu c $messages['contactsearchonly'] = 'Gõ một vài từ tìm kiếm để tìm liên hệ'; $messages['sendingfailed'] = 'Không gửi được thư'; $messages['senttooquickly'] = 'Xin đợi vài giây trước khi gửi thư này'; -$messages['errorsavingsent'] = 'Xuất hiện một lỗi trong khi lưu thư đã gửi'; -$messages['errorsaving'] = 'Lỗi trong quá trình lưu.'; $messages['errormoving'] = 'Không thể chuyển được thư'; $messages['errorcopying'] = 'Không thể sao chép thư'; $messages['errordeleting'] = 'Không thể xóa được thư'; @@ -100,16 +95,11 @@ $messages['converting'] = 'Loại bỏ định dạng...'; $messages['messageopenerror'] = 'Không thể tải thư từ máy chủ'; $messages['fileuploaderror'] = 'Tải tập tin lên thất bại'; $messages['filesizeerror'] = 'Tập tin được tải lên vượt quá dung lượng tối đa....'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; $messages['sourceisreadonly'] = 'Nguồn địa chỉ này chỉ cho đọc'; $messages['errorsavingcontact'] = 'Không thể lưu địa chỉ liên lạc'; $messages['movingmessage'] = 'Đang chuyển thư...'; $messages['copyingmessage'] = 'Đang sao chép thư...'; $messages['copyingcontact'] = 'Đang sao chép liên lạc...'; -$messages['movingcontact'] = 'Moving contact(s)...'; $messages['deletingmessage'] = 'Đang xóa thư...'; $messages['markingmessage'] = 'Đánh dấu thư...'; $messages['addingmember'] = 'Đang thêm liên lạc vào nhóm...'; @@ -128,8 +118,6 @@ $messages['importwait'] = 'Đang nhập, xin chờ...'; $messages['importformaterror'] = 'Nhập dữ liệu lỗi. Tệp tin vừa tải lên không phải tệp dữ liệu chính xác.'; $messages['importconfirm'] = 'Đã nhập $inserted liên hệ đã chèn vào thành công.'; $messages['importconfirmskipped'] = 'Đã bỏ qua được $skipped mục tồn tại.'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; $messages['opnotpermitted'] = 'Thao tác không được cho phép!'; $messages['nofromaddress'] = 'Địa chỉ email mất ở trong nhận dạng đã chọn'; $messages['editorwarning'] = 'Việc chuyển soạn thảo text gốc sẽ gây ra toàn bộ định dạng text đã có bị mất. Bạn có muốn tiếp tục không?'; @@ -143,7 +131,6 @@ $messages['smtperror'] = 'Lỗi SMTP: $msg'; $messages['emailformaterror'] = 'Địa chỉ email không hợp lệ'; $messages['toomanyrecipients'] = 'Quá nhiều người nhận. Hãy giảm số lượng người nhận xuống tối đa là $max.'; $messages['maxgroupmembersreached'] = 'Số lượng thành viên trong nhóm vượt quá mức tối đa là $max.'; -$messages['internalerror'] = 'Xuất hiện một lỗi nội bộ. Xin hãy thử lại'; $messages['contactdelerror'] = 'Không thể xóa liên lạc'; $messages['contactdeleted'] = 'Liên lạc được xóa thành công'; $messages['contactrestoreerror'] = 'Không thể khôi phục liên lạc đã xóa'; diff --git a/program/localization/zh_CN/labels.inc b/program/localization/zh_CN/labels.inc index a22f1bf7e..1d9c04733 100644 --- a/program/localization/zh_CN/labels.inc +++ b/program/localization/zh_CN/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '欢迎使用 $product'; $labels['username'] = '用户名'; $labels['password'] = '密码'; @@ -31,7 +29,6 @@ $labels['drafts'] = '草稿箱'; $labels['sent'] = '已发送邮件'; $labels['trash'] = '已删除邮件'; $labels['junk'] = '垃圾邮件'; -$labels['show_real_foldernames'] = 'Show real names for special folders'; $labels['subject'] = '主题'; $labels['from'] = '发件人'; $labels['sender'] = '发件人'; @@ -47,10 +44,10 @@ $labels['organization'] = '组织'; $labels['readstatus'] = '阅读状态'; $labels['listoptions'] = '列表选项'; $labels['mailboxlist'] = '邮件夹'; -$labels['messagesfromto'] = '第 $from 到 $to,共计 $count 封邮件'; -$labels['threadsfromto'] = '第 $from 到 $to,共计 $count 个主题'; +$labels['messagesfromto'] = '从 $from 到 $to,共计 $count 封邮件'; +$labels['threadsfromto'] = '从 $from 到 $to,共计 $count 个主题'; $labels['messagenrof'] = '第 $nr 封邮件,共计 $count 封'; -$labels['fromtoshort'] = '自 $from – $to 统计 $count'; +$labels['fromtoshort'] = '$from – $to 共计 $count 个'; $labels['copy'] = '复制'; $labels['move'] = '移动'; $labels['moveto'] = '移至...'; @@ -121,17 +118,17 @@ $labels['firstmessage'] = '显示第一封邮件'; $labels['nextmessage'] = '下一封'; $labels['lastmessage'] = '最后一封'; $labels['backtolist'] = '返回邮件列表'; -$labels['viewsource'] = '显示原始邮件文件'; -$labels['mark'] = '标记'; +$labels['viewsource'] = '显示来源'; +$labels['mark'] = '标记为'; $labels['markmessages'] = '标记选中的邮件为'; $labels['markread'] = '已读'; $labels['markunread'] = '未读'; -$labels['markflagged'] = '已标记'; -$labels['markunflagged'] = '未标记'; +$labels['markflagged'] = '重要'; +$labels['markunflagged'] = ' 不重要'; $labels['moreactions'] = '更多操作...'; $labels['more'] = '更多'; $labels['back'] = '返回'; -$labels['options'] = '选项'; +$labels['options'] = '个人选项'; $labels['select'] = '选择'; $labels['all'] = '全部'; $labels['none'] = '无'; @@ -139,7 +136,7 @@ $labels['currpage'] = '当前页'; $labels['unread'] = '未读邮件'; $labels['flagged'] = '已标记邮件'; $labels['unanswered'] = '未回复邮件'; -$labels['withattachment'] = 'With attachment'; +$labels['withattachment'] = '包含附件'; $labels['deleted'] = '已删除邮件'; $labels['undeleted'] = '未删除邮件'; $labels['invert'] = '反选'; @@ -168,7 +165,6 @@ $labels['listmode'] = '列表视图样式'; $labels['folderactions'] = '文件夹操作...'; $labels['compact'] = '压缩'; $labels['empty'] = '清空'; -$labels['importmessages'] = 'Import messages'; $labels['quota'] = '邮箱容量'; $labels['unknown'] = '未知'; $labels['unlimited'] = '无限制'; @@ -177,11 +173,10 @@ $labels['resetsearch'] = '清空'; $labels['searchmod'] = '修改搜索'; $labels['msgtext'] = '整封邮件'; $labels['body'] = '正文'; -$labels['type'] = 'Type'; $labels['openinextwin'] = '在新窗口中打开'; $labels['emlsave'] = '下载(.eml)'; -$labels['changeformattext'] = 'Display in plain text format'; -$labels['changeformathtml'] = 'Display in HTML format'; +$labels['changeformattext'] = '以文本格式显示'; +$labels['changeformathtml'] = '以 HTML 格式显示'; $labels['editasnew'] = '以新邮件编辑'; $labels['send'] = '发送'; $labels['sendmessage'] = '立即发送'; @@ -211,9 +206,9 @@ $labels['high'] = '高'; $labels['highest'] = '最高'; $labels['nosubject'] = '(无主题)'; $labels['showimages'] = '显示图片'; -$labels['alwaysshow'] = '总是在来自 $sender 的邮件中显示图片'; +$labels['alwaysshow'] = '总是显示来自 $sender 的图片'; $labels['isdraft'] = '这是一封草稿'; -$labels['andnmore'] = '第$nr封或更多...'; +$labels['andnmore'] = '第 $nr 封或更多...'; $labels['togglemoreheaders'] = '显示更多消息头'; $labels['togglefullheaders'] = '切换至原始消息头'; $labels['htmltoggle'] = 'HTML'; @@ -302,22 +297,20 @@ $labels['exportsel'] = '导出选中'; $labels['exportvcards'] = '导出联系人为 vCard 格式'; $labels['newcontactgroup'] = '创建新的联系人群组'; $labels['grouprename'] = '重命名群组'; -$labels['groupdelete'] = '删除群组组'; +$labels['groupdelete'] = '删除群组'; $labels['groupremoveselected'] = '删除选中'; $labels['previouspage'] = '上一页'; -$labels['firstpage'] = '第一页'; +$labels['firstpage'] = '首页'; $labels['nextpage'] = '下一页'; -$labels['lastpage'] = '最后一页'; +$labels['lastpage'] = '末页'; $labels['group'] = '分组'; $labels['groups'] = '分组'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = '个人通讯录'; $labels['searchsave'] = '保存搜索'; $labels['searchdelete'] = '删除搜索'; $labels['import'] = '导入'; $labels['importcontacts'] = '导入通讯录'; $labels['importfromfile'] = '从文件导入'; -$labels['importtarget'] = '添加新联系人至通讯录:'; $labels['importreplace'] = '替换全部通讯录'; $labels['importdesc'] = '您可以从通讯录文件上传联系人,目前已支持 vCard 和 CSV(逗号分隔)格式'; $labels['done'] = '完成'; @@ -326,7 +319,7 @@ $labels['about'] = '关于'; $labels['preferences'] = '选项'; $labels['userpreferences'] = '个人选项'; $labels['editpreferences'] = '修改个人选项'; -$labels['identities'] = '发件身份'; +$labels['identities'] = '发件人身份'; $labels['manageidentities'] = '管理此账号的身份'; $labels['newidentity'] = '添加身份'; $labels['newitem'] = '添加条目'; @@ -349,16 +342,16 @@ $labels['dstactive'] = '夏令时'; $labels['showinextwin'] = '在新窗口中打开'; $labels['composeextwin'] = '在新窗口中撰写'; $labels['htmleditor'] = '使用 HTML 编辑器'; -$labels['htmlonreply'] = '仅当回复 HTML 邮件'; -$labels['htmlonreplyandforward'] = 'on forward or reply to HTML message'; +$labels['htmlonreply'] = '仅当回复 HTML 邮件时'; +$labels['htmlonreplyandforward'] = '仅当回复或转发 HTML 邮件时'; $labels['htmlsignature'] = '使用 HTML 签名'; -$labels['showemail'] = 'Show email address with display name'; +$labels['showemail'] = '显示邮件地址时显示名字'; $labels['previewpane'] = '显示预览窗口'; $labels['skin'] = '界面皮肤'; $labels['logoutclear'] = '退出时清空回收站'; $labels['logoutcompact'] = '退出时压缩收件箱'; $labels['uisettings'] = '用户界面'; -$labels['serversettings'] = '服务器设置'; +$labels['serversettings'] = '服务端设置'; $labels['mailboxview'] = '显示邮件'; $labels['mdnrequests'] = '发件人请求回执'; $labels['askuser'] = '询问用户'; @@ -370,7 +363,7 @@ $labels['readwhendeleted'] = '删除后标记为已读'; $labels['flagfordeletion'] = '标记邮件为已删除而不是实际删除'; $labels['skipdeleted'] = '不显示标记为已删除的邮件'; $labels['deletealways'] = '如果移动邮件到回收站失败,则删除'; -$labels['deletejunk'] = '在、'; +$labels['deletejunk'] = '直接删除垃圾邮箱中的邮件'; $labels['showremoteimages'] = '显示内嵌的图片'; $labels['fromknownsenders'] = '来自已知发件人'; $labels['always'] = '总是'; @@ -386,7 +379,7 @@ $labels['mimeparamfolding'] = '附件名'; $labels['2231folding'] = '完整的 RFC 2231(Thunderbird)'; $labels['miscfolding'] = 'RFC 2047/2232(MS Outlook)'; $labels['2047folding'] = '完整的 RFC 2047(其它)'; -$labels['force7bit'] = '对8位字符使用 MIME 编码'; +$labels['force7bit'] = '对 8 位字符使用 MIME 编码'; $labels['advancedoptions'] = '高级选项'; $labels['focusonnewmessage'] = '新邮件到达时将窗口提升为焦点窗口'; $labels['checkallfolders'] = '检查所有邮件夹里的新邮件'; @@ -411,7 +404,7 @@ $labels['previewpanemarkread'] = '标记预览邮件为已读'; $labels['afternseconds'] = '$n 秒之后'; $labels['reqmdn'] = '总是要求回执'; $labels['reqdsn'] = '总是要求投递状态通知'; -$labels['replysamefolder'] = '保存回复邮件到邮件相同的目录'; +$labels['replysamefolder'] = '保存回复邮件到邮件相同的文件夹'; $labels['defaultabook'] = '默认地址薄'; $labels['autocompletesingle'] = '跳过自动完成的电子邮件地址'; $labels['listnamedisplay'] = '列出联系人为'; @@ -421,20 +414,19 @@ $labels['spellcheckignoresyms'] = '忽略带符号的单词'; $labels['spellcheckignorenums'] = '忽略带数字的单词'; $labels['spellcheckignorecaps'] = '忽略所有大写字母的单词'; $labels['addtodict'] = '添加到字典中'; -$labels['mailtoprotohandler'] = 'Register protocol handler for mailto: links'; -$labels['standardwindows'] = 'Handle popups as standard windows'; +$labels['mailtoprotohandler'] = '注册为处理 mailto 链接的程序'; $labels['forwardmode'] = '邮件转发方式'; $labels['inline'] = '内嵌'; $labels['asattachment'] = '作为附件'; -$labels['folder'] = '目录管理'; -$labels['folders'] = '目录管理'; +$labels['folder'] = '文件夹管理'; +$labels['folders'] = '文件夹管理'; $labels['foldername'] = '邮件夹名称'; $labels['subscribed'] = '已订阅'; $labels['messagecount'] = '邮件数量'; $labels['create'] = '建立'; $labels['createfolder'] = '建立新邮件夹'; $labels['managefolders'] = '管理邮件夹'; -$labels['specialfolders'] = '定义邮件夹'; +$labels['specialfolders'] = '自定义邮件夹'; $labels['properties'] = '属性'; $labels['folderproperties'] = '文件夹属性'; $labels['parentfolder'] = '父文件夹'; @@ -442,10 +434,10 @@ $labels['location'] = '位置'; $labels['info'] = '信息'; $labels['getfoldersize'] = '获得文件夹容量'; $labels['changesubscription'] = '更改订阅'; -$labels['foldertype'] = '目录类型'; -$labels['personalfolder'] = '私有目录'; -$labels['otherfolder'] = '他人目录'; -$labels['sharedfolder'] = '共享目录'; +$labels['foldertype'] = '文件夹类型'; +$labels['personalfolder'] = '私有文件夹'; +$labels['otherfolder'] = '他人文件夹'; +$labels['sharedfolder'] = '共享文件夹'; $labels['sortby'] = '排序'; $labels['sortasc'] = '递增排序'; $labels['sortdesc'] = '递减排序'; diff --git a/program/localization/zh_CN/messages.inc b/program/localization/zh_CN/messages.inc index ef40ed529..bf6e8cf2f 100644 --- a/program/localization/zh_CN/messages.inc +++ b/program/localization/zh_CN/messages.inc @@ -15,118 +15,122 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = '发生错误!'; $messages['loginfailed'] = '登录失败。'; -$messages['cookiesdisabled'] = '您的浏览器不接受 cookies。'; -$messages['sessionerror'] = '会话已过期。'; -$messages['storageerror'] = '连接到邮件服务器失败。'; +$messages['cookiesdisabled'] = '您的浏览器不支持 Cookies。'; +$messages['sessionerror'] = '会话无效或已过期。'; +$messages['storageerror'] = '连接至 IMAP 服务器失败。'; $messages['servererror'] = '服务器错误!'; -$messages['servererrormsg'] = '服务器错误: $msg'; +$messages['servererrormsg'] = '服务器错误:$msg'; $messages['dberror'] = '数据库错误!'; $messages['requesttimedout'] = '请求超时'; -$messages['errorreadonly'] = '不可对只读文件夹进行操作。'; -$messages['errornoperm'] = '无权限操作'; -$messages['invalidrequest'] = '无效的请求!数据保存失败。'; -$messages['invalidhost'] = '非法主机名。'; +$messages['errorreadonly'] = '无法完成操作。文件夹为只读。'; +$messages['errornoperm'] = '无法完成操作。没有权限。'; +$messages['erroroverquota'] = '无法完成操作。没有足够的磁盘空间。'; +$messages['erroroverquotadelete'] = '没有足够的磁盘空间。请使用 SHIFT+DEL 删除一部分邮件。'; +$messages['invalidrequest'] = '请求无效!未保存数据。'; +$messages['invalidhost'] = '无效的主机名。'; $messages['nomessagesfound'] = '此邮件夹内无邮件。'; $messages['loggedout'] = '您已成功注销,再见!'; -$messages['mailboxempty'] = '邮件夹为空'; -$messages['refreshing'] = '刷新中...'; +$messages['mailboxempty'] = '邮件夹为空。'; +$messages['refreshing'] = '正在刷新...'; $messages['loading'] = '正在载入...'; $messages['uploading'] = '正在上传文件...'; $messages['uploadingmany'] = '正在上传文件...'; $messages['loadingdata'] = '正在载入数据...'; $messages['checkingmail'] = '正在检查新邮件...'; -$messages['sendingmessage'] = '正在发送邮件...'; -$messages['messagesent'] = '邮件发送成功。'; +$messages['sendingmessage'] = '正在发送...'; +$messages['messagesent'] = '邮件已发送。'; $messages['savingmessage'] = '正在保存邮件...'; -$messages['messagesaved'] = '邮件已暂存到草稿箱。'; +$messages['messagesaved'] = '邮件已暂存至草稿箱。'; $messages['successfullysaved'] = '保存成功。'; -$messages['addedsuccessfully'] = '成功添加联系人。'; +$messages['addedsuccessfully'] = '联系人已添加。'; $messages['contactexists'] = '当前联系人的电子邮件地址已存在。'; -$messages['contactnameexists'] = '已存在同名的联系人。'; -$messages['blockedimages'] = '为保护隐私,此邮件中的远程图片未显示。'; +$messages['contactnameexists'] = '已存在同名联系人。'; +$messages['blockedimages'] = '由于保护隐私,此邮件中的远程图片未予显示。'; $messages['encryptedmessage'] = '抱歉!该邮件已被加密,无法显示。'; $messages['nocontactsfound'] = '未找到联系人。'; $messages['contactnotfound'] = '未找到指定的联系人。'; $messages['contactsearchonly'] = '请输入联系人的搜索条件'; $messages['sendingfailed'] = '发送失败。'; -$messages['senttooquickly'] = '您需要等待 $sec 秒才能发送邮件。'; -$messages['errorsavingsent'] = '保存已发送邮件时发生错误。'; -$messages['errorsaving'] = '保存时发生错误。'; +$messages['senttooquickly'] = '您需要等待$sec秒才能发送邮件。'; $messages['errormoving'] = '无法移动邮件。'; $messages['errorcopying'] = '无法复制邮件。'; $messages['errordeleting'] = '无法删除邮件。'; $messages['errormarking'] = '无法标记邮件。'; -$messages['deletecontactconfirm'] = '确定要删除已选中的联系人?'; -$messages['deletegroupconfirm'] = '确定要删除以选中的组?'; -$messages['deletemessagesconfirm'] = '确定要删除已选中的邮件?'; -$messages['deletefolderconfirm'] = '确定要删除已选中的邮件夹?'; -$messages['purgefolderconfirm'] = '是否确认要删除当前邮件夹中的所有邮件?'; +$messages['deletecontactconfirm'] = '是否删除选中的联系人?'; +$messages['deletegroupconfirm'] = '是否删除选中的群组?'; +$messages['deletemessagesconfirm'] = '是否删除选中的邮件?'; +$messages['deletefolderconfirm'] = '是否删除选中的邮件夹?'; +$messages['purgefolderconfirm'] = '是否删除当前邮件夹中的全部邮件?'; $messages['contactdeleting'] = '正在删除联系人...'; -$messages['groupdeleting'] = '正在删除组...'; +$messages['groupdeleting'] = '正在删除群组...'; $messages['folderdeleting'] = '正在删除文件夹...'; $messages['foldermoving'] = '正在移动文件夹...'; $messages['foldersubscribing'] = '订阅文件夹中...'; $messages['folderunsubscribing'] = '退订中...'; -$messages['formincomplete'] = '当前表单未填写完整,请完整填写。'; +$messages['formincomplete'] = '表单未填写完整。'; $messages['noemailwarning'] = '请输入一个有效的邮件地址。'; -$messages['nonamewarning'] = '请输入名字。'; -$messages['nopagesizewarning'] = '请输入每页显示的邮件数量'; +$messages['nonamewarning'] = '请输入名称。'; +$messages['nopagesizewarning'] = '请输入每页显示的邮件数量。'; $messages['nosenderwarning'] = '请输入发件人地址。'; -$messages['norecipientwarning'] = '至少需要一个收件人。'; +$messages['norecipientwarning'] = '至少输入一个收件人。'; $messages['nosubjectwarning'] = '主题为空。您要输入一个主题吗?'; -$messages['nobodywarning'] = '要发送无正文的邮件吗?'; +$messages['nobodywarning'] = '要发送没有正文的邮件吗?'; $messages['notsentwarning'] = '邮件未发送。您确定要离开并舍弃当前邮件吗?'; -$messages['noldapserver'] = '请选择一个LDAP服务器进行查找。'; -$messages['nosearchname'] = '请输入一个联系人姓名或电子邮件地址。'; -$messages['notuploadedwarning'] = '附件还没有全部上传,请等待或者取消上传。'; +$messages['noldapserver'] = '请选择一个用来查找的 LDAP 服务器。'; +$messages['nosearchname'] = '请输入联系人姓名或电子邮件地址。'; +$messages['notuploadedwarning'] = '附件尚未全部上传,请耐心等待或者取消上传。'; $messages['searchsuccessful'] = '共找到 $nr 封邮件。'; $messages['contactsearchsuccessful'] = '共找到 $nr 位联系人。'; -$messages['searchnomatch'] = '未找到任何符合条件的邮件'; +$messages['searchnomatch'] = '未找到任何符合条件的邮件。'; $messages['searching'] = '正在搜索...'; $messages['checking'] = '正在检查...'; -$messages['nospellerrors'] = '未发现拼写错误'; -$messages['folderdeleted'] = '文件夹已被成功删除。'; -$messages['foldersubscribed'] = '成功订阅文件夹。'; -$messages['folderunsubscribed'] = '成功退订的文件夹。'; -$messages['folderpurged'] = '成功清空文件夹。'; +$messages['nospellerrors'] = '未发现拼写错误。'; +$messages['folderdeleted'] = '删除文件夹成功。'; +$messages['foldersubscribed'] = '订阅文件夹成功。'; +$messages['folderunsubscribed'] = '退订文件夹成功。'; +$messages['folderpurged'] = '清空文件夹成功。'; $messages['folderexpunged'] = '文件夹已清空。'; $messages['deletedsuccessfully'] = '删除成功。'; $messages['converting'] = '格式转换中...'; -$messages['messageopenerror'] = '无法从服务器上加载邮件内容。'; +$messages['messageopenerror'] = '无法从服务器加载邮件内容。'; $messages['fileuploaderror'] = '文件上传失败。'; $messages['filesizeerror'] = '上传的文件超过了 $size 的大小限制。'; -$messages['copysuccess'] = '成功复制 $nr 个地址。'; -$messages['copyerror'] = '无法复制地址。'; +$messages['copysuccess'] = '成功复制 $nr 个联系人。'; +$messages['movesuccess'] = '成功移动 $nr 个联系人。'; +$messages['copyerror'] = '无法复制联系人。'; +$messages['moveerror'] = '无法移动联系人。'; $messages['sourceisreadonly'] = '源地址为只读。'; -$messages['errorsavingcontact'] = '无法保存联系人的地址。'; -$messages['movingmessage'] = '移动邮件到...'; -$messages['copyingmessage'] = '复制邮件到...'; -$messages['copyingcontact'] = '复制联系人...'; +$messages['errorsavingcontact'] = '无法保存联系人地址。'; +$messages['movingmessage'] = '正在移动邮件...'; +$messages['copyingmessage'] = '正在复制邮件...'; +$messages['copyingcontact'] = '正在复制联系人...'; +$messages['movingcontact'] = '移动联系人...'; $messages['deletingmessage'] = '正在删除邮件...'; $messages['markingmessage'] = '正在标记邮件...'; -$messages['addingmember'] = '正在添加联系人到组...'; -$messages['removingmember'] = '正在从组中删除联系人...'; -$messages['receiptsent'] = '成功发送了一个已读回执。'; -$messages['errorsendingreceipt'] = '无法发送回执。'; -$messages['deleteidentityconfirm'] = '您真的想删除这个验证信息吗?'; -$messages['nodeletelastidentity'] = '无法删除这个身份,这是最后一个。'; -$messages['forbiddencharacter'] = '目录名包含隐藏字符。'; +$messages['addingmember'] = '正在添加联系人至群组...'; +$messages['removingmember'] = '正在从群组中删除联系人...'; +$messages['receiptsent'] = '成功发送一个已读回执。'; +$messages['errorsendingreceipt'] = '无法发送已读回执。'; +$messages['deleteidentityconfirm'] = '是否删除该身份?'; +$messages['nodeletelastidentity'] = '无法删除该身份,这是最后一个。'; +$messages['forbiddencharacter'] = '文件夹名包含禁止字符。'; $messages['selectimportfile'] = '请选择要上传的文件。'; -$messages['addresswriterror'] = '已选择的地址簿不可写。'; -$messages['contactaddedtogroup'] = '成功添加联系人至该分组。'; -$messages['contactremovedfromgroup'] = '成功从该分组移除联系人。'; -$messages['nogroupassignmentschanged'] = 'No group assignments changed.'; +$messages['addresswriterror'] = '选中的通讯录不可写。'; +$messages['contactaddedtogroup'] = '添加联系人至该群组成功。'; +$messages['contactremovedfromgroup'] = '从该群组移除联系人成功。'; +$messages['nogroupassignmentschanged'] = '群组资料没有变更。'; $messages['importwait'] = '正在导入,请稍后...'; -$messages['importformaterror'] = 'Import failed! The uploaded file is not a valid import data file.'; +$messages['importformaterror'] = '导入失败!文件无效。'; $messages['importconfirm'] = '成功导入 $inserted 联系人'; $messages['importconfirmskipped'] = '跳过已存在的 $skipped 项目'; +$messages['importmessagesuccess'] = '成功导入 $nr 条信息'; +$messages['importmessageerror'] = '导入失败!文件无效'; $messages['opnotpermitted'] = '不允许的操作!'; -$messages['nofromaddress'] = '选中的身份中没有邮件地址。'; -$messages['editorwarning'] = '切换到纯文本编辑器将导致邮件正文中的所有文本格式失效,您确定要这样做吗?'; -$messages['httpreceivedencrypterror'] = '发生了一个致命的配置错误,请立即联系管理员。您的邮件无法发送。'; +$messages['nofromaddress'] = '选中的身份没有邮件地址。'; +$messages['editorwarning'] = '切换至纯文本编辑器将导致邮件正文中的所有文本格式失效,您确定要这样做吗?'; +$messages['httpreceivedencrypterror'] = '您的邮件无法发送,因为发生了一个严重的配置错误,请立即联系管理员。'; $messages['smtpconnerror'] = 'SMTP 错误 ($code):连接服务器失败。'; $messages['smtpautherror'] = 'SMTP 错误 ($code): 认证失败。'; $messages['smtpfromerror'] = 'SMTP 错误 ($code):添加发件人失败 "$from" ($msg)。'; @@ -136,17 +140,16 @@ $messages['smtperror'] = 'SMTP 错误: $msg'; $messages['emailformaterror'] = '无效的邮件地址:$email'; $messages['toomanyrecipients'] = '收件人太多,请减少人数至 $max。'; $messages['maxgroupmembersreached'] = '组员数量超过最大值 $max。'; -$messages['internalerror'] = '遇到一个内部错误,请重试。'; $messages['contactdelerror'] = '无法删除联系人。'; $messages['contactdeleted'] = '删除联系人成功。'; $messages['contactrestoreerror'] = '无法恢复已删除的联系人。'; $messages['contactrestored'] = '联系人恢复成功。'; -$messages['groupdeleted'] = '成功删除组。'; -$messages['grouprenamed'] = '组改名成功。'; -$messages['groupcreated'] = '成功创建组'; +$messages['groupdeleted'] = '删除群组成功。'; +$messages['grouprenamed'] = '群组改名成功。'; +$messages['groupcreated'] = '成功创建群组'; $messages['savedsearchdeleted'] = '成功删除保存的搜索'; $messages['savedsearchdeleteerror'] = '无法删除保存的搜索'; -$messages['savedsearchcreated'] = '成功建立保存的搜索'; +$messages['savedsearchcreated'] = '成功创建保存的搜索'; $messages['savedsearchcreateerror'] = '无法创建保存的搜索。'; $messages['messagedeleted'] = '删除邮件成功。'; $messages['messagemoved'] = '移动邮件成功。'; @@ -160,8 +163,8 @@ $messages['folderupdated'] = '成功更新文件夹'; $messages['foldercreated'] = '成功创建文件夹'; $messages['invalidimageformat'] = '非法的图像类型。'; $messages['mispellingsfound'] = '检查到拼写错误。'; -$messages['parentnotwritable'] = '无法创建和转移到所选的目录,权限不足。'; -$messages['messagetoobig'] = '由于邮件部分过大无法处理。'; -$messages['attachmentvalidationerror'] = 'WARNING! This attachment is suspicious because its type doesn\'t match the type declared in the message. If you do not trust the sender, you shouldn\'t open it in the browser because it may contain malicious contents.

Expected: $expected; found: $detected'; -$messages['noscriptwarning'] = 'Warning: This webmail service requires Javascript! In order to use it please enable Javascript in your browser\'s settings.'; +$messages['parentnotwritable'] = '无法创建/转移文件夹至指定的上级文件夹,没有权限。'; +$messages['messagetoobig'] = '邮件过大无法处理。'; +$messages['attachmentvalidationerror'] = '警告!该附件很可疑,因为其自身的格式与邮件中声明的格式不符。如果您不信任发送人,则不应该在浏览器中打开该附件。

声明格式:$expected;实际格式:$detected'; +$messages['noscriptwarning'] = '警告:本程序需要 Javascript 支持!请在浏览器设置中启用 Javascript。'; ?> diff --git a/program/localization/zh_TW/csv2vcard.inc b/program/localization/zh_TW/csv2vcard.inc index 9dacddedd..36c5495e1 100644 --- a/program/localization/zh_TW/csv2vcard.inc +++ b/program/localization/zh_TW/csv2vcard.inc @@ -15,7 +15,6 @@ | Author: Aleksander Machniak | +-----------------------------------------------------------------------+ */ - $map = array(); $map['anniversary'] = "紀念日"; $map['assistants_name'] = "助理"; diff --git a/program/localization/zh_TW/labels.inc b/program/localization/zh_TW/labels.inc index ab23c7a4b..4250e5137 100644 --- a/program/localization/zh_TW/labels.inc +++ b/program/localization/zh_TW/labels.inc @@ -15,8 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/labels/ */ - - $labels['welcome'] = '歡迎使用 $product'; $labels['username'] = '使用者名稱'; $labels['password'] = '使用者密碼'; @@ -177,7 +175,6 @@ $labels['resetsearch'] = '重設搜尋'; $labels['searchmod'] = '修改搜尋'; $labels['msgtext'] = '整封郵件'; $labels['body'] = '內文'; -$labels['type'] = 'Type'; $labels['namex'] = '名稱'; $labels['openinextwin'] = '在新視窗開啟'; $labels['emlsave'] = '下載(.eml)'; @@ -311,16 +308,13 @@ $labels['nextpage'] = '顯示下一頁'; $labels['lastpage'] = '顯示最後一頁'; $labels['group'] = '群組'; $labels['groups'] = '群組'; -$labels['listgroup'] = 'List group members'; $labels['personaladrbook'] = '個人通訊錄'; $labels['searchsave'] = '儲存搜尋結果'; $labels['searchdelete'] = '刪除搜尋結果'; $labels['import'] = '匯入通訊錄'; $labels['importcontacts'] = '由檔案匯入通訊錄'; $labels['importfromfile'] = '選擇你要匯入的檔案:'; -$labels['importtarget'] = 'Add contacts to'; $labels['importreplace'] = '以匯入的資料取代已存在的重複資料'; -$labels['importgroups'] = 'Import group assignments'; $labels['importgroupsall'] = '全部(如有必要,新增群組)'; $labels['importgroupsexisting'] = '僅限於既有群組'; $labels['importdesc'] = '您可以將已存在的資料匯入通訊錄,目前支援匯入 vCard 與 CSV (逗點分隔)格式資料'; @@ -426,7 +420,6 @@ $labels['spellcheckignorenums'] = '忽略數字'; $labels['spellcheckignorecaps'] = '忽略大寫字母'; $labels['addtodict'] = '加入詞典'; $labels['mailtoprotohandler'] = '註冊mailto:協定處理程式'; -$labels['standardwindows'] = 'Handle popups as standard windows'; $labels['forwardmode'] = '郵件轉寄方式'; $labels['inline'] = '放入內文'; $labels['asattachment'] = '當成附件'; diff --git a/program/localization/zh_TW/messages.inc b/program/localization/zh_TW/messages.inc index 04e8c23ad..c52116a55 100644 --- a/program/localization/zh_TW/messages.inc +++ b/program/localization/zh_TW/messages.inc @@ -15,7 +15,6 @@ For translation see https://www.transifex.com/projects/p/roundcube-webmail/resource/messages/ */ - $messages['errortitle'] = '發生錯誤!'; $messages['loginfailed'] = '登入失敗'; $messages['cookiesdisabled'] = '你的瀏覽器不接受 cookies'; @@ -43,7 +42,7 @@ $messages['checkingmail'] = '檢查新郵件...'; $messages['sendingmessage'] = '寄出郵件中...'; $messages['messagesent'] = '郵件寄出成功'; $messages['savingmessage'] = '儲存郵件中...'; -$messages['messagesaved'] = '訊息已經存至'; +$messages['messagesaved'] = '郵件已經儲存至草稿匣'; $messages['successfullysaved'] = '儲存成功'; $messages['addedsuccessfully'] = '聯絡人已經成功地新增至通訊錄'; $messages['contactexists'] = '此聯絡人的電子郵件位址已存在'; @@ -55,8 +54,6 @@ $messages['contactnotfound'] = '找不到要求的聯絡人'; $messages['contactsearchonly'] = '輸入關鍵字找尋連絡人'; $messages['sendingfailed'] = '郵件寄出失敗'; $messages['senttooquickly'] = '你寄出的郵件太過於頻繁,請稍候 $sec 秒後再試一次。'; -$messages['errorsavingsent'] = '儲存寄件備份時發生錯誤'; -$messages['errorsaving'] = '儲存時發生錯誤'; $messages['errormoving'] = '無法移動此郵件'; $messages['errorcopying'] = '無法訊息'; $messages['errordeleting'] = '無法刪除此郵件'; @@ -100,16 +97,16 @@ $messages['converting'] = '移除郵件格式中...'; $messages['messageopenerror'] = '無法從伺服器載入郵件'; $messages['fileuploaderror'] = '檔案上傳失敗'; $messages['filesizeerror'] = '上傳的檔案超過了 $size 的大小限制'; -$messages['copysuccess'] = 'Successfully copied $nr contacts.'; -$messages['movesuccess'] = 'Successfully moved $nr contacts.'; -$messages['copyerror'] = 'Could not copy any contacts.'; -$messages['moveerror'] = 'Could not move any contacts.'; +$messages['copysuccess'] = '成功複製 $nr 個聯絡人。'; +$messages['movesuccess'] = '成功移動 $nr 個聯絡人。'; +$messages['copyerror'] = '無法複製任何聯絡人。'; +$messages['moveerror'] = '無法移動任何聯絡人。'; $messages['sourceisreadonly'] = '此來源位址是唯讀的'; $messages['errorsavingcontact'] = '無法儲存連絡人的位址'; $messages['movingmessage'] = '移動郵件中...'; $messages['copyingmessage'] = '複製訊息...'; $messages['copyingcontact'] = '複製群組...'; -$messages['movingcontact'] = 'Moving contact(s)...'; +$messages['movingcontact'] = '正在移動連絡人...'; $messages['deletingmessage'] = '刪除訊息...'; $messages['markingmessage'] = '標示訊息...'; $messages['addingmember'] = '新增連絡人至群組'; @@ -128,8 +125,8 @@ $messages['importwait'] = '匯入中,請稍候...'; $messages['importformaterror'] = '匯入失敗!上載的檔案格式不支援'; $messages['importconfirm'] = '成功匯入 $inserted 筆資料,略過 $skipped 筆已存在的資料

$names

'; $messages['importconfirmskipped'] = '略過 $skipped 個已存在的項目'; -$messages['importmessagesuccess'] = 'Successfully imported $nr messages'; -$messages['importmessageerror'] = 'Import failed! The uploaded file is not a valid message or mailbox file'; +$messages['importmessagesuccess'] = '成功匯入 $nr 封郵件'; +$messages['importmessageerror'] = '匯入失敗!上載的檔案不是有效的郵件或資料夾檔案'; $messages['opnotpermitted'] = '不允許的操作'; $messages['nofromaddress'] = '在選擇的身分中遺失了電子郵件位址'; $messages['editorwarning'] = '切換到純文字編輯模式將會遺失所有設定的樣式。您確定要繼續嗎?'; @@ -143,7 +140,6 @@ $messages['smtperror'] = 'SMTP 錯誤:$msg'; $messages['emailformaterror'] = '錯誤電子郵件:$email'; $messages['toomanyrecipients'] = '太多收件人。請減少至 $max 人'; $messages['maxgroupmembersreached'] = '太多群組成員,超過最大人數 $max 人'; -$messages['internalerror'] = '內部發生錯誤。請再次嘗試'; $messages['contactdelerror'] = '無法刪除聯絡人'; $messages['contactdeleted'] = '聯絡人成功刪除'; $messages['contactrestoreerror'] = '無法復原刪除的連絡人'; -- cgit v1.2.3