Update exchanger

This commit is contained in:
Dennis Eichhorn 2021-04-24 16:17:30 +02:00
parent b832d7b598
commit 47c06d6743
47 changed files with 921 additions and 515 deletions

0
Docs/Dev/en/SUMMARY.md Normal file → Executable file
View File

0
Docs/Dev/en/structure.md Normal file → Executable file
View File

View File

@ -117,9 +117,13 @@ final class Exporter extends ExporterAbstract
continue; continue;
} }
$module = \trim($module, '/');
$themes = \scandir($themePath); $themes = \scandir($themePath);
foreach ($themes as $theme) { foreach ($themes as $theme) {
$theme = \trim($theme, '/');
$langPath = $themePath . $theme . '/Lang/'; $langPath = $themePath . $theme . '/Lang/';
if (!\is_dir($themePath . $theme) || $theme === '.' || $theme === '..' if (!\is_dir($themePath . $theme) || $theme === '.' || $theme === '..'
|| !\is_dir($langPath) || !\is_dir($langPath)
) { ) {
@ -152,11 +156,11 @@ final class Exporter extends ExporterAbstract
if ($len === 3) { if ($len === 3) {
foreach ($array as $key => $value) { foreach ($array as $key => $value) {
$languageArray[\trim($module, '/')][\trim($theme, '/')][''][$key][$components[0]] = $value; $languageArray[$module][$theme][''][$key][$components[0]] = $value;
} }
} elseif ($len === 4) { } elseif ($len === 4) {
foreach ($array as $key => $value) { 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; continue;
} }
$theme = \trim($theme, '/');
$iterator = new \RecursiveIteratorIterator( $iterator = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($themePath . $theme . '/', \RecursiveDirectoryIterator::SKIP_DOTS), new \RecursiveDirectoryIterator($themePath . $theme . '/', \RecursiveDirectoryIterator::SKIP_DOTS),
\RecursiveIteratorIterator::SELF_FIRST \RecursiveIteratorIterator::SELF_FIRST
@ -182,12 +188,12 @@ final class Exporter extends ExporterAbstract
$template = \file_get_contents($item->getPathname()); $template = \file_get_contents($item->getPathname());
$keys = []; $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) { foreach ($keys[2] ?? [] as $key) {
$tplKeys[\trim($module, '/')][\trim($theme, '/')][''][$key]['en'] = ''; if (!isset($languageArray[''][$module][$theme][$key])) {
if (!isset($languageArray[''][\trim($module, '/')][\trim($theme, '/')][$key])) { $tplKeys[$module][$theme][''][$key]['en'] = '';
$languageArray[\trim($module, '/')][\trim($theme, '/')][''][$key]['en'] = ''; $languageArray[$module][$theme][''][$key]['en'] = '';
} }
} }
} }
@ -202,7 +208,7 @@ final class Exporter extends ExporterAbstract
foreach ($files as $file => $keys) { foreach ($files as $file => $keys) {
foreach ($keys as $key => $value) { foreach ($keys as $key => $value) {
$content .= "\n\"" . $module . '";"' . $theme . '";"' . $file . '";"'; $content .= "\n\"" . $module . '";"' . $theme . '";"' . $file . '";"';
$content .= (!isset($tplKeys[$module][$theme]['']) ? '*' : '') . $key . '"'; $content .= ($file === '' && isset($tplKeys[$module][$theme][''][$key]) ? '*' : '') . $key . '"';
foreach ($supportedLanguages as $language) { foreach ($supportedLanguages as $language) {
$content .= ';"' . ($value[$language] ?? '') . '"'; $content .= ';"' . ($value[$language] ?? '') . '"';

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

2
Theme/Backend/Lang/Navigation.de.lang.php Executable file → Normal file
View File

@ -4,7 +4,7 @@
* *
* PHP Version 8.0 * PHP Version 8.0
* *
* @package Modules\Exchange * @package Modules\Localization
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

2
Theme/Backend/Lang/Navigation.en.lang.php Executable file → Normal file
View File

@ -4,7 +4,7 @@
* *
* PHP Version 8.0 * PHP Version 8.0
* *
* @package Modules\Exchange * @package Modules\Localization
* @copyright Dennis Eichhorn * @copyright Dennis Eichhorn
* @license OMS License 1.0 * @license OMS License 1.0
* @version 1.0.0 * @version 1.0.0

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -0,0 +1,20 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package Modules\Localization
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
return ['Navigation' => [
'Dashboard' => '',
'Exchange' => '',
'Export' => '',
'Import' => '',
]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'مخلوق', 'Created' => 'مخلوق',
'CreatedAt' => 'أنشئت في', 'CreatedAt' => 'أنشئت في',
'CreatedBy' => 'انشأ من قبل', 'CreatedBy' => 'انشأ من قبل',
'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' => 'موقع الكتروني',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Vytvořeno', 'Created' => 'Vytvořeno',
'CreatedAt' => 'vytvořen na', 'CreatedAt' => 'vytvořen na',
'CreatedBy' => 'Vytvořil', 'CreatedBy' => 'Vytvořil',
'Creator' => 'Tvůrce', 'Creator' => 'Tvůrce',
'Database' => 'Databáze', 'Database' => 'Databáze',
'End' => 'Konec', 'End' => 'Konec',
'Exchange' => 'Výměna', 'Exchange' => 'Výměna',
'Export' => 'Vývozní', 'Export' => 'Vývozní',
'Exports' => 'vývoz', 'Exports' => 'vývoz',
'File' => 'Soubor', 'File' => 'Soubor',
'Host' => 'Hostitel', 'Host' => 'Hostitel',
'Import' => 'Import', 'Import' => 'Import',
'Imports' => 'dovoz', 'Imports' => 'dovoz',
'Login' => 'Přihlásit se', 'Login' => 'Přihlásit se',
'Logs' => 'Protokoly', 'Logs' => 'Protokoly',
'Options' => 'možnosti', 'Options' => 'možnosti',
'Password' => 'Heslo', 'Password' => 'Heslo',
'Port' => 'Přístav', 'Port' => 'Přístav',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => 'podtyp', 'Subtype' => 'podtyp',
'Title' => 'Titul', 'Title' => 'Titul',
'Type' => 'Typ', 'Type' => 'Typ',
'Website' => 'webová stránka', 'Website' => 'webová stránka',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'lavet', 'Created' => 'lavet',
'CreatedAt' => 'lavet på', 'CreatedAt' => 'lavet på',
'CreatedBy' => 'Lavet af', 'CreatedBy' => 'Lavet af',
'Creator' => 'Skaberen', 'Creator' => 'Skaberen',
'Database' => 'Database', 'Database' => 'Database',
'End' => 'Ende', 'End' => 'Ende',
'Exchange' => 'Udveksling', 'Exchange' => 'Udveksling',
'Export' => 'Eksport', 'Export' => 'Eksport',
'Exports' => 'Eksport', 'Exports' => 'Eksport',
'File' => 'Fil', 'File' => 'Fil',
'Host' => 'Vært', 'Host' => 'Vært',
'Import' => 'Importere', 'Import' => 'Importere',
'Imports' => 'Import', 'Imports' => 'Import',
'Login' => 'Log på', 'Login' => 'Log på',
'Logs' => 'Logs', 'Logs' => 'Logs',
'Options' => 'Muligheder', 'Options' => 'Muligheder',
'Password' => 'Adgangskode', 'Password' => 'Adgangskode',
'Port' => 'Havn', 'Port' => 'Havn',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => 'undertype', 'Subtype' => 'undertype',
'Title' => 'Titel', 'Title' => 'Titel',
'Type' => 'Type', 'Type' => 'Type',
'Website' => 'Internet side', 'Website' => 'Internet side',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => '', 'Created' => '',
'CreatedAt' => '', 'CreatedAt' => '',
'CreatedBy' => '', 'CreatedBy' => '',
'Creator' => '', 'Creator' => '',
'Database' => 'Datenbank', 'Database' => 'Datenbank',
'End' => 'Ende', 'End' => 'Ende',
'Exchange' => 'Exchange', 'Exchange' => 'Exchange',
'Export' => 'Export', 'Export' => 'Export',
'Exports' => 'Exporte', 'Exports' => 'Exporte',
'File' => 'Dateien', 'File' => 'Dateien',
'Host' => 'Host', 'Host' => 'Host',
'Import' => 'Import', 'Import' => 'Import',
'Imports' => 'Importe', 'Imports' => 'Importe',
'Login' => 'Login', 'Login' => 'Login',
'Logs' => '', 'Logs' => '',
'Options' => 'Optionen', 'Options' => 'Optionen',
'Password' => 'Passwort', 'Password' => 'Passwort',
'Port' => 'Port', 'Port' => 'Port',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => '', 'Subtype' => '',
'Title' => 'Titel', 'Title' => 'Titel',
'Type' => '', 'Type' => '',
'Website' => 'Webseite', 'Website' => 'Webseite',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'δημιουργήθηκε', 'Created' => 'δημιουργήθηκε',
'CreatedAt' => 'δημιουργήθηκε στις', 'CreatedAt' => 'δημιουργήθηκε στις',
'CreatedBy' => 'Δημιουργήθηκε από', 'CreatedBy' => 'Δημιουργήθηκε από',
'Creator' => 'Δημιουργός', 'Creator' => 'Δημιουργός',
'Database' => 'Βάση δεδομένων', 'Database' => 'Βάση δεδομένων',
'End' => 'Τέλος', 'End' => 'Τέλος',
'Exchange' => 'Ανταλλαγή', 'Exchange' => 'Ανταλλαγή',
'Export' => 'Εξαγωγή', 'Export' => 'Εξαγωγή',
'Exports' => 'εξαγωγές', 'Exports' => 'εξαγωγές',
'File' => 'Αρχείο', 'File' => 'Αρχείο',
'Host' => 'Πλήθος', 'Host' => 'Πλήθος',
'Import' => 'Εισαγωγή', 'Import' => 'Εισαγωγή',
'Imports' => 'εισαγωγές', 'Imports' => 'εισαγωγές',
'Login' => 'Σύνδεση', 'Login' => 'Σύνδεση',
'Logs' => 'logs', 'Logs' => 'logs',
'Options' => 'επιλογές', 'Options' => 'επιλογές',
'Password' => 'Κωδικός πρόσβασης', 'Password' => 'Κωδικός πρόσβασης',
'Port' => 'Λιμάνι', 'Port' => 'Λιμάνι',
'Start' => 'Αρχή', 'Start' => 'Αρχή',
'Subtype' => 'Δευτερεύων', 'Subtype' => 'Δευτερεύων',
'Title' => 'Τίτλος', 'Title' => 'Τίτλος',
'Type' => 'Τύπος', 'Type' => 'Τύπος',
'Website' => 'Δικτυακός τόπος', 'Website' => 'Δικτυακός τόπος',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Created', 'Created' => '',
'CreatedAt' => 'Created at', 'CreatedAt' => '',
'CreatedBy' => 'Created by', 'CreatedBy' => '',
'Creator' => 'Creator', 'Creator' => '',
'Database' => 'Database', 'Database' => 'Database',
'End' => 'End', 'End' => 'End',
'Exchange' => 'Exchange', 'Exchange' => '',
'Export' => 'Export', 'Export' => 'Export',
'Exports' => 'Exports', 'Exports' => '',
'File' => 'File', 'File' => 'File',
'Host' => 'Host', 'Host' => 'Host',
'Import' => 'Import', 'Import' => 'Import',
'Imports' => 'Imports', 'Imports' => '',
'Login' => 'Login', 'Login' => 'Login',
'Logs' => 'Logs', 'Logs' => '',
'Options' => 'Options', 'Options' => 'Options',
'Password' => 'Password', 'Password' => 'Password',
'Port' => 'Port', 'Port' => 'Port',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => 'Subtype', 'Subtype' => '',
'Title' => 'Title', 'Title' => '',
'Type' => 'Type', 'Type' => '',
'Website' => 'Website', 'Website' => 'Website',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Creado', 'Created' => 'Creado',
'CreatedAt' => 'Creado en', 'CreatedAt' => 'Creado en',
'CreatedBy' => 'Creado por', 'CreatedBy' => 'Creado por',
'Creator' => 'Creador', 'Creator' => 'Creador',
'Database' => 'Base de datos', 'Database' => 'Base de datos',
'End' => 'Fin', 'End' => 'Fin',
'Exchange' => 'Intercambio', 'Exchange' => 'Intercambio',
'Export' => 'Exportar', 'Export' => 'Exportar',
'Exports' => 'exportaciones', 'Exports' => 'exportaciones',
'File' => 'Archivo', 'File' => 'Archivo',
'Host' => 'Anfitrión', 'Host' => 'Anfitrión',
'Import' => 'Importar', 'Import' => 'Importar',
'Imports' => 'Las importaciones', 'Imports' => 'Las importaciones',
'Login' => 'Acceso', 'Login' => 'Acceso',
'Logs' => 'registros', 'Logs' => 'registros',
'Options' => 'opciones', 'Options' => 'opciones',
'Password' => 'Contraseña', 'Password' => 'Contraseña',
'Port' => 'Puerto', 'Port' => 'Puerto',
'Start' => 'Comienzo', 'Start' => 'Comienzo',
'Subtype' => 'subtipo', 'Subtype' => 'subtipo',
'Title' => 'Título', 'Title' => 'Título',
'Type' => 'Escribe', 'Type' => 'Escribe',
'Website' => 'Sitio web', 'Website' => 'Sitio web',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Luotu', 'Created' => 'Luotu',
'CreatedAt' => 'luodaan', 'CreatedAt' => 'luodaan',
'CreatedBy' => 'Luonut', 'CreatedBy' => 'Luonut',
'Creator' => 'Luoja', 'Creator' => 'Luoja',
'Database' => 'Tietokanta', 'Database' => 'Tietokanta',
'End' => 'pää', 'End' => 'pää',
'Exchange' => 'Vaihto', 'Exchange' => 'Vaihto',
'Export' => 'Viedä', 'Export' => 'Viedä',
'Exports' => 'vienti', 'Exports' => 'vienti',
'File' => 'tiedosto', 'File' => 'tiedosto',
'Host' => 'isäntä', 'Host' => 'isäntä',
'Import' => 'Tuonti', 'Import' => 'Tuonti',
'Imports' => 'Tuonti', 'Imports' => 'Tuonti',
'Login' => 'Kirjaudu sisään', 'Login' => 'Kirjaudu sisään',
'Logs' => 'lokit', 'Logs' => 'lokit',
'Options' => 'vaihtoehdot', 'Options' => 'vaihtoehdot',
'Password' => 'Salasana', 'Password' => 'Salasana',
'Port' => 'portti', 'Port' => 'portti',
'Start' => 'alkaa', 'Start' => 'alkaa',
'Subtype' => 'alatyyppi', 'Subtype' => 'alatyyppi',
'Title' => 'otsikko', 'Title' => 'otsikko',
'Type' => 'Tyyppi', 'Type' => 'Tyyppi',
'Website' => 'Verkkosivusto', 'Website' => 'Verkkosivusto',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Créé', 'Created' => 'Créé',
'CreatedAt' => 'Créé à', 'CreatedAt' => 'Créé à',
'CreatedBy' => 'Créé par', 'CreatedBy' => 'Créé par',
'Creator' => 'Créateur', 'Creator' => 'Créateur',
'Database' => 'Base de données', 'Database' => 'Base de données',
'End' => 'Finir', 'End' => 'Finir',
'Exchange' => 'Échange', 'Exchange' => 'Échange',
'Export' => 'Exportation', 'Export' => 'Exportation',
'Exports' => 'Exportations', 'Exports' => 'Exportations',
'File' => 'Déposer', 'File' => 'Déposer',
'Host' => 'Héberger', 'Host' => 'Héberger',
'Import' => 'Importer', 'Import' => 'Importer',
'Imports' => 'Importations', 'Imports' => 'Importations',
'Login' => 'Connexion', 'Login' => 'Connexion',
'Logs' => 'journaux', 'Logs' => 'journaux',
'Options' => 'options', 'Options' => 'options',
'Password' => 'Mot de passe', 'Password' => 'Mot de passe',
'Port' => 'Port', 'Port' => 'Port',
'Start' => 'Début', 'Start' => 'Début',
'Subtype' => 'Sous-type', 'Subtype' => 'Sous-type',
'Title' => 'Titre', 'Title' => 'Titre',
'Type' => 'Taper', 'Type' => 'Taper',
'Website' => 'Site Internet', 'Website' => 'Site Internet',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Alkotó', 'Created' => 'Alkotó',
'CreatedAt' => 'létrehozott', 'CreatedAt' => 'létrehozott',
'CreatedBy' => 'Készítette', 'CreatedBy' => 'Készítette',
'Creator' => 'Teremtő', 'Creator' => 'Teremtő',
'Database' => 'adatbázis', 'Database' => 'adatbázis',
'End' => 'vég', 'End' => 'vég',
'Exchange' => 'Csere', 'Exchange' => 'Csere',
'Export' => 'Export', 'Export' => 'Export',
'Exports' => 'Az export', 'Exports' => 'Az export',
'File' => 'fájl', 'File' => 'fájl',
'Host' => 'Házigazda', 'Host' => 'Házigazda',
'Import' => 'import', 'Import' => 'import',
'Imports' => 'Behozatal', 'Imports' => 'Behozatal',
'Login' => 'Belépés', 'Login' => 'Belépés',
'Logs' => 'Naplók', 'Logs' => 'Naplók',
'Options' => 'Lehetőségek', 'Options' => 'Lehetőségek',
'Password' => 'Jelszó', 'Password' => 'Jelszó',
'Port' => 'Kikötő', 'Port' => 'Kikötő',
'Start' => 'Rajt', 'Start' => 'Rajt',
'Subtype' => 'altípus', 'Subtype' => 'altípus',
'Title' => 'Cím', 'Title' => 'Cím',
'Type' => 'típus', 'Type' => 'típus',
'Website' => 'Weboldal', 'Website' => 'Weboldal',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Creato', 'Created' => 'Creato',
'CreatedAt' => 'creato in', 'CreatedAt' => 'creato in',
'CreatedBy' => 'Creato da', 'CreatedBy' => 'Creato da',
'Creator' => 'Creatore', 'Creator' => 'Creatore',
'Database' => 'Banca dati', 'Database' => 'Banca dati',
'End' => 'Fine', 'End' => 'Fine',
'Exchange' => 'Scambio', 'Exchange' => 'Scambio',
'Export' => 'Esportare', 'Export' => 'Esportare',
'Exports' => 'esportazioni', 'Exports' => 'esportazioni',
'File' => 'File', 'File' => 'File',
'Host' => 'Ospite', 'Host' => 'Ospite',
'Import' => 'Importare', 'Import' => 'Importare',
'Imports' => 'importazioni', 'Imports' => 'importazioni',
'Login' => 'Login', 'Login' => 'Login',
'Logs' => 'logs', 'Logs' => 'logs',
'Options' => 'Opzioni', 'Options' => 'Opzioni',
'Password' => 'Parola d\'ordine', 'Password' => 'Parola d\\'ordine',
'Port' => 'Porta', 'Port' => 'Porta',
'Start' => 'Inizio', 'Start' => 'Inizio',
'Subtype' => 'sottotipo', 'Subtype' => 'sottotipo',
'Title' => 'Titolo', 'Title' => 'Titolo',
'Type' => 'genere', 'Type' => 'genere',
'Website' => 'Sito web', 'Website' => 'Sito web',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => '作成した', 'Created' => '作成した',
'CreatedAt' => 'で作成されました', 'CreatedAt' => 'で作成されました',
'CreatedBy' => 'によって作成された', 'CreatedBy' => 'によって作成された',
'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' => 'ウェブサイト',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => '만들어진', 'Created' => '만들어진',
'CreatedAt' => '에서 만든', 'CreatedAt' => '에서 만든',
'CreatedBy' => '만든 사람', 'CreatedBy' => '만든 사람',
'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' => '웹 사이트',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'laget', 'Created' => 'laget',
'CreatedAt' => 'laget på', 'CreatedAt' => 'laget på',
'CreatedBy' => 'Laget av', 'CreatedBy' => 'Laget av',
'Creator' => 'skaperen', 'Creator' => 'skaperen',
'Database' => 'database', 'Database' => 'database',
'End' => 'Slutt', 'End' => 'Slutt',
'Exchange' => 'Utveksling', 'Exchange' => 'Utveksling',
'Export' => 'Eksport', 'Export' => 'Eksport',
'Exports' => 'eksport', 'Exports' => 'eksport',
'File' => 'Fil', 'File' => 'Fil',
'Host' => 'Vert', 'Host' => 'Vert',
'Import' => 'Import', 'Import' => 'Import',
'Imports' => 'import', 'Imports' => 'import',
'Login' => 'Logg Inn', 'Login' => 'Logg Inn',
'Logs' => 'Tømmerstokker', 'Logs' => 'Tømmerstokker',
'Options' => 'alternativer', 'Options' => 'alternativer',
'Password' => 'Passord', 'Password' => 'Passord',
'Port' => 'Havn', 'Port' => 'Havn',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => 'subtype', 'Subtype' => 'subtype',
'Title' => 'Tittel', 'Title' => 'Tittel',
'Type' => 'Type', 'Type' => 'Type',
'Website' => 'nettsted', 'Website' => 'nettsted',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Utworzony', 'Created' => 'Utworzony',
'CreatedAt' => 'Utworzono', 'CreatedAt' => 'Utworzono',
'CreatedBy' => 'Stworzone przez', 'CreatedBy' => 'Stworzone przez',
'Creator' => 'Twórca', 'Creator' => 'Twórca',
'Database' => 'Baza danych', 'Database' => 'Baza danych',
'End' => 'Koniec', 'End' => 'Koniec',
'Exchange' => 'Wymieniać się', 'Exchange' => 'Wymieniać się',
'Export' => 'Eksport', 'Export' => 'Eksport',
'Exports' => 'eksport', 'Exports' => 'eksport',
'File' => 'Plik', 'File' => 'Plik',
'Host' => 'Gospodarz', 'Host' => 'Gospodarz',
'Import' => 'Import', 'Import' => 'Import',
'Imports' => 'Import', 'Imports' => 'Import',
'Login' => 'Zaloguj sie', 'Login' => 'Zaloguj sie',
'Logs' => 'dzienniki', 'Logs' => 'dzienniki',
'Options' => 'Opcje', 'Options' => 'Opcje',
'Password' => 'Hasło', 'Password' => 'Hasło',
'Port' => 'Port', 'Port' => 'Port',
'Start' => 'Początek', 'Start' => 'Początek',
'Subtype' => 'podtyp', 'Subtype' => 'podtyp',
'Title' => 'Tytuł', 'Title' => 'Tytuł',
'Type' => 'Rodzaj', 'Type' => 'Rodzaj',
'Website' => 'Stronie internetowej', 'Website' => 'Stronie internetowej',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Criado', 'Created' => 'Criado',
'CreatedAt' => 'Criado em', 'CreatedAt' => 'Criado em',
'CreatedBy' => 'Criado por', 'CreatedBy' => 'Criado por',
'Creator' => 'O Criador', 'Creator' => 'O Criador',
'Database' => 'Base de dados', 'Database' => 'Base de dados',
'End' => 'Fim', 'End' => 'Fim',
'Exchange' => 'Intercâmbio', 'Exchange' => 'Intercâmbio',
'Export' => 'Exportar', 'Export' => 'Exportar',
'Exports' => 'exportações', 'Exports' => 'exportações',
'File' => 'Arquivo', 'File' => 'Arquivo',
'Host' => 'Hospedeiro', 'Host' => 'Hospedeiro',
'Import' => 'Importar', 'Import' => 'Importar',
'Imports' => 'importações', 'Imports' => 'importações',
'Login' => 'Conecte-se', 'Login' => 'Conecte-se',
'Logs' => 'Histórico', 'Logs' => 'Histórico',
'Options' => 'opções', 'Options' => 'opções',
'Password' => 'Senha', 'Password' => 'Senha',
'Port' => 'Porta', 'Port' => 'Porta',
'Start' => 'Começar', 'Start' => 'Começar',
'Subtype' => 'subtipo', 'Subtype' => 'subtipo',
'Title' => 'Título', 'Title' => 'Título',
'Type' => 'Modelo', 'Type' => 'Modelo',
'Website' => 'Local na rede Internet', 'Website' => 'Local na rede Internet',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Созданный', 'Created' => 'Созданный',
'CreatedAt' => 'Создано на', 'CreatedAt' => 'Создано на',
'CreatedBy' => 'Сделано', 'CreatedBy' => 'Сделано',
'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' => 'Интернет сайт',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'Skapad', 'Created' => 'Skapad',
'CreatedAt' => 'Skapad vid', 'CreatedAt' => 'Skapad vid',
'CreatedBy' => 'Skapad av', 'CreatedBy' => 'Skapad av',
'Creator' => 'Skapare', 'Creator' => 'Skapare',
'Database' => 'Databas', 'Database' => 'Databas',
'End' => 'Slutet', 'End' => 'Slutet',
'Exchange' => 'Utbyta', 'Exchange' => 'Utbyta',
'Export' => 'Exportera', 'Export' => 'Exportera',
'Exports' => 'Export', 'Exports' => 'Export',
'File' => 'Fil', 'File' => 'Fil',
'Host' => 'Värd', 'Host' => 'Värd',
'Import' => 'Importera', 'Import' => 'Importera',
'Imports' => 'import', 'Imports' => 'import',
'Login' => 'Logga in', 'Login' => 'Logga in',
'Logs' => 'loggar', 'Logs' => 'loggar',
'Options' => 'alternativ', 'Options' => 'alternativ',
'Password' => 'Lösenord', 'Password' => 'Lösenord',
'Port' => 'Hamn', 'Port' => 'Hamn',
'Start' => 'Start', 'Start' => 'Start',
'Subtype' => 'subtyp', 'Subtype' => 'subtyp',
'Title' => 'Titel', 'Title' => 'Titel',
'Type' => 'Typ', 'Type' => 'Typ',
'Website' => 'Hemsida', 'Website' => 'Hemsida',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'ที่สร้างไว้', 'Created' => 'ที่สร้างไว้',
'CreatedAt' => 'สร้างขึ้นใน', 'CreatedAt' => 'สร้างขึ้นใน',
'CreatedBy' => 'สร้างโดย', 'CreatedBy' => 'สร้างโดย',
'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' => 'เว็บไซต์',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'düzenlendi', 'Created' => 'düzenlendi',
'CreatedAt' => 'Oluşturulma', 'CreatedAt' => 'Oluşturulma',
'CreatedBy' => 'Tarafından yaratıldı', 'CreatedBy' => 'Tarafından yaratıldı',
'Creator' => 'yaratıcı', 'Creator' => 'yaratıcı',
'Database' => 'Veri tabanı', 'Database' => 'Veri tabanı',
'End' => 'Son', 'End' => 'Son',
'Exchange' => 'Değiş tokuş', 'Exchange' => 'Değiş tokuş',
'Export' => 'İhracat', 'Export' => 'İhracat',
'Exports' => 'İhracat', 'Exports' => 'İhracat',
'File' => 'Dosya', 'File' => 'Dosya',
'Host' => 'evsahibi', 'Host' => 'evsahibi',
'Import' => 'İthalat', 'Import' => 'İthalat',
'Imports' => 'ithalat', 'Imports' => 'ithalat',
'Login' => 'Oturum aç', 'Login' => 'Oturum aç',
'Logs' => 'Kütükler', 'Logs' => 'Kütükler',
'Options' => 'Seçenekler', 'Options' => 'Seçenekler',
'Password' => 'Parola', 'Password' => 'Parola',
'Port' => 'Liman', 'Port' => 'Liman',
'Start' => 'Başlat', 'Start' => 'Başlat',
'Subtype' => 'Alt tür', 'Subtype' => 'Alt tür',
'Title' => 'Başlık', 'Title' => 'Başlık',
'Type' => 'tip', 'Type' => 'tip',
'Website' => 'İnternet sitesi', 'Website' => 'İnternet sitesi',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => 'створений', 'Created' => 'створений',
'CreatedAt' => 'створено', 'CreatedAt' => 'створено',
'CreatedBy' => 'Створено', 'CreatedBy' => 'Створено',
'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' => 'веб-сайт',
]]; ]];

View File

@ -13,27 +13,27 @@
declare(strict_types=1); declare(strict_types=1);
return ['Exchange' => [ return ['Exchange' => [
'Created' => '创建', 'Created' => '创建',
'CreatedAt' => '在创建', 'CreatedAt' => '在创建',
'CreatedBy' => '由...制作', 'CreatedBy' => '由...制作',
'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' => '网站',
]]; ]];