mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-20 07:42:17 +02:00
N°8796 - Add PHP code style validation in iTop and extensions - format whole code base
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logo společnosti',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Vyberte organizaci, podle které chcete filtrovat',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Rozbalit / Sbalit',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Otevřít uživatelské menu',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtrování položek menu',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo~~',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse~~',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Unternehmenslogo',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Organisation zum filtern auswählen',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Ausklappen/Einklappen',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Benutzermenü öffnen',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtere Menüeinträge',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2013-2024 Combodo SAS
|
||||
*
|
||||
@@ -18,7 +19,7 @@
|
||||
*/
|
||||
|
||||
// Navigation menu
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
Dict::Add('EN US', 'English', 'English', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse',
|
||||
@@ -32,4 +33,4 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @copyright Copyright (C) 2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
|
||||
// Navigation menu
|
||||
Dict::Add('EN GB', 'British English', 'British English', array(
|
||||
Dict::Add('EN GB', 'British English', 'British English', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organisation to filter on',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse',
|
||||
@@ -19,4 +20,4 @@ Dict::Add('EN GB', 'British English', 'British English', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Spanish Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
* @author Miguel Turrubiates <miguel_tf@yahoo.com>
|
||||
* @notas Utilizar codificación UTF-8 para mostrar acentos y otros caracteres especiales
|
||||
* @notas Utilizar codificación UTF-8 para mostrar acentos y otros caracteres especiales
|
||||
*/
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logotipo de la Compañia',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Seleccione la organización para filtrar',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expandir / Contraer',
|
||||
@@ -21,4 +22,4 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Abrir menú de usuario',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtrar entradas del menú',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
Dict::Add('FR FR', 'French', 'Français', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logo entreprise',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Selectionnez l\'organisation sur laquelle filtrer',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Déplier / Replier',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Ouvre le menu utilisateur',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtrer les entrées de menu',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Cég logo',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Válassza ki a szűrni kívánt szervezetet',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Kiterjesztés / Össszecsukás',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Felhasználói menü megnyitása',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Menüpontok szűrése',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logo dell\'azienda',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Seleziona l\'organizzazione per filtrare',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Espandi / Comprimi',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Apri menu utente',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtra le voci del menu',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo~~',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse~~',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Bedrijfslogo',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Selecteer de organisatie waarop gefilterd moet worden',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Vergroot / Verberg',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open gebruikersmenu',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu\'s',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', array(
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logo firmy',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Wybierz organizację do filtrowania',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Rozwiń / Zwiń',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('PL PL', 'Polish', 'Polski', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Otwórz menu użytkownika',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtruj wpisy w menu',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Logo da organização',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Selecione a organização para filtrar',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expandir / Recolher',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Abrir menu do usuário',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filtrar entradas de menu',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Логотип компании',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Развернуть / Свернуть',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Фильтр пунктов меню',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo~~',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse~~',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
||||
* @license https://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*
|
||||
*/
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo~~',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse~~',
|
||||
@@ -23,4 +24,4 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2013-2024 Combodo SAS
|
||||
*
|
||||
@@ -17,7 +18,7 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Navigation menu
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => '公司标志',
|
||||
'UI:Layout:NavigationMenu:Silo:Label' => '请选择要筛选的组织',
|
||||
'UI:Layout:NavigationMenu:Toggler:Tooltip' => '展开/折叠',
|
||||
@@ -31,4 +32,4 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => '打开用户菜单',
|
||||
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => '筛选菜单',
|
||||
|
||||
));
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user