actually integrate the new czech language file; refs #976
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -723,7 +723,7 @@ opcache.interned_strings_buffer'),
|
|||||||
('panel', 'logo_overridetheme', '0'),
|
('panel', 'logo_overridetheme', '0'),
|
||||||
('panel', 'logo_overridecustom', '0'),
|
('panel', 'logo_overridecustom', '0'),
|
||||||
('panel', 'version', '0.10.28'),
|
('panel', 'version', '0.10.28'),
|
||||||
('panel', 'db_version', '202108180');
|
('panel', 'db_version', '202109040');
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `panel_tasks`;
|
DROP TABLE IF EXISTS `panel_tasks`;
|
||||||
@@ -822,7 +822,8 @@ INSERT INTO `panel_languages` (`id`, `language`, `iso`, `file`) VALUES
|
|||||||
(4, 'Português', 'pt', 'lng/portugues.lng.php'),
|
(4, 'Português', 'pt', 'lng/portugues.lng.php'),
|
||||||
(5, 'Italiano', 'it', 'lng/italian.lng.php'),
|
(5, 'Italiano', 'it', 'lng/italian.lng.php'),
|
||||||
(6, 'Nederlands', 'nl', 'lng/dutch.lng.php'),
|
(6, 'Nederlands', 'nl', 'lng/dutch.lng.php'),
|
||||||
(7, 'Svenska', 'sv', 'lng/swedish.lng.php');
|
(7, 'Svenska', 'sv', 'lng/swedish.lng.php'),
|
||||||
|
(8, 'Česká republika', 'cs', 'lng/czech.lng.php');
|
||||||
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `panel_syslog`;
|
DROP TABLE IF EXISTS `panel_syslog`;
|
||||||
|
|||||||
@@ -926,3 +926,10 @@ if (\Froxlor\Froxlor::isFroxlorVersion('0.10.27')) {
|
|||||||
showUpdateStep("Updating from 0.10.27 to 0.10.28", false);
|
showUpdateStep("Updating from 0.10.27 to 0.10.28", false);
|
||||||
\Froxlor\Froxlor::updateToVersion('0.10.28');
|
\Froxlor\Froxlor::updateToVersion('0.10.28');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (\Froxlor\Froxlor::isDatabaseVersion('202108180')) {
|
||||||
|
showUpdateStep("Adding czech language file", true);
|
||||||
|
Database::query("INSERT INTO `" . TABLE_PANEL_LANGUAGE . "` SET `language` = 'Česká republika', `iso` = 'cs', `file` = 'lng/czech.lng.php'");
|
||||||
|
lastStepStatus(0);
|
||||||
|
\Froxlor\Froxlor::updateToDbVersion('202109040');
|
||||||
|
}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ final class Froxlor
|
|||||||
const VERSION = '0.10.28';
|
const VERSION = '0.10.28';
|
||||||
|
|
||||||
// Database version (YYYYMMDDC where C is a daily counter)
|
// Database version (YYYYMMDDC where C is a daily counter)
|
||||||
const DBVERSION = '202108180';
|
const DBVERSION = '202109040';
|
||||||
|
|
||||||
// Distribution branding-tag (used for Debian etc.)
|
// Distribution branding-tag (used for Debian etc.)
|
||||||
const BRANDING = '';
|
const BRANDING = '';
|
||||||
|
|||||||
@@ -382,7 +382,7 @@ $lng['serversettings']['pathedit']['description'] = 'Měla by cesta být na výb
|
|||||||
$lng['serversettings']['nameservers']['title'] = 'Názvy serverů';
|
$lng['serversettings']['nameservers']['title'] = 'Názvy serverů';
|
||||||
$lng['serversettings']['nameservers']['description'] = 'Seznam oddělený čárkami obsahující názvy hostitelů všech jmenných serverů. První bude primární.';
|
$lng['serversettings']['nameservers']['description'] = 'Seznam oddělený čárkami obsahující názvy hostitelů všech jmenných serverů. První bude primární.';
|
||||||
$lng['serversettings']['mxservers']['title'] = 'MX servery';
|
$lng['serversettings']['mxservers']['title'] = 'MX servery';
|
||||||
$lng['serversettings']['mxservers']['description'] = 'Seznam oddělený čárkami obsahující dvojici čísla a jméno hostitele oddělené mezerou (např. \ '10 mx.example.com \ ') obsahující servery mx.';
|
$lng['serversettings']['mxservers']['description'] = 'Seznam oddělený čárkami obsahující dvojici čísla a jméno hostitele oddělené mezerou (např. \'10 mx.example.com\') obsahující servery mx.';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CHANGED BETWEEN 1.2.12 and 1.2.13
|
* CHANGED BETWEEN 1.2.12 and 1.2.13
|
||||||
|
|||||||
Reference in New Issue
Block a user