From a9a7af414873c4212711363c25b554ee20938e0f Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 14:10:17 +0900 Subject: [PATCH 01/17] Don't translate those which shouldn't be translated `those` are - Numbers - Already translated texts - User names - Network interfaces --- web/templates/admin/list_ip.html | 6 +++--- web/templates/admin/list_packages.html | 6 +++--- web/templates/admin/list_updates.html | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/web/templates/admin/list_ip.html b/web/templates/admin/list_ip.html index ada609a2a..670f25782 100644 --- a/web/templates/admin/list_ip.html +++ b/web/templates/admin/list_ip.html @@ -62,8 +62,8 @@
+sort-netmask="" sort-interface="" sort-domains="" +sort-owner="" sort-star="">
@@ -132,7 +132,7 @@ sort-owner="" sort-star="
:
- +
diff --git a/web/templates/admin/list_packages.html b/web/templates/admin/list_packages.html index d06f06088..26bdcf1c2 100644 --- a/web/templates/admin/list_packages.html +++ b/web/templates/admin/list_packages.html @@ -56,8 +56,8 @@ ?> -
@@ -126,7 +126,7 @@ sort-star="
:
- +
diff --git a/web/templates/admin/list_updates.html b/web/templates/admin/list_updates.html index 86e3c96c5..7a0753e7a 100644 --- a/web/templates/admin/list_updates.html +++ b/web/templates/admin/list_updates.html @@ -54,10 +54,10 @@ if ($data[$key]['UPDATED'] == 'yes') { $status = 'active'; - $upd_status = __('updated'); + $upd_status = 'updated'; } else { $status = 'suspended'; - $upd_status = __('outdated'); + $upd_status = 'outdated'; } ?> From 6faead081b6b4c1de8081730180b4b0a3d874ade Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 15:09:32 +0900 Subject: [PATCH 02/17] Fix /edit/server/ always says database unsupported --- bin/v-list-database-hosts | 6 +- web/edit/server/index.php | 22 ++---- web/templates/admin/edit_server.html | 108 +++++++++++++-------------- 3 files changed, 65 insertions(+), 71 deletions(-) diff --git a/bin/v-list-database-hosts b/bin/v-list-database-hosts index 4260d59b9..1355a5a48 100755 --- a/bin/v-list-database-hosts +++ b/bin/v-list-database-hosts @@ -28,12 +28,12 @@ json_list() { fi done - echo "{" + echo "[" for type in $(echo $DB_SYSTEM |sed -e 's/,/\n/'); do if [ -e "$VESTA/conf/$type.conf" ]; then for str in $(cat $VESTA/conf/$type.conf); do eval $str - echo -n ' "'$HOST'": { + echo -n ' { "HOST": "'$HOST'", "TYPE": "'$type'", "CHARSETS": "'$CHARSETS'", @@ -54,7 +54,7 @@ json_list() { done fi done - echo '}' + echo ']' } # SHELL list function diff --git a/web/edit/server/index.php b/web/edit/server/index.php index 073dc97b3..602fce4a7 100644 --- a/web/edit/server/index.php +++ b/web/edit/server/index.php @@ -46,21 +46,15 @@ foreach ($dns_cluster as $key => $value) { $v_dns_cluster = 'yes'; } -// List MySQL hosts -exec (VESTA_CMD."v-list-database-hosts mysql json", $output, $return_var); -$v_mysql_hosts = json_decode(implode('', $output), true); +// List Database hosts +exec (VESTA_CMD."v-list-database-hosts json", $output, $return_var); +$db_hosts = json_decode(implode('', $output), true); unset($output); -foreach ($v_mysql_hosts as $key => $value) { - $v_mysql = 'yes'; -} - -// List PostgreSQL hosts -exec (VESTA_CMD."v-list-database-hosts pgsql json", $output, $return_var); -$v_pgsql_hosts = json_decode(implode('', $output), true); -unset($output); -foreach ($v_pgsql_hosts as $key => $value) { - $v_pgsql = 'yes'; -} +$v_mysql_hosts = array_values(array_filter($db_hosts, function($host){return $host['TYPE'] === 'mysql';})); +$v_mysql = count($v_mysql_hosts) ? 'yes' : 'no'; +$v_pgsql_hosts = array_values(array_filter($db_hosts, function($host){return $host['TYPE'] === 'pgsql';})); +$v_pgsql = count($v_pgsql_hosts) ? 'yes' : 'no'; +unset($db_hosts); // List backup settings $v_backup_dir = "/backup"; diff --git a/web/templates/admin/edit_server.html b/web/templates/admin/edit_server.html index 20e494537..1c8578599 100644 --- a/web/templates/admin/edit_server.html +++ b/web/templates/admin/edit_server.html @@ -54,7 +54,7 @@ @@ -82,7 +82,7 @@ } echo ">".$value."\n"; } - ?> + ?>

@@ -106,7 +106,7 @@ } echo ">".$value."\n"; } - ?> + ?>

@@ -121,10 +121,10 @@ @@ -187,7 +187,7 @@
- +
- + @@ -133,10 +133,10 @@

- + @@ -145,10 +145,10 @@

- + @@ -159,7 +159,7 @@ @@ -169,7 +169,7 @@ - +
- +
- +
- +
- +
@@ -215,10 +215,10 @@ $i = 0; foreach ($dns_cluster as $key => $value) { $i++; - ?> + ?> @@ -227,7 +227,7 @@

- +
- +
- +
@@ -245,7 +245,7 @@ @@ -254,10 +254,10 @@

- + @@ -266,11 +266,11 @@

- - + + @@ -279,10 +279,10 @@

- + @@ -324,7 +324,7 @@ @@ -336,23 +336,23 @@ $value) { + foreach ($v_mysql_hosts as $value) { $i++; - ?> + ?> @@ -364,7 +364,7 @@ @@ -375,7 +375,7 @@ @@ -384,7 +384,7 @@



- + @@ -404,7 +404,7 @@ @@ -416,23 +416,23 @@ $value) { + foreach ($v_pgsql_hosts as $value) { $i++; - ?> + ?> @@ -443,7 +443,7 @@ @@ -452,7 +452,7 @@



- +
- +
- +
- +
- +
- +
- +
- +

- +
- +
- +
- +
- +
- +

- +
- +
@@ -470,7 +470,7 @@ @@ -484,7 +484,7 @@ @@ -505,7 +505,7 @@ @@ -524,7 +524,7 @@ @@ -245,7 +245,7 @@
- +
- +
- +
@@ -538,7 +538,7 @@ @@ -549,7 +549,7 @@ @@ -560,7 +560,7 @@ @@ -571,7 +571,7 @@ @@ -599,7 +599,7 @@
- +
- +
- +
- +
- +
@@ -638,7 +638,7 @@ @@ -651,7 +651,7 @@ @@ -690,7 +690,7 @@ '.__('Licence Key').':
'; } else { - echo + echo __('Restrict users so that they cannot use SSH and access only their home directory.').' '.__('This is a commercial module, you would need to purchace license key to enable it.'). '
'.__('Enter License Key').':
@@ -712,7 +712,7 @@
@@ -797,4 +797,4 @@ } }); }); - \ No newline at end of file + From e0f695e493e6d8ae1125c6de3c365e0b1e2e90fe Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 15:09:32 +0900 Subject: [PATCH 03/17] Fix /edit/server/ always says database unsupported This commit changes interface of bin/v-list-database-hosts --- bin/v-list-database-hosts | 6 +- web/add/db/index.php | 12 +-- web/edit/server/index.php | 22 ++---- web/templates/admin/add_db.html | 24 +++--- web/templates/admin/edit_server.html | 108 +++++++++++++-------------- 5 files changed, 83 insertions(+), 89 deletions(-) diff --git a/bin/v-list-database-hosts b/bin/v-list-database-hosts index 4260d59b9..1355a5a48 100755 --- a/bin/v-list-database-hosts +++ b/bin/v-list-database-hosts @@ -28,12 +28,12 @@ json_list() { fi done - echo "{" + echo "[" for type in $(echo $DB_SYSTEM |sed -e 's/,/\n/'); do if [ -e "$VESTA/conf/$type.conf" ]; then for str in $(cat $VESTA/conf/$type.conf); do eval $str - echo -n ' "'$HOST'": { + echo -n ' { "HOST": "'$HOST'", "TYPE": "'$type'", "CHARSETS": "'$CHARSETS'", @@ -54,7 +54,7 @@ json_list() { done fi done - echo '}' + echo ']' } # SHELL list function diff --git a/web/add/db/index.php b/web/add/db/index.php index c64ca42e8..ae2c0809d 100644 --- a/web/add/db/index.php +++ b/web/add/db/index.php @@ -120,12 +120,13 @@ $v_db_email = $panel[$user]['CONTACT']; $db_types = split(",",$_SESSION['DB_SYSTEM']); // List available database servers -$db_hosts = array(); -exec (VESTA_CMD."v-list-database-hosts 'json'", $output, $return_var); -$db_hosts_tmp = json_decode(implode('', $output), true); -$db_hosts = array_merge($db_hosts, $db_hosts_tmp); -unset($db_hosts_tmp); +exec (VESTA_CMD."v-list-database-hosts json", $output, $return_var); +$db_hosts_tmp1 = json_decode(implode('', $output), true); +$db_hosts_tmp2 = array_map(function($host){return $host['HOST'];}, $db_hosts_tmp1); +$db_hosts = array_values(array_unique($db_hosts_tmp2)); unset($output); +unset($db_hosts_tmp1); +unset($db_hosts_tmp2); // Display body include($_SERVER['DOCUMENT_ROOT'].'/templates/admin/add_db.html'); @@ -136,4 +137,3 @@ unset($_SESSION['ok_msg']); // Footer include($_SERVER['DOCUMENT_ROOT'].'/templates/footer.html'); -?> diff --git a/web/edit/server/index.php b/web/edit/server/index.php index 073dc97b3..602fce4a7 100644 --- a/web/edit/server/index.php +++ b/web/edit/server/index.php @@ -46,21 +46,15 @@ foreach ($dns_cluster as $key => $value) { $v_dns_cluster = 'yes'; } -// List MySQL hosts -exec (VESTA_CMD."v-list-database-hosts mysql json", $output, $return_var); -$v_mysql_hosts = json_decode(implode('', $output), true); +// List Database hosts +exec (VESTA_CMD."v-list-database-hosts json", $output, $return_var); +$db_hosts = json_decode(implode('', $output), true); unset($output); -foreach ($v_mysql_hosts as $key => $value) { - $v_mysql = 'yes'; -} - -// List PostgreSQL hosts -exec (VESTA_CMD."v-list-database-hosts pgsql json", $output, $return_var); -$v_pgsql_hosts = json_decode(implode('', $output), true); -unset($output); -foreach ($v_pgsql_hosts as $key => $value) { - $v_pgsql = 'yes'; -} +$v_mysql_hosts = array_values(array_filter($db_hosts, function($host){return $host['TYPE'] === 'mysql';})); +$v_mysql = count($v_mysql_hosts) ? 'yes' : 'no'; +$v_pgsql_hosts = array_values(array_filter($db_hosts, function($host){return $host['TYPE'] === 'pgsql';})); +$v_pgsql = count($v_pgsql_hosts) ? 'yes' : 'no'; +unset($db_hosts); // List backup settings $v_backup_dir = "/backup"; diff --git a/web/templates/admin/add_db.html b/web/templates/admin/add_db.html index a69a6c140..2caa24a7a 100644 --- a/web/templates/admin/add_db.html +++ b/web/templates/admin/add_db.html @@ -68,7 +68,7 @@ @@ -79,7 +79,7 @@ @@ -100,7 +100,7 @@ @@ -112,32 +112,32 @@ if ((!empty($v_type)) && ( $value == $v_type )) echo ' selected'; echo ">".htmlentities($value).""; } - ?> + ?> @@ -183,7 +183,7 @@ diff --git a/web/templates/admin/edit_server.html b/web/templates/admin/edit_server.html index 20e494537..1c8578599 100644 --- a/web/templates/admin/edit_server.html +++ b/web/templates/admin/edit_server.html @@ -54,7 +54,7 @@
- +
- +
- +
- +
- +
- +
- +
- +
- +
- +
@@ -82,7 +82,7 @@ } echo ">".$value."\n"; } - ?> + ?>

