From 47c06d674384630bf2de418257758cb6f05f30b4 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 24 Apr 2021 16:17:30 +0200 Subject: [PATCH] Update exchanger --- Docs/Dev/en/SUMMARY.md | 0 Docs/Dev/en/structure.md | 0 Interfaces/OMS/Exporter.php | 20 ++++++---- Theme/Backend/Lang/Navigation.ar.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.cs.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.da.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.de.lang.php | 2 +- Theme/Backend/Lang/Navigation.el.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.en.lang.php | 2 +- Theme/Backend/Lang/Navigation.es.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.fi.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.fr.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.hu.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.it.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.ja.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.ko.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.no.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.pl.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.pt.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.ru.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.sv.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.th.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.tr.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.uk.lang.php | 20 ++++++++++ Theme/Backend/Lang/Navigation.zh.lang.php | 20 ++++++++++ Theme/Backend/Lang/ar.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/cs.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/da.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/de.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/el.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/en.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/es.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/fi.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/fr.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/hu.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/it.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/ja.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/ko.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/no.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/pl.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/pt.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/ru.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/sv.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/th.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/tr.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/uk.lang.php | 46 +++++++++++------------ Theme/Backend/Lang/zh.lang.php | 46 +++++++++++------------ 47 files changed, 921 insertions(+), 515 deletions(-) mode change 100644 => 100755 Docs/Dev/en/SUMMARY.md mode change 100644 => 100755 Docs/Dev/en/structure.md create mode 100644 Theme/Backend/Lang/Navigation.ar.lang.php create mode 100644 Theme/Backend/Lang/Navigation.cs.lang.php create mode 100644 Theme/Backend/Lang/Navigation.da.lang.php mode change 100755 => 100644 Theme/Backend/Lang/Navigation.de.lang.php create mode 100644 Theme/Backend/Lang/Navigation.el.lang.php mode change 100755 => 100644 Theme/Backend/Lang/Navigation.en.lang.php create mode 100644 Theme/Backend/Lang/Navigation.es.lang.php create mode 100644 Theme/Backend/Lang/Navigation.fi.lang.php create mode 100644 Theme/Backend/Lang/Navigation.fr.lang.php create mode 100644 Theme/Backend/Lang/Navigation.hu.lang.php create mode 100644 Theme/Backend/Lang/Navigation.it.lang.php create mode 100644 Theme/Backend/Lang/Navigation.ja.lang.php create mode 100644 Theme/Backend/Lang/Navigation.ko.lang.php create mode 100644 Theme/Backend/Lang/Navigation.no.lang.php create mode 100644 Theme/Backend/Lang/Navigation.pl.lang.php create mode 100644 Theme/Backend/Lang/Navigation.pt.lang.php create mode 100644 Theme/Backend/Lang/Navigation.ru.lang.php create mode 100644 Theme/Backend/Lang/Navigation.sv.lang.php create mode 100644 Theme/Backend/Lang/Navigation.th.lang.php create mode 100644 Theme/Backend/Lang/Navigation.tr.lang.php create mode 100644 Theme/Backend/Lang/Navigation.uk.lang.php create mode 100644 Theme/Backend/Lang/Navigation.zh.lang.php diff --git a/Docs/Dev/en/SUMMARY.md b/Docs/Dev/en/SUMMARY.md old mode 100644 new mode 100755 diff --git a/Docs/Dev/en/structure.md b/Docs/Dev/en/structure.md old mode 100644 new mode 100755 diff --git a/Interfaces/OMS/Exporter.php b/Interfaces/OMS/Exporter.php index d3819ae..8bb5a89 100755 --- a/Interfaces/OMS/Exporter.php +++ b/Interfaces/OMS/Exporter.php @@ -117,9 +117,13 @@ final class Exporter extends ExporterAbstract continue; } + $module = \trim($module, '/'); + $themes = \scandir($themePath); foreach ($themes as $theme) { + $theme = \trim($theme, '/'); $langPath = $themePath . $theme . '/Lang/'; + if (!\is_dir($themePath . $theme) || $theme === '.' || $theme === '..' || !\is_dir($langPath) ) { @@ -152,11 +156,11 @@ final class Exporter extends ExporterAbstract if ($len === 3) { foreach ($array as $key => $value) { - $languageArray[\trim($module, '/')][\trim($theme, '/')][''][$key][$components[0]] = $value; + $languageArray[$module][$theme][''][$key][$components[0]] = $value; } } elseif ($len === 4) { foreach ($array as $key => $value) { - $languageArray[\trim($module, '/')][\trim($theme, '/')][$components[0]][$key][$components[1]] = $value; + $languageArray[$module][$theme][$components[0]][$key][$components[1]] = $value; } } } @@ -170,6 +174,8 @@ final class Exporter extends ExporterAbstract continue; } + $theme = \trim($theme, '/'); + $iterator = new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator($themePath . $theme . '/', \RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::SELF_FIRST @@ -182,12 +188,12 @@ final class Exporter extends ExporterAbstract $template = \file_get_contents($item->getPathname()); $keys = []; - \preg_match_all('/(\$this\->getHtml\(\')([a-zA-Z:]+)(\'\))/', $template, $keys, \PREG_PATTERN_ORDER); + \preg_match_all('/(\$this\->getHtml\(\')([0-9a-zA-Z:]+)(\'\))/', $template, $keys, \PREG_PATTERN_ORDER); foreach ($keys[2] ?? [] as $key) { - $tplKeys[\trim($module, '/')][\trim($theme, '/')][''][$key]['en'] = ''; - if (!isset($languageArray[''][\trim($module, '/')][\trim($theme, '/')][$key])) { - $languageArray[\trim($module, '/')][\trim($theme, '/')][''][$key]['en'] = ''; + if (!isset($languageArray[''][$module][$theme][$key])) { + $tplKeys[$module][$theme][''][$key]['en'] = ''; + $languageArray[$module][$theme][''][$key]['en'] = ''; } } } @@ -202,7 +208,7 @@ final class Exporter extends ExporterAbstract foreach ($files as $file => $keys) { foreach ($keys as $key => $value) { $content .= "\n\"" . $module . '";"' . $theme . '";"' . $file . '";"'; - $content .= (!isset($tplKeys[$module][$theme]['']) ? '*' : '') . $key . '"'; + $content .= ($file === '' && isset($tplKeys[$module][$theme][''][$key]) ? '*' : '') . $key . '"'; foreach ($supportedLanguages as $language) { $content .= ';"' . ($value[$language] ?? '') . '"'; diff --git a/Theme/Backend/Lang/Navigation.ar.lang.php b/Theme/Backend/Lang/Navigation.ar.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.ar.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.cs.lang.php b/Theme/Backend/Lang/Navigation.cs.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.cs.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.da.lang.php b/Theme/Backend/Lang/Navigation.da.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.da.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.de.lang.php b/Theme/Backend/Lang/Navigation.de.lang.php old mode 100755 new mode 100644 index 3089d9f..924a1bf --- a/Theme/Backend/Lang/Navigation.de.lang.php +++ b/Theme/Backend/Lang/Navigation.de.lang.php @@ -4,7 +4,7 @@ * * PHP Version 8.0 * - * @package Modules\Exchange + * @package Modules\Localization * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Theme/Backend/Lang/Navigation.el.lang.php b/Theme/Backend/Lang/Navigation.el.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.el.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php old mode 100755 new mode 100644 index 3089d9f..924a1bf --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -4,7 +4,7 @@ * * PHP Version 8.0 * - * @package Modules\Exchange + * @package Modules\Localization * @copyright Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 diff --git a/Theme/Backend/Lang/Navigation.es.lang.php b/Theme/Backend/Lang/Navigation.es.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.es.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.fi.lang.php b/Theme/Backend/Lang/Navigation.fi.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.fi.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.fr.lang.php b/Theme/Backend/Lang/Navigation.fr.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.fr.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.hu.lang.php b/Theme/Backend/Lang/Navigation.hu.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.hu.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.it.lang.php b/Theme/Backend/Lang/Navigation.it.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.it.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.ja.lang.php b/Theme/Backend/Lang/Navigation.ja.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.ja.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.ko.lang.php b/Theme/Backend/Lang/Navigation.ko.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.ko.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.no.lang.php b/Theme/Backend/Lang/Navigation.no.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.no.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.pl.lang.php b/Theme/Backend/Lang/Navigation.pl.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.pl.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.pt.lang.php b/Theme/Backend/Lang/Navigation.pt.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.pt.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.ru.lang.php b/Theme/Backend/Lang/Navigation.ru.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.ru.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.sv.lang.php b/Theme/Backend/Lang/Navigation.sv.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.sv.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.th.lang.php b/Theme/Backend/Lang/Navigation.th.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.th.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.tr.lang.php b/Theme/Backend/Lang/Navigation.tr.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.tr.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.uk.lang.php b/Theme/Backend/Lang/Navigation.uk.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.uk.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/Navigation.zh.lang.php b/Theme/Backend/Lang/Navigation.zh.lang.php new file mode 100644 index 0000000..e6e7b2e --- /dev/null +++ b/Theme/Backend/Lang/Navigation.zh.lang.php @@ -0,0 +1,20 @@ + [ + 'Dashboard' => '', + 'Exchange' => '', + 'Export' => '', + 'Import' => '', +]]; diff --git a/Theme/Backend/Lang/ar.lang.php b/Theme/Backend/Lang/ar.lang.php index fc05a33..c5ef73a 100644 --- a/Theme/Backend/Lang/ar.lang.php +++ b/Theme/Backend/Lang/ar.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'مخلوق', - 'CreatedAt' => 'أنشئت في', - 'CreatedBy' => 'انشأ من قبل', - 'Creator' => 'المنشئ', - 'Database' => 'قاعدة البيانات', - 'End' => 'نهاية', - 'Exchange' => 'تبادل', - 'Export' => 'يصدر', - 'Exports' => 'صادرات', - 'File' => 'ملف', - 'Host' => 'مضيف', - 'Import' => 'يستورد', - 'Imports' => 'واردات', - 'Login' => 'تسجيل الدخول', - 'Logs' => 'السجلات', - 'Options' => 'خيارات', - 'Password' => 'كلمة المرور', - 'Port' => 'ميناء', - 'Start' => 'بداية', - 'Subtype' => 'النوع الفرعي', - 'Title' => 'لقب', - 'Type' => 'اكتب', - 'Website' => 'موقع الكتروني', + 'Created' => 'مخلوق', + 'CreatedAt' => 'أنشئت في', + 'CreatedBy' => 'انشأ من قبل', + 'Creator' => 'المنشئ', + 'Database' => 'قاعدة البيانات', + 'End' => 'نهاية', + 'Exchange' => 'تبادل', + 'Export' => 'يصدر', + 'Exports' => 'صادرات', + 'File' => 'ملف', + 'Host' => 'مضيف', + 'Import' => 'يستورد', + 'Imports' => 'واردات', + 'Login' => 'تسجيل الدخول', + 'Logs' => 'السجلات', + 'Options' => 'خيارات', + 'Password' => 'كلمة المرور', + 'Port' => 'ميناء', + 'Start' => 'بداية', + 'Subtype' => 'النوع الفرعي', + 'Title' => 'لقب', + 'Type' => 'اكتب', + 'Website' => 'موقع الكتروني', ]]; diff --git a/Theme/Backend/Lang/cs.lang.php b/Theme/Backend/Lang/cs.lang.php index 5477492..a2b2956 100644 --- a/Theme/Backend/Lang/cs.lang.php +++ b/Theme/Backend/Lang/cs.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Vytvořeno', - 'CreatedAt' => 'vytvořen na', - 'CreatedBy' => 'Vytvořil', - 'Creator' => 'Tvůrce', - 'Database' => 'Databáze', - 'End' => 'Konec', - 'Exchange' => 'Výměna', - 'Export' => 'Vývozní', - 'Exports' => 'vývoz', - 'File' => 'Soubor', - 'Host' => 'Hostitel', - 'Import' => 'Import', - 'Imports' => 'dovoz', - 'Login' => 'Přihlásit se', - 'Logs' => 'Protokoly', - 'Options' => 'možnosti', - 'Password' => 'Heslo', - 'Port' => 'Přístav', - 'Start' => 'Start', - 'Subtype' => 'podtyp', - 'Title' => 'Titul', - 'Type' => 'Typ', - 'Website' => 'webová stránka', + 'Created' => 'Vytvořeno', + 'CreatedAt' => 'vytvořen na', + 'CreatedBy' => 'Vytvořil', + 'Creator' => 'Tvůrce', + 'Database' => 'Databáze', + 'End' => 'Konec', + 'Exchange' => 'Výměna', + 'Export' => 'Vývozní', + 'Exports' => 'vývoz', + 'File' => 'Soubor', + 'Host' => 'Hostitel', + 'Import' => 'Import', + 'Imports' => 'dovoz', + 'Login' => 'Přihlásit se', + 'Logs' => 'Protokoly', + 'Options' => 'možnosti', + 'Password' => 'Heslo', + 'Port' => 'Přístav', + 'Start' => 'Start', + 'Subtype' => 'podtyp', + 'Title' => 'Titul', + 'Type' => 'Typ', + 'Website' => 'webová stránka', ]]; diff --git a/Theme/Backend/Lang/da.lang.php b/Theme/Backend/Lang/da.lang.php index 60a3ba5..dd29f9a 100644 --- a/Theme/Backend/Lang/da.lang.php +++ b/Theme/Backend/Lang/da.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'lavet', - 'CreatedAt' => 'lavet på', - 'CreatedBy' => 'Lavet af', - 'Creator' => 'Skaberen', - 'Database' => 'Database', - 'End' => 'Ende', - 'Exchange' => 'Udveksling', - 'Export' => 'Eksport', - 'Exports' => 'Eksport', - 'File' => 'Fil', - 'Host' => 'Vært', - 'Import' => 'Importere', - 'Imports' => 'Import', - 'Login' => 'Log på', - 'Logs' => 'Logs', - 'Options' => 'Muligheder', - 'Password' => 'Adgangskode', - 'Port' => 'Havn', - 'Start' => 'Start', - 'Subtype' => 'undertype', - 'Title' => 'Titel', - 'Type' => 'Type', - 'Website' => 'Internet side', + 'Created' => 'lavet', + 'CreatedAt' => 'lavet på', + 'CreatedBy' => 'Lavet af', + 'Creator' => 'Skaberen', + 'Database' => 'Database', + 'End' => 'Ende', + 'Exchange' => 'Udveksling', + 'Export' => 'Eksport', + 'Exports' => 'Eksport', + 'File' => 'Fil', + 'Host' => 'Vært', + 'Import' => 'Importere', + 'Imports' => 'Import', + 'Login' => 'Log på', + 'Logs' => 'Logs', + 'Options' => 'Muligheder', + 'Password' => 'Adgangskode', + 'Port' => 'Havn', + 'Start' => 'Start', + 'Subtype' => 'undertype', + 'Title' => 'Titel', + 'Type' => 'Type', + 'Website' => 'Internet side', ]]; diff --git a/Theme/Backend/Lang/de.lang.php b/Theme/Backend/Lang/de.lang.php index cc9cc32..33d3162 100644 --- a/Theme/Backend/Lang/de.lang.php +++ b/Theme/Backend/Lang/de.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => '', - 'CreatedAt' => '', - 'CreatedBy' => '', - 'Creator' => '', - 'Database' => 'Datenbank', - 'End' => 'Ende', - 'Exchange' => 'Exchange', - 'Export' => 'Export', - 'Exports' => 'Exporte', - 'File' => 'Dateien', - 'Host' => 'Host', - 'Import' => 'Import', - 'Imports' => 'Importe', - 'Login' => 'Login', - 'Logs' => '', - 'Options' => 'Optionen', - 'Password' => 'Passwort', - 'Port' => 'Port', - 'Start' => 'Start', - 'Subtype' => '', - 'Title' => 'Titel', - 'Type' => '', - 'Website' => 'Webseite', + 'Created' => '', + 'CreatedAt' => '', + 'CreatedBy' => '', + 'Creator' => '', + 'Database' => 'Datenbank', + 'End' => 'Ende', + 'Exchange' => 'Exchange', + 'Export' => 'Export', + 'Exports' => 'Exporte', + 'File' => 'Dateien', + 'Host' => 'Host', + 'Import' => 'Import', + 'Imports' => 'Importe', + 'Login' => 'Login', + 'Logs' => '', + 'Options' => 'Optionen', + 'Password' => 'Passwort', + 'Port' => 'Port', + 'Start' => 'Start', + 'Subtype' => '', + 'Title' => 'Titel', + 'Type' => '', + 'Website' => 'Webseite', ]]; diff --git a/Theme/Backend/Lang/el.lang.php b/Theme/Backend/Lang/el.lang.php index 6b13c05..424ab63 100644 --- a/Theme/Backend/Lang/el.lang.php +++ b/Theme/Backend/Lang/el.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'δημιουργήθηκε', - 'CreatedAt' => 'δημιουργήθηκε στις', - 'CreatedBy' => 'Δημιουργήθηκε από', - 'Creator' => 'Δημιουργός', - 'Database' => 'Βάση δεδομένων', - 'End' => 'Τέλος', - 'Exchange' => 'Ανταλλαγή', - 'Export' => 'Εξαγωγή', - 'Exports' => 'εξαγωγές', - 'File' => 'Αρχείο', - 'Host' => 'Πλήθος', - 'Import' => 'Εισαγωγή', - 'Imports' => 'εισαγωγές', - 'Login' => 'Σύνδεση', - 'Logs' => 'logs', - 'Options' => 'επιλογές', - 'Password' => 'Κωδικός πρόσβασης', - 'Port' => 'Λιμάνι', - 'Start' => 'Αρχή', - 'Subtype' => 'Δευτερεύων', - 'Title' => 'Τίτλος', - 'Type' => 'Τύπος', - 'Website' => 'Δικτυακός τόπος', + 'Created' => 'δημιουργήθηκε', + 'CreatedAt' => 'δημιουργήθηκε στις', + 'CreatedBy' => 'Δημιουργήθηκε από', + 'Creator' => 'Δημιουργός', + 'Database' => 'Βάση δεδομένων', + 'End' => 'Τέλος', + 'Exchange' => 'Ανταλλαγή', + 'Export' => 'Εξαγωγή', + 'Exports' => 'εξαγωγές', + 'File' => 'Αρχείο', + 'Host' => 'Πλήθος', + 'Import' => 'Εισαγωγή', + 'Imports' => 'εισαγωγές', + 'Login' => 'Σύνδεση', + 'Logs' => 'logs', + 'Options' => 'επιλογές', + 'Password' => 'Κωδικός πρόσβασης', + 'Port' => 'Λιμάνι', + 'Start' => 'Αρχή', + 'Subtype' => 'Δευτερεύων', + 'Title' => 'Τίτλος', + 'Type' => 'Τύπος', + 'Website' => 'Δικτυακός τόπος', ]]; diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 2345394..3326c59 100644 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Created', - 'CreatedAt' => 'Created at', - 'CreatedBy' => 'Created by', - 'Creator' => 'Creator', - 'Database' => 'Database', - 'End' => 'End', - 'Exchange' => 'Exchange', - 'Export' => 'Export', - 'Exports' => 'Exports', - 'File' => 'File', - 'Host' => 'Host', - 'Import' => 'Import', - 'Imports' => 'Imports', - 'Login' => 'Login', - 'Logs' => 'Logs', - 'Options' => 'Options', - 'Password' => 'Password', - 'Port' => 'Port', - 'Start' => 'Start', - 'Subtype' => 'Subtype', - 'Title' => 'Title', - 'Type' => 'Type', - 'Website' => 'Website', + 'Created' => '', + 'CreatedAt' => '', + 'CreatedBy' => '', + 'Creator' => '', + 'Database' => 'Database', + 'End' => 'End', + 'Exchange' => '', + 'Export' => 'Export', + 'Exports' => '', + 'File' => 'File', + 'Host' => 'Host', + 'Import' => 'Import', + 'Imports' => '', + 'Login' => 'Login', + 'Logs' => '', + 'Options' => 'Options', + 'Password' => 'Password', + 'Port' => 'Port', + 'Start' => 'Start', + 'Subtype' => '', + 'Title' => '', + 'Type' => '', + 'Website' => 'Website', ]]; diff --git a/Theme/Backend/Lang/es.lang.php b/Theme/Backend/Lang/es.lang.php index 150c974..453be31 100644 --- a/Theme/Backend/Lang/es.lang.php +++ b/Theme/Backend/Lang/es.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Creado', - 'CreatedAt' => 'Creado en', - 'CreatedBy' => 'Creado por', - 'Creator' => 'Creador', - 'Database' => 'Base de datos', - 'End' => 'Fin', - 'Exchange' => 'Intercambio', - 'Export' => 'Exportar', - 'Exports' => 'exportaciones', - 'File' => 'Archivo', - 'Host' => 'Anfitrión', - 'Import' => 'Importar', - 'Imports' => 'Las importaciones', - 'Login' => 'Acceso', - 'Logs' => 'registros', - 'Options' => 'opciones', - 'Password' => 'Contraseña', - 'Port' => 'Puerto', - 'Start' => 'Comienzo', - 'Subtype' => 'subtipo', - 'Title' => 'Título', - 'Type' => 'Escribe', - 'Website' => 'Sitio web', + 'Created' => 'Creado', + 'CreatedAt' => 'Creado en', + 'CreatedBy' => 'Creado por', + 'Creator' => 'Creador', + 'Database' => 'Base de datos', + 'End' => 'Fin', + 'Exchange' => 'Intercambio', + 'Export' => 'Exportar', + 'Exports' => 'exportaciones', + 'File' => 'Archivo', + 'Host' => 'Anfitrión', + 'Import' => 'Importar', + 'Imports' => 'Las importaciones', + 'Login' => 'Acceso', + 'Logs' => 'registros', + 'Options' => 'opciones', + 'Password' => 'Contraseña', + 'Port' => 'Puerto', + 'Start' => 'Comienzo', + 'Subtype' => 'subtipo', + 'Title' => 'Título', + 'Type' => 'Escribe', + 'Website' => 'Sitio web', ]]; diff --git a/Theme/Backend/Lang/fi.lang.php b/Theme/Backend/Lang/fi.lang.php index d890661..08602fc 100644 --- a/Theme/Backend/Lang/fi.lang.php +++ b/Theme/Backend/Lang/fi.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Luotu', - 'CreatedAt' => 'luodaan', - 'CreatedBy' => 'Luonut', - 'Creator' => 'Luoja', - 'Database' => 'Tietokanta', - 'End' => 'pää', - 'Exchange' => 'Vaihto', - 'Export' => 'Viedä', - 'Exports' => 'vienti', - 'File' => 'tiedosto', - 'Host' => 'isäntä', - 'Import' => 'Tuonti', - 'Imports' => 'Tuonti', - 'Login' => 'Kirjaudu sisään', - 'Logs' => 'lokit', - 'Options' => 'vaihtoehdot', - 'Password' => 'Salasana', - 'Port' => 'portti', - 'Start' => 'alkaa', - 'Subtype' => 'alatyyppi', - 'Title' => 'otsikko', - 'Type' => 'Tyyppi', - 'Website' => 'Verkkosivusto', + 'Created' => 'Luotu', + 'CreatedAt' => 'luodaan', + 'CreatedBy' => 'Luonut', + 'Creator' => 'Luoja', + 'Database' => 'Tietokanta', + 'End' => 'pää', + 'Exchange' => 'Vaihto', + 'Export' => 'Viedä', + 'Exports' => 'vienti', + 'File' => 'tiedosto', + 'Host' => 'isäntä', + 'Import' => 'Tuonti', + 'Imports' => 'Tuonti', + 'Login' => 'Kirjaudu sisään', + 'Logs' => 'lokit', + 'Options' => 'vaihtoehdot', + 'Password' => 'Salasana', + 'Port' => 'portti', + 'Start' => 'alkaa', + 'Subtype' => 'alatyyppi', + 'Title' => 'otsikko', + 'Type' => 'Tyyppi', + 'Website' => 'Verkkosivusto', ]]; diff --git a/Theme/Backend/Lang/fr.lang.php b/Theme/Backend/Lang/fr.lang.php index c26dfb1..d4092d5 100644 --- a/Theme/Backend/Lang/fr.lang.php +++ b/Theme/Backend/Lang/fr.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Créé', - 'CreatedAt' => 'Créé à', - 'CreatedBy' => 'Créé par', - 'Creator' => 'Créateur', - 'Database' => 'Base de données', - 'End' => 'Finir', - 'Exchange' => 'Échange', - 'Export' => 'Exportation', - 'Exports' => 'Exportations', - 'File' => 'Déposer', - 'Host' => 'Héberger', - 'Import' => 'Importer', - 'Imports' => 'Importations', - 'Login' => 'Connexion', - 'Logs' => 'journaux', - 'Options' => 'options', - 'Password' => 'Mot de passe', - 'Port' => 'Port', - 'Start' => 'Début', - 'Subtype' => 'Sous-type', - 'Title' => 'Titre', - 'Type' => 'Taper', - 'Website' => 'Site Internet', + 'Created' => 'Créé', + 'CreatedAt' => 'Créé à', + 'CreatedBy' => 'Créé par', + 'Creator' => 'Créateur', + 'Database' => 'Base de données', + 'End' => 'Finir', + 'Exchange' => 'Échange', + 'Export' => 'Exportation', + 'Exports' => 'Exportations', + 'File' => 'Déposer', + 'Host' => 'Héberger', + 'Import' => 'Importer', + 'Imports' => 'Importations', + 'Login' => 'Connexion', + 'Logs' => 'journaux', + 'Options' => 'options', + 'Password' => 'Mot de passe', + 'Port' => 'Port', + 'Start' => 'Début', + 'Subtype' => 'Sous-type', + 'Title' => 'Titre', + 'Type' => 'Taper', + 'Website' => 'Site Internet', ]]; diff --git a/Theme/Backend/Lang/hu.lang.php b/Theme/Backend/Lang/hu.lang.php index 3afdbb8..281bf84 100644 --- a/Theme/Backend/Lang/hu.lang.php +++ b/Theme/Backend/Lang/hu.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Alkotó', - 'CreatedAt' => 'létrehozott', - 'CreatedBy' => 'Készítette', - 'Creator' => 'Teremtő', - 'Database' => 'adatbázis', - 'End' => 'vég', - 'Exchange' => 'Csere', - 'Export' => 'Export', - 'Exports' => 'Az export', - 'File' => 'fájl', - 'Host' => 'Házigazda', - 'Import' => 'import', - 'Imports' => 'Behozatal', - 'Login' => 'Belépés', - 'Logs' => 'Naplók', - 'Options' => 'Lehetőségek', - 'Password' => 'Jelszó', - 'Port' => 'Kikötő', - 'Start' => 'Rajt', - 'Subtype' => 'altípus', - 'Title' => 'Cím', - 'Type' => 'típus', - 'Website' => 'Weboldal', + 'Created' => 'Alkotó', + 'CreatedAt' => 'létrehozott', + 'CreatedBy' => 'Készítette', + 'Creator' => 'Teremtő', + 'Database' => 'adatbázis', + 'End' => 'vég', + 'Exchange' => 'Csere', + 'Export' => 'Export', + 'Exports' => 'Az export', + 'File' => 'fájl', + 'Host' => 'Házigazda', + 'Import' => 'import', + 'Imports' => 'Behozatal', + 'Login' => 'Belépés', + 'Logs' => 'Naplók', + 'Options' => 'Lehetőségek', + 'Password' => 'Jelszó', + 'Port' => 'Kikötő', + 'Start' => 'Rajt', + 'Subtype' => 'altípus', + 'Title' => 'Cím', + 'Type' => 'típus', + 'Website' => 'Weboldal', ]]; diff --git a/Theme/Backend/Lang/it.lang.php b/Theme/Backend/Lang/it.lang.php index bc05ff0..02133e2 100644 --- a/Theme/Backend/Lang/it.lang.php +++ b/Theme/Backend/Lang/it.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Creato', - 'CreatedAt' => 'creato in', - 'CreatedBy' => 'Creato da', - 'Creator' => 'Creatore', - 'Database' => 'Banca dati', - 'End' => 'Fine', - 'Exchange' => 'Scambio', - 'Export' => 'Esportare', - 'Exports' => 'esportazioni', - 'File' => 'File', - 'Host' => 'Ospite', - 'Import' => 'Importare', - 'Imports' => 'importazioni', - 'Login' => 'Login', - 'Logs' => 'logs', - 'Options' => 'Opzioni', - 'Password' => 'Parola d\'ordine', - 'Port' => 'Porta', - 'Start' => 'Inizio', - 'Subtype' => 'sottotipo', - 'Title' => 'Titolo', - 'Type' => 'genere', - 'Website' => 'Sito web', + 'Created' => 'Creato', + 'CreatedAt' => 'creato in', + 'CreatedBy' => 'Creato da', + 'Creator' => 'Creatore', + 'Database' => 'Banca dati', + 'End' => 'Fine', + 'Exchange' => 'Scambio', + 'Export' => 'Esportare', + 'Exports' => 'esportazioni', + 'File' => 'File', + 'Host' => 'Ospite', + 'Import' => 'Importare', + 'Imports' => 'importazioni', + 'Login' => 'Login', + 'Logs' => 'logs', + 'Options' => 'Opzioni', + 'Password' => 'Parola d\\'ordine', + 'Port' => 'Porta', + 'Start' => 'Inizio', + 'Subtype' => 'sottotipo', + 'Title' => 'Titolo', + 'Type' => 'genere', + 'Website' => 'Sito web', ]]; diff --git a/Theme/Backend/Lang/ja.lang.php b/Theme/Backend/Lang/ja.lang.php index 6f3497e..d2c422b 100644 --- a/Theme/Backend/Lang/ja.lang.php +++ b/Theme/Backend/Lang/ja.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => '作成した', - 'CreatedAt' => 'で作成されました', - 'CreatedBy' => 'によって作成された', - 'Creator' => '創造主', - 'Database' => 'データベース', - 'End' => '終わり', - 'Exchange' => '両替', - 'Export' => '書き出す', - 'Exports' => '輸出', - 'File' => 'ファイル', - 'Host' => 'ホスト', - 'Import' => 'インポート', - 'Imports' => '輸入', - 'Login' => 'ログイン', - 'Logs' => 'ログ', - 'Options' => 'オプション', - 'Password' => 'パスワード', - 'Port' => '港', - 'Start' => '開始', - 'Subtype' => 'サブタイプ', - 'Title' => '題名', - 'Type' => 'タイプ', - 'Website' => 'ウェブサイト', + 'Created' => '作成した', + 'CreatedAt' => 'で作成されました', + 'CreatedBy' => 'によって作成された', + 'Creator' => '創造主', + 'Database' => 'データベース', + 'End' => '終わり', + 'Exchange' => '両替', + 'Export' => '書き出す', + 'Exports' => '輸出', + 'File' => 'ファイル', + 'Host' => 'ホスト', + 'Import' => 'インポート', + 'Imports' => '輸入', + 'Login' => 'ログイン', + 'Logs' => 'ログ', + 'Options' => 'オプション', + 'Password' => 'パスワード', + 'Port' => '港', + 'Start' => '開始', + 'Subtype' => 'サブタイプ', + 'Title' => '題名', + 'Type' => 'タイプ', + 'Website' => 'ウェブサイト', ]]; diff --git a/Theme/Backend/Lang/ko.lang.php b/Theme/Backend/Lang/ko.lang.php index fd6e3d4..94ddc81 100644 --- a/Theme/Backend/Lang/ko.lang.php +++ b/Theme/Backend/Lang/ko.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => '만들어진', - 'CreatedAt' => '에서 만든', - 'CreatedBy' => '만든 사람', - 'Creator' => '창조자', - 'Database' => '데이터 베이스', - 'End' => '종료', - 'Exchange' => '교환', - 'Export' => '수출', - 'Exports' => '수출', - 'File' => '파일', - 'Host' => '주최자', - 'Import' => '수입', - 'Imports' => '수입', - 'Login' => '로그인', - 'Logs' => '로그', - 'Options' => '옵션', - 'Password' => '암호', - 'Port' => '포트', - 'Start' => '스타트', - 'Subtype' => '하위 유형', - 'Title' => '표제', - 'Type' => '유형', - 'Website' => '웹 사이트', + 'Created' => '만들어진', + 'CreatedAt' => '에서 만든', + 'CreatedBy' => '만든 사람', + 'Creator' => '창조자', + 'Database' => '데이터 베이스', + 'End' => '종료', + 'Exchange' => '교환', + 'Export' => '수출', + 'Exports' => '수출', + 'File' => '파일', + 'Host' => '주최자', + 'Import' => '수입', + 'Imports' => '수입', + 'Login' => '로그인', + 'Logs' => '로그', + 'Options' => '옵션', + 'Password' => '암호', + 'Port' => '포트', + 'Start' => '스타트', + 'Subtype' => '하위 유형', + 'Title' => '표제', + 'Type' => '유형', + 'Website' => '웹 사이트', ]]; diff --git a/Theme/Backend/Lang/no.lang.php b/Theme/Backend/Lang/no.lang.php index d13ca6a..31d07be 100644 --- a/Theme/Backend/Lang/no.lang.php +++ b/Theme/Backend/Lang/no.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'laget', - 'CreatedAt' => 'laget på', - 'CreatedBy' => 'Laget av', - 'Creator' => 'skaperen', - 'Database' => 'database', - 'End' => 'Slutt', - 'Exchange' => 'Utveksling', - 'Export' => 'Eksport', - 'Exports' => 'eksport', - 'File' => 'Fil', - 'Host' => 'Vert', - 'Import' => 'Import', - 'Imports' => 'import', - 'Login' => 'Logg Inn', - 'Logs' => 'Tømmerstokker', - 'Options' => 'alternativer', - 'Password' => 'Passord', - 'Port' => 'Havn', - 'Start' => 'Start', - 'Subtype' => 'subtype', - 'Title' => 'Tittel', - 'Type' => 'Type', - 'Website' => 'nettsted', + 'Created' => 'laget', + 'CreatedAt' => 'laget på', + 'CreatedBy' => 'Laget av', + 'Creator' => 'skaperen', + 'Database' => 'database', + 'End' => 'Slutt', + 'Exchange' => 'Utveksling', + 'Export' => 'Eksport', + 'Exports' => 'eksport', + 'File' => 'Fil', + 'Host' => 'Vert', + 'Import' => 'Import', + 'Imports' => 'import', + 'Login' => 'Logg Inn', + 'Logs' => 'Tømmerstokker', + 'Options' => 'alternativer', + 'Password' => 'Passord', + 'Port' => 'Havn', + 'Start' => 'Start', + 'Subtype' => 'subtype', + 'Title' => 'Tittel', + 'Type' => 'Type', + 'Website' => 'nettsted', ]]; diff --git a/Theme/Backend/Lang/pl.lang.php b/Theme/Backend/Lang/pl.lang.php index bf6ea6a..fb28536 100644 --- a/Theme/Backend/Lang/pl.lang.php +++ b/Theme/Backend/Lang/pl.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Utworzony', - 'CreatedAt' => 'Utworzono', - 'CreatedBy' => 'Stworzone przez', - 'Creator' => 'Twórca', - 'Database' => 'Baza danych', - 'End' => 'Koniec', - 'Exchange' => 'Wymieniać się', - 'Export' => 'Eksport', - 'Exports' => 'eksport', - 'File' => 'Plik', - 'Host' => 'Gospodarz', - 'Import' => 'Import', - 'Imports' => 'Import', - 'Login' => 'Zaloguj sie', - 'Logs' => 'dzienniki', - 'Options' => 'Opcje', - 'Password' => 'Hasło', - 'Port' => 'Port', - 'Start' => 'Początek', - 'Subtype' => 'podtyp', - 'Title' => 'Tytuł', - 'Type' => 'Rodzaj', - 'Website' => 'Stronie internetowej', + 'Created' => 'Utworzony', + 'CreatedAt' => 'Utworzono', + 'CreatedBy' => 'Stworzone przez', + 'Creator' => 'Twórca', + 'Database' => 'Baza danych', + 'End' => 'Koniec', + 'Exchange' => 'Wymieniać się', + 'Export' => 'Eksport', + 'Exports' => 'eksport', + 'File' => 'Plik', + 'Host' => 'Gospodarz', + 'Import' => 'Import', + 'Imports' => 'Import', + 'Login' => 'Zaloguj sie', + 'Logs' => 'dzienniki', + 'Options' => 'Opcje', + 'Password' => 'Hasło', + 'Port' => 'Port', + 'Start' => 'Początek', + 'Subtype' => 'podtyp', + 'Title' => 'Tytuł', + 'Type' => 'Rodzaj', + 'Website' => 'Stronie internetowej', ]]; diff --git a/Theme/Backend/Lang/pt.lang.php b/Theme/Backend/Lang/pt.lang.php index 7a2db2b..80a59fd 100644 --- a/Theme/Backend/Lang/pt.lang.php +++ b/Theme/Backend/Lang/pt.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Criado', - 'CreatedAt' => 'Criado em', - 'CreatedBy' => 'Criado por', - 'Creator' => 'O Criador', - 'Database' => 'Base de dados', - 'End' => 'Fim', - 'Exchange' => 'Intercâmbio', - 'Export' => 'Exportar', - 'Exports' => 'exportações', - 'File' => 'Arquivo', - 'Host' => 'Hospedeiro', - 'Import' => 'Importar', - 'Imports' => 'importações', - 'Login' => 'Conecte-se', - 'Logs' => 'Histórico', - 'Options' => 'opções', - 'Password' => 'Senha', - 'Port' => 'Porta', - 'Start' => 'Começar', - 'Subtype' => 'subtipo', - 'Title' => 'Título', - 'Type' => 'Modelo', - 'Website' => 'Local na rede Internet', + 'Created' => 'Criado', + 'CreatedAt' => 'Criado em', + 'CreatedBy' => 'Criado por', + 'Creator' => 'O Criador', + 'Database' => 'Base de dados', + 'End' => 'Fim', + 'Exchange' => 'Intercâmbio', + 'Export' => 'Exportar', + 'Exports' => 'exportações', + 'File' => 'Arquivo', + 'Host' => 'Hospedeiro', + 'Import' => 'Importar', + 'Imports' => 'importações', + 'Login' => 'Conecte-se', + 'Logs' => 'Histórico', + 'Options' => 'opções', + 'Password' => 'Senha', + 'Port' => 'Porta', + 'Start' => 'Começar', + 'Subtype' => 'subtipo', + 'Title' => 'Título', + 'Type' => 'Modelo', + 'Website' => 'Local na rede Internet', ]]; diff --git a/Theme/Backend/Lang/ru.lang.php b/Theme/Backend/Lang/ru.lang.php index 01e2679..8ff3df9 100644 --- a/Theme/Backend/Lang/ru.lang.php +++ b/Theme/Backend/Lang/ru.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Созданный', - 'CreatedAt' => 'Создано на', - 'CreatedBy' => 'Сделано', - 'Creator' => 'творец', - 'Database' => 'База данных', - 'End' => 'Конец', - 'Exchange' => 'Обмен', - 'Export' => 'экспорт', - 'Exports' => 'экспорт', - 'File' => 'Файл', - 'Host' => 'Хозяин', - 'Import' => 'импорт', - 'Imports' => 'импорт', - 'Login' => 'Авторизоваться', - 'Logs' => 'бревна', - 'Options' => 'Опции', - 'Password' => 'Пароль', - 'Port' => 'порт', - 'Start' => 'Начинать', - 'Subtype' => 'Подтип', - 'Title' => 'Заголовок', - 'Type' => 'Тип', - 'Website' => 'Интернет сайт', + 'Created' => 'Созданный', + 'CreatedAt' => 'Создано на', + 'CreatedBy' => 'Сделано', + 'Creator' => 'творец', + 'Database' => 'База данных', + 'End' => 'Конец', + 'Exchange' => 'Обмен', + 'Export' => 'экспорт', + 'Exports' => 'экспорт', + 'File' => 'Файл', + 'Host' => 'Хозяин', + 'Import' => 'импорт', + 'Imports' => 'импорт', + 'Login' => 'Авторизоваться', + 'Logs' => 'бревна', + 'Options' => 'Опции', + 'Password' => 'Пароль', + 'Port' => 'порт', + 'Start' => 'Начинать', + 'Subtype' => 'Подтип', + 'Title' => 'Заголовок', + 'Type' => 'Тип', + 'Website' => 'Интернет сайт', ]]; diff --git a/Theme/Backend/Lang/sv.lang.php b/Theme/Backend/Lang/sv.lang.php index 1453734..0c50261 100644 --- a/Theme/Backend/Lang/sv.lang.php +++ b/Theme/Backend/Lang/sv.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'Skapad', - 'CreatedAt' => 'Skapad vid', - 'CreatedBy' => 'Skapad av', - 'Creator' => 'Skapare', - 'Database' => 'Databas', - 'End' => 'Slutet', - 'Exchange' => 'Utbyta', - 'Export' => 'Exportera', - 'Exports' => 'Export', - 'File' => 'Fil', - 'Host' => 'Värd', - 'Import' => 'Importera', - 'Imports' => 'import', - 'Login' => 'Logga in', - 'Logs' => 'loggar', - 'Options' => 'alternativ', - 'Password' => 'Lösenord', - 'Port' => 'Hamn', - 'Start' => 'Start', - 'Subtype' => 'subtyp', - 'Title' => 'Titel', - 'Type' => 'Typ', - 'Website' => 'Hemsida', + 'Created' => 'Skapad', + 'CreatedAt' => 'Skapad vid', + 'CreatedBy' => 'Skapad av', + 'Creator' => 'Skapare', + 'Database' => 'Databas', + 'End' => 'Slutet', + 'Exchange' => 'Utbyta', + 'Export' => 'Exportera', + 'Exports' => 'Export', + 'File' => 'Fil', + 'Host' => 'Värd', + 'Import' => 'Importera', + 'Imports' => 'import', + 'Login' => 'Logga in', + 'Logs' => 'loggar', + 'Options' => 'alternativ', + 'Password' => 'Lösenord', + 'Port' => 'Hamn', + 'Start' => 'Start', + 'Subtype' => 'subtyp', + 'Title' => 'Titel', + 'Type' => 'Typ', + 'Website' => 'Hemsida', ]]; diff --git a/Theme/Backend/Lang/th.lang.php b/Theme/Backend/Lang/th.lang.php index fd18c17..d3b1ef5 100644 --- a/Theme/Backend/Lang/th.lang.php +++ b/Theme/Backend/Lang/th.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'ที่สร้างไว้', - 'CreatedAt' => 'สร้างขึ้นใน', - 'CreatedBy' => 'สร้างโดย', - 'Creator' => 'ผู้สร้าง', - 'Database' => 'ฐานข้อมูล', - 'End' => 'ปลาย', - 'Exchange' => 'แลกเปลี่ยน', - 'Export' => 'ส่งออก', - 'Exports' => 'การส่งออก', - 'File' => 'ไฟล์', - 'Host' => 'เจ้าภาพ', - 'Import' => 'นำเข้า', - 'Imports' => 'นำเข้า', - 'Login' => 'เข้าสู่ระบบ', - 'Logs' => 'ท่อน', - 'Options' => 'ตัวเลือก', - 'Password' => 'รหัสผ่าน', - 'Port' => 'ท่าเรือ', - 'Start' => 'เริ่มต้น', - 'Subtype' => 'ย่อย', - 'Title' => 'หัวข้อ', - 'Type' => 'ชนิด', - 'Website' => 'เว็บไซต์', + 'Created' => 'ที่สร้างไว้', + 'CreatedAt' => 'สร้างขึ้นใน', + 'CreatedBy' => 'สร้างโดย', + 'Creator' => 'ผู้สร้าง', + 'Database' => 'ฐานข้อมูล', + 'End' => 'ปลาย', + 'Exchange' => 'แลกเปลี่ยน', + 'Export' => 'ส่งออก', + 'Exports' => 'การส่งออก', + 'File' => 'ไฟล์', + 'Host' => 'เจ้าภาพ', + 'Import' => 'นำเข้า', + 'Imports' => 'นำเข้า', + 'Login' => 'เข้าสู่ระบบ', + 'Logs' => 'ท่อน', + 'Options' => 'ตัวเลือก', + 'Password' => 'รหัสผ่าน', + 'Port' => 'ท่าเรือ', + 'Start' => 'เริ่มต้น', + 'Subtype' => 'ย่อย', + 'Title' => 'หัวข้อ', + 'Type' => 'ชนิด', + 'Website' => 'เว็บไซต์', ]]; diff --git a/Theme/Backend/Lang/tr.lang.php b/Theme/Backend/Lang/tr.lang.php index 9b6cc1b..7f5b9dd 100644 --- a/Theme/Backend/Lang/tr.lang.php +++ b/Theme/Backend/Lang/tr.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'düzenlendi', - 'CreatedAt' => 'Oluşturulma', - 'CreatedBy' => 'Tarafından yaratıldı', - 'Creator' => 'yaratıcı', - 'Database' => 'Veri tabanı', - 'End' => 'Son', - 'Exchange' => 'Değiş tokuş', - 'Export' => 'İhracat', - 'Exports' => 'İhracat', - 'File' => 'Dosya', - 'Host' => 'evsahibi', - 'Import' => 'İthalat', - 'Imports' => 'ithalat', - 'Login' => 'Oturum aç', - 'Logs' => 'Kütükler', - 'Options' => 'Seçenekler', - 'Password' => 'Parola', - 'Port' => 'Liman', - 'Start' => 'Başlat', - 'Subtype' => 'Alt tür', - 'Title' => 'Başlık', - 'Type' => 'tip', - 'Website' => 'İnternet sitesi', + 'Created' => 'düzenlendi', + 'CreatedAt' => 'Oluşturulma', + 'CreatedBy' => 'Tarafından yaratıldı', + 'Creator' => 'yaratıcı', + 'Database' => 'Veri tabanı', + 'End' => 'Son', + 'Exchange' => 'Değiş tokuş', + 'Export' => 'İhracat', + 'Exports' => 'İhracat', + 'File' => 'Dosya', + 'Host' => 'evsahibi', + 'Import' => 'İthalat', + 'Imports' => 'ithalat', + 'Login' => 'Oturum aç', + 'Logs' => 'Kütükler', + 'Options' => 'Seçenekler', + 'Password' => 'Parola', + 'Port' => 'Liman', + 'Start' => 'Başlat', + 'Subtype' => 'Alt tür', + 'Title' => 'Başlık', + 'Type' => 'tip', + 'Website' => 'İnternet sitesi', ]]; diff --git a/Theme/Backend/Lang/uk.lang.php b/Theme/Backend/Lang/uk.lang.php index 65bc4fb..da5fdba 100644 --- a/Theme/Backend/Lang/uk.lang.php +++ b/Theme/Backend/Lang/uk.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => 'створений', - 'CreatedAt' => 'створено', - 'CreatedBy' => 'Створено', - 'Creator' => 'творець', - 'Database' => 'база даних', - 'End' => 'кінець', - 'Exchange' => 'обмін', - 'Export' => 'експорт', - 'Exports' => 'експорт', - 'File' => 'файл', - 'Host' => 'господар', - 'Import' => 'імпорт', - 'Imports' => 'імпорт', - 'Login' => 'Ввійти', - 'Logs' => 'колоди', - 'Options' => 'опції', - 'Password' => 'пароль', - 'Port' => 'порт', - 'Start' => 'початок', - 'Subtype' => 'підтип', - 'Title' => 'титульний', - 'Type' => 'тип', - 'Website' => 'веб-сайт', + 'Created' => 'створений', + 'CreatedAt' => 'створено', + 'CreatedBy' => 'Створено', + 'Creator' => 'творець', + 'Database' => 'база даних', + 'End' => 'кінець', + 'Exchange' => 'обмін', + 'Export' => 'експорт', + 'Exports' => 'експорт', + 'File' => 'файл', + 'Host' => 'господар', + 'Import' => 'імпорт', + 'Imports' => 'імпорт', + 'Login' => 'Ввійти', + 'Logs' => 'колоди', + 'Options' => 'опції', + 'Password' => 'пароль', + 'Port' => 'порт', + 'Start' => 'початок', + 'Subtype' => 'підтип', + 'Title' => 'титульний', + 'Type' => 'тип', + 'Website' => 'веб-сайт', ]]; diff --git a/Theme/Backend/Lang/zh.lang.php b/Theme/Backend/Lang/zh.lang.php index 4b8e38e..39ced85 100644 --- a/Theme/Backend/Lang/zh.lang.php +++ b/Theme/Backend/Lang/zh.lang.php @@ -13,27 +13,27 @@ declare(strict_types=1); return ['Exchange' => [ - 'Created' => '创建', - 'CreatedAt' => '在创建', - 'CreatedBy' => '由...制作', - 'Creator' => '创造者', - 'Database' => '数据库', - 'End' => '结尾', - 'Exchange' => '交换', - 'Export' => '出口', - 'Exports' => '出口', - 'File' => '文件', - 'Host' => '主持人', - 'Import' => '进口', - 'Imports' => '进口', - 'Login' => '登录', - 'Logs' => '日志', - 'Options' => '选项', - 'Password' => '密码', - 'Port' => '港口', - 'Start' => '开始', - 'Subtype' => '亚型', - 'Title' => '标题', - 'Type' => '类型', - 'Website' => '网站', + 'Created' => '创建', + 'CreatedAt' => '在创建', + 'CreatedBy' => '由...制作', + 'Creator' => '创造者', + 'Database' => '数据库', + 'End' => '结尾', + 'Exchange' => '交换', + 'Export' => '出口', + 'Exports' => '出口', + 'File' => '文件', + 'Host' => '主持人', + 'Import' => '进口', + 'Imports' => '进口', + 'Login' => '登录', + 'Logs' => '日志', + 'Options' => '选项', + 'Password' => '密码', + 'Port' => '港口', + 'Start' => '开始', + 'Subtype' => '亚型', + 'Title' => '标题', + 'Type' => '类型', + 'Website' => '网站', ]];