mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-21 08:12:26 +02:00
N°2969 - moved dictionaries
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Page:DefaultTitle' => 'Uživatelský portál %1$s',
|
||||
'Page:PleaseWait' => 'Počkejte prosím',
|
||||
'Page:Home' => 'Domů',
|
||||
'Page:GoPortalHome' => 'Domů',
|
||||
'Page:GoPreviousPage' => 'Předchozí stránka',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Odeslat',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Zrušit',
|
||||
'Portal:Button:Close' => 'Zavřít',
|
||||
'Portal:Button:Add' => 'Přidat',
|
||||
'Portal:Button:Remove' => 'Odebrat',
|
||||
'Portal:Button:Delete' => 'Smazat',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Stránka nenalezena',
|
||||
'Error:HTTP:500' => 'Jejda! Nastal problém',
|
||||
'Error:HTTP:GetHelp' => 'Kontaktujte prosím administrátora, pokud problém přetrvá.',
|
||||
'Error:XHR:Fail' => 'Data se nepodařilo načíst, kontaktujte prosím administrátora.',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Počkejte prosím',
|
||||
'Portal:Datatables:Language:Search' => 'Filtr :',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Zobrazit _MENU_ položek na stránku',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Žádný výsledek',
|
||||
'Portal:Datatables:Language:Info' => 'Stránka _PAGE_ z _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Žádná informace',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'vyfiltrováno z _MAX_ položek',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Žádná data',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Vše',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'První',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Předchozí',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Následující',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Poslední',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'řadit vzestupně',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'řadit sestupně',
|
||||
'Portal:Autocomplete:NoResult' => 'Žádná data',
|
||||
'Portal:Attachments:DropZone:Message' => 'Přesuňte soubory myší pro vložení',
|
||||
'Portal:File:None' => 'No file',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'cs', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Uživatelský profil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Můj profil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Odhlásit',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Heslo',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Zadejte heslo',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Potvrďte heslo',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Pro změnu hesla kontaktujte administrátora',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Nepodařilo se změnit heslo, kontaktujte prosím administrátora',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Osobní informace',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Foto',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:Browse:Name' => 'Procházet položky',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Seznam',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Strom',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Rozpad',
|
||||
'Brick:Portal:Browse:Action:View' => 'Podrobnosti',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Upravit',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Vytvořit',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Nový %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Rozbalit vše',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Sbalit vše',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Žádná položka',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:Manage:Name' => 'Spravovat položky',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Žádná položka',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:Object:Name' => 'Objekt',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Nový %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Aktualizace %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Vyplňte prosím následující informace:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Uloženo',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s uloženo~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Vybrat %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Vybrat %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:Create:Name' => 'Rychlé vytvoření',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal~~',
|
||||
'Page:PleaseWait' => 'Please wait...~~',
|
||||
'Page:Home' => 'Home~~',
|
||||
'Page:GoPortalHome' => 'Home page~~',
|
||||
'Page:GoPreviousPage' => 'Previous page~~',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Submit~~',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Cancel~~',
|
||||
'Portal:Button:Close' => 'Close~~',
|
||||
'Portal:Button:Add' => 'Add~~',
|
||||
'Portal:Button:Remove' => 'Remove~~',
|
||||
'Portal:Button:Delete' => 'Delete~~',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Page not found~~',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.~~',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.~~',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator~~',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:~~',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page~~',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_~~',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information~~',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items~~',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First~~',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next~~',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last~~',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
|
||||
'Portal:Autocomplete:NoResult' => 'No data~~',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
|
||||
'Portal:File:None' => 'No file~~',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'da', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Page:DefaultTitle' => '%1$s - Benutzer Portal',
|
||||
'Page:PleaseWait' => 'Bitte warten...',
|
||||
'Page:Home' => 'Start',
|
||||
'Page:GoPortalHome' => 'Startseite',
|
||||
'Page:GoPreviousPage' => 'vorherige Seite',
|
||||
'Page:ReloadPage' => 'Seite neu laden',
|
||||
'Portal:Button:Submit' => 'Abschicken',
|
||||
'Portal:Button:Apply' => 'Anwenden',
|
||||
'Portal:Button:Cancel' => 'Zurück',
|
||||
'Portal:Button:Close' => 'Schließen',
|
||||
'Portal:Button:Add' => 'Hinzu',
|
||||
'Portal:Button:Remove' => 'Entfernen',
|
||||
'Portal:Button:Delete' => 'Löschen',
|
||||
'Portal:EnvironmentBanner:Title' => 'Sie sind im Moment im <strong>%1$s</strong> Modus',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Zurück zum PRODUCTION Modus',
|
||||
'Error:HTTP:400' => 'Bad Request',
|
||||
'Error:HTTP:401' => 'Authentifizierung',
|
||||
'Error:HTTP:404' => 'Seite nicht gefunden.',
|
||||
'Error:HTTP:500' => 'Oops! Es ist ein Fehler aufgetreten.',
|
||||
'Error:HTTP:GetHelp' => 'Bitte kontaktieren Sie Ihren %1$s Administrator falls das Problem öfter auftaucht.',
|
||||
'Error:XHR:Fail' => 'Konnte Daten nicht laden, bitte kontaktieren Sie Ihren %1$s administrator',
|
||||
'Portal:ErrorUserLoggedOut' => 'Sie sind ausgeloggt und müssen sich erneut einloggen, um fortfahren zu können.',
|
||||
'Portal:Datatables:Language:Processing' => 'Bitte warten...',
|
||||
'Portal:Datatables:Language:Search' => 'Filter :',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Anzahl _MENU_ Einträge pro Seite',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Keine Resultate',
|
||||
'Portal:Datatables:Language:Info' => 'Seite _PAGE_ von _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Keine Information',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'gefiltert aus _MAX_ Resultaten',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Keine Daten in dieser Tabelle verfügbar',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Alle',
|
||||
'Portal:Datatables:Language:Paginate:First' => '1.Seite',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'vorherige',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Nächste',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Letzte',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'wähle aufsteigende Sortierung',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'wähle abfallende Sortierung',
|
||||
'Portal:Autocomplete:NoResult' => 'keine Daten',
|
||||
'Portal:Attachments:DropZone:Message' => 'Legen Sie hier Ihre Files ab, um sie als Anhang dem Ticket hinzuzufügen',
|
||||
'Portal:File:None' => 'Kein File vorhanden',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Öffnen</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'de', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Soll diese Eingabemaske verlassen werden? Eingegebene Daten werden nicht gespeichert.',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Benutzer Profil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Mein Profil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Abmelden',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Passwort',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Passwort wählen',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Passwort bestätigen',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Um das Password zu ändern, kontaktieren Sie bitte Ihren %1$s Administrator',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Passwort kann nicht geändert werden - bitte kontaktieren Sie Ihren %1$s Administrator',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Persönliche Informationen',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Foto',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:Browse:Name' => 'List durchgehen',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Liste',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Baum',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Kachel',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Editieren',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Erstellen',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Neue %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Alle expandieren',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Alle kollabieren',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Kein Eintrag',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:Manage:Name' => 'Einträge managen',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Kein Eintrag.',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Aktionen',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'Liste',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Tortendiagramm',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Balkendiagramm',
|
||||
'Brick:Portal:Manage:Others' => 'Andere',
|
||||
'Brick:Portal:Manage:All' => 'Alle',
|
||||
'Brick:Portal:Manage:Group' => 'Gruppe',
|
||||
'Brick:Portal:Manage:fct:count' => 'Anzahl',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Summe',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Durchschnitt',
|
||||
'Brick:Portal:Manage:fct:min' => 'Minimum',
|
||||
'Brick:Portal:Manage:fct:max' => 'Maximum',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:Object:Name' => 'Object',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Neue %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Wird aktualisiert %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Bitte folgende Informationen eintragen:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'gespeichert',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s gespeichert',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Objektverknüpfung kopieren',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Kopiert'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:Create:Name' => 'Schnelles Erstellen',
|
||||
'Brick:Portal:Create:ChooseType' => 'Bitte wählen Sie einen Typ',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Brick:Portal:Filter:Name' => 'Brick vorfiltern',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'z.B. connect wifi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Suchen',
|
||||
));
|
||||
@@ -0,0 +1,148 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
|
||||
// Portal
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal',
|
||||
'Page:PleaseWait' => 'Please wait...',
|
||||
'Page:Home' => 'Home',
|
||||
'Page:GoPortalHome' => 'Home page',
|
||||
'Page:GoPreviousPage' => 'Previous page',
|
||||
'Page:ReloadPage' => 'Reload page',
|
||||
'Portal:Button:Submit' => 'Submit',
|
||||
'Portal:Button:Apply' => 'Update',
|
||||
'Portal:Button:Cancel' => 'Cancel',
|
||||
'Portal:Button:Close' => 'Close',
|
||||
'Portal:Button:Add' => 'Add',
|
||||
'Portal:Button:Remove' => 'Remove',
|
||||
'Portal:Button:Delete' => 'Delete',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode',
|
||||
'Error:HTTP:400' => 'Bad request',
|
||||
'Error:HTTP:401' => 'Authentication',
|
||||
'Error:HTTP:404' => 'Page not found',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort',
|
||||
'Portal:Autocomplete:NoResult' => 'No data',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments',
|
||||
'Portal:File:None' => 'No file',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'en-us', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart',
|
||||
'Brick:Portal:Manage:Others' => 'Others',
|
||||
'Brick:Portal:Manage:All' => 'All',
|
||||
'Brick:Portal:Manage:Group' => 'Group',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:Object:Name' => 'Object',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, complete the following information:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Page:DefaultTitle' => '%1$s - Portal de Usuario',
|
||||
'Page:PleaseWait' => 'Por favor espere...',
|
||||
'Page:Home' => 'Inicio',
|
||||
'Page:GoPortalHome' => 'Regresar a Inicio',
|
||||
'Page:GoPreviousPage' => 'Página anterior',
|
||||
'Page:ReloadPage' => 'Recargar página',
|
||||
'Portal:Button:Submit' => 'Enviar',
|
||||
'Portal:Button:Apply' => 'Actualizar',
|
||||
'Portal:Button:Cancel' => 'Cancelar',
|
||||
'Portal:Button:Close' => 'Cerrar',
|
||||
'Portal:Button:Add' => 'Añadir',
|
||||
'Portal:Button:Remove' => 'Eliminar',
|
||||
'Portal:Button:Delete' => 'Borrar',
|
||||
'Portal:EnvironmentBanner:Title' => 'Se encuentra en modo <strong>%1$s</strong>',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Regresar a modo PRODUCTION',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Autenticación',
|
||||
'Error:HTTP:404' => 'Página no encontrada',
|
||||
'Error:HTTP:500' => '¡Vaya! Ha ocurrido un error.',
|
||||
'Error:HTTP:GetHelp' => 'Póngase en contacto con el administrador de %1$s si el problema persiste.',
|
||||
'Error:XHR:Fail' => 'No se pudieron cargar datos, póngase en contacto con su administrador de %1$s',
|
||||
'Portal:ErrorUserLoggedOut' => 'Se encuentra desconectado y necesita volver a identificarse para continuar.',
|
||||
'Portal:Datatables:Language:Processing' => 'Por favor esperar...',
|
||||
'Portal:Datatables:Language:Search' => 'Filtrar:',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Mostrar _MENU_ elementos por página',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Sin resultados',
|
||||
'Portal:Datatables:Language:Info' => 'Página _PAGE_ de _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Sin información',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'Filtrada de _MAX_ elementos',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No hay datos disponibles en esta tabla',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Todas',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'primero',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Anterior',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Siguiente',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Último',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'Habilitar para un orden ascendente',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'Habilitar para un tipo descendente',
|
||||
'Portal:Autocomplete:NoResult' => 'Sin datos',
|
||||
'Portal:Attachments:DropZone:Message' => 'Agrega tus archivos para agregarlos como documentos adjuntos',
|
||||
'Portal:File:None' => 'No hay archivo',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Abierto</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'es', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Perfil del usuario',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Mi perfil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Cerrar Sesión',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Contraseña',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Elegir una contraseña',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirmar contraseña',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Para cambiar su contraseña, póngase en contacto con su administrador de %1$s',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'No se puede cambiar la contraseña, póngase en contacto con el administrador de %1$s',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Información Personal',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Foto',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Tablero de Control',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:Browse:Name' => 'Buscar en todos los elementos',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Lista',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Árbol',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaico',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Desglose',
|
||||
'Brick:Portal:Browse:Action:View' => 'Detalles',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Editar',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Crear',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Nuevo %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expandir todo',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Desplegar todo',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Sin elementos',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:Manage:Name' => 'Administrar elementos',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Sin elementos',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Acciones',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'Lista',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Gráfica de Pastel',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Gráfica de Barra',
|
||||
'Brick:Portal:Manage:Others' => 'Otros',
|
||||
'Brick:Portal:Manage:All' => 'Todos',
|
||||
'Brick:Portal:Manage:Group' => 'Grupo',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Suma',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Promedio',
|
||||
'Brick:Portal:Manage:fct:min' => 'Mínimo',
|
||||
'Brick:Portal:Manage:fct:max' => 'Máximo',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:Object:Name' => 'Objecto',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Nuevo %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Actualizando %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Por favor, proporcione la siguiente información:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Guardado',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s guardado~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Selección %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Selección %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:Create:Name' => 'Creación rápida',
|
||||
'Brick:Portal:Create:ChooseType' => 'Por favor, seleccione un tipo',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefiltre un bloquek',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'Ej.:. Conectar a WiFi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Buscar',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Page:DefaultTitle' => 'Portail utilisateur %1$s',
|
||||
'Page:PleaseWait' => 'Veuillez patienter...',
|
||||
'Page:Home' => 'Accueil',
|
||||
'Page:GoPortalHome' => 'Revenir à l\'accueil',
|
||||
'Page:GoPreviousPage' => 'Page précédente',
|
||||
'Page:ReloadPage' => 'Recharger la page',
|
||||
'Portal:Button:Submit' => 'Valider',
|
||||
'Portal:Button:Apply' => 'Mettre à jour',
|
||||
'Portal:Button:Cancel' => 'Annuler',
|
||||
'Portal:Button:Close' => 'Fermer',
|
||||
'Portal:Button:Add' => 'Ajouter',
|
||||
'Portal:Button:Remove' => 'Enlever',
|
||||
'Portal:Button:Delete' => 'Supprimer',
|
||||
'Portal:EnvironmentBanner:Title' => 'Vous êtes dans le mode <strong>%1$s</strong>',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Retourner au mode PRODUCTION',
|
||||
'Error:HTTP:400' => 'Requête incorrecte',
|
||||
'Error:HTTP:401' => 'Authentification',
|
||||
'Error:HTTP:404' => 'Page non trouvée',
|
||||
'Error:HTTP:500' => 'Oups ! Une erreur est survenue.',
|
||||
'Error:HTTP:GetHelp' => 'Si le problème persiste, veuillez contacter votre administrateur %1$s.',
|
||||
'Error:XHR:Fail' => 'Impossible de charger les données, veuillez contacter votre administrateur %1$s si le problème persiste.',
|
||||
'Portal:ErrorUserLoggedOut' => 'Vous êtes déconnecté et devez vous reconnecter pour continuer.',
|
||||
'Portal:Datatables:Language:Processing' => 'Veuillez patienter...',
|
||||
'Portal:Datatables:Language:Search' => 'Filtrer :',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Afficher _MENU_ éléments par page',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Aucun résultat',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ sur _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Pas d\'information disponible',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtrées sur un total de _MAX_ éléments',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Aucune donnée élément à afficher',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Tout',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'Premier',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Précédent',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Suivant',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Dernier',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'activer pour trier la colonne par ordre croissant',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'activer pour trier la colonne par ordre décroissant',
|
||||
'Portal:Autocomplete:NoResult' => 'Aucun résultat',
|
||||
'Portal:Attachments:DropZone:Message' => 'Déposez vos fichiers pour les ajouter en pièces jointes',
|
||||
'Portal:File:None' => 'Aucun fichier',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Ouvrir</a> / <a href="%4$s" class="file_download_link">Télécharger</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'fr', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Voulez-vous quitter ce formulaire ? Les données saisies seront perdues',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Profil utilisateur',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Mon profil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Déconnexion',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Mot de passe',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choisissez un mot de passe',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirmer le mot de passe',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Veuillez vous adresser à votre administrateur %1$s pour changer votre mot de passe',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Impossible de modifier votre mot de passe, veuillez contacter votre administrateur %1$s',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Informations personnelles',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Tableau de bord',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:Browse:Name' => 'Navigation dans les éléments',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Liste',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Hiérarchie',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaïque',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Parcourir',
|
||||
'Brick:Portal:Browse:Action:View' => 'Détails',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Modifier',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Créer',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Créer %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Tout déplier',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Tout replier',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Aucun élément',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:Manage:Name' => 'Gestion d\'éléments',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Aucun élément',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'Liste',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Secteur',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Histogramme',
|
||||
'Brick:Portal:Manage:Others' => 'Autres',
|
||||
'Brick:Portal:Manage:All' => 'Total',
|
||||
'Brick:Portal:Manage:Group' => 'Groupe',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Somme',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Moyenne',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:Object:Name' => 'Objet',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Création de %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Modification de %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Veuillez compléter les informations suivantes :',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Enregistré',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s enregistré(e)',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Sélection de %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Sélection de %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copier l\'url de l\'objet',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copié'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:Create:Name' => 'Création rapide',
|
||||
'Brick:Portal:Create:ChooseType' => 'Veuillez choisir le type',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Brick:Portal:Filter:Name' => 'Préfiltre une brique',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'ex : connecter wifi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Rechercher',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal~~',
|
||||
'Page:PleaseWait' => 'Please wait...~~',
|
||||
'Page:Home' => 'Home~~',
|
||||
'Page:GoPortalHome' => 'Home page~~',
|
||||
'Page:GoPreviousPage' => 'Previous page~~',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Submit~~',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Cancel~~',
|
||||
'Portal:Button:Close' => 'Close~~',
|
||||
'Portal:Button:Add' => 'Add~~',
|
||||
'Portal:Button:Remove' => 'Remove~~',
|
||||
'Portal:Button:Delete' => 'Delete~~',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Page not found~~',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.~~',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.~~',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator~~',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:~~',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page~~',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_~~',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information~~',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items~~',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First~~',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next~~',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last~~',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
|
||||
'Portal:Autocomplete:NoResult' => 'No data~~',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
|
||||
'Portal:File:None' => 'No file~~',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'hu', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Page:DefaultTitle' => '%1$s Portale Utente',
|
||||
'Page:PleaseWait' => 'Attendere…',
|
||||
'Page:Home' => 'Home',
|
||||
'Page:GoPortalHome' => 'Home Page',
|
||||
'Page:GoPreviousPage' => 'Pagina precedente',
|
||||
'Page:ReloadPage' => 'Ricaricare pagina',
|
||||
'Portal:Button:Submit' => 'Invia',
|
||||
'Portal:Button:Apply' => 'Aggiorna',
|
||||
'Portal:Button:Cancel' => 'Cancella',
|
||||
'Portal:Button:Close' => 'Chiudi',
|
||||
'Portal:Button:Add' => 'Aggiungi',
|
||||
'Portal:Button:Remove' => 'Rimuovi',
|
||||
'Portal:Button:Delete' => 'Elimina',
|
||||
'Portal:EnvironmentBanner:Title' => 'Sei attualmente in modalità <strong>%1$s</strong>',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Ritorna alla modalità Produzione',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Autenticazione',
|
||||
'Error:HTTP:404' => 'La Pagina non funziona',
|
||||
'Error:HTTP:500' => 'Oops, si è presentato un errore',
|
||||
'Error:HTTP:GetHelp' => 'Contattate il suovstro $1$s amministratore se il problema persiste',
|
||||
'Error:XHR:Fail' => 'Non è possibile caricare i dati , cotattate il vostro %1$s amministratore',
|
||||
'Portal:ErrorUserLoggedOut' => 'Sei disconnesso, bisogna effettuare un nuovo accesso per continuare',
|
||||
'Portal:Datatables:Language:Processing' => 'Attendere…',
|
||||
'Portal:Datatables:Language:Search' => 'Filtrare:',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Visualizza _MENU_items per pagina',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Nessun Risultato',
|
||||
'Portal:Datatables:Language:Info' => 'Pagina _PAGE_ di _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Nessun Informazione',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'Filtro oltre _MAX_ items',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Nessun dato disponibile per questa tabella',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Tutti',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'Primo',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Precedente',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Prossimo',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Ultimo',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'Attiva per crescente',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'Attiva de decrescente',
|
||||
'Portal:Autocomplete:NoResult' => 'No data',
|
||||
'Portal:Attachments:DropZone:Message' => 'Trascina il tuo file per aggiungerlo tra gli allegati',
|
||||
'Portal:File:None' => 'No File',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'it', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal~~',
|
||||
'Page:PleaseWait' => 'Please wait...~~',
|
||||
'Page:Home' => 'Home~~',
|
||||
'Page:GoPortalHome' => 'Home page~~',
|
||||
'Page:GoPreviousPage' => 'Previous page~~',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Submit~~',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Cancel~~',
|
||||
'Portal:Button:Close' => 'Close~~',
|
||||
'Portal:Button:Add' => 'Add~~',
|
||||
'Portal:Button:Remove' => 'Remove~~',
|
||||
'Portal:Button:Delete' => 'Delete~~',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Page not found~~',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.~~',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.~~',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator~~',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:~~',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page~~',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_~~',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information~~',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items~~',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First~~',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next~~',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last~~',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
|
||||
'Portal:Autocomplete:NoResult' => 'No data~~',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
|
||||
'Portal:File:None' => 'No file~~',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'ja', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,150 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
/**
|
||||
* @author Jeffrey Bostoen - <jbostoen.itop@outlook.com> (2018 - 2020)
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Page:DefaultTitle' => '%1$s Gebruikersportaal',
|
||||
'Page:PleaseWait' => 'Even geduld...',
|
||||
'Page:Home' => 'Welkom',
|
||||
'Page:GoPortalHome' => 'Startpagina',
|
||||
'Page:GoPreviousPage' => 'Vorige pagina',
|
||||
'Page:ReloadPage' => 'Pagina herladen',
|
||||
'Portal:Button:Submit' => 'Verstuur',
|
||||
'Portal:Button:Apply' => 'Update',
|
||||
'Portal:Button:Cancel' => 'Afbreken',
|
||||
'Portal:Button:Close' => 'Sluiten',
|
||||
'Portal:Button:Add' => 'Toevoegen',
|
||||
'Portal:Button:Remove' => 'Verwijderen',
|
||||
'Portal:Button:Delete' => 'Verwijderen',
|
||||
'Portal:EnvironmentBanner:Title' => 'Je werkt momenteel in de <strong>%1$s</strong>-omgeving',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Keer terug naar de productie-omgeving',
|
||||
'Error:HTTP:400' => 'Ongeldig verzoek',
|
||||
'Error:HTTP:401' => 'Aanmelden is vereist',
|
||||
'Error:HTTP:404' => 'Pagina kan niet worden gevonden',
|
||||
'Error:HTTP:500' => 'Oeps! Er is een fout opgetreden',
|
||||
'Error:HTTP:GetHelp' => 'Neem contact op met de beheerder als dit probleem zich blijft voordoen',
|
||||
'Error:XHR:Fail' => 'De data kan niet worden geladen, neem contact op met de beheerder',
|
||||
'Portal:ErrorUserLoggedOut' => 'Je bent afgemeld en moet opnieuw aanmelden om verder te kunnen werken.',
|
||||
'Portal:Datatables:Language:Processing' => 'Even geduld...',
|
||||
'Portal:Datatables:Language:Search' => 'Filter :',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Toon _MENU_ items per pagina',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Geen resultaten',
|
||||
'Portal:Datatables:Language:Info' => 'Pagina _PAGE_ van _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Geen informatie',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'gefilterd van _MAX_ items',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Geen data beschikbaar in deze tabel',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Alles',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'Eerste',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Vorige',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Volgende',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Laatste',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'inschakelen voor een oplopende sortering',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'inschakelen voor een aflopende sortering',
|
||||
'Portal:Autocomplete:NoResult' => 'Geen data',
|
||||
'Portal:Attachments:DropZone:Message' => 'Sleep jouw bestanden hier om ze toe te voegen',
|
||||
'Portal:File:None' => 'Geen bestand',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'nl', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Ben je zeker dat je dit venster wil sluiten? Ingevoerde gegevens kunnen verloren gaan.',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Gebruikersprofiel',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Mijn profiel',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Uitloggen',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Wachtwoord',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Nieuw wachtwoord',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Bevestig nieuw wachtwoord',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Neem contact op met de beheerder om jouw wachtwoord te wijzgen',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Jouw wachtwoord kan niet gewijzigd worden. Neem contact op met de beheerder',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Persoonlijke informatie',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Foto',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:Browse:Name' => 'Bladeren',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Lijst',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Boomstructuur',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mozaïek',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Wijzigen',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Aanmaken',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Nieuw %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Toon alles',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Verberg alles',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Geen gegevens',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:Manage:Name' => 'Beheer items',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Geen gegevens',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Acties',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'Lijst',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Taartgrafiek',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Staafgrafiek',
|
||||
'Brick:Portal:Manage:Others' => 'Andere',
|
||||
'Brick:Portal:Manage:All' => 'Alles',
|
||||
'Brick:Portal:Manage:Group' => 'Groep',
|
||||
'Brick:Portal:Manage:fct:count' => 'Totaal',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Som',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Gemiddelde',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:Object:Name' => 'Object',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Nieuw %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Verwerken %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Vul de volgende informatie in:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Opgeslagen',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s opgeslagen',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Geselecteerd %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Selecteer %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Kopieer link naar object',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Gekopieerd'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:Create:Name' => 'Snel aanmaken',
|
||||
'Brick:Portal:Create:ChooseType' => 'Geef een type op.',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Brick:Portal:Filter:Name' => 'Voorfilteren van een bouwsteen',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'bv. wifi-verbinding',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Zoek',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Page:DefaultTitle' => 'Portal do usuário iTop',
|
||||
'Page:PleaseWait' => 'Aguarde...',
|
||||
'Page:Home' => 'Home',
|
||||
'Page:GoPortalHome' => 'Página Inicial',
|
||||
'Page:GoPreviousPage' => 'Página anterior',
|
||||
'Page:ReloadPage' => 'Atualizar página',
|
||||
'Portal:Button:Submit' => 'Enviar',
|
||||
'Portal:Button:Apply' => 'Alterar',
|
||||
'Portal:Button:Cancel' => 'Cancelar',
|
||||
'Portal:Button:Close' => 'Fechar',
|
||||
'Portal:Button:Add' => 'Adicionar',
|
||||
'Portal:Button:Remove' => 'Remover',
|
||||
'Portal:Button:Delete' => 'Deletar',
|
||||
'Portal:EnvironmentBanner:Title' => 'Você está atualmente em <strong>%1$s</strong>',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Volte para o modo PRODUÇÃO',
|
||||
'Error:HTTP:400' => 'Pedido ruim',
|
||||
'Error:HTTP:401' => 'Autenticação',
|
||||
'Error:HTTP:404' => 'Está página não existe',
|
||||
'Error:HTTP:500' => 'Oops! Ocorreu um erro, informe a T.I.',
|
||||
'Error:HTTP:GetHelp' => 'Por favor, entre em contato com a T.I para verificar este problema.',
|
||||
'Error:XHR:Fail' => 'Não foi possível carregar dados, entre em contato com o T.I.',
|
||||
'Portal:ErrorUserLoggedOut' => 'Você está desconectado e precisa fazer o login novamente para continuar.',
|
||||
'Portal:Datatables:Language:Processing' => 'Aguarde...',
|
||||
'Portal:Datatables:Language:Search' => 'Filtro:',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Lista _MENU_ itens por página',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Sem resultados',
|
||||
'Portal:Datatables:Language:Info' => 'Páginas: _PAGE_ of _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Sem Informações',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'Filtrado de: _MAX_ items',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Todos',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'Primeira',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Anterior',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Próximo',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Anterior',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'Habilitar para um tipo ascendente',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'Habilitar para um tipo descendentes',
|
||||
'Portal:Autocomplete:NoResult' => 'Sem dados',
|
||||
'Portal:Attachments:DropZone:Message' => 'Solte seus arquivos para adicioná-los como anexos.',
|
||||
'Portal:File:None' => 'Nenhum arquivo',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Abrir</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'pt-br', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Perfil Usuário',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Meu Perfil',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Sair',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Senha',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Escolha a senha',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirme a senha',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Para alterar sua senha, entre em contato com a T.I.',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Não é possível alterar a senha, entre em contato com a T.I.',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Informações pessoais',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Foto',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Painel de controle',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:Browse:Name' => 'Navegar por itens',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Lista',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Cascata',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaico',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Detalhamento',
|
||||
'Brick:Portal:Browse:Action:View' => 'Detalhes',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Editar',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Criar',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Novo %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expandir todos',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Recolher todos',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Sem dados',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:Manage:Name' => 'Gerenciar itens',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Sem dados.',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Ações',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Gráfico de pizza',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart',
|
||||
'Brick:Portal:Manage:Others' => 'Outros',
|
||||
'Brick:Portal:Manage:All' => 'Todos',
|
||||
'Brick:Portal:Manage:Group' => 'Group',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Média',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:Object:Name' => 'Objeto',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Novo %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Alterar %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Por favor, preencha as seguintes informações:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Salvo',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s salvo~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Selecionar %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Selecinar %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:Create:Name' => 'Criação rápida',
|
||||
'Brick:Portal:Create:ChooseType' => 'Por favor, escolha um tipo:',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Brick:Portal:Filter:Name' => 'Filtro ativado',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Pesquisa',
|
||||
));
|
||||
@@ -0,0 +1,156 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
/**
|
||||
* Локализация интерфейса Combodo iTop подготовлена сообществом iTop по-русски http://community.itop-itsm.ru.
|
||||
*
|
||||
* @author Vladimir Kunin <v.b.kunin@gmail.com>
|
||||
* @link http://community.itop-itsm.ru iTop Russian Community
|
||||
* @link https://github.com/itop-itsm-ru/itop-rus
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Page:DefaultTitle' => 'Пользовательский портал %1$s',
|
||||
'Page:PleaseWait' => 'Пожалуйста, подождите...',
|
||||
'Page:Home' => 'Домашняя страница',
|
||||
'Page:GoPortalHome' => 'Домашняя страница',
|
||||
'Page:GoPreviousPage' => 'Предыдущяя страница',
|
||||
'Page:ReloadPage' => 'Перезагрузить страницу',
|
||||
'Portal:Button:Submit' => 'Применить',
|
||||
'Portal:Button:Apply' => 'Обновить',
|
||||
'Portal:Button:Cancel' => 'Отменить',
|
||||
'Portal:Button:Close' => 'Закрыть',
|
||||
'Portal:Button:Add' => 'Добавить',
|
||||
'Portal:Button:Remove' => 'Удалить',
|
||||
'Portal:Button:Delete' => 'Удалить',
|
||||
'Portal:EnvironmentBanner:Title' => 'Вы находитесь в режиме <strong>%1$s</strong>',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Вернуться в режим PRODUCTION',
|
||||
'Error:HTTP:400' => 'Некорректный запрос',
|
||||
'Error:HTTP:401' => 'Ошибка аутентификации',
|
||||
'Error:HTTP:404' => 'Страница не найдена',
|
||||
'Error:HTTP:500' => 'Упс! Произошла ошибка.',
|
||||
'Error:HTTP:GetHelp' => 'Пожалуйста, свяжитесь с вашим администратором %1$s, если проблема сохраняется.',
|
||||
'Error:XHR:Fail' => 'Не удалось загрузить данные. Пожалуйста, свяжитесь с вашим администратором %1$s.',
|
||||
'Portal:ErrorUserLoggedOut' => 'Вы вышли из системы. Выполните вход, чтобы продолжить работу.',
|
||||
'Portal:Datatables:Language:Processing' => 'Пожалуйста, подождите...',
|
||||
'Portal:Datatables:Language:Search' => 'Фильтр :',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Показывать _MENU_ элементов на странице',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'Нет записей',
|
||||
'Portal:Datatables:Language:Info' => 'Страница _PAGE_ из _PAGES_',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'Нет информации',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'Отфильтровано из _MAX_ элементов',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'Нет данных в этой таблице',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'Все',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'Первая',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Предыдущая',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Следующая',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Последняя',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'Включить сортировку по возрастанию',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'Включить сортировку по убыванию',
|
||||
'Portal:Autocomplete:NoResult' => 'Нет данных',
|
||||
'Portal:Attachments:DropZone:Message' => 'Перетащите файл для добавления вложения',
|
||||
'Portal:File:None' => 'Нет файла',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Открыть</a> / <a href="%4$s" class="file_download_link">Скачать</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'ru', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Вы действительно хотите закрыть эту форму? Введённые данные могут быть утеряны.',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'Профиль пользователя',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'Мой профиль',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Выйти',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Пароль',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Введите новый пароль',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Подтвердите новый пароль',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'Пожалуйста, свяжитесь с вашим администратором %1$s для изменения пароля.',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Не удалось изменить пароль, пожалуйста, свяжитесь с вашим администратором %1$s.',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Персональная информация',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Фотография',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Дашборд',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:Browse:Name' => 'Просмотр элементов',
|
||||
'Brick:Portal:Browse:Mode:List' => 'Список',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Дерево',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Плитки',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Детализация',
|
||||
'Brick:Portal:Browse:Action:View' => 'Подробно',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Изменить',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Создать',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'Новый %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Развернуть все',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Свернуть все',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'Нет элементов',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:Manage:Name' => 'Управление элементами',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'Нет элементов',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Действия',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'Список',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Круговая диаграмма',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Столбчатая диаграмма',
|
||||
'Brick:Portal:Manage:Others' => 'Другие',
|
||||
'Brick:Portal:Manage:All' => 'Все',
|
||||
'Brick:Portal:Manage:Group' => 'Группа',
|
||||
'Brick:Portal:Manage:fct:count' => 'Всего',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Сумма',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Среднее',
|
||||
'Brick:Portal:Manage:fct:min' => 'Минимум',
|
||||
'Brick:Portal:Manage:fct:max' => 'Максимум',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:Object:Name' => 'Object',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'Создать %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Обновление %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Пожалуйста, укажите следующую информацию:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Сохранено',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s сохранено',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Выбрать %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Выбрать %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Скопировать ссылку на объект',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Ссылка скопирована'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:Create:Name' => 'Быстрое создание',
|
||||
'Brick:Portal:Create:ChooseType' => 'Пожалуйста, выберите тип',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Brick:Portal:Filter:Name' => 'Фильтр',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'например, подключить wi-fi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Искать',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal~~',
|
||||
'Page:PleaseWait' => 'Please wait...~~',
|
||||
'Page:Home' => 'Home~~',
|
||||
'Page:GoPortalHome' => 'Home page~~',
|
||||
'Page:GoPreviousPage' => 'Previous page~~',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Submit~~',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Cancel~~',
|
||||
'Portal:Button:Close' => 'Close~~',
|
||||
'Portal:Button:Add' => 'Add~~',
|
||||
'Portal:Button:Remove' => 'Remove~~',
|
||||
'Portal:Button:Delete' => 'Delete~~',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Page not found~~',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.~~',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.~~',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator~~',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:~~',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page~~',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_~~',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information~~',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items~~',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First~~',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next~~',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last~~',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
|
||||
'Portal:Autocomplete:NoResult' => 'No data~~',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
|
||||
'Portal:File:None' => 'No file~~',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'en-us~~', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Page:DefaultTitle' => '%1$s User portal~~',
|
||||
'Page:PleaseWait' => 'Please wait...~~',
|
||||
'Page:Home' => 'Home~~',
|
||||
'Page:GoPortalHome' => 'Home page~~',
|
||||
'Page:GoPreviousPage' => 'Previous page~~',
|
||||
'Page:ReloadPage' => 'Reload page~~',
|
||||
'Portal:Button:Submit' => 'Submit~~',
|
||||
'Portal:Button:Apply' => 'Update~~',
|
||||
'Portal:Button:Cancel' => 'Cancel~~',
|
||||
'Portal:Button:Close' => 'Close~~',
|
||||
'Portal:Button:Add' => 'Add~~',
|
||||
'Portal:Button:Remove' => 'Remove~~',
|
||||
'Portal:Button:Delete' => 'Delete~~',
|
||||
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => 'Authentication~~',
|
||||
'Error:HTTP:404' => 'Page not found~~',
|
||||
'Error:HTTP:500' => 'Oops! An error has occured.~~',
|
||||
'Error:HTTP:GetHelp' => 'Please contact your %1$s administrator if the problem keeps happening.~~',
|
||||
'Error:XHR:Fail' => 'Could not load data, please contact your %1$s administrator~~',
|
||||
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
|
||||
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
|
||||
'Portal:Datatables:Language:Search' => 'Filter:~~',
|
||||
'Portal:Datatables:Language:LengthMenu' => 'Display _MENU_ items per page~~',
|
||||
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
|
||||
'Portal:Datatables:Language:Info' => 'Page _PAGE_ of _PAGES_~~',
|
||||
'Portal:Datatables:Language:InfoEmpty' => 'No information~~',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items~~',
|
||||
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
|
||||
'Portal:Datatables:Language:Paginate:First' => 'First~~',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
|
||||
'Portal:Datatables:Language:Paginate:Next' => 'Next~~',
|
||||
'Portal:Datatables:Language:Paginate:Last' => 'Last~~',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
|
||||
'Portal:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
|
||||
'Portal:Autocomplete:NoResult' => 'No data~~',
|
||||
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
|
||||
'Portal:File:None' => 'No file~~',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>~~',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>~~',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'tr', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:UserProfile:Name' => 'User profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
|
||||
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => 'Choose password~~',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
|
||||
'Brick:Portal:Browse:Mode:List' => 'List~~',
|
||||
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
|
||||
'Brick:Portal:Browse:Action:View' => 'Details~~',
|
||||
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
|
||||
'Brick:Portal:Browse:Action:Create' => 'Create~~',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
|
||||
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Manage:Name' => 'Manage items~~',
|
||||
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
|
||||
'Brick:Portal:Manage:Others' => 'Others~~',
|
||||
'Brick:Portal:Manage:All' => 'All~~',
|
||||
'Brick:Portal:Manage:Group' => 'Group~~',
|
||||
'Brick:Portal:Manage:fct:count' => 'Total~~',
|
||||
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
|
||||
'Brick:Portal:Manage:fct:avg' => 'Average~~',
|
||||
'Brick:Portal:Manage:fct:min' => 'Min~~',
|
||||
'Brick:Portal:Manage:fct:max' => 'Max~~',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Create:Name' => 'Quick creation~~',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
|
||||
));
|
||||
@@ -0,0 +1,147 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2020 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Page:DefaultTitle' => 'iTop 用户门户',
|
||||
'Page:PleaseWait' => '请稍后...',
|
||||
'Page:Home' => '主页',
|
||||
'Page:GoPortalHome' => '主页面',
|
||||
'Page:GoPreviousPage' => '上一页',
|
||||
'Page:ReloadPage' => '重新加载',
|
||||
'Portal:Button:Submit' => '提交',
|
||||
'Portal:Button:Apply' => '更新',
|
||||
'Portal:Button:Cancel' => '取消',
|
||||
'Portal:Button:Close' => '关闭',
|
||||
'Portal:Button:Add' => '添加',
|
||||
'Portal:Button:Remove' => '移除',
|
||||
'Portal:Button:Delete' => '删除',
|
||||
'Portal:EnvironmentBanner:Title' => '您目前处于 <strong>%1$s</strong> 模式',
|
||||
'Portal:EnvironmentBanner:GoToProduction' => '回到产品模式',
|
||||
'Error:HTTP:400' => 'Bad request~~',
|
||||
'Error:HTTP:401' => '认证',
|
||||
'Error:HTTP:404' => '页面找不到',
|
||||
'Error:HTTP:500' => 'Oops! 发生了一个错误.',
|
||||
'Error:HTTP:GetHelp' => '如果问题仍然存在,请联系管理员.',
|
||||
'Error:XHR:Fail' => '无法加载数据, 请联系管理员',
|
||||
'Portal:ErrorUserLoggedOut' => '您已退出,请重新登录.',
|
||||
'Portal:Datatables:Language:Processing' => '请稍后...',
|
||||
'Portal:Datatables:Language:Search' => '过滤器:',
|
||||
'Portal:Datatables:Language:LengthMenu' => '每页显示 _MENU_ 项',
|
||||
'Portal:Datatables:Language:ZeroRecords' => '没有结果',
|
||||
'Portal:Datatables:Language:Info' => '第 _PAGE_ 页,共 _PAGES_ 页',
|
||||
'Portal:Datatables:Language:InfoEmpty' => '没有信息',
|
||||
'Portal:Datatables:Language:InfoFiltered' => 'filtered out of _MAX_ items',
|
||||
'Portal:Datatables:Language:EmptyTable' => '表格中没有数据',
|
||||
'Portal:Datatables:Language:DisplayLength:All' => '全部',
|
||||
'Portal:Datatables:Language:Paginate:First' => '首页',
|
||||
'Portal:Datatables:Language:Paginate:Previous' => '上一页',
|
||||
'Portal:Datatables:Language:Paginate:Next' => '下一页',
|
||||
'Portal:Datatables:Language:Paginate:Last' => '尾页',
|
||||
'Portal:Datatables:Language:Sort:Ascending' => '升序排序',
|
||||
'Portal:Datatables:Language:Sort:Descending' => '降序排序',
|
||||
'Portal:Autocomplete:NoResult' => '没有数据',
|
||||
'Portal:Attachments:DropZone:Message' => '把文件添加为附件',
|
||||
'Portal:File:None' => '没有文件',
|
||||
'Portal:File:DisplayInfo' => '<a href="%2$s" class="file_download_link">%1$s</a>',
|
||||
'Portal:File:DisplayInfo+' => '%1$s (%2$s) <a href="%3$s" class="file_open_link" target="_blank">Open</a> / <a href="%4$s" class="file_download_link">Download</a>',
|
||||
'Portal:Calendar-FirstDayOfWeek' => 'en-us~~', //work with moment.js locales
|
||||
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
|
||||
));
|
||||
|
||||
// UserProfile brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:UserProfile:Name' => '用户资料',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => '我的资料',
|
||||
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => '注销',
|
||||
'Brick:Portal:UserProfile:Password:Title' => '密码',
|
||||
'Brick:Portal:UserProfile:Password:ChoosePassword' => '新密码',
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => '确认密码',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => '要修改密码,请联系管理员',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => '无法修改密码, 请联系管理员',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => '个体信息',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => '头像',
|
||||
));
|
||||
|
||||
// AggregatePageBrick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard',
|
||||
));
|
||||
|
||||
// BrowseBrick brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Browse:Name' => '浏览项目',
|
||||
'Brick:Portal:Browse:Mode:List' => '列表',
|
||||
'Brick:Portal:Browse:Mode:Tree' => '树形',
|
||||
'Brick:Portal:Browse:Mode:Mosaic' => '嵌套',
|
||||
'Brick:Portal:Browse:Action:Drilldown' => '明细',
|
||||
'Brick:Portal:Browse:Action:View' => '详情',
|
||||
'Brick:Portal:Browse:Action:Edit' => '编辑',
|
||||
'Brick:Portal:Browse:Action:Create' => '新建',
|
||||
'Brick:Portal:Browse:Action:CreateObjectFromThis' => '新建 %1$s',
|
||||
'Brick:Portal:Browse:Tree:ExpandAll' => '全部展开',
|
||||
'Brick:Portal:Browse:Tree:CollapseAll' => '全部收起',
|
||||
'Brick:Portal:Browse:Filter:NoData' => '没有项目',
|
||||
));
|
||||
|
||||
// ManageBrick brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Manage:Name' => '管理项目',
|
||||
'Brick:Portal:Manage:Table:NoData' => '没有项目.',
|
||||
'Brick:Portal:Manage:Table:ItemActions' => 'Actions',
|
||||
'Brick:Portal:Manage:DisplayMode:list' => '列表',
|
||||
'Brick:Portal:Manage:DisplayMode:pie-chart' => '饼图',
|
||||
'Brick:Portal:Manage:DisplayMode:bar-chart' => '条形图',
|
||||
'Brick:Portal:Manage:Others' => 'Others',
|
||||
'Brick:Portal:Manage:All' => '全部',
|
||||
'Brick:Portal:Manage:Group' => '分组',
|
||||
'Brick:Portal:Manage:fct:count' => '个数',
|
||||
'Brick:Portal:Manage:fct:sum' => '总数',
|
||||
'Brick:Portal:Manage:fct:avg' => '平均',
|
||||
'Brick:Portal:Manage:fct:min' => '最小',
|
||||
'Brick:Portal:Manage:fct:max' => '最大',
|
||||
));
|
||||
|
||||
// ObjectBrick brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Object:Name' => '对象',
|
||||
'Brick:Portal:Object:Form:Create:Title' => '新建 %1$s',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => '正在更新 %2$s (%1$s)',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => '已保存',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '已保存 %1$s~~',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => '选择 %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => '选择 %1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%1$s: %2$s~~',
|
||||
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
|
||||
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~'
|
||||
));
|
||||
|
||||
// CreateBrick brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Create:Name' => '快速创建',
|
||||
'Brick:Portal:Create:ChooseType' => 'Please, choose a type',
|
||||
));
|
||||
|
||||
// Filter brick
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Filter:Name' => 'Prefilter a brick',
|
||||
'Brick:Portal:Filter:SearchInput:Placeholder' => '例如. 连接 wifi',
|
||||
'Brick:Portal:Filter:SearchInput:Submit' => '搜素',
|
||||
));
|
||||
Reference in New Issue
Block a user