@@ -106,7 +106,7 @@ } echo ">".$value."\n"; } - ?> + ?>

@@ -121,10 +121,10 @@ @@ -187,7 +187,7 @@
- +
- + @@ -133,10 +133,10 @@

- + @@ -145,10 +145,10 @@

- + @@ -159,7 +159,7 @@ @@ -169,7 +169,7 @@ - +
- +
- +
- +
- +
@@ -215,10 +215,10 @@ $i = 0; foreach ($dns_cluster as $key => $value) { $i++; - ?> + ?> @@ -227,7 +227,7 @@

- +
- +
- +
@@ -254,10 +254,10 @@

- + @@ -266,11 +266,11 @@

- - + + @@ -279,10 +279,10 @@

- + @@ -324,7 +324,7 @@ @@ -336,23 +336,23 @@ $value) { + foreach ($v_mysql_hosts as $value) { $i++; - ?> + ?> @@ -364,7 +364,7 @@ @@ -375,7 +375,7 @@ @@ -384,7 +384,7 @@



- + @@ -404,7 +404,7 @@ @@ -416,23 +416,23 @@ $value) { + foreach ($v_pgsql_hosts as $value) { $i++; - ?> + ?> @@ -443,7 +443,7 @@ @@ -452,7 +452,7 @@



- +
- +
- +
- +
- +
- +
- +
- +

- +
- +
- +
- +
- +
- +

- +
- +
@@ -470,7 +470,7 @@ @@ -484,7 +484,7 @@ @@ -505,7 +505,7 @@ @@ -524,7 +524,7 @@ - + @@ -296,7 +296,7 @@ } echo ">". htmlentities(__($value)) ."\n"; } - ?> + ?> @@ -430,7 +430,7 @@
- +
- +
- +
@@ -538,7 +538,7 @@ @@ -549,7 +549,7 @@ @@ -560,7 +560,7 @@ @@ -571,7 +571,7 @@ @@ -599,7 +599,7 @@
- +
- +
- +
- +
- +
@@ -638,7 +638,7 @@ @@ -651,7 +651,7 @@ @@ -690,7 +690,7 @@ '.__('Licence Key').':
'; } else { - echo + echo __('Restrict users so that they cannot use SSH and access only their home directory.').' '.__('This is a commercial module, you would need to purchace license key to enable it.'). '
'.__('Enter License Key').':
@@ -712,7 +712,7 @@
@@ -797,4 +797,4 @@ } }); }); - \ No newline at end of file + From 6fd8787985febfc0b70e7bb87fb597b1f2823e0b Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 15:47:24 +0900 Subject: [PATCH 04/17] Don't translate those which shouldn't be translated `those` are - Numbers - Already translated texts - User names - Network interfaces - Package names, template names and shells --- web/templates/admin/add_package.html | 22 +++++++++++----------- web/templates/admin/edit_package.html | 20 ++++++++++---------- web/templates/admin/edit_web.html | 23 +++++++++++------------ web/templates/admin/list_packages.html | 8 ++++---- web/templates/admin/list_web.html | 16 ++++++++-------- web/templates/user/list_web.html | 6 +++--- 6 files changed, 47 insertions(+), 48 deletions(-) diff --git a/web/templates/admin/add_package.html b/web/templates/admin/add_package.html index ec4e675c3..3a8dda480 100644 --- a/web/templates/admin/add_package.html +++ b/web/templates/admin/add_package.html @@ -72,11 +72,11 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?> - + - + - + - + @@ -170,7 +170,7 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?> @@ -410,4 +410,4 @@ }) }); - \ No newline at end of file + diff --git a/web/templates/admin/edit_package.html b/web/templates/admin/edit_package.html index 4480fa825..8a8e82cca 100644 --- a/web/templates/admin/edit_package.html +++ b/web/templates/admin/edit_package.html @@ -72,11 +72,11 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?> - + - - + + - + @@ -411,4 +411,4 @@ }) }); - \ No newline at end of file + diff --git a/web/templates/admin/edit_web.html b/web/templates/admin/edit_web.html index 51822ec78..5abd6af6c 100644 --- a/web/templates/admin/edit_web.html +++ b/web/templates/admin/edit_web.html @@ -141,11 +141,11 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?> - + - - + + @@ -217,7 +217,7 @@
- +
- +
- +
- +
" . strtoupper($_SESSION['WEB_BACKEND']). "" ;?> @@ -94,15 +94,15 @@ if ((!empty($v_backend_template)) && ( $value == $_POST['v_backend_template'])){ echo 'selected' ; } - echo ">".$value."\n"; + echo ">".htmlentities($value)."\n"; } - ?> + ?>
" .strtoupper($_SESSION['PROXY_SYSTEM']) . "" ;?> @@ -123,11 +123,11 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?>
" .strtoupper($_SESSION['DNS_SYSTEM']) . "" ;?> @@ -147,7 +147,7 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?>
" .strtoupper($_SESSION['WEB_BACKEND']) . "";?> @@ -94,14 +94,14 @@ if ((!empty($v_backend_template)) && ( $value == $_POST['v_backend_template'])){ echo ' selected' ; } - echo ">".$value."\n"; + echo ">".htmlentities($value)."\n"; } - ?> + ?>
" .strtoupper($_SESSION['PROXY_SYSTEM']) . "";?> @@ -121,11 +121,11 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?>
" .strtoupper($_SESSION['DNS_SYSTEM']) . "";?> @@ -145,7 +145,7 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?>
" . strtoupper($_SESSION['WEB_BACKEND']) . "";?> @@ -164,14 +164,14 @@ if ((empty($v_backend_template)) && ($value == 'default')){ echo ' selected' ; } - echo ">".$value."\n"; + echo ">".htmlentities($value)."\n"; } - ?> + ?>
@@ -200,7 +200,7 @@ } echo ">".htmlentities($value)."\n"; } - ?> + ?>
/ @@ -247,7 +247,7 @@
- +
- + @@ -138,7 +138,7 @@ sort-star="
:
- +
@@ -166,7 +166,7 @@ sort-star="
:
- +
@@ -193,7 +193,7 @@ sort-star="
:
- +
diff --git a/web/templates/admin/list_web.html b/web/templates/admin/list_web.html index 7f610b1a6..f8c8c290a 100644 --- a/web/templates/admin/list_web.html +++ b/web/templates/admin/list_web.html @@ -120,9 +120,9 @@ } ?> -
@@ -205,12 +205,12 @@ sort-name="" sort-bandwidth="" sort-dis
:
- +
From dc655613913674dbc2a2080c5e41d8cd76646eae Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 16:09:16 +0900 Subject: [PATCH 05/17] Correct some keys of $LANG --- web/inc/i18n/ar.php | 14 +++++++------- web/inc/i18n/bs.php | 14 +++++++------- web/inc/i18n/cn.php | 14 +++++++------- web/inc/i18n/cz.php | 16 ++++++++-------- web/inc/i18n/da.php | 14 +++++++------- web/inc/i18n/de.php | 17 +++++++++-------- web/inc/i18n/el.php | 16 ++++++++-------- web/inc/i18n/en.php | 16 ++++++++-------- web/inc/i18n/es.php | 16 ++++++++-------- web/inc/i18n/fa.php | 20 ++++++++++---------- web/inc/i18n/fi.php | 13 +++++++------ web/inc/i18n/fr.php | 14 +++++++------- web/inc/i18n/hu.php | 16 ++++++++-------- web/inc/i18n/id.php | 16 ++++++++-------- web/inc/i18n/it.php | 14 +++++++------- web/inc/i18n/ja.php | 12 ++++++------ web/inc/i18n/nl.php | 18 +++++++++--------- web/inc/i18n/no.php | 16 ++++++++-------- web/inc/i18n/pl.php | 11 ++++++----- web/inc/i18n/pt-BR.php | 10 +++++----- web/inc/i18n/pt.php | 10 +++++----- web/inc/i18n/ro.php | 12 ++++++------ web/inc/i18n/ru.php | 12 ++++++------ web/inc/i18n/se.php | 16 ++++++++-------- web/inc/i18n/tr.php | 12 ++++++------ web/inc/i18n/tw.php | 4 ++-- web/inc/i18n/ua.php | 14 +++++++------- web/inc/i18n/vi.php | 16 ++++++++-------- 28 files changed, 198 insertions(+), 195 deletions(-) diff --git a/web/inc/i18n/ar.php b/web/inc/i18n/ar.php index 9434680d6..153a70083 100644 --- a/web/inc/i18n/ar.php +++ b/web/inc/i18n/ar.php @@ -160,8 +160,8 @@ $LANG['ar'] = array( 'Web Aliases' => 'الأسماء البديلة', 'per domain' => 'لكل نطاق', 'DNS Domains' => 'نطاقات DNS', - 'DNS Domains' => 'نطاقات DNS', - 'DNS records' => 'سجلات DNS' , + 'DNS domains' => 'نطاقات DNS', + 'DNS records' => 'سجلات DNS', 'Name Servers' => 'خوادم الأسماء
Name Servers', 'Mail Domains' => 'نطاقات البريد', 'Mail Accounts' => 'حسابات البريد', @@ -577,19 +577,19 @@ $LANG['ar'] = array( 'Save File (in text editor)' => 'حفظ الملف(محرر النصوص)', 'Close Popup / Cancel' => 'أغلق القائمة المنبثقة/إلغاء', 'Move Cursor Up' => 'حرك المؤشر للأعلى', - 'Move Cursor Dow' => 'حرك المؤشر للأسفل', + 'Move Cursor Down' => 'حرك المؤشر للأسفل', 'Switch to Left Tab' => 'بدل إلى التبويب الأيسر', 'Switch to Right Tab' => 'بدل إلى التبويب الأيمن', 'Switch Tab' => 'تبديل التبويبات', - 'Go to the Top of File List' => 'إذهب إلى أعلى قائمة الملفات', + 'Go to the Top of the File List' => 'إذهب إلى أعلى قائمة الملفات', 'Go to the Last File' => 'إذهب إلى آخر ملف', - 'Open File/Enter Directory' => 'فتح ملف / مجلد', + 'Open File / Enter Directory' => 'فتح ملف / مجلد', 'Go to Parent Directory' => 'الذهاب للمجلد الأب', 'Select Current File' => 'حدد الملف الحالي', 'Select Bunch of Files' => 'حدد مجموعة ملفات', - 'Append File to the Current Selection' => 'أضف ملف إلى قائمة التحديد الحالي', + 'Add File to the Current Selection' => 'أضف ملف إلى قائمة التحديد الحالي', 'Select All Files' => 'حدد كل الملفات', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'الاختصارات الهمت من قبل ال GNU الرائعةMidnight Commander file manager', 'Minutes' => 'Minutes', diff --git a/web/inc/i18n/bs.php b/web/inc/i18n/bs.php index ceed309fa..338c4d4df 100644 --- a/web/inc/i18n/bs.php +++ b/web/inc/i18n/bs.php @@ -155,8 +155,8 @@ $LANG['bs'] = array( 'Web Aliases' => 'Web aliasi', 'per domain' => 'po domeni', 'DNS Domains' => 'DNS Domene', - 'DNS Domains' => 'DNS domene', - 'DNS records' => 'DNS zapisi' , + 'DNS domains' => 'DNS domene', + 'DNS records' => 'DNS zapisi', 'Name Servers' => 'Name Serveri', 'Mail Domains' => 'Mail domene', 'Mail Accounts' => 'Mail računi', @@ -581,19 +581,19 @@ $LANG['bs'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', diff --git a/web/inc/i18n/cn.php b/web/inc/i18n/cn.php index 1d82d9206..d64ff5971 100644 --- a/web/inc/i18n/cn.php +++ b/web/inc/i18n/cn.php @@ -159,9 +159,9 @@ $LANG['cn'] = array( 'SSL Domains' => 'SSL域名', 'Web Aliases' => '网站别名', 'per domain' => '每域名', - 'DNS domains' => 'DNS域名', 'DNS Domains' => 'DNS域名', - 'DNS records' => 'DNS记录' , + 'DNS domains' => 'DNS域名', + 'DNS records' => 'DNS记录', 'Name Servers' => 'DNS服务器', 'Mail Domains' => '邮箱域名', 'Mail Accounts' => '邮箱账户', @@ -588,19 +588,19 @@ $LANG['cn'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', diff --git a/web/inc/i18n/cz.php b/web/inc/i18n/cz.php index cca1f5a9c..f09c5456d 100644 --- a/web/inc/i18n/cz.php +++ b/web/inc/i18n/cz.php @@ -161,8 +161,8 @@ $LANG['cz'] = array( 'Web Aliases' => 'Webové aliasy', 'per domain' => 'podle domény', 'DNS Domains' => 'DNS Domény', - 'DNS Domains' => 'DNS domény', - 'DNS records' => 'DNS evidence' , + 'DNS domains' => 'DNS domény', + 'DNS records' => 'DNS evidence', 'Name Servers' => 'Name servery', 'Mail Domains' => 'Mailové domény', 'Mail Accounts' => 'Mailové účty', @@ -588,19 +588,19 @@ $LANG['cz'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -643,4 +643,4 @@ $LANG['cz'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/da.php b/web/inc/i18n/da.php index b7c6e6945..7e3197407 100644 --- a/web/inc/i18n/da.php +++ b/web/inc/i18n/da.php @@ -162,8 +162,8 @@ $LANG['da'] = array( 'Web Aliases' => 'Web Aliaser', 'per domain' => 'per domæne', 'DNS Domains' => 'DNS Domæner', - 'DNS Domains' => 'DNS Domæner', - 'DNS records' => 'DNS Records' , + 'DNS domains' => 'DNS domæner', + 'DNS records' => 'DNS records', 'Name Servers' => 'Name Servers', 'Mail Domains' => 'Mail Domæner', 'Mail Accounts' => 'Mail Accounts', @@ -490,7 +490,7 @@ $LANG['da'] = array( 'Hostname' => 'Hostname', 'Time Zone' => 'Tidszone', 'Default Language' => 'Standard Sprog', - 'FileSystem Disk Quota ' => 'FilSystem Disk Quota ', + 'FileSystem Disk Quota' => 'FilSystem Disk Quota ', 'Vesta Control Panel Plugins' => 'Vesta Kontrolpanel Plugins', 'preview' => 'preview', 'Reseller Role' => 'Forhandlerrolle', @@ -589,17 +589,17 @@ $LANG['da'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', diff --git a/web/inc/i18n/de.php b/web/inc/i18n/de.php index a8fb7f8b3..6fcc62d3a 100644 --- a/web/inc/i18n/de.php +++ b/web/inc/i18n/de.php @@ -53,7 +53,7 @@ $LANG['de'] = array( 'Save' => 'Speichern', 'Submit' => 'Übermitteln', - 'toggle all' => 'alle', // please make it as short as "toggle all" 'Alle wählen/abwählen', + 'toggle all' => 'alle', // please make it as short as "toggle all" 'Alle wählen/abwählen', 'apply to selected' => 'Auswählen', 'rebuild' => 'Erneuern', 'rebuild web' => 'Web erneuern', @@ -160,7 +160,8 @@ $LANG['de'] = array( 'Web Aliases' => 'Web Aliase', 'per domain' => 'pro Domain', 'DNS Domains' => 'DNS Domains', - 'DNS records' => 'DNS Einträge' , + 'DNS domains' => 'DNS domains', + 'DNS records' => 'DNS Einträge', 'Name Servers' => 'Name Server', 'Mail Domains' => 'Mail Domain', 'Mail Accounts' => 'Mail Konten', @@ -586,19 +587,19 @@ $LANG['de'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -641,4 +642,4 @@ $LANG['de'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/el.php b/web/inc/i18n/el.php index b53e51f53..1cf85cf03 100644 --- a/web/inc/i18n/el.php +++ b/web/inc/i18n/el.php @@ -161,8 +161,8 @@ $LANG['el'] = array( 'Web Aliases' => 'Ψευδώνυμα Web', 'per domain' => 'ανά domain', 'DNS Domains' => 'DNS Domains', - 'DNS Domains' => 'DNS Domains', - 'DNS records' => 'Εγγραφές DNS' , + 'DNS domains' => 'DNS domains', + 'DNS records' => 'Εγγραφές DNS', 'Name Servers' => 'Διακομιστές Ονομάτων', 'Mail Domains' => 'Mail Domains', 'Mail Accounts' => 'Λογαριασμοί Mail', @@ -588,19 +588,19 @@ $LANG['el'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -643,4 +643,4 @@ $LANG['el'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/en.php b/web/inc/i18n/en.php index 7e448ceec..70c899ef1 100644 --- a/web/inc/i18n/en.php +++ b/web/inc/i18n/en.php @@ -160,8 +160,8 @@ $LANG['en'] = array( 'Web Aliases' => 'Web Aliases', 'per domain' => 'per domain', 'DNS Domains' => 'DNS Domains', - 'DNS Domains' => 'DNS Domains', - 'DNS records' => 'DNS records' , + 'DNS domains' => 'DNS domains', + 'DNS records' => 'DNS records', 'Name Servers' => 'Name Servers', 'Mail Domains' => 'Mail Domains', 'Mail Accounts' => 'Mail Accounts', @@ -488,7 +488,7 @@ $LANG['en'] = array( 'Hostname' => 'Hostname', 'Time Zone' => 'Time Zone', 'Default Language' => 'Default Language', - 'FileSystem Disk Quota ' => 'FileSystem Disk Quota ', + 'FileSystem Disk Quota' => 'FileSystem Disk Quota', 'Vesta Control Panel Plugins' => 'Vesta Control Panel Plugins', 'preview' => 'preview', 'Reseller Role' => 'Reseller Role', @@ -588,17 +588,17 @@ $LANG['en'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', @@ -643,4 +643,4 @@ $LANG['en'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/es.php b/web/inc/i18n/es.php index b17abd0e2..54d77d210 100644 --- a/web/inc/i18n/es.php +++ b/web/inc/i18n/es.php @@ -160,8 +160,8 @@ $LANG['es'] = array( 'Web Aliases' => 'Alias Web', 'per domain' => 'por dominio', 'DNS Domains' => 'Dominios DNS', - 'DNS Domains' => 'Dominios DNS', - 'DNS records' => 'Registros DNS' , + 'DNS domains' => 'Dominios DNS', + 'DNS records' => 'Registros DNS', 'Name Servers' => 'Servidor de Nombre', 'Mail Domains' => 'Dominios de Correo', 'Mail Accounts' => 'Cuentas de Correo', @@ -589,19 +589,19 @@ $LANG['es'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -644,4 +644,4 @@ $LANG['es'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/fa.php b/web/inc/i18n/fa.php index 71c56dd0a..b02fa5c12 100644 --- a/web/inc/i18n/fa.php +++ b/web/inc/i18n/fa.php @@ -163,9 +163,9 @@ $LANG['fa'] = array( 'SSL Domains' => 'دامنه هاي SSL', 'Web Aliases' => 'نامهاي مستعار وب', 'per domain' => 'پيش دامنه', - 'DNS domains' => 'دامنه هاي DNS', 'DNS Domains' => 'دامنه هاي DNS', - 'DNS records' => 'پيشينه هاي DNS' , + 'DNS domains' => 'دامنه هاي DNS', + 'DNS records' => 'پيشينه هاي DNS', 'Name Servers' => 'نامهاي سرور', 'Mail Domains' => 'دامنه هاي ايميل', 'Mail Accounts' => 'حساب هاي ايميل', @@ -475,7 +475,7 @@ $LANG['fa'] = array( 'RESET_CODE_SENT' => 'رمز بازیابی گذرواژه به ایملتان ارسال گردید.
', 'MAIL_RESET_SUBJECT' => 'بازیابی گذرواژه در %s', 'PASSWORD_RESET_REQUEST' => "براي بازيابي گذرواژه كنترل پنلتان, لطفا از اين راهنما :\nhttps://%s/reset/?action=confirm&user=%s&code=%s\n\nاستفاده كنيد ويا از طريق, اين پيوند https://%s/reset/?action=code&user=%s با وارد كردن دستور:\n%s گذرواژه خود را بازيابي كنيد.\n\nدرصورتي كه شما درخواستبازيابي گذروایه نداده ايد، اين پيغام را ناديده بگيريد و عذر خواهي ما را پزيرا باشيد.\n\n--\nكنترل پنل وستا\n", - + 'Jan' => 'ژانويه', 'Feb' => 'فوريه', 'Mar' => 'مارس', @@ -493,7 +493,7 @@ $LANG['fa'] = array( 'Hostname' => 'نام میزبان', 'Time Zone' => 'زمان منطقه ای', 'Default Language' => 'زبان پیشفرض', - 'FileSystem Disk Quota ' => 'سهميه فايل سيستم ديسك ', + 'FileSystem Disk Quota' => 'سهميه فايل سيستم ديسك ', 'Vesta Control Panel Plugins' => 'افزونه هاي كنترل پنل وستا', 'preview' => 'پیش نمایش', 'Reseller Role' => 'نقش فروشنده', @@ -553,7 +553,7 @@ $LANG['fa'] = array( 'Create file' => 'ایجاد پرونده', 'Create directory' => 'ایجاد پوشه', - + 'Add New object' => 'افزودن شیء تازه', 'Save Form' => 'ذخیره فرم', 'Cancel saving form' => 'انصراف از ذخیره فرم', @@ -581,17 +581,17 @@ $LANG['fa'] = array( 'Save File (in text editor)' => 'ذخیره پرونده (در ویرایشگر متنی).', 'Close Popup / Cancel' => 'بستن پنجره / لغو', 'Move Cursor Up' => 'انتقال به بالاي مكان نما', - 'Move Cursor Dow' => 'انتقال به پايين مكان نما', + 'Move Cursor Down' => 'انتقال به پايين مكان نما', 'Switch to Left Tab' => 'رفتن به سربرگ چب', 'Switch to Right Tab' => 'رفتن به سربرگ راست', 'Switch Tab' => 'تغير سربرگ', - 'Go to the Top of File List' => 'رفتن به ابتداي فهرست پرونده ها', + 'Go to the Top of the File List' => 'رفتن به ابتداي فهرست پرونده ها', 'Go to the Last File' => 'رفتن به آخرين پرونده', - 'Open File/Enter Directory' => 'بازگردن پرونده/ورود به پوشه', + 'Open File / Enter Directory' => 'بازگردن پرونده/ورود به پوشه', 'Go to Parent Directory' => 'رفتن به پوشه بالايي', 'Select Current File' => 'انتخاب فايل جاري', 'Select Bunch of Files' => 'انتخاب دسته اي پرونده ها', - 'Append File to the Current Selection' => 'افزودن پرونده به قسمت انتخابي كنوني', + 'Add File to the Current Selection' => 'افزودن پرونده به قسمت انتخابي كنوني', 'Select All Files' => 'انتخاب تمامي پرونده ها', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'ميانبرها الهام گرفته از Midnight Commander مديريت فايل باشكوه GNU است.', @@ -607,4 +607,4 @@ $LANG['fa'] = array( 'Browse, copy, edit, view, and retrieve all of your web domain files using fully featured File Manager.' => 'مرور، كپي، ويرايش، نمايش، و بازيابي تمامي ژرونده هاي دامنه شما با يك مديريت كننده برجسته فايل.', 'This is a commercial module, you would need to purchace license key to enable it.' => 'اين ماژول تجاريست, شما بايد كليد مجوز براي فعال سازي سفارش دهيد.' -); \ No newline at end of file +); diff --git a/web/inc/i18n/fi.php b/web/inc/i18n/fi.php index 15592e776..861bfc23e 100644 --- a/web/inc/i18n/fi.php +++ b/web/inc/i18n/fi.php @@ -163,6 +163,7 @@ $LANG['fi'] = array( 'Web Aliases' => 'Web-aliakset', 'per domain' => 'per domaini', 'DNS Domains' => 'DNS-domainit', + 'DNS domains' => 'DNS-domainit', 'DNS records' => 'DNS-tietueet', 'Name Servers' => 'Nimipalvelimet', 'Mail Domains' => 'Sähköpostidomainit', @@ -594,19 +595,19 @@ $LANG['fi'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -649,4 +650,4 @@ $LANG['fi'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/fr.php b/web/inc/i18n/fr.php index e0586c633..4333a9546 100644 --- a/web/inc/i18n/fr.php +++ b/web/inc/i18n/fr.php @@ -160,8 +160,8 @@ $LANG['fr'] = array( 'Web Aliases' => 'Alias Web', 'per domain' => 'par domaine', 'DNS Domains' => 'Domaines DNS', - 'DNS Domains' => 'Domaines DNS', - 'DNS records' => 'Enregistrements DNS' , + 'DNS domains' => 'Domaines DNS', + 'DNS records' => 'Enregistrements DNS', 'Name Servers' => 'Nom des Serveurs', 'Mail Domains' => 'Domaines Mail', 'Mail Accounts' => 'Comptes Mail', @@ -576,17 +576,17 @@ $LANG['fr'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Fermer Popup / Annuler', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', @@ -631,4 +631,4 @@ $LANG['fr'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/hu.php b/web/inc/i18n/hu.php index 5ae967329..03c974e6c 100644 --- a/web/inc/i18n/hu.php +++ b/web/inc/i18n/hu.php @@ -164,8 +164,8 @@ $LANG['hu'] = array( 'Web Aliases' => 'Web alias', 'per domain' => 'domainenként', 'DNS Domains' => 'DNS domain', - 'DNS Domains' => 'DNS domain', - 'DNS records' => 'DNS record' , + 'DNS domains' => 'DNS domain', + 'DNS records' => 'DNS record', 'Name Servers' => 'Névszerverek', 'Mail Domains' => 'Mail domain', 'Mail Accounts' => 'Mail fiók', @@ -596,19 +596,19 @@ $LANG['hu'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -651,4 +651,4 @@ $LANG['hu'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/id.php b/web/inc/i18n/id.php index 3fddedffc..338cf9561 100644 --- a/web/inc/i18n/id.php +++ b/web/inc/i18n/id.php @@ -34,7 +34,7 @@ $LANG['id'] = array( 'Add DNS Domain' => 'Tambah Domain DNS ', 'Add DNS Record' => 'Tambah Record DNS', 'Add Mail Domain' => 'Tambah Domain Mail', - 'Add Mail Account' => 'Tambah Pengguna Mail' , + 'Add Mail Account' => 'Tambah Pengguna Mail', 'Add Database' => 'Tambah Basis Data', 'Add Cron Job' => 'Tambah Cron Job', 'Create Backup' => 'Buat Cadangan', @@ -163,8 +163,8 @@ $LANG['id'] = array( 'Web Aliases' => 'Web Aliases', 'per domain' => 'per domain', 'DNS Domains' => 'DNS Domains', - 'DNS Domains' => 'DNS Domains', - 'DNS records' => 'DNS records' , + 'DNS domains' => 'DNS domains', + 'DNS records' => 'DNS records', 'Name Servers' => 'Name Servers', 'Mail Domains' => 'Mail Domains', 'Mail Accounts' => 'Para Pengguna Mail', @@ -577,19 +577,19 @@ $LANG['id'] = array( 'Save File (in text editor)' => 'Simpan File (di text editor)', 'Close Popup / Cancel' => 'Tutup Popup / Batal', 'Move Cursor Up' => 'Pindahkan kursur keatas', - 'Move Cursor Dow' => 'Pindahkan kursur kebawah', + 'Move Cursor Down' => 'Pindahkan kursur kebawah', 'Switch to Left Tab' => 'Pindah ke tab kiri', 'Switch to Right Tab' => 'Pindah ke tab kanan', 'Switch Tab' => 'Pindah Tab', - 'Go to the Top of File List' => 'Pindah Ke atas dari Daftar File', + 'Go to the Top of the File List' => 'Pindah Ke atas dari Daftar File', 'Go to the Last File' => 'Pindah File terakhir', - 'Open File/Enter Directory' => 'Buka File/Masuk ke Directory', + 'Open File / Enter Directory' => 'Buka File/Masuk ke Directory', 'Go to Parent Directory' => 'Ke Parent Directory', 'Select Current File' => 'Pilih File ini', 'Select Bunch of Files' => 'Pilih Bunch of Files', - 'Append File to the Current Selection' => 'Tambahkan File di Seleksi ini', + 'Add File to the Current Selection' => 'Tambahkan File di Seleksi ini', 'Select All Files' => 'Pilih semua file', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'jalan pintas terinspirasi oleh magnificent GNU Midnight Commander file manager', 'Minutes' => 'Minutes', diff --git a/web/inc/i18n/it.php b/web/inc/i18n/it.php index 9b5da7ed9..655b2c1c8 100644 --- a/web/inc/i18n/it.php +++ b/web/inc/i18n/it.php @@ -161,7 +161,7 @@ $LANG['it'] = array( 'Web Aliases' => 'Alias Web', 'per domain' => 'per dominio', 'DNS Domains' => 'Zone DNS', - 'DNS Domains' => 'Zone DNS', + 'DNS domains' => 'Zone DNS', 'DNS records' => 'Record DNS', 'Name Servers' => 'Name Servers', 'Mail Domains' => 'Domini Mail', @@ -588,19 +588,19 @@ $LANG['it'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -643,4 +643,4 @@ $LANG['it'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/ja.php b/web/inc/i18n/ja.php index 1845b16a2..5d8d5605c 100644 --- a/web/inc/i18n/ja.php +++ b/web/inc/i18n/ja.php @@ -160,7 +160,7 @@ $LANG['ja'] = array( 'Web Aliases' => 'ウェブエイリアス', 'per domain' => 'ドメインごと', 'DNS Domains' => 'DNSドメイン', - 'DNS Domains' => 'DNSドメイン', + 'DNS domains' => 'DNSドメイン', 'DNS records' => 'DNSレコード', 'Name Servers' => 'ネームサーバー', 'Mail Domains' => 'メールドメイン', @@ -488,7 +488,7 @@ $LANG['ja'] = array( 'Hostname' => 'ホスト名', 'Time Zone' => 'タイムゾーン', 'Default Language' => '規定の言語', - 'FileSystem Disk Quota ' => 'ディスク割り当て量', + 'FileSystem Disk Quota' => 'ディスク割り当て量', 'Vesta Control Panel Plugins' => 'Vesta Control Panel プラグイン', 'preview' => 'プレビュー', 'Reseller Role' => 'リセラーの役割', @@ -587,17 +587,17 @@ $LANG['ja'] = array( 'Save File (in text editor)' => 'ファイルを保存する(テキストエディタ上で)', 'Close Popup / Cancel' => 'ポップアップを閉じる / キャンセルする', 'Move Cursor Up' => 'カーソルを上に移動する', - 'Move Cursor Dow' => 'カーソルを下に移動する', + 'Move Cursor Down' => 'カーソルを下に移動する', 'Switch to Left Tab' => '左のタブに切り替える', 'Switch to Right Tab' => '右のタブに切り替える', 'Switch Tab' => 'タブを切り替える', - 'Go to the Top of File List' => 'ファイルリストの先頭に移動する', + 'Go to the Top of the File List' => 'ファイルリストの先頭に移動する', 'Go to the Last File' => '最後のファイルに移動する', - 'Open File/Enter Directory' => 'ファイルを開く / ディレクトリに入る', + 'Open File / Enter Directory' => 'ファイルを開く / ディレクトリに入る', 'Go to Parent Directory' => '親ディレクトリに移動する', 'Select Current File' => 'ファイルを選択する', 'Select Bunch of Files' => 'ファイルを範囲選択する', - 'Append File to the Current Selection' => 'ファイルを追加選択する', + 'Add File to the Current Selection' => 'ファイルを追加選択する', 'Select All Files' => 'すべてのファイルを選択する', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', diff --git a/web/inc/i18n/nl.php b/web/inc/i18n/nl.php index cdf98d4e1..389d80601 100644 --- a/web/inc/i18n/nl.php +++ b/web/inc/i18n/nl.php @@ -160,9 +160,9 @@ $LANG['nl'] = array( 'SSL Domains' => 'SSL Domeinen', 'Web Aliases' => 'Web Aliassen', 'per domain' => 'per domein', - 'DNS Domains' => 'DNS domeinen', - 'DNS Domains' => 'DNS domeinen', - 'DNS records' => 'DNS records' , + 'DNS Domains' => 'DNS Domeinen', + 'DNS domains' => 'DNS domeinen', + 'DNS records' => 'DNS records', 'Name Servers' => 'Naamservers', 'Mail Domains' => 'E-mail Domeinen', 'Mail Accounts' => 'E-mail Accounts', @@ -588,19 +588,19 @@ $LANG['nl'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -643,4 +643,4 @@ $LANG['nl'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/no.php b/web/inc/i18n/no.php index f8bab47ca..471db7bcf 100644 --- a/web/inc/i18n/no.php +++ b/web/inc/i18n/no.php @@ -161,8 +161,8 @@ $LANG['no'] = array( 'Web Aliases' => 'Web Aliaser', 'per domain' => 'per domene', 'DNS Domains' => 'DNS Domene', - 'DNS Domains' => 'DNS Domene', - 'DNS records' => 'DNS oppslag' , + 'DNS domains' => 'DNS domene', + 'DNS records' => 'DNS oppslag', 'Name Servers' => 'Navnetjenere', 'Mail Domains' => 'E-post Domene', 'Mail Accounts' => 'E-post Kontoer', @@ -588,19 +588,19 @@ $LANG['no'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -643,4 +643,4 @@ $LANG['no'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/pl.php b/web/inc/i18n/pl.php index bef640306..ea5224fb5 100644 --- a/web/inc/i18n/pl.php +++ b/web/inc/i18n/pl.php @@ -160,6 +160,7 @@ $LANG['pl'] = array( 'Web Aliases' => 'Aliasy Web', 'per domain' => 'na domenę', 'DNS Domains' => 'Domeny DNS', + 'DNS domains' => 'Domeny DNS', 'DNS records' => 'Rekordy DNS', 'Name Servers' => 'Serwery nazw', 'Mail Domains' => 'Domeny email', @@ -487,7 +488,7 @@ $LANG['pl'] = array( 'Hostname' => 'Nazwa hosta', 'Time Zone' => 'Strefa czasowa', 'Default Language' => 'Domyślny język', - 'FileSystem Disk Quota ' => 'Quota systemu plików', + 'FileSystem Disk Quota' => 'Quota systemu plików', 'Vesta Control Panel Plugins' => 'Pluginy panelu Vesta', 'preview' => 'podląd', 'Reseller Role' => 'Rola Resellera', @@ -585,17 +586,17 @@ $LANG['pl'] = array( 'Save File (in text editor)' => 'Zapisz plik (w edytorze tekstu))', 'Close Popup / Cancel' => 'Zamknij okno / Anuluj', 'Move Cursor Up' => 'Przenieś kursor wyżej', - 'Move Cursor Dow' => 'Przenień kursor niżej', + 'Move Cursor Down' => 'Przenień kursor niżej', 'Switch to Left Tab' => 'Przełącz do zakładki po lewej', 'Switch to Right Tab' => 'Przełącz do zakładki po prawej', 'Switch Tab' => 'Przełącz zakładkę', - 'Go to the Top of File List' => 'Przejdź na górę listy plików', + 'Go to the Top of the File List' => 'Przejdź na górę listy plików', 'Go to the Last File' => 'Przejdź do ostatniego pliku', - 'Open File/Enter Directory' => 'Otwórz plik/folder', + 'Open File / Enter Directory' => 'Otwórz plik/folder', 'Go to Parent Directory' => 'Przejdź do katalogu nadrzędnego', 'Select Current File' => 'Wybierz aktywny plik', 'Select Bunch of Files' => 'Wybierz kilka plików', - 'Append File to the Current Selection' => 'Nadpisz plik do aktualnego zaznaczenia', + 'Add File to the Current Selection' => 'Nadpisz plik do aktualnego zaznaczenia', 'Select All Files' => 'Wybierz wszystkie pliki', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'skróty klawiszowe są zainspirowane wspaniałym managerem plików GNU Midnight Commander', diff --git a/web/inc/i18n/pt-BR.php b/web/inc/i18n/pt-BR.php index 2cf00bf1d..91710526e 100644 --- a/web/inc/i18n/pt-BR.php +++ b/web/inc/i18n/pt-BR.php @@ -160,7 +160,7 @@ $LANG['pt-BR'] = array( 'Web Aliases' => 'Apelidos Web', 'per domain' => 'por domínio', 'DNS Domains' => 'Domínios DNS', - 'DNS Domains' => 'Domínios DNS', + 'DNS domains' => 'Domínios DNS', 'DNS records' => 'Registros DNS', 'Name Servers' => 'Servidores de Nome', 'Mail Domains' => 'Domínios de Email', @@ -574,17 +574,17 @@ $LANG['pt-BR'] = array( 'Save File (in text editor)' => 'Salvar Arquivo (no editor de texto)', 'Close Popup / Cancel' => 'Fechar Popup / Cancelar', 'Move Cursor Up' => 'Mover o Cursor para Cima', - 'Move Cursor Dow' => 'Mover o Cursor para Baixo', + 'Move Cursor Down' => 'Mover o Cursor para Baixo', 'Switch to Left Tab' => 'Alternar para a Guia à Esquerda', 'Switch to Right Tab' => 'Alternar para a Guia à Direita', 'Switch Tab' => 'Alternar Guia', - 'Go to the Top of File List' => 'Ir para o Início da Lista de Arquivo', + 'Go to the Top of the File List' => 'Ir para o Início da Lista de Arquivo', 'Go to the Last File' => 'Ir para o último Arquivo', - 'Open File/Enter Directory' => 'Abrir Arquivo/Digitar Diretório', + 'Open File / Enter Directory' => 'Abrir Arquivo/Digitar Diretório', 'Go to Parent Directory' => 'Ir para o diretório principal', 'Select Current File' => 'Selecionar o Arquivo Atual', 'Select Bunch of Files' => 'Selecionar Vários Arquivos', - 'Append File to the Current Selection' => 'Acrescentar Arquivo à Seleção Atual', + 'Add File to the Current Selection' => 'Acrescentar Arquivo à Seleção Atual', 'Select All Files' => 'Selecionar Todos os Arquivos', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'atalhos são inspirados pela magnífica GNU Midnight Commander Gerenciador de Arquivos', diff --git a/web/inc/i18n/pt.php b/web/inc/i18n/pt.php index 6b2dedc83..e8f83083c 100644 --- a/web/inc/i18n/pt.php +++ b/web/inc/i18n/pt.php @@ -160,7 +160,7 @@ $LANG['pt'] = array( 'Web Aliases' => 'Apelidos Web', 'per domain' => 'por domínio', 'DNS Domains' => 'Domínios DNS', - 'DNS Domains' => 'Domínios DNS', + 'DNS domains' => 'Domínios DNS', 'DNS records' => 'Registros DNS', 'Name Servers' => 'Servidores de Nome', 'Mail Domains' => 'Domínios de Email', @@ -575,17 +575,17 @@ $LANG['pt'] = array( 'Save File (in text editor)' => 'Salvar Arquivo (no editor de texto)', 'Close Popup / Cancel' => 'Fechar Popup / Cancelar', 'Move Cursor Up' => 'Mover o Cursor para Cima', - 'Move Cursor Dow' => 'Mover o Cursor para Baixo', + 'Move Cursor Down' => 'Mover o Cursor para Baixo', 'Switch to Left Tab' => 'Alternar para a Guia à Esquerda', 'Switch to Right Tab' => 'Alternar para a Guia à Direita', 'Switch Tab' => 'Alternar Guia', - 'Go to the Top of File List' => 'Ir para o Início da Lista de Arquivo', + 'Go to the Top of the File List' => 'Ir para o Início da Lista de Arquivo', 'Go to the Last File' => 'Ir para o último Arquivo', - 'Open File/Enter Directory' => 'Abrir Arquivo/Digitar Diretório', + 'Open File / Enter Directory' => 'Abrir Arquivo/Digitar Diretório', 'Go to Parent Directory' => 'Ir para o diretório principal', 'Select Current File' => 'Selecionar o Arquivo Atual', 'Select Bunch of Files' => 'Selecionar Vários Arquivos', - 'Append File to the Current Selection' => 'Acrescentar Arquivo à Seleção Atual', + 'Add File to the Current Selection' => 'Acrescentar Arquivo à Seleção Atual', 'Select All Files' => 'Selecionar Todos os Arquivos', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'atalhos são inspirados pela magnífica GNU Midnight Commander Gerenciador de Arquivos', diff --git a/web/inc/i18n/ro.php b/web/inc/i18n/ro.php index b916a35e6..1b68236ee 100644 --- a/web/inc/i18n/ro.php +++ b/web/inc/i18n/ro.php @@ -161,7 +161,7 @@ $LANG['ro'] = array( 'Web Aliases' => 'Aliasuri web', 'per domain' => 'per domeniu', 'DNS Domains' => 'Domenii DNS', - 'DNS Domains' => 'Domenii DNS', + 'DNS domains' => 'Domenii DNS', 'DNS records' => 'Înregistrări DNS', 'Name Servers' => 'Servere NS', 'Mail Domains' => 'Domenii de poștă', @@ -587,19 +587,19 @@ $LANG['ro'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', diff --git a/web/inc/i18n/ru.php b/web/inc/i18n/ru.php index fe22d4f98..0451b3c0c 100644 --- a/web/inc/i18n/ru.php +++ b/web/inc/i18n/ru.php @@ -162,7 +162,7 @@ $LANG['ru'] = array( 'Web Aliases' => 'Веб алиасы', 'per domain' => 'на домен', 'DNS Domains' => 'DNS домены', - 'DNS Domains' => 'DNS домены', + 'DNS domains' => 'DNS домены', 'DNS records' => 'DNS записи', 'Name Servers' => 'Сервер имен', 'Mail Domains' => 'Почтовые домены', @@ -589,19 +589,19 @@ $LANG['ru'] = array( 'Save File (in text editor)' => 'Сохранить Файл (в рамках текстового редактора)', 'Close Popup / Cancel' => 'Закрыть Попап / Отмена', 'Move Cursor Up' => 'Переместить курсор вверх', - 'Move Cursor Dow' => 'Переместить курсор вниз', + 'Move Cursor Down' => 'Переместить курсор вниз', 'Switch to Left Tab' => 'Переключиться на таб слева', 'Switch to Right Tab' => 'Переключиться на таб справа', 'Switch Tab' => 'Переключить активный таб', - 'Go to the Top of File List' => 'Перейти к первому файлу', + 'Go to the Top of the File List' => 'Перейти к первому файлу', 'Go to the Last File' => 'Перейти к последнему файлу', - 'Open File/Enter Directory' => 'Открыть Файл/Папку', + 'Open File / Enter Directory' => 'Открыть Файл/Папку', 'Go to Parent Directory' => 'Перейти в родительскую директорию', 'Select Current File' => 'Выбрать активный файл', 'Select Bunch of Files' => 'Выбрать блок файлов', - 'Append File to the Current Selection' => 'Добавить файл к выбранным', + 'Add File to the Current Selection' => 'Добавить файл к выбранным', 'Select All Files' => 'Выбрать все файлы', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'горячие клавиши заимствованы из великолепного файл менеджера GNU Midnight Commander', 'Licence Key' => 'Лицензионный Ключ', diff --git a/web/inc/i18n/se.php b/web/inc/i18n/se.php index 3851df96c..289d993de 100644 --- a/web/inc/i18n/se.php +++ b/web/inc/i18n/se.php @@ -158,8 +158,8 @@ $LANG['se'] = array( 'Web Aliases' => 'Webb-alias', 'per domain' => 'per domän', 'DNS Domains' => 'DNS-domäner', - 'DNS Domains' => 'DNS-domäner', - 'DNS records' => 'DNS-poster' , + 'DNS domains' => 'DNS-domäner', + 'DNS records' => 'DNS-poster', 'Name Servers' => 'Namnservrar', 'Mail Domains' => 'Mail-domäner', 'Mail Accounts' => 'Mailkonto', @@ -585,19 +585,19 @@ $LANG['se'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -640,4 +640,4 @@ $LANG['se'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/tr.php b/web/inc/i18n/tr.php index 86e6238ba..682f71f7b 100644 --- a/web/inc/i18n/tr.php +++ b/web/inc/i18n/tr.php @@ -160,9 +160,9 @@ $LANG['tr'] = array( 'SSL Domains' => 'SSL Domainleri', 'Web Aliases' => 'Web Takma Adları (Aliases)', 'per domain' => 'domain başına', - 'DNS domains' => 'DNS Alan Adları', + 'DNS Domains' => 'DNS Alan Adları', 'DNS domains' => 'DNS alan adları', - 'DNS records' => 'DNS kayıtları' , + 'DNS records' => 'DNS kayıtları', 'Name Servers' => 'Alan Adı Sunucuları', 'Mail Domains' => 'Posta Alan Adları', 'Mail Accounts' => 'Posta Hesapları', @@ -588,17 +588,17 @@ $LANG['tr'] = array( 'Save File (in text editor)' => 'Dosyayı Kaydet (metin editöründe)', 'Close Popup / Cancel' => 'Popup Kapat / Vazgeç', 'Move Cursor Up' => 'İmleci Yukarı Hareket Ettir', - 'Move Cursor Dow' => 'İmleci Aşağı Hareket Ettir', + 'Move Cursor Down' => 'İmleci Aşağı Hareket Ettir', 'Switch to Left Tab' => 'Sol Sekmeye geçin', 'Switch to Right Tab' => 'Sağ Sekmeye geçin', 'Switch Tab' => 'Sekmeye geç', - 'Go to the Top of File List' => 'Dosya Listesinin Tepesine git', + 'Go to the Top of the File List' => 'Dosya Listesinin Tepesine git', 'Go to the Last File' => 'Son Dosyaya git', - 'Open File/Enter Directory' => 'Dosya Aç/Dizin Gir', + 'Open File / Enter Directory' => 'Dosya Aç/Dizin Gir', 'Go to Parent Directory' => 'Üst Dizine Git', 'Select Current File' => 'Şuanki Dosyayı Seç', 'Select Bunch of Files' => 'Dosya Demetini Seç', - 'Append File to the Current Selection' => 'Şuanki Seçime Dosya Ekle', + 'Add File to the Current Selection' => 'Şuanki Seçime Dosya Ekle', 'Select All Files' => 'Tüm Dosyaları Seç', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'kısayollar muhteşem dosya yöneticisi Midnight Commander arayüzünden esinlenilmiştir', diff --git a/web/inc/i18n/tw.php b/web/inc/i18n/tw.php index 83d429145..a434cd226 100644 --- a/web/inc/i18n/tw.php +++ b/web/inc/i18n/tw.php @@ -155,6 +155,7 @@ $LANG['tw'] = array( 'SSL Domains' => 'SSL網域', 'Web Aliases' => '網站次網域', 'per domain' => '(每網域)', + 'DNS Domains' => 'DNS網域', 'DNS domains' => 'DNS網域', 'DNS records' => 'DNS紀錄', 'Name Servers' => '域名服務器', @@ -306,7 +307,6 @@ $LANG['tw'] = array( 'web domains' => '網站網域', 'web aliases' => '網站次網域', 'dns records' => 'DNS記錄', - 'DNS Domains' => 'DNS網域', 'mail domains' => '信箱網域', 'mail accounts' => '信箱帳號', 'accounts' => '帳號', @@ -646,7 +646,7 @@ $LANG['tw'] = array( 'Select Bunch of Files' => '選取多個檔案', 'Add File to the Current Selection' => '增加檔案到已選取的列表', 'Select All Files' => '選取所有檔案', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => "快捷鍵是的想法是由 magnificent GNU Midnight Commander 檔案管理器 啟發的
繁體中文翻譯是由 Clark's 虛擬主機服務 總工程師 Clark Chen 提供。", 'Save' => '儲存', 'Licence Key' => '授權金鑰', diff --git a/web/inc/i18n/ua.php b/web/inc/i18n/ua.php index 34e579d90..14134c62e 100644 --- a/web/inc/i18n/ua.php +++ b/web/inc/i18n/ua.php @@ -162,7 +162,7 @@ $LANG['ua'] = array( 'Web Aliases' => 'Web аліаси', 'per domain' => 'на домен', 'DNS Domains' => 'DNS домени', - 'DNS Domains' => 'DNS домени', + 'DNS domains' => 'DNS домени', 'DNS records' => 'DNS записи', 'Name Servers' => 'Сервери імен', 'Mail Domains' => 'Поштові домени', @@ -589,19 +589,19 @@ $LANG['ua'] = array( 'Save File (in text editor)' => 'Save File (in text editor)', 'Close Popup / Cancel' => 'Close Popup / Cancel', 'Move Cursor Up' => 'Move Cursor Up', - 'Move Cursor Dow' => 'Move Cursor Dow', + 'Move Cursor Down' => 'Move Cursor Down', 'Switch to Left Tab' => 'Switch to Left Tab', 'Switch to Right Tab' => 'Switch to Right Tab', 'Switch Tab' => 'Switch Tab', - 'Go to the Top of File List' => 'Go to the Top of File List', + 'Go to the Top of the File List' => 'Go to the Top of the File List', 'Go to the Last File' => 'Go to the Last File', - 'Open File/Enter Directory' => 'Open File/Enter Directory', + 'Open File / Enter Directory' => 'Open File / Enter Directory', 'Go to Parent Directory' => 'Go to Parent Directory', 'Select Current File' => 'Select Current File', 'Select Bunch of Files' => 'Select Bunch of Files', - 'Append File to the Current Selection' => 'Append File to the Current Selection', + 'Add File to the Current Selection' => 'Add File to the Current Selection', 'Select All Files' => 'Select All Files', - 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => + 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', 'Licence Key' => 'Licence Key', @@ -644,4 +644,4 @@ $LANG['ua'] = array( 'Hour' => 'Hour', 'Minute' => 'Minute' -); \ No newline at end of file +); diff --git a/web/inc/i18n/vi.php b/web/inc/i18n/vi.php index 455005203..f651cb51b 100644 --- a/web/inc/i18n/vi.php +++ b/web/inc/i18n/vi.php @@ -158,8 +158,8 @@ $LANG['vi'] = array( 'Web Aliases' => 'Ánh xạ web', 'per domain' => 'mỗi tên miền', 'DNS Domains' => 'Miền DNS', - 'DNS Domains' => 'Miên DNS', - 'DNS records' => 'Bản ghi DNS' , + 'DNS domains' => 'Miên DNS', + 'DNS records' => 'Bản ghi DNS', 'Name Servers' => 'Name Servers', 'Mail Domains' => 'Miên Email', 'Mail Accounts' => 'Tài khoản email', @@ -479,7 +479,7 @@ $LANG['vi'] = array( 'Oct' => 'Tháng 10', 'Nov' => 'Tháng 11', 'Dec' => 'Tháng 12', - + 'Configuring Server' => 'Cài đặt máy chủ', 'Hostname' => 'Tên miền', 'Time Zone' => 'Múi giờ', @@ -493,7 +493,7 @@ $LANG['vi'] = array( 'Backup Migration Manager' => 'Quản lý tích hợp sao lưu', 'FileManager' => 'FileManager', 'show: CPU / MEM / NET / DISK' => 'hiển thị: CPU / MEM / NET / DISK', - + 'sort by' => 'xếp theo', 'Date' => 'Ngày', 'Starred' => 'Đánh dấu', @@ -583,17 +583,17 @@ $LANG['vi'] = array( 'Save File (in text editor)' => 'Lưu tệp (Trong trình chỉnh sửa văn bản)', 'Close Popup / Cancel' => 'Đóng Popup / Hủy', 'Move Cursor Up' => 'Di chuyển chuột lên', - 'Move Cursor Dow' => 'Di chuyển chuột xuống', + 'Move Cursor Down' => 'Di chuyển chuột xuống', 'Switch to Left Tab' => 'Chuyển sang tab trái', 'Switch to Right Tab' => 'Chuyển sang tab phải', 'Switch Tab' => 'Chuyển đổi Tab', - 'Go to the Top of File List' => 'Lên đầu danh sách tệp', + 'Go to the Top of the File List' => 'Lên đầu danh sách tệp', 'Go to the Last File' => 'Di chuyển đến tệp cuối cùng', - 'Open File/Enter Directory' => 'Mở tệp/Truy cập thư mục', + 'Open File / Enter Directory' => 'Mở tệp/Truy cập thư mục', 'Go to Parent Directory' => 'Về thư mục cha', 'Select Current File' => 'Chọn tệp hiện tại', 'Select Bunch of Files' => 'Chọn nhiều tệp', - 'Append File to the Current Selection' => 'Thêm tệp vào lựa chọn hiện tại', + 'Add File to the Current Selection' => 'Thêm tệp vào lựa chọn hiện tại', 'Select All Files' => 'Chọn tất cả các tệp', 'shortcuts are inspired by magnificent GNU Midnight Commander file manager' => 'shortcuts are inspired by magnificent GNU Midnight Commander file manager', From 869c54970e52bdc415fd234a961fd53345b97044 Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 16:15:52 +0900 Subject: [PATCH 06/17] Correct typo, replace 'LoadAverage' with 'Load Average' --- web/add/web/index.php | 4 ++-- web/edit/web/index.php | 2 +- web/templates/admin/add_firewall_banlist.html | 6 +++--- web/templates/admin/add_web.html | 8 ++++---- web/templates/admin/list_services.html | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/web/add/web/index.php b/web/add/web/index.php index 0be71f635..22cb7abb9 100644 --- a/web/add/web/index.php +++ b/web/add/web/index.php @@ -60,7 +60,7 @@ if (!empty($_POST['ok'])) { $aliases = implode(",",$aliases_arr); $aliases = escapeshellarg($aliases); - // Define proxy extentions + // Define proxy extensions $v_proxy_ext = $_POST['v_proxy_ext']; $proxy_ext = preg_replace("/\n/", ",", $v_proxy_ext); $proxy_ext = preg_replace("/\r/", ",", $proxy_ext); @@ -272,7 +272,7 @@ if (!empty($_POST['ok'])) { $fp = fopen($v_ftp_password, "w"); fwrite($fp, $v_ftp_user_data['v_ftp_password']."\n"); fclose($fp); - exec (VESTA_CMD."v-add-web-domain-ftp ".$user." ".$v_domain." ".$v_ftp_user." ".$v_ftp_password . " " . $v_ftp_path, $output, $return_var); + exec (VESTA_CMD."v-add-web-domain-ftp ".$user." ".$v_domain." ".$v_ftp_user." ".$v_ftp_password . " " . $v_ftp_path, $output, $return_var); check_return_code($return_var,$output); unset($output); unlink($v_ftp_password); diff --git a/web/edit/web/index.php b/web/edit/web/index.php index e28aa713a..339a68196 100644 --- a/web/edit/web/index.php +++ b/web/edit/web/index.php @@ -222,7 +222,7 @@ if (!empty($_POST['save'])) { $restart_proxy = 'yes'; } - // Change proxy template / Update extention list + // Change proxy template / Update extension list if ((!empty($_SESSION['PROXY_SYSTEM'])) && (!empty($v_proxy)) && (!empty($_POST['v_proxy'])) && (empty($_SESSION['error_msg']))) { $ext = preg_replace("/\n/", " ", $_POST['v_proxy_ext']); $ext = preg_replace("/,/", " ", $ext); diff --git a/web/templates/admin/add_firewall_banlist.html b/web/templates/admin/add_firewall_banlist.html index 9c09d8da6..43d41ba57 100644 --- a/web/templates/admin/add_firewall_banlist.html +++ b/web/templates/admin/add_firewall_banlist.html @@ -54,7 +54,7 @@
# () @@ -497,4 +497,3 @@ }); - diff --git a/web/templates/admin/list_packages.html b/web/templates/admin/list_packages.html index 26bdcf1c2..4efb8b6f6 100644 --- a/web/templates/admin/list_packages.html +++ b/web/templates/admin/list_packages.html @@ -110,7 +110,7 @@ sort-star="
:
- +
- +
@@ -222,7 +222,7 @@ sort-name="" sort-bandwidth="" sort-dis - +
@@ -251,7 +251,7 @@ sort-name="" sort-bandwidth="" sort-dis
- +
:
@@ -259,7 +259,7 @@ sort-name="" sort-bandwidth="" sort-dis
- +
:
diff --git a/web/templates/user/list_web.html b/web/templates/user/list_web.html index 9f08d0ab9..d90f9f0ac 100644 --- a/web/templates/user/list_web.html +++ b/web/templates/user/list_web.html @@ -122,8 +122,8 @@ -
@@ -197,7 +197,7 @@ sort-bandwidth="" sort-disk="
:
- +
@@ -72,7 +72,7 @@ @@ -95,4 +95,4 @@
- +
- () + ()
-
\ No newline at end of file +
diff --git a/web/templates/admin/add_web.html b/web/templates/admin/add_web.html index 2a9170291..ee489c423 100644 --- a/web/templates/admin/add_web.html +++ b/web/templates/admin/add_web.html @@ -142,7 +142,7 @@ - + @@ -153,7 +153,7 @@ @@ -164,7 +164,7 @@
- +
- + / @@ -242,7 +242,7 @@ } echo ">" . htmlentities(__($value)) . "\n"; } - ?> + ?> diff --git a/web/templates/admin/list_services.html b/web/templates/admin/list_services.html index aa85671c7..28cd8ba3f 100644 --- a/web/templates/admin/list_services.html +++ b/web/templates/admin/list_services.html @@ -91,7 +91,7 @@
-
:
+
:
From 7be9a01b8dd90cf542fc9727a2d85fd1399adb3c Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 16:26:19 +0900 Subject: [PATCH 07/17] Translate [Back] buttons, 'delete' links, 'Add one more Name Server' links --- web/templates/admin/add_package.html | 18 +++++++++--------- web/templates/admin/edit_package.html | 18 +++++++++--------- web/templates/admin/list_backup_detail.html | 2 +- .../admin/list_backup_exclusions.html | 2 +- web/templates/admin/list_dns_rec.html | 2 +- web/templates/admin/list_firewall_banlist.html | 2 +- web/templates/admin/list_mail_acc.html | 2 +- web/templates/user/list_dns_rec.html | 2 +- web/templates/user/list_mail_acc.html | 2 +- 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/web/templates/admin/add_package.html b/web/templates/admin/add_package.html index 3a8dda480..bcf9aaac1 100644 --- a/web/templates/admin/add_package.html +++ b/web/templates/admin/add_package.html @@ -302,20 +302,20 @@ delete + delete + - delete + '.__('delete').' '; @@ -323,7 +323,7 @@ echo ' - delete + '.__('delete').' '; @@ -331,7 +331,7 @@ echo ' - delete + '.__('delete').' '; @@ -339,7 +339,7 @@ echo ' - delete + '.__('delete').' '; @@ -347,7 +347,7 @@ echo ' - delete + '.__('delete').' '; @@ -355,13 +355,13 @@ echo ' - delete + '.__('delete').' '; ?> > - Add one more Name Server + diff --git a/web/templates/admin/edit_package.html b/web/templates/admin/edit_package.html index 8a8e82cca..9767e0fc4 100644 --- a/web/templates/admin/edit_package.html +++ b/web/templates/admin/edit_package.html @@ -300,13 +300,13 @@ delete + delete + @@ -314,7 +314,7 @@ echo ' - delete + '.__('delete').' '; @@ -322,7 +322,7 @@ echo ' - delete + '.__('delete').' '; @@ -330,7 +330,7 @@ echo ' - delete + '.__('delete').' '; @@ -338,7 +338,7 @@ echo ' - delete + '.__('delete').' '; @@ -346,7 +346,7 @@ echo ' - delete + '.__('delete').' '; @@ -354,14 +354,14 @@ echo ' - delete + '.__('delete').' '; ?> > - Add one more Name Server + diff --git a/web/templates/admin/list_backup_detail.html b/web/templates/admin/list_backup_detail.html index 2c721ba7a..65449b0b7 100644 --- a/web/templates/admin/list_backup_detail.html +++ b/web/templates/admin/list_backup_detail.html @@ -393,7 +393,7 @@ ?>
- back +
diff --git a/web/templates/admin/list_backup_exclusions.html b/web/templates/admin/list_backup_exclusions.html index d9de37639..1f0998af2 100644 --- a/web/templates/admin/list_backup_exclusions.html +++ b/web/templates/admin/list_backup_exclusions.html @@ -111,7 +111,7 @@
- back +
diff --git a/web/templates/admin/list_dns_rec.html b/web/templates/admin/list_dns_rec.html index e4b55877b..0dd32b599 100644 --- a/web/templates/admin/list_dns_rec.html +++ b/web/templates/admin/list_dns_rec.html @@ -139,7 +139,7 @@ v_unit_id="" v_section="dns_rec"> ?>
- back +
diff --git a/web/templates/admin/list_firewall_banlist.html b/web/templates/admin/list_firewall_banlist.html index ae6f835d6..52e315987 100644 --- a/web/templates/admin/list_firewall_banlist.html +++ b/web/templates/admin/list_firewall_banlist.html @@ -118,7 +118,7 @@ ?>
- back +
diff --git a/web/templates/admin/list_mail_acc.html b/web/templates/admin/list_mail_acc.html index 9607d127e..2d133d6bf 100644 --- a/web/templates/admin/list_mail_acc.html +++ b/web/templates/admin/list_mail_acc.html @@ -216,7 +216,7 @@ sort-star="
- back +
diff --git a/web/templates/user/list_dns_rec.html b/web/templates/user/list_dns_rec.html index 2cf428a4b..5a811fdeb 100644 --- a/web/templates/user/list_dns_rec.html +++ b/web/templates/user/list_dns_rec.html @@ -136,7 +136,7 @@ ?>
- back +
diff --git a/web/templates/user/list_mail_acc.html b/web/templates/user/list_mail_acc.html index 70bc38dc0..6439803fa 100644 --- a/web/templates/user/list_mail_acc.html +++ b/web/templates/user/list_mail_acc.html @@ -204,7 +204,7 @@ sort-star="
- back +
From e76c3fd808e68266a702f1e8dc5d2b62082575f7 Mon Sep 17 00:00:00 2001 From: Flat Date: Sun, 3 Jul 2016 16:37:10 +0900 Subject: [PATCH 08/17] Translate page titles, dialog captions, 'Shortcuts', firewall actions & protocols, and list2ban chains I think protocols and chains shouldn't be translated --- web/templates/admin/add_firewall.html | 16 ++++++++-------- web/templates/admin/add_firewall_banlist.html | 14 +++++++------- web/templates/admin/edit_firewall.html | 16 ++++++++-------- web/templates/admin/list_firewall.html | 12 ++++++------ web/templates/admin/list_firewall_banlist.html | 4 ++-- web/templates/admin/list_server_info.html | 4 ++-- web/templates/footer.html | 6 +++--- web/templates/header.html | 2 +- 8 files changed, 37 insertions(+), 37 deletions(-) diff --git a/web/templates/admin/add_firewall.html b/web/templates/admin/add_firewall.html index de3d63723..27f478393 100644 --- a/web/templates/admin/add_firewall.html +++ b/web/templates/admin/add_firewall.html @@ -54,28 +54,28 @@ @@ -128,4 +128,4 @@
- +
- +
- \ No newline at end of file + diff --git a/web/templates/admin/add_firewall_banlist.html b/web/templates/admin/add_firewall_banlist.html index 43d41ba57..55e8b7a09 100644 --- a/web/templates/admin/add_firewall_banlist.html +++ b/web/templates/admin/add_firewall_banlist.html @@ -60,13 +60,13 @@ diff --git a/web/templates/admin/edit_firewall.html b/web/templates/admin/edit_firewall.html index 60a13e164..c6f42279a 100644 --- a/web/templates/admin/edit_firewall.html +++ b/web/templates/admin/edit_firewall.html @@ -60,28 +60,28 @@ @@ -130,4 +130,4 @@
- +
- +
- \ No newline at end of file + diff --git a/web/templates/admin/list_firewall.html b/web/templates/admin/list_firewall.html index 73990d58d..1a02a9360 100644 --- a/web/templates/admin/list_firewall.html +++ b/web/templates/admin/list_firewall.html @@ -72,8 +72,8 @@ } ?> -
@@ -121,11 +121,11 @@ sort-ip="" sort-comment="
-
-
+
+
-
-
+
+
diff --git a/web/templates/admin/list_firewall_banlist.html b/web/templates/admin/list_firewall_banlist.html index 52e315987..94fab3dbf 100644 --- a/web/templates/admin/list_firewall_banlist.html +++ b/web/templates/admin/list_firewall_banlist.html @@ -47,7 +47,7 @@ foreach ($data as $key => $value) { ++$i; list($ip,$chain) = explode(":",$key); - + ?>
@@ -83,7 +83,7 @@
 
-
+
diff --git a/web/templates/admin/list_server_info.html b/web/templates/admin/list_server_info.html index 94d5e833d..53dc2185b 100644 --- a/web/templates/admin/list_server_info.html +++ b/web/templates/admin/list_server_info.html @@ -3,7 +3,7 @@ - Vesta - <?=__($TAB)?> + Vesta - <?=__($TAB)?> @@ -41,4 +41,4 @@
.
-
\ No newline at end of file
+  
diff --git a/web/templates/footer.html b/web/templates/footer.html
index b67ab41b8..96526fa1b 100644
--- a/web/templates/footer.html
+++ b/web/templates/footer.html
@@ -8,16 +8,16 @@
     
     
 
-    
 
-