Merge remote-tracking branch 'origin/support/3.2' into develop

This commit is contained in:
Benjamin Dalsass
2024-06-07 08:20:40 +02:00
140 changed files with 6684 additions and 10779 deletions

View File

@@ -242,7 +242,9 @@ The object can be modified.]]></description>
<event id="EVENT_DB_CHECK_TO_WRITE" _delta="define">
<name>Check to write</name>
<description><![CDATA[Check an object before it is written into the database (no change possible).
Call $this->AddCheckIssue() to signal an issue.]]></description>
Call $this->AddCheckIssue($sErrorMessage) to report a blocking issue.
Call $this->AddCheckWarning($sWarningMessage) to display a warning.
]]></description>
<sources>
<source id="cmdbAbstractObject">cmdbAbstractObject</source>
</sources>
@@ -292,7 +294,7 @@ The modifications can be propagated to other objects.]]></description>
<event id="EVENT_DB_CHECK_TO_DELETE" _delta="define">
<name>Check to delete</name>
<description><![CDATA[Check an object before it is deleted from the database.
Call $this->AddDeleteIssue() to signal an issue.]]></description>
Call $this->AddDeleteIssue($sIssueMessage) to signal an issue.]]></description>
<sources>
<source id="cmdbAbstractObject">cmdbAbstractObject</source>
</sources>
@@ -347,7 +349,7 @@ Call $this->AddDeleteIssue() to signal an issue.]]></description>
<event id="EVENT_ENUM_TRANSITIONS" _delta="define">
<name>Enum transitions</name>
<description><![CDATA[Manage the allowed transitions in current object state.
The only action allowed is to deny transitions with $this->DenyTransition()]]></description>
The only action allowed is to deny transitions with $this->DenyTransition($sTransitionCode)]]></description>
<sources>
<source id="cmdbAbstractObject">cmdbAbstractObject</source>
</sources>
@@ -456,7 +458,7 @@ The only action allowed is to deny transitions with $this->DenyTransition()]]></
<event id="EVENT_DB_SET_ATTRIBUTES_FLAGS" _delta="define">
<name>Set attributes flags</name>
<description><![CDATA[Set object attributes flags.
Call $this->AddAttributeFlags() for all the attributes to be set for this target state.]]></description>
Call $this->AddAttributeFlags($sAttCode, $iFlags) for all the attributes to be set for this target state.]]></description>
<sources>
<source id="cmdbAbstractObject">cmdbAbstractObject</source>
</sources>
@@ -478,7 +480,7 @@ Call $this->AddAttributeFlags() for all the attributes to be set for this target
<event id="EVENT_DB_SET_INITIAL_ATTRIBUTES_FLAGS" _delta="define">
<name>Set initial attributes flags</name>
<description><![CDATA[Set object initial attributes flags.
Call $this->AddInitialAttributeFlags() for all the initial attributes to be set initially.]]></description>
Call $this->AddInitialAttributeFlags($sAttCode, $iFlags) for all the initial attributes to be set initially.]]></description>
<sources>
<source id="cmdbAbstractObject">cmdbAbstractObject</source>
</sources>

View File

@@ -455,8 +455,12 @@ abstract class User extends cmdbAbstractObject
&& empty($this->Get('contactid'))) {
$this->m_aCheckIssues[] = Dict::S('Class:User/Error:PersonIsMandatory');
}
// Warning if the user has no associated contact
elseif (empty($this->Get('contactid'))) {
$this->AddCheckWarning(Dict::S('Class:User/Warning:NoContactHasImpact'));
}
// Allowed orgs must contains the user org (if any)
// Allowed orgs must contain the user org (if any)
if (!empty($this->Get('org_id')) && !UserRights::IsAdministrator($this)) {
// Get the user org and all its parent orgs
$aUserOrgs = [$this->Get('org_id')];
@@ -485,6 +489,11 @@ abstract class User extends cmdbAbstractObject
}
}
// Modified User is not administrator and has no allowed orgs, warn about the consequences
if (!UserRights::IsAdministrator($this) && ($this->get('allowed_org_list')->Count() == 0)) {
$this->AddCheckWarning(Dict::S('Class:User/Warning:NoOrganizationMeansFullAccess'));
}
if (!UserRights::IsAdministrator()) {
$oUser = UserRights::GetUserObject();
if (!is_null($oUser) && method_exists($oAddon, 'GetUserOrgs')) {

View File

@@ -2,11 +2,15 @@
/**
* Localized data
*
* @copyright Copyright (C) 2013 XXXXX
* @license http://opensource.org/licenses/AGPL-3.0
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'CAS:Error:UserNotAllowed' => 'User not allowed~~',
'CAS:Login:SignIn' => 'Sign in with CAS~~',
'CAS:Login:SignInTooltip' => 'Click here to authenticate yourself with the CAS server~~',
));
]);

View File

@@ -3,36 +3,13 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: UserExternal
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:UserExternal' => 'Externý užívateľ',
'Class:UserExternal+' => '',
));
'Class:UserExternal+' => 'User authentified outside of '.ITOP_APPLICATION_SHORT.'~~',
]);

View File

@@ -3,37 +3,14 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: UserLDAP
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:UserLDAP' => 'LDAP užívateľ',
'Class:UserLDAP+' => '',
'Class:UserLDAP+' => 'User authentified by LDAP~~',
'UserLDAP:server' => 'LDAP specifics~~',
));
]);

View File

@@ -3,53 +3,30 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: UserLocal
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' užívateľ',
'Class:UserLocal+' => '',
'Class:UserLocal/Attribute:password' => 'Heslo',
'Class:UserLocal/Attribute:password+' => '',
'Class:UserLocal+' => 'User authentified by '.ITOP_APPLICATION_SHORT.'~~',
'Class:UserLocal/Attribute:expiration' => 'Password expiration~~',
'Class:UserLocal/Attribute:expiration+' => 'Password expiration status (requires an extension to have an effect)~~',
'Class:UserLocal/Attribute:expiration/Value:can_expire' => 'Can expire~~',
'Class:UserLocal/Attribute:expiration/Value:can_expire+' => '~~',
'Class:UserLocal/Attribute:expiration/Value:never_expire' => 'Never expire~~',
'Class:UserLocal/Attribute:expiration/Value:never_expire+' => '~~',
'Class:UserLocal/Attribute:expiration/Value:force_expire' => 'Expired~~',
'Class:UserLocal/Attribute:expiration/Value:force_expire+' => '~~',
'Class:UserLocal/Attribute:expiration/Value:never_expire' => 'Never expire~~',
'Class:UserLocal/Attribute:expiration/Value:never_expire+' => '~~',
'Class:UserLocal/Attribute:expiration/Value:otp_expire' => 'One-time Password~~',
'Class:UserLocal/Attribute:expiration/Value:otp_expire+' => 'Password cannot be changed by the user.~~',
'Class:UserLocal/Attribute:password' => 'Heslo',
'Class:UserLocal/Attribute:password+' => 'User authentication string~~',
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
'Class:UserLocal/Error:OneTimePasswordChangeIsNotAllowed' => 'Setting password expiration to "One-time password" is not allowed for your own User~~',
'Error:UserLocalPasswordValidator:UserPasswordPolicyRegex:ValidationFailed' => 'Password must be at least 8 characters and include uppercase, lowercase, numeric and special characters.~~',
'UserLocal:password:expiration' => 'The fields below require an extension~~',
'Class:UserLocal/Error:OneTimePasswordChangeIsNotAllowed' => 'Setting password expiration to "One-time password" is not allowed for your own User~~',
));
]);

View File

@@ -3,23 +3,12 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'theme:darkmoon' => 'Dark moon~~',
));
]);

View File

@@ -3,85 +3,64 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Database inconsistencies
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
// Dictionary entries go here
'Menu:DBToolsMenu' => 'Database integrity~~',
'DBTools:Class' => 'Class~~',
'DBTools:Title' => 'Database integrity check~~',
'DBTools:ErrorsFound' => 'Errors Found~~',
'DBTools:Indication' => 'Important: after fixing errors in the database you\'ll have to run the analysis again as new inconsistencies will be generated~~',
'DBTools:Disclaimer' => 'DISCLAIMER: BACKUP YOUR DATABASE BEFORE RUNNING THE FIXES~~',
'DBTools:Error' => 'Error~~',
'DBTools:Count' => 'Count~~',
'DBTools:SQLquery' => 'SQL query~~',
'DBTools:FixitSQLquery' => 'SQL query To Fix it (indication)~~',
'DBTools:SQLresult' => 'SQL result~~',
'DBTools:NoError' => 'The database is OK~~',
'DBTools:HideIds' => 'Error List~~',
'DBTools:ShowIds' => 'Detailed view~~',
'DBTools:ShowReport' => 'Report~~',
'DBTools:IntegrityCheck' => 'Integrity check~~',
'DBTools:FetchCheck' => 'Fetch Check (long)~~',
'DBTools:SelectAnalysisType' => 'Select analysis type~~',
'DBTools:Analyze' => 'Analyze~~',
'DBTools:Details' => 'Show Details~~',
'DBTools:ShowAll' => 'Show All Errors~~',
'DBTools:Inconsistencies' => 'Database inconsistencies~~',
'DBTools:DetailedErrorTitle' => '%2$s error(s) in class %1$s: %3$s~~',
'DBTools:DetailedErrorLimit' => 'List limited to %1$s errors~~',
'DBAnalyzer-Integrity-OrphanRecord' => 'Orphan record in `%1$s`, it should have its counterpart in table `%2$s`~~',
'DBAnalyzer-Integrity-InvalidExtKey' => 'Invalid external key %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-MissingExtKey' => 'Missing external key %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-InvalidValue' => 'Invalid value for %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-UsersWithoutProfile' => 'Some user accounts have no profile at all~~',
'DBAnalyzer-Integrity-HKInvalid' => 'Broken hierarchical key `%1$s`~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'DBAnalyzer-Fetch-Count-Error' => 'Fetch count error in `%1$s`, %2$d entries fetched / %3$d counted~~',
'DBAnalyzer-Integrity-FinalClass' => 'Field `%2$s`.`%1$s` must have the same value as `%3$s`.`%1$s`~~',
'DBAnalyzer-Integrity-HKInvalid' => 'Broken hierarchical key `%1$s`~~',
'DBAnalyzer-Integrity-InvalidExtKey' => 'Invalid external key %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-InvalidValue' => 'Invalid value for %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-MissingExtKey' => 'Missing external key %1$s (column: `%2$s.%3$s`)~~',
'DBAnalyzer-Integrity-OrphanRecord' => 'Orphan record in `%1$s`, it should have its counterpart in table `%2$s`~~',
'DBAnalyzer-Integrity-RootFinalClass' => 'Field `%2$s`.`%1$s` must contains a valid class~~',
));
// Database Info
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'DBTools:DatabaseInfo' => 'Database Information~~',
'DBAnalyzer-Integrity-UsersWithoutProfile' => 'Some user accounts have no profile at all~~',
'DBTools:Analyze' => 'Analyze~~',
'DBTools:Base' => 'Base~~',
'DBTools:Size' => 'Size~~',
));
// Lost attachments
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'DBTools:Class' => 'Class~~',
'DBTools:Count' => 'Count~~',
'DBTools:DatabaseInfo' => 'Database Information~~',
'DBTools:DetailedErrorLimit' => 'List limited to %1$s errors~~',
'DBTools:DetailedErrorTitle' => '%2$s error(s) in class %1$s: %3$s~~',
'DBTools:Details' => 'Show Details~~',
'DBTools:Disclaimer' => 'DISCLAIMER: BACKUP YOUR DATABASE BEFORE RUNNING THE FIXES~~',
'DBTools:Error' => 'Error~~',
'DBTools:ErrorsFound' => 'Errors Found~~',
'DBTools:FetchCheck' => 'Fetch Check (long)~~',
'DBTools:FixitSQLquery' => 'SQL query To Fix it (indication)~~',
'DBTools:HideIds' => 'Error List~~',
'DBTools:Inconsistencies' => 'Database inconsistencies~~',
'DBTools:Indication' => 'Important: after fixing errors in the database you\'ll have to run the analysis again as new inconsistencies will be generated~~',
'DBTools:IntegrityCheck' => 'Integrity check~~',
'DBTools:LostAttachments' => 'Lost attachments~~',
'DBTools:LostAttachments:Disclaimer' => 'Here you can search your database for lost or misplaced attachments. This is NOT a data recovery tool, is does not retrieve deleted data.~~',
'DBTools:LostAttachments:Button:Analyze' => 'Analyze~~',
'DBTools:LostAttachments:Button:Busy' => 'Please wait...~~',
'DBTools:LostAttachments:Button:Restore' => 'Restore~~',
'DBTools:LostAttachments:Button:Restore:Confirm' => 'This action cannot be undone, please confirm that you want to restore the selected files.~~',
'DBTools:LostAttachments:Button:Busy' => 'Please wait...~~',
'DBTools:LostAttachments:Disclaimer' => 'Here you can search your database for lost or misplaced attachments. This is NOT a data recovery tool, is does not retrieve deleted data.~~',
'DBTools:LostAttachments:History' => 'Attachment "%1$s" restored with DB tools~~',
'DBTools:LostAttachments:Step:Analyze' => 'First, search for lost/misplaced attachments by analyzing the database.~~',
'DBTools:LostAttachments:Step:AnalyzeResults' => 'Analyze results:~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:CurrentLocation' => 'Current location~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:Filename' => 'Filename~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:TargetLocation' => 'Move to...~~',
'DBTools:LostAttachments:Step:AnalyzeResults:None' => 'Great! Every thing seems to be at the right place.~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Some' => 'Some attachments (%1$d) seem to be misplaced. Take a look at the following list and check the ones you would like to move.~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:Filename' => 'Filename~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:CurrentLocation' => 'Current location~~',
'DBTools:LostAttachments:Step:AnalyzeResults:Item:TargetLocation' => 'Move to...~~',
'DBTools:LostAttachments:Step:RestoreResults' => 'Restore results:~~',
'DBTools:LostAttachments:Step:RestoreResults:Results' => '%1$d/%2$d attachments were restored.~~',
'DBTools:LostAttachments:StoredAsInlineImage' => 'Stored as inline image~~',
'DBTools:LostAttachments:History' => 'Attachment "%1$s" restored with DB tools~~'
));
'DBTools:NoError' => 'The database is OK~~',
'DBTools:SQLquery' => 'SQL query~~',
'DBTools:SQLresult' => 'SQL result~~',
'DBTools:SelectAnalysisType' => 'Select analysis type~~',
'DBTools:ShowAll' => 'Show All Errors~~',
'DBTools:ShowIds' => 'Detailed view~~',
'DBTools:ShowReport' => 'Report~~',
'DBTools:Size' => 'Size~~',
'DBTools:Title' => 'Database integrity check~~',
'Menu:DBToolsMenu' => 'Database integrity~~',
]);

View File

@@ -3,95 +3,60 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Attachments:TabTitle_Count' => 'Prílohy (%1$d)',
'Attachments:EmptyTabTitle' => 'Prílohy',
'Attachments:FieldsetTitle' => 'Prílohy',
'Attachments:DeleteBtn' => 'Odstrániť',
'Attachments:History_File_Added' => 'Príloha %1$s pridaná.',
'Attachments:History_File_Removed' => 'Príloha %1$s odstránená.',
'Attachments:AddAttachment' => 'Pridaj prílohu: ',
'Attachments:UploadNotAllowedOnThisSystem' => 'Nahrávanie súboru NIE JE povolené na tomto systéme.',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Attachment:Max_Go' => '(Maximálna Veľkosť súboru : %1$s Go)',
'Attachment:Max_Mo' => '(Maximálna Veľkosť súboru : %1$s Mo)',
'Attachment:Max_Ko' => '(Maximálna Veľkosť súboru : %1$s Ko)',
'Attachments:NoAttachment' => 'Bez prílohy. ',
'Attachments:PreviewNotAvailable' => 'Preview not available for this type of attachment.~~',
'Attachment:Max_Mo' => '(Maximálna Veľkosť súboru : %1$s Mo)',
'Attachments:AddAttachment' => 'Pridaj prílohu: ',
'Attachments:DeleteBtn' => 'Odstrániť',
'Attachments:EmptyTabTitle' => 'Prílohy',
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
Either you have pushed an empty file,
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
'Attachments:FieldsetTitle' => 'Prílohy',
'Attachments:File:Date' => 'Upload date~~',
'Attachments:File:DownloadsCount' => 'Downloads~~',
'Attachments:File:MimeType' => 'Type~~',
'Attachments:File:Name' => 'File name~~',
'Attachments:File:Size' => 'Size~~',
'Attachments:File:Thumbnail' => 'Icon~~',
'Attachments:File:Uploader' => 'Uploaded by~~',
'Attachments:History_File_Added' => 'Príloha %1$s pridaná.',
'Attachments:History_File_Removed' => 'Príloha %1$s odstránená.',
'Attachments:NoAttachment' => 'Bez prílohy. ',
'Attachments:PreviewNotAvailable' => 'Preview not available for this type of attachment.~~',
'Attachments:Render:Icons' => 'Display as icons~~',
'Attachments:Render:Table' => 'Display as list~~',
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
));
//
// Class: Attachment
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Attachments:TabTitle_Count' => 'Prílohy (%1$d)',
'Attachments:UploadNotAllowedOnThisSystem' => 'Nahrávanie súboru NIE JE povolené na tomto systéme.',
'Class:Attachment' => 'Attachment~~',
'Class:Attachment+' => '~~',
'Class:Attachment/Attribute:contact_id' => 'Contact id~~',
'Class:Attachment/Attribute:contact_id+' => '~~',
'Class:Attachment/Attribute:contents' => 'Contents~~',
'Class:Attachment/Attribute:contents+' => '~~',
'Class:Attachment/Attribute:creation_date' => 'Creation date~~',
'Class:Attachment/Attribute:creation_date+' => '~~',
'Class:Attachment/Attribute:expire' => 'Expire~~',
'Class:Attachment/Attribute:expire+' => '~~',
'Class:Attachment/Attribute:temp_id' => 'Temporary id~~',
'Class:Attachment/Attribute:temp_id+' => '~~',
'Class:Attachment/Attribute:item_class' => 'Item class~~',
'Class:Attachment/Attribute:item_class+' => '~~',
'Class:Attachment/Attribute:item_id' => 'Item~~',
'Class:Attachment/Attribute:item_id+' => '~~',
'Class:Attachment/Attribute:item_org_id' => 'Item organization~~',
'Class:Attachment/Attribute:item_org_id+' => '~~',
'Class:Attachment/Attribute:contents' => 'Contents~~',
'Class:Attachment/Attribute:contents+' => '~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Attachments:File:Thumbnail' => 'Icon~~',
'Attachments:File:Name' => 'File name~~',
'Attachments:File:Date' => 'Upload date~~',
'Attachments:File:Uploader' => 'Uploaded by~~',
'Attachments:File:Size' => 'Size~~',
'Attachments:File:MimeType' => 'Type~~',
'Attachments:File:DownloadsCount' => 'Downloads~~',
));
//
// Class: Attachment
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Attachment/Attribute:creation_date' => 'Creation date~~',
'Class:Attachment/Attribute:creation_date+' => '~~',
'Class:Attachment/Attribute:temp_id' => 'Temporary id~~',
'Class:Attachment/Attribute:temp_id+' => '~~',
'Class:Attachment/Attribute:user_id' => 'User id~~',
'Class:Attachment/Attribute:user_id+' => '~~',
'Class:Attachment/Attribute:contact_id' => 'Contact id~~',
'Class:Attachment/Attribute:contact_id+' => '~~',
));
//
// Class: TriggerOnAttachmentDownload
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:TriggerOnAttachmentDownload' => 'Trigger (on object\'s attachment download)~~',
'Class:TriggerOnAttachmentDownload+' => 'Trigger on object\'s attachment download of [a child class of] the given class~~',
));
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
]);

View File

@@ -3,56 +3,45 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'bkp-backup-running' => 'A backup is running. Please wait...~~',
'bkp-restore-running' => 'A restore is running. Please wait...~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Menu:BackupStatus' => 'Backups~~',
'bkp-status-title' => 'Backups~~',
'bkp-status-checks' => 'Settings and checks~~',
'bkp-mysqldump-ok' => 'mysqldump is present: %1$s~~',
'bkp-mysqldump-notfound' => 'mysqldump could not be found: %1$s - Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir.~~',
'bkp-mysqldump-issue' => 'mysqldump could not be executed (retcode=%1$d): Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir~~',
'bkp-missing-dir' => 'The target directory <code>%1$s</code> could not be found~~',
'bkp-free-disk-space' => '<b>%1$s free</b> in <code>%2$s</code>~~',
'bkp-dir-not-writeable' => '%1$s is not writeable~~',
'bkp-wrong-format-spec' => 'The current specification to format the file names is wrong (%1$s). A default specification will apply: %2$s~~',
'bkp-name-sample' => 'Backup files are named depending on DB identifiers, date and time. Example: %1$s~~',
'bkp-week-days' => 'Backups will occur <b>every %1$s at %2$s</b>~~',
'bkp-retention' => 'At most <b>%1$d backup files will be kept</b> in the target directory.~~',
'bkp-next-to-delete' => 'Will be deleted when the next backup occurs (see the setting "retention_count")~~',
'bkp-table-file' => 'File~~',
'bkp-table-file+' => 'Only files having the extension .zip are considered as being backup files~~',
'bkp-table-size' => 'Size~~',
'bkp-table-size+' => '~~',
'bkp-table-actions' => 'Actions~~',
'bkp-table-actions+' => '~~',
'bkp-status-backups-auto' => 'Scheduled backups~~',
'bkp-status-backups-manual' => 'Manual backups~~',
'bkp-status-backups-none' => 'No backup yet~~',
'bkp-next-backup' => 'The next backup will occur on <b>%1$s</b> (%2$s) at %3$s.~~',
'bkp-next-backup-unknown' => 'The next backup is <b>not scheduled</b> yet.~~',
'bkp-backup-running' => 'A backup is running. Please wait...~~',
'bkp-button-backup-now' => 'Backup now!~~',
'bkp-button-restore-now' => 'Restore!~~',
'bkp-confirm-backup' => 'Please confirm that you do request the backup to occur right now.~~',
'bkp-confirm-restore' => 'Please confirm that you do want to restore the backup %1$s.~~',
'bkp-dir-not-writeable' => '%1$s is not writeable~~',
'bkp-free-disk-space' => '<b>%1$s free</b> in <code>%2$s</code>~~',
'bkp-missing-dir' => 'The target directory <code>%1$s</code> could not be found~~',
'bkp-mysqldump-issue' => 'mysqldump could not be executed (retcode=%1$d): Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir~~',
'bkp-mysqldump-notfound' => 'mysqldump could not be found: %1$s - Please make sure it is installed and in the path, or edit the configuration file to tune mysql_bindir.~~',
'bkp-mysqldump-ok' => 'mysqldump is present: %1$s~~',
'bkp-name-sample' => 'Backup files are named depending on DB identifiers, date and time. Example: %1$s~~',
'bkp-next-backup' => 'The next backup will occur on <b>%1$s</b> (%2$s) at %3$s.~~',
'bkp-next-backup-unknown' => 'The next backup is <b>not scheduled</b> yet.~~',
'bkp-next-to-delete' => 'Will be deleted when the next backup occurs (see the setting "retention_count")~~',
'bkp-restore-running' => 'A restore is running. Please wait...~~',
'bkp-retention' => 'At most <b>%1$d backup files will be kept</b> in the target directory.~~',
'bkp-status-backups-auto' => 'Scheduled backups~~',
'bkp-status-backups-manual' => 'Manual backups~~',
'bkp-status-backups-none' => 'No backup yet~~',
'bkp-status-checks' => 'Settings and checks~~',
'bkp-status-title' => 'Backups~~',
'bkp-success-restore' => 'Restore successfully completed.~~',
'bkp-table-actions' => 'Actions~~',
'bkp-table-actions+' => '~~',
'bkp-table-file' => 'File~~',
'bkp-table-file+' => 'Only files having the extension .zip are considered as being backup files~~',
'bkp-table-size' => 'Size~~',
'bkp-table-size+' => '~~',
'bkp-wait-backup' => 'Please wait for the backup to complete...~~',
'bkp-wait-restore' => 'Please wait for the restore to complete...~~',
'bkp-success-restore' => 'Restore successfully completed.~~',
));
'bkp-week-days' => 'Backups will occur <b>every %1$s at %2$s</b>~~',
'bkp-wrong-format-spec' => 'The current specification to format the file names is wrong (%1$s). A default specification will apply: %2$s~~',
]);

View File

@@ -1,85 +1,44 @@
<?php
// Copyright (C) 2010-2024 Combodo SAS
//
// 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
// along with iTop. If not, see <http://www.gnu.org/licenses/>
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
* @author Benjamin Planque <benjamin.planque@combodo.com>
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*
*/
//////////////////////////////////////////////////////////////////////
// Note: The classes have been grouped by categories: bizmodel
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
//
// Class: lnkFunctionalCIToProviderContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkFunctionalCIToProviderContract' => 'väzba - Komponent / Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract+' => '',
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '',
));
//
// Class: lnkFunctionalCIToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkFunctionalCIToService' => 'väzba - Komponent / Služba',
'Class:lnkFunctionalCIToService+' => '',
'Class:lnkFunctionalCIToService/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToService/Attribute:service_id' => 'Služba',
'Class:lnkFunctionalCIToService/Attribute:service_id+' => '',
'Class:lnkFunctionalCIToService/Attribute:service_name' => 'Názov služby',
'Class:lnkFunctionalCIToService/Attribute:service_name+' => '',
'Class:lnkFunctionalCIToService/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToService/Attribute:functionalci_id+' => '',
'Class:lnkFunctionalCIToService/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToService/Attribute:functionalci_name+' => '',
));
//
// Class: FunctionalCI
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:FunctionalCI/Attribute:providercontracts_list' => 'Poskytovateľské zmluvy',
'Class:FunctionalCI/Attribute:providercontracts_list+' => '',
'Class:FunctionalCI/Attribute:services_list' => 'Služby',
'Class:FunctionalCI/Attribute:services_list+' => '',
));
//
// Class: Document
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Document/Attribute:contracts_list' => 'Zmluvy',
'Class:Document/Attribute:contracts_list+' => 'All the contracts linked to this document~~',
'Class:Document/Attribute:services_list' => 'Služby',
'Class:Document/Attribute:services_list+' => 'All the services linked to this document~~',
));
'Class:FunctionalCI/Attribute:providercontracts_list' => 'Poskytovateľské zmluvy',
'Class:FunctionalCI/Attribute:providercontracts_list+' => 'All the provider contracts for this configuration item~~',
'Class:FunctionalCI/Attribute:services_list' => 'Služby',
'Class:FunctionalCI/Attribute:services_list+' => 'All the services impacted by this configuration item~~',
'Class:lnkFunctionalCIToProviderContract' => 'väzba - Komponent / Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToService' => 'väzba - Komponent / Služba',
'Class:lnkFunctionalCIToService+' => '~~',
'Class:lnkFunctionalCIToService/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToService/Attribute:functionalci_id+' => '~~',
'Class:lnkFunctionalCIToService/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToService/Attribute:functionalci_name+' => '~~',
'Class:lnkFunctionalCIToService/Attribute:service_id' => 'Služba',
'Class:lnkFunctionalCIToService/Attribute:service_id+' => '~~',
'Class:lnkFunctionalCIToService/Attribute:service_name' => 'Názov služby',
'Class:lnkFunctionalCIToService/Attribute:service_name+' => '~~',
'Class:lnkFunctionalCIToService/Name' => '%1$s / %2$s~~',
]);

View File

@@ -1,61 +1,35 @@
<?php
// Copyright (C) 2010-2024 Combodo SAS
//
// 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
// along with iTop. If not, see <http://www.gnu.org/licenses/>
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
* @author Benjamin Planque <benjamin.planque@combodo.com>
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*
*/
//////////////////////////////////////////////////////////////////////
// Note: The classes have been grouped by categories: bizmodel
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
//
// Class: lnkFunctionalCIToTicket
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkFunctionalCIToTicket' => 'väzba - Komponent / Ticket',
'Class:lnkFunctionalCIToTicket+' => '',
'Class:lnkFunctionalCIToTicket/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id' => 'Ticket',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id+' => '',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref+' => '',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title' => 'Ticket title~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id' => 'Komponent',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id+' => '',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name+' => '',
'Class:lnkFunctionalCIToTicket/Attribute:impact' => 'Dopad',
'Class:lnkFunctionalCIToTicket/Attribute:impact+' => '',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code' => 'Impact~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:manual' => 'Added manually~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:computed' => 'Computed~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:not_impacted' => 'Not impacted~~',
));
//
// Class: FunctionalCI
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:FunctionalCI/Attribute:tickets_list' => 'Tickety',
'Class:FunctionalCI/Attribute:tickets_list+' => 'All the tickets for this configuration item~~',
));
'Class:lnkFunctionalCIToTicket' => 'väzba - Komponent / Ticket',
'Class:lnkFunctionalCIToTicket+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id' => 'Komponent',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact' => 'Dopad',
'Class:lnkFunctionalCIToTicket/Attribute:impact+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code' => 'Impact~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:computed' => 'Computed~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:manual' => 'Added manually~~',
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:not_impacted' => 'Not impacted~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id' => 'Ticket',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref+' => '~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title' => 'Ticket title~~',
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title+' => '~~',
'Class:lnkFunctionalCIToTicket/Name' => '%1$s / %2$s~~',
]);

View File

@@ -3,291 +3,234 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ChangeManagement' => 'Manažment zmien',
'Menu:Change:Overview' => 'Prehľad',
'Menu:Change:Overview+' => '',
'Menu:NewChange' => 'Nová zmena',
'Menu:NewChange+' => '',
'Menu:SearchChanges' => 'Vyhľadať zmeny',
'Menu:SearchChanges+' => '',
'Menu:Change:Shortcuts' => 'Skratky',
'Menu:Change:Shortcuts+' => '',
'Menu:WaitingAcceptance' => 'Zmeny očakávajúce prijatie',
'Menu:WaitingAcceptance+' => '',
'Menu:WaitingApproval' => 'Zmeny očakávajúce schválenie',
'Menu:WaitingApproval+' => '',
'Menu:Changes' => 'Otvorené zmeny',
'Menu:Changes+' => '',
'Menu:MyChanges' => 'Zmeny pridelené mne',
'Menu:MyChanges+' => '',
'UI-ChangeManagementOverview-ChangeByCategory-last-7-days' => 'Zmeny podľa kategórie za posledných 7 dní',
'UI-ChangeManagementOverview-Last-7-days' => 'Počet zmien za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByDomain-last-7-days' => 'Zmeny podľa domény za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByStatus-last-7-days' => 'Zmeny podľa stavu za posledných 7 dní',
'Tickets:Related:OpenChanges' => 'Open changes~~',
'Tickets:Related:RecentChanges' => 'Recent changes (72h)~~',
));
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: Change
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:ApprovedChange' => 'Approved Changes~~',
'Class:ApprovedChange+' => '~~',
'Class:ApprovedChange/Attribute:approval_comment' => 'Approval comment~~',
'Class:ApprovedChange/Attribute:approval_comment+' => '~~',
'Class:ApprovedChange/Attribute:approval_date' => 'Approval Date~~',
'Class:ApprovedChange/Attribute:approval_date+' => '~~',
'Class:ApprovedChange/Stimulus:ev_approve' => 'Approve~~',
'Class:ApprovedChange/Stimulus:ev_approve+' => '~~',
'Class:ApprovedChange/Stimulus:ev_assign' => 'Assign~~',
'Class:ApprovedChange/Stimulus:ev_assign+' => '~~',
'Class:ApprovedChange/Stimulus:ev_finish' => 'Finish~~',
'Class:ApprovedChange/Stimulus:ev_finish+' => '~~',
'Class:ApprovedChange/Stimulus:ev_implement' => 'Implement~~',
'Class:ApprovedChange/Stimulus:ev_implement+' => '~~',
'Class:ApprovedChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:ApprovedChange/Stimulus:ev_monitor+' => '~~',
'Class:ApprovedChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:ApprovedChange/Stimulus:ev_notapprove+' => '~~',
'Class:ApprovedChange/Stimulus:ev_plan' => 'Plan~~',
'Class:ApprovedChange/Stimulus:ev_plan+' => '~~',
'Class:ApprovedChange/Stimulus:ev_reject' => 'Reject~~',
'Class:ApprovedChange/Stimulus:ev_reject+' => '~~',
'Class:ApprovedChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:ApprovedChange/Stimulus:ev_reopen+' => '~~',
'Class:ApprovedChange/Stimulus:ev_replan' => 'Replan~~',
'Class:ApprovedChange/Stimulus:ev_replan+' => '~~',
'Class:ApprovedChange/Stimulus:ev_validate' => 'Validate~~',
'Class:ApprovedChange/Stimulus:ev_validate+' => '~~',
'Class:Change' => 'Zmena',
'Class:Change+' => '',
'Class:Change/Attribute:status' => 'Stav',
'Class:Change/Attribute:status+' => '',
'Class:Change/Attribute:status/Value:new' => 'Nová',
'Class:Change/Attribute:status/Value:new+' => '',
'Class:Change/Attribute:status/Value:validated' => 'Validated~~',
'Class:Change/Attribute:status/Value:validated+' => '~~',
'Class:Change/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:Change/Attribute:status/Value:rejected+' => '',
'Class:Change/Attribute:status/Value:assigned' => 'Pridelená',
'Class:Change/Attribute:status/Value:assigned+' => '',
'Class:Change/Attribute:status/Value:plannedscheduled' => 'Planned and scheduled~~',
'Class:Change/Attribute:status/Value:plannedscheduled+' => '~~',
'Class:Change/Attribute:status/Value:approved' => 'Schválená',
'Class:Change/Attribute:status/Value:approved+' => '',
'Class:Change/Attribute:status/Value:notapproved' => 'Not approved~~',
'Class:Change/Attribute:status/Value:notapproved+' => '~~',
'Class:Change/Attribute:status/Value:implemented' => 'Implemented~~',
'Class:Change/Attribute:status/Value:implemented+' => '~~',
'Class:Change/Attribute:status/Value:monitored' => 'Monitored~~',
'Class:Change/Attribute:status/Value:monitored+' => '~~',
'Class:Change/Attribute:status/Value:closed' => 'Zatvorená',
'Class:Change/Attribute:status/Value:closed+' => '',
'Class:Change/Attribute:reason' => 'Reject reason~~',
'Class:Change/Attribute:reason+' => '~~',
'Class:Change/Attribute:requestor_id' => 'Requestor~~',
'Class:Change/Attribute:requestor_id+' => '~~',
'Class:Change/Attribute:requestor_email' => 'Requestor email~~',
'Class:Change/Attribute:requestor_email+' => '~~',
'Class:Change+' => '~~',
'Class:Change/Attribute:child_changes_list' => 'Podriadené zmeny',
'Class:Change/Attribute:child_changes_list+' => 'All the sub changes linked to this change~~',
'Class:Change/Attribute:creation_date' => 'Dátum vytvorenia',
'Class:Change/Attribute:creation_date+' => '',
'Class:Change/Attribute:creation_date+' => '~~',
'Class:Change/Attribute:fallback' => 'Fallback plan~~',
'Class:Change/Attribute:fallback+' => '~~',
'Class:Change/Attribute:impact' => 'Impact~~',
'Class:Change/Attribute:impact+' => '~~',
'Class:Change/Attribute:supervisor_group_id' => 'Supervisor team~~',
'Class:Change/Attribute:supervisor_group_id+' => '~~',
'Class:Change/Attribute:supervisor_group_name' => 'Supervisor team name~~',
'Class:Change/Attribute:supervisor_group_name+' => '~~',
'Class:Change/Attribute:supervisor_id' => 'Supervisor~~',
'Class:Change/Attribute:supervisor_id+' => '~~',
'Class:Change/Attribute:supervisor_email' => 'Supervisor email~~',
'Class:Change/Attribute:supervisor_email+' => '~~',
'Class:Change/Attribute:manager_email' => 'Manager email~~',
'Class:Change/Attribute:manager_email+' => '~~',
'Class:Change/Attribute:manager_group_id' => 'Manager team~~',
'Class:Change/Attribute:manager_group_id+' => '~~',
'Class:Change/Attribute:manager_group_name' => 'Manager team name~~',
'Class:Change/Attribute:manager_group_name+' => '~~',
'Class:Change/Attribute:manager_id' => 'Manager~~',
'Class:Change/Attribute:manager_id+' => '~~',
'Class:Change/Attribute:manager_email' => 'Manager email~~',
'Class:Change/Attribute:manager_email+' => '~~',
'Class:Change/Attribute:outage' => 'Outage~~',
'Class:Change/Attribute:outage+' => '~~',
'Class:Change/Attribute:outage/Value:no' => 'No~~',
'Class:Change/Attribute:outage/Value:no+' => '~~',
'Class:Change/Attribute:outage/Value:yes' => 'Yes~~',
'Class:Change/Attribute:outage/Value:yes+' => '~~',
'Class:Change/Attribute:fallback' => 'Fallback plan~~',
'Class:Change/Attribute:fallback+' => '~~',
'Class:Change/Attribute:parent_id' => 'Nadradená zmena',
'Class:Change/Attribute:parent_id+' => '',
'Class:Change/Attribute:parent_name' => 'Referencia na rodičovskú zmenu',
'Class:Change/Attribute:parent_name+' => '',
'Class:Change/Attribute:related_request_list' => 'Súvisiace požiadavky',
'Class:Change/Attribute:related_request_list+' => 'All the user requests linked to this change~~',
'Class:Change/Attribute:related_problems_list' => 'Súvisiace problémy',
'Class:Change/Attribute:related_problems_list+' => 'All the problems linked to this change~~',
'Class:Change/Attribute:related_incident_list' => 'Súvisiace incidenty',
'Class:Change/Attribute:related_incident_list+' => 'All the incidents linked to this change~~',
'Class:Change/Attribute:child_changes_list' => 'Podriadené zmeny',
'Class:Change/Attribute:child_changes_list+' => 'All the sub changes linked to this change~~',
'Class:Change/Attribute:parent_id_friendlyname' => 'Priateľské meno rodičovskej zmeny',
'Class:Change/Attribute:parent_id_friendlyname+' => '',
'Class:Change/Attribute:parent_id+' => '~~',
'Class:Change/Attribute:parent_id_finalclass_recall' => 'Change type~~',
'Class:Change/Attribute:parent_id_finalclass_recall+' => '~~',
'Class:Change/Stimulus:ev_validate' => 'Validate~~',
'Class:Change/Stimulus:ev_validate+' => '~~',
'Class:Change/Stimulus:ev_reject' => 'Zamietnúť',
'Class:Change/Stimulus:ev_reject+' => '',
'Class:Change/Stimulus:ev_assign' => 'Prideiť',
'Class:Change/Stimulus:ev_assign+' => '',
'Class:Change/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:Change/Stimulus:ev_reopen+' => '',
'Class:Change/Stimulus:ev_plan' => 'Naplánuj',
'Class:Change/Stimulus:ev_plan+' => '',
'Class:Change/Attribute:parent_id_friendlyname' => 'Priateľské meno rodičovskej zmeny',
'Class:Change/Attribute:parent_id_friendlyname+' => '~~',
'Class:Change/Attribute:parent_name' => 'Referencia na rodičovskú zmenu',
'Class:Change/Attribute:parent_name+' => '~~',
'Class:Change/Attribute:reason' => 'Reject reason~~',
'Class:Change/Attribute:reason+' => '~~',
'Class:Change/Attribute:related_incident_list' => 'Súvisiace incidenty',
'Class:Change/Attribute:related_incident_list+' => 'All the incidents linked to this change~~',
'Class:Change/Attribute:related_problems_list' => 'Súvisiace problémy',
'Class:Change/Attribute:related_problems_list+' => 'All the problems linked to this change~~',
'Class:Change/Attribute:related_request_list' => 'Súvisiace požiadavky',
'Class:Change/Attribute:related_request_list+' => 'All the user requests linked to this change~~',
'Class:Change/Attribute:requestor_email' => 'Requestor email~~',
'Class:Change/Attribute:requestor_email+' => '~~',
'Class:Change/Attribute:requestor_id' => 'Requestor~~',
'Class:Change/Attribute:requestor_id+' => '~~',
'Class:Change/Attribute:status' => 'Stav',
'Class:Change/Attribute:status+' => '~~',
'Class:Change/Attribute:status/Value:approved' => 'Schválená',
'Class:Change/Attribute:status/Value:approved+' => '~~',
'Class:Change/Attribute:status/Value:assigned' => 'Pridelená',
'Class:Change/Attribute:status/Value:assigned+' => '~~',
'Class:Change/Attribute:status/Value:closed' => 'Zatvorená',
'Class:Change/Attribute:status/Value:closed+' => '~~',
'Class:Change/Attribute:status/Value:implemented' => 'Implemented~~',
'Class:Change/Attribute:status/Value:implemented+' => '~~',
'Class:Change/Attribute:status/Value:monitored' => 'Monitored~~',
'Class:Change/Attribute:status/Value:monitored+' => '~~',
'Class:Change/Attribute:status/Value:new' => 'Nová',
'Class:Change/Attribute:status/Value:new+' => '~~',
'Class:Change/Attribute:status/Value:notapproved' => 'Not approved~~',
'Class:Change/Attribute:status/Value:notapproved+' => '~~',
'Class:Change/Attribute:status/Value:plannedscheduled' => 'Planned and scheduled~~',
'Class:Change/Attribute:status/Value:plannedscheduled+' => '~~',
'Class:Change/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:Change/Attribute:status/Value:rejected+' => '~~',
'Class:Change/Attribute:status/Value:validated' => 'Validated~~',
'Class:Change/Attribute:status/Value:validated+' => '~~',
'Class:Change/Attribute:supervisor_email' => 'Supervisor email~~',
'Class:Change/Attribute:supervisor_email+' => '~~',
'Class:Change/Attribute:supervisor_group_id' => 'Supervisor team~~',
'Class:Change/Attribute:supervisor_group_id+' => '~~',
'Class:Change/Attribute:supervisor_group_name' => 'Supervisor team name~~',
'Class:Change/Attribute:supervisor_group_name+' => '~~',
'Class:Change/Attribute:supervisor_id' => 'Supervisor~~',
'Class:Change/Attribute:supervisor_id+' => '~~',
'Class:Change/Stimulus:ev_approve' => 'Schváliť',
'Class:Change/Stimulus:ev_approve+' => '',
'Class:Change/Stimulus:ev_replan' => 'Replan~~',
'Class:Change/Stimulus:ev_replan+' => '~~',
'Class:Change/Stimulus:ev_notapprove' => 'Reject~~',
'Class:Change/Stimulus:ev_notapprove+' => '~~',
'Class:Change/Stimulus:ev_approve+' => '~~',
'Class:Change/Stimulus:ev_assign' => 'Prideiť',
'Class:Change/Stimulus:ev_assign+' => '~~',
'Class:Change/Stimulus:ev_finish' => 'Zatvoriť',
'Class:Change/Stimulus:ev_finish+' => '~~',
'Class:Change/Stimulus:ev_implement' => 'Implement~~',
'Class:Change/Stimulus:ev_implement+' => '~~',
'Class:Change/Stimulus:ev_monitor' => 'Monitor~~',
'Class:Change/Stimulus:ev_monitor+' => '~~',
'Class:Change/Stimulus:ev_finish' => 'Zatvoriť',
'Class:Change/Stimulus:ev_finish+' => '',
));
//
// Class: RoutineChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:RoutineChange' => 'Routine Change~~',
'Class:RoutineChange+' => '~~',
'Class:RoutineChange/Stimulus:ev_validate' => 'Validate~~',
'Class:RoutineChange/Stimulus:ev_validate+' => '~~',
'Class:RoutineChange/Stimulus:ev_reject' => 'Reject~~',
'Class:RoutineChange/Stimulus:ev_reject+' => '~~',
'Class:RoutineChange/Stimulus:ev_assign' => 'Assign~~',
'Class:RoutineChange/Stimulus:ev_assign+' => '~~',
'Class:RoutineChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:RoutineChange/Stimulus:ev_reopen+' => '~~',
'Class:RoutineChange/Stimulus:ev_plan' => 'Plan~~',
'Class:RoutineChange/Stimulus:ev_plan+' => '~~',
'Class:RoutineChange/Stimulus:ev_approve' => 'Approve~~',
'Class:RoutineChange/Stimulus:ev_approve+' => '~~',
'Class:RoutineChange/Stimulus:ev_replan' => 'Replan~~',
'Class:RoutineChange/Stimulus:ev_replan+' => '~~',
'Class:RoutineChange/Stimulus:ev_notapprove' => 'Do Not Approve~~',
'Class:RoutineChange/Stimulus:ev_notapprove+' => '~~',
'Class:RoutineChange/Stimulus:ev_implement' => 'Implement~~',
'Class:RoutineChange/Stimulus:ev_implement+' => '~~',
'Class:RoutineChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:RoutineChange/Stimulus:ev_monitor+' => '~~',
'Class:RoutineChange/Stimulus:ev_finish' => 'Finish~~',
'Class:RoutineChange/Stimulus:ev_finish+' => '~~',
));
//
// Class: ApprovedChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ApprovedChange' => 'Approved Changes~~',
'Class:ApprovedChange+' => '~~',
'Class:ApprovedChange/Attribute:approval_date' => 'Approval Date~~',
'Class:ApprovedChange/Attribute:approval_date+' => '~~',
'Class:ApprovedChange/Attribute:approval_comment' => 'Approval comment~~',
'Class:ApprovedChange/Attribute:approval_comment+' => '~~',
'Class:ApprovedChange/Stimulus:ev_validate' => 'Validate~~',
'Class:ApprovedChange/Stimulus:ev_validate+' => '~~',
'Class:ApprovedChange/Stimulus:ev_reject' => 'Reject~~',
'Class:ApprovedChange/Stimulus:ev_reject+' => '~~',
'Class:ApprovedChange/Stimulus:ev_assign' => 'Assign~~',
'Class:ApprovedChange/Stimulus:ev_assign+' => '~~',
'Class:ApprovedChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:ApprovedChange/Stimulus:ev_reopen+' => '~~',
'Class:ApprovedChange/Stimulus:ev_plan' => 'Plan~~',
'Class:ApprovedChange/Stimulus:ev_plan+' => '~~',
'Class:ApprovedChange/Stimulus:ev_approve' => 'Approve~~',
'Class:ApprovedChange/Stimulus:ev_approve+' => '~~',
'Class:ApprovedChange/Stimulus:ev_replan' => 'Replan~~',
'Class:ApprovedChange/Stimulus:ev_replan+' => '~~',
'Class:ApprovedChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:ApprovedChange/Stimulus:ev_notapprove+' => '~~',
'Class:ApprovedChange/Stimulus:ev_implement' => 'Implement~~',
'Class:ApprovedChange/Stimulus:ev_implement+' => '~~',
'Class:ApprovedChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:ApprovedChange/Stimulus:ev_monitor+' => '~~',
'Class:ApprovedChange/Stimulus:ev_finish' => 'Finish~~',
'Class:ApprovedChange/Stimulus:ev_finish+' => '~~',
));
//
// Class: NormalChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:NormalChange' => 'Normal Change~~',
'Class:NormalChange+' => '~~',
'Class:NormalChange/Attribute:acceptance_date' => 'Acceptance date~~',
'Class:NormalChange/Attribute:acceptance_date+' => '~~',
'Class:NormalChange/Attribute:acceptance_comment' => 'Acceptance comment~~',
'Class:NormalChange/Attribute:acceptance_comment+' => '~~',
'Class:NormalChange/Stimulus:ev_validate' => 'Validate~~',
'Class:NormalChange/Stimulus:ev_validate+' => '~~',
'Class:NormalChange/Stimulus:ev_reject' => 'Reject~~',
'Class:NormalChange/Stimulus:ev_reject+' => '~~',
'Class:NormalChange/Stimulus:ev_assign' => 'Assign~~',
'Class:NormalChange/Stimulus:ev_assign+' => '~~',
'Class:NormalChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:NormalChange/Stimulus:ev_reopen+' => '~~',
'Class:NormalChange/Stimulus:ev_plan' => 'Plan~~',
'Class:NormalChange/Stimulus:ev_plan+' => '~~',
'Class:NormalChange/Stimulus:ev_approve' => 'Approve~~',
'Class:NormalChange/Stimulus:ev_approve+' => '~~',
'Class:NormalChange/Stimulus:ev_replan' => 'Replan~~',
'Class:NormalChange/Stimulus:ev_replan+' => '~~',
'Class:NormalChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:NormalChange/Stimulus:ev_notapprove+' => '~~',
'Class:NormalChange/Stimulus:ev_implement' => 'Implement~~',
'Class:NormalChange/Stimulus:ev_implement+' => '~~',
'Class:NormalChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:NormalChange/Stimulus:ev_monitor+' => '~~',
'Class:NormalChange/Stimulus:ev_finish' => 'Finish~~',
'Class:NormalChange/Stimulus:ev_finish+' => '~~',
));
//
// Class: EmergencyChange
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Change/Stimulus:ev_notapprove' => 'Reject~~',
'Class:Change/Stimulus:ev_notapprove+' => '~~',
'Class:Change/Stimulus:ev_plan' => 'Naplánuj',
'Class:Change/Stimulus:ev_plan+' => '~~',
'Class:Change/Stimulus:ev_reject' => 'Zamietnúť',
'Class:Change/Stimulus:ev_reject+' => '~~',
'Class:Change/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:Change/Stimulus:ev_reopen+' => '~~',
'Class:Change/Stimulus:ev_replan' => 'Replan~~',
'Class:Change/Stimulus:ev_replan+' => '~~',
'Class:Change/Stimulus:ev_validate' => 'Validate~~',
'Class:Change/Stimulus:ev_validate+' => '~~',
'Class:EmergencyChange' => 'Emergency Change~~',
'Class:EmergencyChange+' => '~~',
'Class:EmergencyChange/Stimulus:ev_validate' => 'Validate~~',
'Class:EmergencyChange/Stimulus:ev_validate+' => '~~',
'Class:EmergencyChange/Stimulus:ev_reject' => 'Reject~~',
'Class:EmergencyChange/Stimulus:ev_reject+' => '~~',
'Class:EmergencyChange/Stimulus:ev_assign' => 'Assign~~',
'Class:EmergencyChange/Stimulus:ev_assign+' => '~~',
'Class:EmergencyChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:EmergencyChange/Stimulus:ev_reopen+' => '~~',
'Class:EmergencyChange/Stimulus:ev_plan' => 'Plan~~',
'Class:EmergencyChange/Stimulus:ev_plan+' => '~~',
'Class:EmergencyChange/Stimulus:ev_approve' => 'Approve~~',
'Class:EmergencyChange/Stimulus:ev_approve+' => '~~',
'Class:EmergencyChange/Stimulus:ev_replan' => 'Replan~~',
'Class:EmergencyChange/Stimulus:ev_replan+' => '~~',
'Class:EmergencyChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:EmergencyChange/Stimulus:ev_notapprove+' => '~~',
'Class:EmergencyChange/Stimulus:ev_assign' => 'Assign~~',
'Class:EmergencyChange/Stimulus:ev_assign+' => '~~',
'Class:EmergencyChange/Stimulus:ev_finish' => 'Finish~~',
'Class:EmergencyChange/Stimulus:ev_finish+' => '~~',
'Class:EmergencyChange/Stimulus:ev_implement' => 'Implement~~',
'Class:EmergencyChange/Stimulus:ev_implement+' => '~~',
'Class:EmergencyChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:EmergencyChange/Stimulus:ev_monitor+' => '~~',
'Class:EmergencyChange/Stimulus:ev_finish' => 'Finish~~',
'Class:EmergencyChange/Stimulus:ev_finish+' => '~~',
));
'Class:EmergencyChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:EmergencyChange/Stimulus:ev_notapprove+' => '~~',
'Class:EmergencyChange/Stimulus:ev_plan' => 'Plan~~',
'Class:EmergencyChange/Stimulus:ev_plan+' => '~~',
'Class:EmergencyChange/Stimulus:ev_reject' => 'Reject~~',
'Class:EmergencyChange/Stimulus:ev_reject+' => '~~',
'Class:EmergencyChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:EmergencyChange/Stimulus:ev_reopen+' => '~~',
'Class:EmergencyChange/Stimulus:ev_replan' => 'Replan~~',
'Class:EmergencyChange/Stimulus:ev_replan+' => '~~',
'Class:EmergencyChange/Stimulus:ev_validate' => 'Validate~~',
'Class:EmergencyChange/Stimulus:ev_validate+' => '~~',
'Class:NormalChange' => 'Normal Change~~',
'Class:NormalChange+' => '~~',
'Class:NormalChange/Attribute:acceptance_comment' => 'Acceptance comment~~',
'Class:NormalChange/Attribute:acceptance_comment+' => '~~',
'Class:NormalChange/Attribute:acceptance_date' => 'Acceptance date~~',
'Class:NormalChange/Attribute:acceptance_date+' => '~~',
'Class:NormalChange/Stimulus:ev_approve' => 'Approve~~',
'Class:NormalChange/Stimulus:ev_approve+' => '~~',
'Class:NormalChange/Stimulus:ev_assign' => 'Assign~~',
'Class:NormalChange/Stimulus:ev_assign+' => '~~',
'Class:NormalChange/Stimulus:ev_finish' => 'Finish~~',
'Class:NormalChange/Stimulus:ev_finish+' => '~~',
'Class:NormalChange/Stimulus:ev_implement' => 'Implement~~',
'Class:NormalChange/Stimulus:ev_implement+' => '~~',
'Class:NormalChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:NormalChange/Stimulus:ev_monitor+' => '~~',
'Class:NormalChange/Stimulus:ev_notapprove' => 'Reject approval~~',
'Class:NormalChange/Stimulus:ev_notapprove+' => '~~',
'Class:NormalChange/Stimulus:ev_plan' => 'Plan~~',
'Class:NormalChange/Stimulus:ev_plan+' => '~~',
'Class:NormalChange/Stimulus:ev_reject' => 'Reject~~',
'Class:NormalChange/Stimulus:ev_reject+' => '~~',
'Class:NormalChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:NormalChange/Stimulus:ev_reopen+' => '~~',
'Class:NormalChange/Stimulus:ev_replan' => 'Replan~~',
'Class:NormalChange/Stimulus:ev_replan+' => '~~',
'Class:NormalChange/Stimulus:ev_validate' => 'Validate~~',
'Class:NormalChange/Stimulus:ev_validate+' => '~~',
'Class:RoutineChange' => 'Routine Change~~',
'Class:RoutineChange+' => '~~',
'Class:RoutineChange/Stimulus:ev_approve' => 'Approve~~',
'Class:RoutineChange/Stimulus:ev_approve+' => '~~',
'Class:RoutineChange/Stimulus:ev_assign' => 'Assign~~',
'Class:RoutineChange/Stimulus:ev_assign+' => '~~',
'Class:RoutineChange/Stimulus:ev_finish' => 'Finish~~',
'Class:RoutineChange/Stimulus:ev_finish+' => '~~',
'Class:RoutineChange/Stimulus:ev_implement' => 'Implement~~',
'Class:RoutineChange/Stimulus:ev_implement+' => '~~',
'Class:RoutineChange/Stimulus:ev_monitor' => 'Monitor~~',
'Class:RoutineChange/Stimulus:ev_monitor+' => '~~',
'Class:RoutineChange/Stimulus:ev_notapprove' => 'Do Not Approve~~',
'Class:RoutineChange/Stimulus:ev_notapprove+' => '~~',
'Class:RoutineChange/Stimulus:ev_plan' => 'Plan~~',
'Class:RoutineChange/Stimulus:ev_plan+' => '~~',
'Class:RoutineChange/Stimulus:ev_reject' => 'Reject~~',
'Class:RoutineChange/Stimulus:ev_reject+' => '~~',
'Class:RoutineChange/Stimulus:ev_reopen' => 'Reopen~~',
'Class:RoutineChange/Stimulus:ev_reopen+' => '~~',
'Class:RoutineChange/Stimulus:ev_replan' => 'Replan~~',
'Class:RoutineChange/Stimulus:ev_replan+' => '~~',
'Class:RoutineChange/Stimulus:ev_validate' => 'Validate~~',
'Class:RoutineChange/Stimulus:ev_validate+' => '~~',
'Menu:Change:Overview' => 'Prehľad',
'Menu:Change:Overview+' => '~~',
'Menu:Change:Shortcuts' => 'Skratky',
'Menu:Change:Shortcuts+' => '~~',
'Menu:ChangeManagement' => 'Manažment zmien',
'Menu:Changes' => 'Otvorené zmeny',
'Menu:Changes+' => 'All open changes~~',
'Menu:MyChanges' => 'Zmeny pridelené mne',
'Menu:MyChanges+' => 'Changes assigned to me (as Agent)~~',
'Menu:NewChange' => 'Nová zmena',
'Menu:NewChange+' => 'Create a new change ticket~~',
'Menu:SearchChanges' => 'Vyhľadať zmeny',
'Menu:SearchChanges+' => 'Search for change tickets~~',
'Menu:WaitingAcceptance' => 'Zmeny očakávajúce prijatie',
'Menu:WaitingAcceptance+' => '~~',
'Menu:WaitingApproval' => 'Zmeny očakávajúce schválenie',
'Menu:WaitingApproval+' => '~~',
'Tickets:Related:OpenChanges' => 'Open changes~~',
'Tickets:Related:RecentChanges' => 'Recent changes (72h)~~',
'UI-ChangeManagementOverview-ChangeByCategory-last-7-days' => 'Zmeny podľa kategórie za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByDomain-last-7-days' => 'Zmeny podľa domény za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByStatus-last-7-days' => 'Zmeny podľa stavu za posledných 7 dní',
'UI-ChangeManagementOverview-Last-7-days' => 'Počet zmien za posledných 7 dní',
]);

View File

@@ -3,137 +3,108 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ChangeManagement' => 'Manažment zmien',
'Menu:Change:Overview' => 'Prehľad',
'Menu:Change:Overview+' => '',
'Menu:NewChange' => 'Nová zmena',
'Menu:NewChange+' => '',
'Menu:SearchChanges' => 'Vyhľadať zmeny',
'Menu:SearchChanges+' => '',
'Menu:Change:Shortcuts' => 'Skratky',
'Menu:Change:Shortcuts+' => '',
'Menu:WaitingAcceptance' => 'Zmeny očakávajúce prijatie',
'Menu:WaitingAcceptance+' => '',
'Menu:WaitingApproval' => 'Zmeny očakávajúce schválenie',
'Menu:WaitingApproval+' => '',
'Menu:Changes' => 'Otvorené zmeny',
'Menu:Changes+' => '',
'Menu:MyChanges' => 'Zmeny pridelené mne',
'Menu:MyChanges+' => '',
'UI-ChangeManagementOverview-ChangeByCategory-last-7-days' => 'Zmeny podľa kategórie za posledných 7 dní',
'UI-ChangeManagementOverview-Last-7-days' => 'Počet zmien za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByDomain-last-7-days' => 'Zmeny podľa domény za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByStatus-last-7-days' => 'Zmeny podľa stavu za posledných 7 dní',
'Tickets:Related:OpenChanges' => 'Open changes~~',
'Tickets:Related:RecentChanges' => 'Recent changes (72h)~~',
));
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: Change
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Change' => 'Zmena',
'Class:Change+' => '',
'Class:Change/Attribute:status' => 'Stav',
'Class:Change/Attribute:status+' => '',
'Class:Change/Attribute:status/Value:new' => 'Nová',
'Class:Change/Attribute:status/Value:new+' => '',
'Class:Change/Attribute:status/Value:assigned' => 'Pridelená',
'Class:Change/Attribute:status/Value:assigned+' => '',
'Class:Change/Attribute:status/Value:planned' => 'Plánovaná',
'Class:Change/Attribute:status/Value:planned+' => '',
'Class:Change/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:Change/Attribute:status/Value:rejected+' => '',
'Class:Change/Attribute:status/Value:approved' => 'Schválená',
'Class:Change/Attribute:status/Value:approved+' => '',
'Class:Change/Attribute:status/Value:closed' => 'Zatvorená',
'Class:Change/Attribute:status/Value:closed+' => '',
'Class:Change/Attribute:category' => 'Kategória',
'Class:Change/Attribute:category+' => '',
'Class:Change/Attribute:category/Value:application' => 'Aplikácia',
'Class:Change/Attribute:category/Value:application+' => '',
'Class:Change/Attribute:category/Value:hardware' => 'Hardvér',
'Class:Change/Attribute:category/Value:hardware+' => '',
'Class:Change/Attribute:category/Value:network' => 'Sieť',
'Class:Change/Attribute:category/Value:network+' => '',
'Class:Change/Attribute:category/Value:other' => 'Iné',
'Class:Change/Attribute:category/Value:other+' => '',
'Class:Change/Attribute:category/Value:software' => 'Softvér',
'Class:Change/Attribute:category/Value:software+' => '',
'Class:Change/Attribute:category/Value:system' => 'Systém',
'Class:Change/Attribute:category/Value:system+' => '',
'Class:Change/Attribute:reject_reason' => 'Dôvod zamietnutia',
'Class:Change/Attribute:reject_reason+' => '',
'Class:Change/Attribute:changemanager_id' => 'Change manager~~',
'Class:Change/Attribute:changemanager_id+' => '',
'Class:Change/Attribute:changemanager_email' => 'Email manažéra zmien',
'Class:Change/Attribute:changemanager_email+' => '',
'Class:Change/Attribute:parent_id' => 'Nadradená zmena',
'Class:Change/Attribute:parent_id+' => '',
'Class:Change/Attribute:parent_name' => 'Referencia na rodičovskú zmenu',
'Class:Change/Attribute:parent_name+' => '',
'Class:Change/Attribute:creation_date' => 'Dátum vytvorenia',
'Class:Change/Attribute:creation_date+' => '',
'Class:Change+' => '~~',
'Class:Change/Attribute:approval_date' => 'Dátum schválenia',
'Class:Change/Attribute:approval_date+' => '',
'Class:Change/Attribute:fallback_plan' => 'Návratový plán',
'Class:Change/Attribute:fallback_plan+' => '',
'Class:Change/Attribute:related_request_list' => 'Súvisiace požiadavky',
'Class:Change/Attribute:related_request_list+' => 'All the user requests linked to this change~~',
'Class:Change/Attribute:related_incident_list' => 'Súvisiace incidenty',
'Class:Change/Attribute:related_incident_list+' => 'All the incidents linked to this change~~',
'Class:Change/Attribute:related_problems_list' => 'Súvisiace problémy',
'Class:Change/Attribute:related_problems_list+' => 'All the problems linked to this change~~',
'Class:Change/Attribute:approval_date+' => '~~',
'Class:Change/Attribute:category' => 'Kategória',
'Class:Change/Attribute:category+' => '~~',
'Class:Change/Attribute:category/Value:application' => 'Aplikácia',
'Class:Change/Attribute:category/Value:application+' => 'application~~',
'Class:Change/Attribute:category/Value:hardware' => 'Hardvér',
'Class:Change/Attribute:category/Value:hardware+' => 'hardware~~',
'Class:Change/Attribute:category/Value:network' => 'Sieť',
'Class:Change/Attribute:category/Value:network+' => 'network~~',
'Class:Change/Attribute:category/Value:other' => 'Iné',
'Class:Change/Attribute:category/Value:other+' => 'other~~',
'Class:Change/Attribute:category/Value:software' => 'Softvér',
'Class:Change/Attribute:category/Value:software+' => 'software~~',
'Class:Change/Attribute:category/Value:system' => 'Systém',
'Class:Change/Attribute:category/Value:system+' => 'system~~',
'Class:Change/Attribute:changemanager_email' => 'Email manažéra zmien',
'Class:Change/Attribute:changemanager_email+' => '~~',
'Class:Change/Attribute:changemanager_id' => 'Change manager~~',
'Class:Change/Attribute:changemanager_id+' => '~~',
'Class:Change/Attribute:child_changes_list' => 'Podriadené zmeny',
'Class:Change/Attribute:child_changes_list+' => 'All the sub changes linked to this change~~',
'Class:Change/Attribute:parent_id_friendlyname' => 'Priateľské meno rodičovskej zmeny',
'Class:Change/Attribute:parent_id_friendlyname+' => '',
'Class:Change/Stimulus:ev_assign' => 'Prideiť',
'Class:Change/Stimulus:ev_assign+' => '',
'Class:Change/Stimulus:ev_plan' => 'Naplánuj',
'Class:Change/Stimulus:ev_plan+' => '',
'Class:Change/Stimulus:ev_reject' => 'Zamietnúť',
'Class:Change/Stimulus:ev_reject+' => '',
'Class:Change/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:Change/Stimulus:ev_reopen+' => '',
'Class:Change/Stimulus:ev_approve' => 'Schváliť',
'Class:Change/Stimulus:ev_approve+' => '',
'Class:Change/Stimulus:ev_finish' => 'Zatvoriť',
'Class:Change/Stimulus:ev_finish+' => '',
'Class:Change/Attribute:creation_date' => 'Dátum vytvorenia',
'Class:Change/Attribute:creation_date+' => '~~',
'Class:Change/Attribute:fallback_plan' => 'Návratový plán',
'Class:Change/Attribute:fallback_plan+' => '~~',
'Class:Change/Attribute:outage' => 'Outage~~',
'Class:Change/Attribute:outage+' => '~~',
'Class:Change/Attribute:outage/Value:no' => 'No~~',
'Class:Change/Attribute:outage/Value:no+' => '~~',
'Class:Change/Attribute:outage/Value:yes' => 'Yes~~',
'Class:Change/Attribute:outage/Value:yes+' => '~~',
));
'Class:Change/Attribute:parent_id' => 'Nadradená zmena',
'Class:Change/Attribute:parent_id+' => '~~',
'Class:Change/Attribute:parent_id_friendlyname' => 'Priateľské meno rodičovskej zmeny',
'Class:Change/Attribute:parent_id_friendlyname+' => '~~',
'Class:Change/Attribute:parent_name' => 'Referencia na rodičovskú zmenu',
'Class:Change/Attribute:parent_name+' => '~~',
'Class:Change/Attribute:reject_reason' => 'Dôvod zamietnutia',
'Class:Change/Attribute:reject_reason+' => '~~',
'Class:Change/Attribute:related_incident_list' => 'Súvisiace incidenty',
'Class:Change/Attribute:related_incident_list+' => 'All the incidents linked to this change~~',
'Class:Change/Attribute:related_problems_list' => 'Súvisiace problémy',
'Class:Change/Attribute:related_problems_list+' => 'All the problems linked to this change~~',
'Class:Change/Attribute:related_request_list' => 'Súvisiace požiadavky',
'Class:Change/Attribute:related_request_list+' => 'All the user requests linked to this change~~',
'Class:Change/Attribute:status' => 'Stav',
'Class:Change/Attribute:status+' => '~~',
'Class:Change/Attribute:status/Value:approved' => 'Schválená',
'Class:Change/Attribute:status/Value:approved+' => '~~',
'Class:Change/Attribute:status/Value:assigned' => 'Pridelená',
'Class:Change/Attribute:status/Value:assigned+' => '~~',
'Class:Change/Attribute:status/Value:closed' => 'Zatvorená',
'Class:Change/Attribute:status/Value:closed+' => '~~',
'Class:Change/Attribute:status/Value:new' => 'Nová',
'Class:Change/Attribute:status/Value:new+' => '~~',
'Class:Change/Attribute:status/Value:planned' => 'Plánovaná',
'Class:Change/Attribute:status/Value:planned+' => '~~',
'Class:Change/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:Change/Attribute:status/Value:rejected+' => '~~',
'Class:Change/Stimulus:ev_approve' => 'Schváliť',
'Class:Change/Stimulus:ev_approve+' => '~~',
'Class:Change/Stimulus:ev_assign' => 'Prideiť',
'Class:Change/Stimulus:ev_assign+' => '~~',
'Class:Change/Stimulus:ev_finish' => 'Zatvoriť',
'Class:Change/Stimulus:ev_finish+' => '~~',
'Class:Change/Stimulus:ev_plan' => 'Naplánuj',
'Class:Change/Stimulus:ev_plan+' => '~~',
'Class:Change/Stimulus:ev_reject' => 'Zamietnúť',
'Class:Change/Stimulus:ev_reject+' => '~~',
'Class:Change/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:Change/Stimulus:ev_reopen+' => '~~',
'Menu:Change:Overview' => 'Prehľad',
'Menu:Change:Overview+' => '~~',
'Menu:Change:Shortcuts' => 'Skratky',
'Menu:Change:Shortcuts+' => '~~',
'Menu:ChangeManagement' => 'Manažment zmien',
'Menu:Changes' => 'Otvorené zmeny',
'Menu:Changes+' => 'All open changes~~',
'Menu:MyChanges' => 'Zmeny pridelené mne',
'Menu:MyChanges+' => 'Changes assigned to me (as Agent)~~',
'Menu:NewChange' => 'Nová zmena',
'Menu:NewChange+' => 'Create a new change ticket~~',
'Menu:SearchChanges' => 'Vyhľadať zmeny',
'Menu:SearchChanges+' => 'Search for change tickets~~',
'Menu:WaitingAcceptance' => 'Zmeny očakávajúce prijatie',
'Menu:WaitingAcceptance+' => '~~',
'Menu:WaitingApproval' => 'Zmeny očakávajúce schválenie',
'Menu:WaitingApproval+' => '~~',
'Tickets:Related:OpenChanges' => 'Open changes~~',
'Tickets:Related:RecentChanges' => 'Recent changes (72h)~~',
'UI-ChangeManagementOverview-ChangeByCategory-last-7-days' => 'Zmeny podľa kategórie za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByDomain-last-7-days' => 'Zmeny podľa domény za posledných 7 dní',
'UI-ChangeManagementOverview-ChangeByStatus-last-7-days' => 'Zmeny podľa stavu za posledných 7 dní',
'UI-ChangeManagementOverview-Last-7-days' => 'Počet zmien za posledných 7 dní',
]);

View File

@@ -3,39 +3,28 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Menu:ConfigEditor' => 'General configuration~~',
'config-edit-title' => 'Configuration File Editor~~',
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
'config-apply' => 'Apply~~',
'config-apply-title' => 'Apply (Ctrl+S)~~',
'config-cancel' => 'Reset~~',
'config-saved' => 'Successfully recorded.~~',
'config-confirm-cancel' => 'Your changes will be lost.~~',
'config-no-change' => 'No change: the file has been left unchanged.~~',
'config-reverted' => 'The configuration has been reverted.~~',
'config-parse-error' => 'Line %2$d: %1$s.<br/>The file has NOT been updated.~~',
'config-current-line' => 'Editing line: %1$s~~',
'config-saved-warning-db-password' => 'Successfully recorded, but the backup won\'t work due to unsupported characters in the database password.~~',
'config-error-transaction' => 'Error: invalid Transaction ID. The configuration was <b>NOT</b> modified.~~',
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
'config-edit-title' => 'Configuration File Editor~~',
'config-error-file-changed' => 'Error: The Configuration file has changed since you opened it and cannot be saved. Refresh and apply your changes again.~~',
'config-not-allowed-in-demo' => 'Sorry, '.ITOP_APPLICATION_SHORT.' is in <b>demonstration mode</b>: the configuration file cannot be edited.~~',
'config-error-transaction' => 'Error: invalid Transaction ID. The configuration was <b>NOT</b> modified.~~',
'config-interactive-not-allowed' => ITOP_APPLICATION_SHORT.' interactive edition of the configuration as been disabled. See <code>\'config_editor\' => \'disabled\'</code> in the configuration file.~~',
));
'config-no-change' => 'No change: the file has been left unchanged.~~',
'config-not-allowed-in-demo' => 'Sorry, '.ITOP_APPLICATION_SHORT.' is in <b>demonstration mode</b>: the configuration file cannot be edited.~~',
'config-parse-error' => 'Line %2$d: %1$s.<br/>The file has NOT been updated.~~',
'config-reverted' => 'The configuration has been reverted.~~',
'config-saved' => 'Successfully recorded.~~',
'config-saved-warning-db-password' => 'Successfully recorded, but the backup won\'t work due to unsupported characters in the database password.~~',
]);

View File

@@ -3,113 +3,94 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
'itop-core-update:UI:ConfirmUpdate' => 'Confirm Application Upgrade~~',
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrading~~',
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance in read-only mode. You have to run a setup to return in normal mode.',
'itop-core-update:UI:UpdateDone' => 'Application Upgrade~~',
'itop-core-update/Operation:SelectUpdateFile/Title' => 'Application Upgrade~~',
'itop-core-update/Operation:ConfirmUpdate/Title' => 'Confirm Application Upgrade~~',
'itop-core-update/Operation:UpdateCoreFiles/Title' => 'Application Upgrading~~',
'itop-core-update/Operation:UpdateDone/Title' => 'Application Upgrade Done~~',
'iTopUpdate:UI:SelectUpdateFile' => 'Select an upgrade file to upload~~',
'iTopUpdate:UI:CheckUpdate' => 'Verify upgrade file~~',
'iTopUpdate:UI:ConfirmInstallFile' => 'You are about to install %1$s~~',
'iTopUpdate:UI:DoUpdate' => 'Upgrade~~',
'iTopUpdate:UI:CurrentVersion' => 'Current installed version~~',
'iTopUpdate:UI:NewVersion' => 'Newly installed version~~',
'iTopUpdate:UI:Back' => 'Back~~',
'iTopUpdate:UI:Cancel' => 'Cancel~~',
'iTopUpdate:UI:Continue' => 'Continue~~',
'iTopUpdate:UI:RunSetup' => 'Run Setup~~',
'iTopUpdate:UI:WithDBBackup' => 'Database backup~~',
'iTopUpdate:UI:WithFilesBackup' => 'Application files backup~~',
'iTopUpdate:UI:WithoutBackup' => 'No backup is planned~~',
'iTopUpdate:UI:Backup' => 'Backup generated before update~~',
'iTopUpdate:UI:DoFilesArchive' => 'Archive application files~~',
'iTopUpdate:UI:UploadArchive' => 'Select a package to upload~~',
'iTopUpdate:UI:ServerFile' => 'Path of a package already on the server~~',
'iTopUpdate:UI:WarningReadOnlyDuringUpdate' => 'During the upgrade, the application will be read-only.~~',
'iTopUpdate:UI:Status' => 'Status~~',
'iTopUpdate:UI:Action' => 'Update~~',
'iTopUpdate:UI:Setup' => ITOP_APPLICATION_SHORT.' Setup~~',
'iTopUpdate:UI:History' => 'Versions History~~',
'iTopUpdate:UI:Progress' => 'Progress of the upgrade~~',
'iTopUpdate:UI:DoBackup:Label' => 'Backup files and database~~',
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
'iTopUpdate:UI:PostMaxSize' => 'PHP ini value post_max_size: %1$s~~',
'iTopUpdate:UI:UploadMaxFileSize' => 'PHP ini value upload_max_filesize: %1$s~~',
'iTopUpdate:UI:CanCoreUpdate:Loading' => 'Checking files~~',
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking files failed (%1$s)~~',
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking files failed (File not exist %1$s)~~',
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking files failed~~',
'iTopUpdate:UI:CanCoreUpdate:Yes' => 'Application can be updated~~',
'iTopUpdate:UI:CanCoreUpdate:No' => 'Application cannot be updated: %1$s~~',
'iTopUpdate:UI:CanCoreUpdate:Warning' => 'Warning: application update can fail: %1$s~~',
'iTopUpdate:UI:CannotUpdateUseSetup' => '<b>Some modified files were detected</b>, a partial update cannot be executed.</br>Follow the <a target="_blank" href="%2$s"> procedure</a> in order to manually upgrade your iTop. You must use the <a href="%1$s">setup</a> to update the application.~~',
'iTopUpdate:UI:CheckInProgress' => 'Please wait during integrity check~~',
'iTopUpdate:UI:SetupLaunch' => 'Launch '.ITOP_APPLICATION_SHORT.' Setup~~',
'iTopUpdate:UI:SetupLaunchConfirm' => 'This will launch '.ITOP_APPLICATION_SHORT.' setup, are you sure?~~',
// Setup Messages
'iTopUpdate:UI:SetupMessage:Ready' => 'Ready to start~~',
'iTopUpdate:UI:SetupMessage:EnterMaintenance' => 'Entering maintenance mode~~',
'iTopUpdate:UI:SetupMessage:Backup' => 'Database backup~~',
'iTopUpdate:UI:SetupMessage:FilesArchive' => 'Archive application files~~',
'iTopUpdate:UI:SetupMessage:CopyFiles' => 'Copy new version files~~',
'iTopUpdate:UI:SetupMessage:CheckCompile' => 'Check application upgrade~~',
'iTopUpdate:UI:SetupMessage:Compile' => 'Upgrade application~~',
'iTopUpdate:UI:SetupMessage:UpdateDatabase' => 'Upgrade database~~',
'iTopUpdate:UI:SetupMessage:ExitMaintenance' => 'Exiting maintenance mode~~',
'iTopUpdate:UI:SetupMessage:UpdateDone' => 'Upgrade completed~~',
// Errors
'iTopUpdate:Error:MissingFunction' => 'Impossible to start upgrade, missing function~~',
'iTopUpdate:Error:MissingFile' => 'Missing file: %1$s~~',
'iTopUpdate:Error:CorruptedFile' => 'File %1$s is corrupted~~',
'iTopUpdate:Error:BadFileFormat' => 'Upgrade file is not a zip file~~',
'iTopUpdate:Error:BadFileContent' => 'Upgrade file is not an application archive~~',
'iTopUpdate:Error:BadItopProduct' => 'Upgrade file is not compatible with your application~~',
'iTopUpdate:Error:Copy' => 'Error, cannot copy \'%1$s\' to \'%2$s\'~~',
'iTopUpdate:Error:FileNotFound' => 'File not found~~',
'iTopUpdate:Error:NoFile' => 'No file provided~~',
'iTopUpdate:Error:InvalidToken' => 'Invalid token~~',
'iTopUpdate:Error:UpdateFailed' => 'Upgrade failed ~~',
'iTopUpdate:Error:FileUploadMaxSizeTooSmall' => 'The upload max size seems too small for update. Please change the PHP configuration.~~',
'iTopUpdate:UI:RestoreArchive' => 'You can restore your application from the archive \'%1$s\'~~',
'iTopUpdate:UI:RestoreBackup' => 'You can restore the database from \'%1$s\'~~',
'iTopUpdate:UI:UpdateDone' => 'Upgrade successful~~',
'Menu:iTopUpdate' => 'Application upgrade~~',
'Menu:iTopUpdate+' => 'Application upgrade~~',
// Missing itop entries
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:ModuleInstallation/Attribute:comment' => 'Comment~~',
'Class:ModuleInstallation/Attribute:installed' => 'Installed on~~',
'Class:ModuleInstallation/Attribute:name' => 'Name~~',
'Class:ModuleInstallation/Attribute:version' => 'Version~~',
'Class:ModuleInstallation/Attribute:comment' => 'Comment~~',
));
'Menu:iTopUpdate' => 'Application upgrade~~',
'Menu:iTopUpdate+' => 'Application upgrade~~',
'iTopUpdate:Error:BadFileContent' => 'Upgrade file is not an application archive~~',
'iTopUpdate:Error:BadFileFormat' => 'Upgrade file is not a zip file~~',
'iTopUpdate:Error:BadItopProduct' => 'Upgrade file is not compatible with your application~~',
'iTopUpdate:Error:Copy' => 'Error, cannot copy \'%1$s\' to \'%2$s\'~~',
'iTopUpdate:Error:CorruptedFile' => 'File %1$s is corrupted~~',
'iTopUpdate:Error:FileNotFound' => 'File not found~~',
'iTopUpdate:Error:FileUploadMaxSizeTooSmall' => 'The upload max size seems too small for update. Please change the PHP configuration.~~',
'iTopUpdate:Error:InvalidToken' => 'Invalid token~~',
'iTopUpdate:Error:MissingFile' => 'Missing file: %1$s~~',
'iTopUpdate:Error:MissingFunction' => 'Impossible to start upgrade, missing function~~',
'iTopUpdate:Error:NoFile' => 'No file provided~~',
'iTopUpdate:Error:UpdateFailed' => 'Upgrade failed ~~',
'iTopUpdate:UI:Action' => 'Update~~',
'iTopUpdate:UI:Back' => 'Back~~',
'iTopUpdate:UI:Backup' => 'Backup generated before update~~',
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking files failed (%1$s)~~',
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking files failed (File not exist %1$s)~~',
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking files failed~~',
'iTopUpdate:UI:CanCoreUpdate:Loading' => 'Checking files~~',
'iTopUpdate:UI:CanCoreUpdate:No' => 'Application cannot be updated: %1$s~~',
'iTopUpdate:UI:CanCoreUpdate:Warning' => 'Warning: application update can fail: %1$s~~',
'iTopUpdate:UI:CanCoreUpdate:Yes' => 'Application can be updated~~',
'iTopUpdate:UI:Cancel' => 'Cancel~~',
'iTopUpdate:UI:CannotUpdateUseSetup' => '<b>Some modified files were detected</b>, a partial update cannot be executed.</br>Follow the <a target="_blank" href="%2$s"> procedure</a> in order to manually upgrade your iTop. You must use the <a href="%1$s">setup</a> to update the application.~~',
'iTopUpdate:UI:CheckInProgress' => 'Please wait during integrity check~~',
'iTopUpdate:UI:CheckUpdate' => 'Verify upgrade file~~',
'iTopUpdate:UI:ConfirmInstallFile' => 'You are about to install %1$s~~',
'iTopUpdate:UI:Continue' => 'Continue~~',
'iTopUpdate:UI:CurrentVersion' => 'Current installed version~~',
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
'iTopUpdate:UI:DoBackup:Label' => 'Backup files and database~~',
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
'iTopUpdate:UI:DoFilesArchive' => 'Archive application files~~',
'iTopUpdate:UI:DoUpdate' => 'Upgrade~~',
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
'iTopUpdate:UI:History' => 'Versions History~~',
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance in read-only mode. You have to run a setup to return in normal mode.',
'iTopUpdate:UI:NewVersion' => 'Newly installed version~~',
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
'iTopUpdate:UI:PostMaxSize' => 'PHP ini value post_max_size: %1$s~~',
'iTopUpdate:UI:Progress' => 'Progress of the upgrade~~',
'iTopUpdate:UI:RestoreArchive' => 'You can restore your application from the archive \'%1$s\'~~',
'iTopUpdate:UI:RestoreBackup' => 'You can restore the database from \'%1$s\'~~',
'iTopUpdate:UI:RunSetup' => 'Run Setup~~',
'iTopUpdate:UI:SelectUpdateFile' => 'Select an upgrade file to upload~~',
'iTopUpdate:UI:ServerFile' => 'Path of a package already on the server~~',
'iTopUpdate:UI:Setup' => ITOP_APPLICATION_SHORT.' Setup~~',
'iTopUpdate:UI:SetupLaunch' => 'Launch '.ITOP_APPLICATION_SHORT.' Setup~~',
'iTopUpdate:UI:SetupLaunchConfirm' => 'This will launch '.ITOP_APPLICATION_SHORT.' setup, are you sure?~~',
'iTopUpdate:UI:SetupMessage:Backup' => 'Database backup~~',
'iTopUpdate:UI:SetupMessage:CheckCompile' => 'Check application upgrade~~',
'iTopUpdate:UI:SetupMessage:Compile' => 'Upgrade application~~',
'iTopUpdate:UI:SetupMessage:CopyFiles' => 'Copy new version files~~',
'iTopUpdate:UI:SetupMessage:EnterMaintenance' => 'Entering maintenance mode~~',
'iTopUpdate:UI:SetupMessage:ExitMaintenance' => 'Exiting maintenance mode~~',
'iTopUpdate:UI:SetupMessage:FilesArchive' => 'Archive application files~~',
'iTopUpdate:UI:SetupMessage:Ready' => 'Ready to start~~',
'iTopUpdate:UI:SetupMessage:UpdateDatabase' => 'Upgrade database~~',
'iTopUpdate:UI:SetupMessage:UpdateDone' => 'Upgrade completed~~',
'iTopUpdate:UI:Status' => 'Status~~',
'iTopUpdate:UI:UpdateDone' => 'Upgrade successful~~',
'iTopUpdate:UI:UploadArchive' => 'Select a package to upload~~',
'iTopUpdate:UI:UploadMaxFileSize' => 'PHP ini value upload_max_filesize: %1$s~~',
'iTopUpdate:UI:WarningReadOnlyDuringUpdate' => 'During the upgrade, the application will be read-only.~~',
'iTopUpdate:UI:WithDBBackup' => 'Database backup~~',
'iTopUpdate:UI:WithFilesBackup' => 'Application files backup~~',
'iTopUpdate:UI:WithoutBackup' => 'No backup is planned~~',
'itop-core-update/Operation:ConfirmUpdate/Title' => 'Confirm Application Upgrade~~',
'itop-core-update/Operation:SelectUpdateFile/Title' => 'Application Upgrade~~',
'itop-core-update/Operation:UpdateCoreFiles/Title' => 'Application Upgrading~~',
'itop-core-update/Operation:UpdateDone/Title' => 'Application Upgrade Done~~',
'itop-core-update:UI:ConfirmUpdate' => 'Confirm Application Upgrade~~',
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrading~~',
'itop-core-update:UI:UpdateDone' => 'Application Upgrade~~',
]);

View File

@@ -3,89 +3,44 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: FAQ
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Brick:Portal:FAQ:Menu' => 'FAQ~~',
'Brick:Portal:FAQ:Title' => 'Frequently Asked Questions~~',
'Brick:Portal:FAQ:Title+' => '<p>In a hurry?</p><p>Check out the list of most common questions and (maybe) find the expected answer right away.</p>~~',
'Class:FAQ' => 'FAQ~~',
'Class:FAQ+' => 'Frequently asked questions~~',
'Class:FAQ/Attribute:title' => 'Title~~',
'Class:FAQ/Attribute:title+' => '~~',
'Class:FAQ/Attribute:summary' => 'Summary~~',
'Class:FAQ/Attribute:summary+' => '~~',
'Class:FAQ/Attribute:description' => 'Description~~',
'Class:FAQ/Attribute:description+' => '~~',
'Class:FAQ/Attribute:category_id' => 'Category~~',
'Class:FAQ/Attribute:category_id+' => '~~',
'Class:FAQ/Attribute:category_name' => 'Category name~~',
'Class:FAQ/Attribute:category_name+' => '~~',
'Class:FAQ/Attribute:description' => 'Description~~',
'Class:FAQ/Attribute:description+' => '~~',
'Class:FAQ/Attribute:domains' => 'Domains~~',
'Class:FAQ/Attribute:error_code' => 'Error code~~',
'Class:FAQ/Attribute:error_code+' => '~~',
'Class:FAQ/Attribute:key_words' => 'Key words~~',
'Class:FAQ/Attribute:key_words+' => '~~',
'Class:FAQ/Attribute:domains' => 'Domains~~',
));
//
// Class: FAQCategory
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:FAQ/Attribute:summary' => 'Summary~~',
'Class:FAQ/Attribute:summary+' => '~~',
'Class:FAQ/Attribute:title' => 'Title~~',
'Class:FAQ/Attribute:title+' => '~~',
'Class:FAQCategory' => 'FAQ Category~~',
'Class:FAQCategory+' => 'Category for FAQ~~',
'Class:FAQCategory/Attribute:name' => 'Name~~',
'Class:FAQCategory/Attribute:name+' => '~~',
'Class:FAQCategory/Attribute:faq_list' => 'FAQs~~',
'Class:FAQCategory/Attribute:faq_list+' => 'All the frequently asked questions related to this category~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ProblemManagement' => 'Problem management~~',
'Menu:ProblemManagement+' => 'Problem management~~',
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Menu:FAQCategory' => 'FAQ categories~~',
'Menu:FAQCategory+' => 'All FAQ categories~~',
'Class:FAQCategory/Attribute:name' => 'Name~~',
'Class:FAQCategory/Attribute:name+' => '~~',
'Menu:FAQ' => 'FAQs~~',
'Menu:FAQ+' => 'All FAQs~~',
'Brick:Portal:FAQ:Menu' => 'FAQ~~',
'Brick:Portal:FAQ:Title' => 'Frequently Asked Questions~~',
'Brick:Portal:FAQ:Title+' => '<p>In a hurry?</p><p>Check out the list of most common questions and (maybe) find the expected answer right away.</p>~~',
));
'Menu:FAQCategory' => 'FAQ categories~~',
'Menu:FAQCategory+' => 'All FAQ categories~~',
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Menu:ProblemManagement' => 'Problem management~~',
'Menu:ProblemManagement+' => 'Problem management~~',
]);

View File

@@ -3,29 +3,15 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
// Errors
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
));
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
]);

View File

@@ -3,79 +3,65 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
// Dictionary entries go here
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Menu:iTopHub' => 'iTop Hub~~',
'Menu:iTopHub:Register' => 'Connect to iTop Hub~~',
'Menu:iTopHub:Register+' => 'Go to iTop Hub to update your '.ITOP_APPLICATION_SHORT.' instance~~',
'Menu:iTopHub:Register:Description' => '<p>Get access to your community platform iTop Hub!<br>Find all the content and information you need, manage your instances through personalized tools & install more extensions.<br><br>By connecting to the Hub from this page, you will push information about this '.ITOP_APPLICATION_SHORT.' instance into the Hub.</p>~~',
'Menu:iTopHub:MyExtensions' => 'Deployed extensions~~',
'Menu:iTopHub:MyExtensions+' => 'See the list of extensions deployed on this instance of '.ITOP_APPLICATION_SHORT.'~~',
'Menu:iTopHub:BrowseExtensions' => 'Get extensions from iTop Hub~~',
'Menu:iTopHub:BrowseExtensions+' => 'Browse for more extensions on iTop Hub~~',
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hubs store, your one stop place to find wonderful iTop extensions !<br>Find the ones that will help you customize and adapt '.ITOP_APPLICATION_SHORT.' to your processes.<br><br>By connecting to the Hub from this page, you will push information about this '.ITOP_APPLICATION_SHORT.' instance into the Hub.</p>',
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
'iTopHub:CloseBtn' => 'Close~~',
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
'iTopHub:OpenInNewWindow' => 'Open iTop Hub in a new window~~',
'iTopHub:AutoSubmit' => 'Don\'t ask me again. Next time, go to iTop Hub automatically.~~',
'Menu:iTopHub:MyExtensions' => 'Deployed extensions~~',
'Menu:iTopHub:MyExtensions+' => 'See the list of extensions deployed on this instance of '.ITOP_APPLICATION_SHORT.'~~',
'Menu:iTopHub:Register' => 'Connect to iTop Hub~~',
'Menu:iTopHub:Register+' => 'Go to iTop Hub to update your '.ITOP_APPLICATION_SHORT.' instance~~',
'Menu:iTopHub:Register:Description' => '<p>Get access to your community platform iTop Hub!<br>Find all the content and information you need, manage your instances through personalized tools & install more extensions.<br><br>By connecting to the Hub from this page, you will push information about this '.ITOP_APPLICATION_SHORT.' instance into the Hub.</p>~~',
'UI:About:RemoteExtensionSource' => 'iTop Hub~~',
'iTopHub:Explanation' => 'By clicking this button you will be redirected to iTop Hub.~~',
'iTopHub:BackupFreeDiskSpaceIn' => '%1$s free disk space in %2$s.~~',
'iTopHub:FailedToCheckFreeDiskSpace' => 'Failed to check free disk space.~~',
'iTopHub:BackupOk' => 'Backup Ok.~~',
'iTopHub:AutoSubmit' => 'Don\'t ask me again. Next time, go to iTop Hub automatically.~~',
'iTopHub:BackupFailed' => 'Backup failed!~~',
'iTopHub:Landing:Status' => 'Deployment status~~',
'iTopHub:Landing:Install' => 'Deploying extensions...~~',
'iTopHub:BackupFreeDiskSpaceIn' => '%1$s free disk space in %2$s.~~',
'iTopHub:BackupOk' => 'Backup Ok.~~',
'iTopHub:CloseBtn' => 'Close~~',
'iTopHub:CompiledOK' => 'Compilation successful.~~',
'iTopHub:ConfigurationSafelyReverted' => 'Error detected during deployment!<br>'.ITOP_APPLICATION_SHORT.' configuration has NOT been modified.~~',
'iTopHub:FailAuthent' => 'Authentication failed for this action.~~',
'iTopHub:InstalledExtensions' => 'Extensions deployed on this instance~~',
'iTopHub:DBBackupLabel' => 'Instance backup~~',
'iTopHub:DBBackupSentence' => 'Do a backup of the database and '.ITOP_APPLICATION_SHORT.' configuration before updating~~',
'iTopHub:DatabaseBackupProgress' => 'Instance backup...~~',
'iTopHub:DeployBtn' => 'Deploy !~~',
'iTopHub:Explanation' => 'By clicking this button you will be redirected to iTop Hub.~~',
'iTopHub:ExtensionCategory:Manual' => 'Extensions deployed manually~~',
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt '.ITOP_APPLICATION_SHORT.' to your processes !~~',
'iTopHub:ExtensionNotInstalled' => 'Not installed~~',
'iTopHub:FailAuthent' => 'Authentication failed for this action.~~',
'iTopHub:FailedToCheckFreeDiskSpace' => 'Failed to check free disk space.~~',
'iTopHub:GetMoreExtensions' => 'Get extensions from iTop Hub...~~',
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
'iTopHub:DBBackupLabel' => 'Instance backup~~',
'iTopHub:DBBackupSentence' => 'Do a backup of the database and '.ITOP_APPLICATION_SHORT.' configuration before updating~~',
'iTopHub:DeployBtn' => 'Deploy !~~',
'iTopHub:DatabaseBackupProgress' => 'Instance backup...~~',
'iTopHub:InstallationEffect:Install' => 'Version: %1$s will be installed.~~',
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
'iTopHub:InstallationEffect:Install' => 'Version: %1$s will be installed.~~',
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
'iTopHub:InstallationProgress:InstallationSuccessful' => 'Installation successful!~~',
'iTopHub:InstallationStatus:Installed_Version' => '%1$s version: %2$s.~~',
'iTopHub:InstallationStatus:Installed' => 'Installed~~',
'iTopHub:InstallationStatus:Installed_Version' => '%1$s version: %2$s.~~',
'iTopHub:InstallationStatus:Version_NotInstalled' => 'Version %1$s <b>NOT</b> installed.~~',
));
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
'iTopHub:InstalledExtensions' => 'Extensions deployed on this instance~~',
'iTopHub:Landing:Install' => 'Deploying extensions...~~',
'iTopHub:Landing:Status' => 'Deployment status~~',
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt '.ITOP_APPLICATION_SHORT.' to your processes !~~',
'iTopHub:OpenInNewWindow' => 'Open iTop Hub in a new window~~',
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
]);

View File

@@ -3,117 +3,45 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:IncidentManagement' => 'Incident Management~~',
'Menu:IncidentManagement+' => '',
'Menu:Incident:Overview' => 'Overview~~',
'Menu:Incident:Overview+' => '',
'Menu:NewIncident' => 'New incident~~',
'Menu:NewIncident+' => 'Create a new incident ticket~~',
'Menu:SearchIncidents' => 'Search for incidents~~',
'Menu:SearchIncidents+' => 'Search for incident tickets~~',
'Menu:Incident:Shortcuts' => 'Shortcuts~~',
'Menu:Incident:Shortcuts+' => '~~',
'Menu:Incident:MyIncidents' => 'Incidents assigned to me~~',
'Menu:Incident:MyIncidents+' => 'Incidents assigned to me (as Agent)~~',
'Menu:Incident:EscalatedIncidents' => 'Escalated incidents~~',
'Menu:Incident:EscalatedIncidents+' => '',
'Menu:Incident:OpenIncidents' => 'All open incidents~~',
'Menu:Incident:OpenIncidents+' => '',
'UI-IncidentManagementOverview-IncidentByPriority-last-14-days' => 'Last 14 days incident per priority~~',
'UI-IncidentManagementOverview-Last-14-days' => 'Last 14 days number of incidents~~',
'UI-IncidentManagementOverview-OpenIncidentByStatus' => 'Open incidents by status~~',
'UI-IncidentManagementOverview-OpenIncidentByAgent' => 'Open incidents by agent~~',
'UI-IncidentManagementOverview-OpenIncidentByCustomer' => 'Open incidents by customer~~',
));
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: Incident
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Incident' => 'Incident~~',
'Class:Incident+' => '~~',
'Class:Incident/Attribute:status' => 'Status~~',
'Class:Incident/Attribute:status+' => '~~',
'Class:Incident/Attribute:status/Value:new' => 'New~~',
'Class:Incident/Attribute:status/Value:new+' => '~~',
'Class:Incident/Attribute:status/Value:escalated_tto' => 'Escalated TTO~~',
'Class:Incident/Attribute:status/Value:escalated_tto+' => '~~',
'Class:Incident/Attribute:status/Value:assigned' => 'Assigned~~',
'Class:Incident/Attribute:status/Value:assigned+' => '~~',
'Class:Incident/Attribute:status/Value:escalated_ttr' => 'Escalated TTR~~',
'Class:Incident/Attribute:status/Value:escalated_ttr+' => '~~',
'Class:Incident/Attribute:status/Value:waiting_for_approval' => 'Waiting for approval~~',
'Class:Incident/Attribute:status/Value:waiting_for_approval+' => '~~',
'Class:Incident/Attribute:status/Value:pending' => 'Pending~~',
'Class:Incident/Attribute:status/Value:pending+' => '~~',
'Class:Incident/Attribute:status/Value:resolved' => 'Resolved~~',
'Class:Incident/Attribute:status/Value:resolved+' => '~~',
'Class:Incident/Attribute:status/Value:closed' => 'Closed~~',
'Class:Incident/Attribute:status/Value:closed+' => '~~',
'Class:Incident/Attribute:assignment_date' => 'Assignment date~~',
'Class:Incident/Attribute:assignment_date+' => '~~',
'Class:Incident/Attribute:child_incidents_list' => 'Child incidents~~',
'Class:Incident/Attribute:child_incidents_list+' => 'All the child incidents related to this incident~~',
'Class:Incident/Attribute:cumulatedpending' => 'Cumulated pending~~',
'Class:Incident/Attribute:cumulatedpending+' => '~~',
'Class:Incident/Attribute:escalation_flag' => 'Hot Flag~~',
'Class:Incident/Attribute:escalation_flag+' => '~~',
'Class:Incident/Attribute:escalation_flag/Value:no' => 'No~~',
'Class:Incident/Attribute:escalation_flag/Value:no+' => '~~',
'Class:Incident/Attribute:escalation_flag/Value:yes' => 'Yes~~',
'Class:Incident/Attribute:escalation_flag/Value:yes+' => '~~',
'Class:Incident/Attribute:escalation_reason' => 'Hot reason~~',
'Class:Incident/Attribute:escalation_reason+' => '~~',
'Class:Incident/Attribute:impact' => 'Impact~~',
'Class:Incident/Attribute:impact+' => '~~',
'Class:Incident/Attribute:impact+' => 'Impact is the severity of the incident, how many end users are affected~~',
'Class:Incident/Attribute:impact/Value:1' => 'A department~~',
'Class:Incident/Attribute:impact/Value:1+' => '~~',
'Class:Incident/Attribute:impact/Value:2' => 'A service~~',
'Class:Incident/Attribute:impact/Value:2+' => '~~',
'Class:Incident/Attribute:impact/Value:3' => 'A person~~',
'Class:Incident/Attribute:impact/Value:3+' => '~~',
'Class:Incident/Attribute:priority' => 'Priority~~',
'Class:Incident/Attribute:priority+' => '~~',
'Class:Incident/Attribute:priority/Value:1' => 'Critical~~',
'Class:Incident/Attribute:priority/Value:1+' => '',
'Class:Incident/Attribute:priority/Value:2' => 'High~~',
'Class:Incident/Attribute:priority/Value:2+' => '',
'Class:Incident/Attribute:priority/Value:3' => 'Medium~~',
'Class:Incident/Attribute:priority/Value:3+' => '',
'Class:Incident/Attribute:priority/Value:4' => 'Low~~',
'Class:Incident/Attribute:priority/Value:4+' => '',
'Class:Incident/Attribute:urgency' => 'Urgency~~',
'Class:Incident/Attribute:urgency+' => '~~',
'Class:Incident/Attribute:urgency/Value:1' => 'Critical~~',
'Class:Incident/Attribute:urgency/Value:1+' => '',
'Class:Incident/Attribute:urgency/Value:2' => 'High~~',
'Class:Incident/Attribute:urgency/Value:2+' => '',
'Class:Incident/Attribute:urgency/Value:3' => 'Medium~~',
'Class:Incident/Attribute:urgency/Value:3+' => '',
'Class:Incident/Attribute:urgency/Value:4' => 'Low~~',
'Class:Incident/Attribute:urgency/Value:4+' => '',
'Class:Incident/Attribute:last_pending_date' => 'Last pending date~~',
'Class:Incident/Attribute:last_pending_date+' => '~~',
'Class:Incident/Attribute:origin' => 'Origin~~',
'Class:Incident/Attribute:origin+' => '~~',
'Class:Incident/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:Incident/Attribute:origin/Value:in_person+' => 'Incident created following a face-to-face discussion~~',
'Class:Incident/Attribute:origin+' => 'What\'s the trigger of this incident ticket creation~~',
'Class:Incident/Attribute:origin/Value:chat' => 'Chat~~',
'Class:Incident/Attribute:origin/Value:chat+' => 'Incident created following a ~~',
'Class:Incident/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:Incident/Attribute:origin/Value:in_person+' => 'Incident created following a face-to-face discussion~~',
'Class:Incident/Attribute:origin/Value:mail' => 'Email~~',
'Class:Incident/Attribute:origin/Value:mail+' => 'Incident created on an email reception~~',
'Class:Incident/Attribute:origin/Value:monitoring' => 'Monitoring~~',
@@ -122,6 +50,54 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Incident/Attribute:origin/Value:phone+' => 'Incident created following a phone call~~',
'Class:Incident/Attribute:origin/Value:portal' => 'Portal~~',
'Class:Incident/Attribute:origin/Value:portal+' => 'Incident created on the user portal~~',
'Class:Incident/Attribute:parent_change_id' => 'Parent change~~',
'Class:Incident/Attribute:parent_change_id+' => '~~',
'Class:Incident/Attribute:parent_change_ref' => 'Parent change ref~~',
'Class:Incident/Attribute:parent_change_ref+' => '~~',
'Class:Incident/Attribute:parent_incident_id' => 'Parent incident~~',
'Class:Incident/Attribute:parent_incident_id+' => '~~',
'Class:Incident/Attribute:parent_incident_id_friendlyname' => 'parent_incident_id_friendlyname~~',
'Class:Incident/Attribute:parent_incident_id_friendlyname+' => '~~',
'Class:Incident/Attribute:parent_incident_ref' => 'Parent incident ref~~',
'Class:Incident/Attribute:parent_incident_ref+' => '~~',
'Class:Incident/Attribute:parent_problem_id' => 'Parent problem id~~',
'Class:Incident/Attribute:parent_problem_id+' => '~~',
'Class:Incident/Attribute:parent_problem_ref' => 'Parent problem ref~~',
'Class:Incident/Attribute:parent_problem_ref+' => '~~',
'Class:Incident/Attribute:pending_reason' => 'Pending reason~~',
'Class:Incident/Attribute:pending_reason+' => '~~',
'Class:Incident/Attribute:priority' => 'Priority~~',
'Class:Incident/Attribute:priority+' => 'Order in which tickets need to be handled~~',
'Class:Incident/Attribute:priority/Value:1' => 'Critical~~',
'Class:Incident/Attribute:priority/Value:1+' => '~~',
'Class:Incident/Attribute:priority/Value:2' => 'High~~',
'Class:Incident/Attribute:priority/Value:2+' => '~~',
'Class:Incident/Attribute:priority/Value:3' => 'Medium~~',
'Class:Incident/Attribute:priority/Value:3+' => '~~',
'Class:Incident/Attribute:priority/Value:4' => 'Low~~',
'Class:Incident/Attribute:priority/Value:4+' => '~~',
'Class:Incident/Attribute:public_log' => 'Public log~~',
'Class:Incident/Attribute:public_log+' => '~~',
'Class:Incident/Attribute:related_request_list' => 'Child requests~~',
'Class:Incident/Attribute:related_request_list+' => '~~',
'Class:Incident/Attribute:resolution_code' => 'Resolution code~~',
'Class:Incident/Attribute:resolution_code+' => 'What was done to resolve the incident?~~',
'Class:Incident/Attribute:resolution_code/Value:assistance' => 'Assistance~~',
'Class:Incident/Attribute:resolution_code/Value:assistance+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:bug fixed' => 'Bug fixed~~',
'Class:Incident/Attribute:resolution_code/Value:bug fixed+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:hardware repair' => 'Hardware repair~~',
'Class:Incident/Attribute:resolution_code/Value:hardware repair+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:other' => 'Other~~',
'Class:Incident/Attribute:resolution_code/Value:other+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:software patch' => 'Software patch~~',
'Class:Incident/Attribute:resolution_code/Value:software patch+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:system update' => 'System update~~',
'Class:Incident/Attribute:resolution_code/Value:system update+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:training' => 'Training~~',
'Class:Incident/Attribute:resolution_code/Value:training+' => '~~',
'Class:Incident/Attribute:resolution_date' => 'Resolution date~~',
'Class:Incident/Attribute:resolution_date+' => '~~',
'Class:Incident/Attribute:service_id' => 'Service~~',
'Class:Incident/Attribute:service_id+' => '~~',
'Class:Incident/Attribute:service_name' => 'Service name~~',
@@ -130,112 +106,107 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Incident/Attribute:servicesubcategory_id+' => '~~',
'Class:Incident/Attribute:servicesubcategory_name' => 'Service subcategory name~~',
'Class:Incident/Attribute:servicesubcategory_name+' => '~~',
'Class:Incident/Attribute:escalation_flag' => 'Hot Flag~~',
'Class:Incident/Attribute:escalation_flag+' => '~~',
'Class:Incident/Attribute:escalation_flag/Value:no' => 'No~~',
'Class:Incident/Attribute:escalation_flag/Value:no+' => '',
'Class:Incident/Attribute:escalation_flag/Value:yes' => 'Yes~~',
'Class:Incident/Attribute:escalation_flag/Value:yes+' => '',
'Class:Incident/Attribute:escalation_reason' => 'Hot reason~~',
'Class:Incident/Attribute:escalation_reason+' => '~~',
'Class:Incident/Attribute:assignment_date' => 'Assignment date~~',
'Class:Incident/Attribute:assignment_date+' => '~~',
'Class:Incident/Attribute:resolution_date' => 'Resolution date~~',
'Class:Incident/Attribute:resolution_date+' => '~~',
'Class:Incident/Attribute:last_pending_date' => 'Last pending date~~',
'Class:Incident/Attribute:last_pending_date+' => '~~',
'Class:Incident/Attribute:cumulatedpending' => 'Cumulated pending~~',
'Class:Incident/Attribute:cumulatedpending+' => '~~',
'Class:Incident/Attribute:tto' => 'TTO~~',
'Class:Incident/Attribute:tto+' => '~~',
'Class:Incident/Attribute:ttr' => 'TTR~~',
'Class:Incident/Attribute:ttr+' => '~~',
'Class:Incident/Attribute:tto_escalation_deadline' => 'TTO Deadline~~',
'Class:Incident/Attribute:tto_escalation_deadline+' => '~~',
'Class:Incident/Attribute:sla_tto_passed' => 'SLA tto passed~~',
'Class:Incident/Attribute:sla_tto_passed+' => '~~',
'Class:Incident/Attribute:sla_tto_over' => 'SLA tto over~~',
'Class:Incident/Attribute:sla_tto_over+' => '~~',
'Class:Incident/Attribute:ttr_escalation_deadline' => 'TTR Deadline~~',
'Class:Incident/Attribute:ttr_escalation_deadline+' => '~~',
'Class:Incident/Attribute:sla_ttr_passed' => 'SLA ttr passed~~',
'Class:Incident/Attribute:sla_ttr_passed+' => '~~',
'Class:Incident/Attribute:sla_tto_passed' => 'SLA tto passed~~',
'Class:Incident/Attribute:sla_tto_passed+' => '~~',
'Class:Incident/Attribute:sla_ttr_over' => 'SLA ttr over~~',
'Class:Incident/Attribute:sla_ttr_over+' => '~~',
'Class:Incident/Attribute:time_spent' => 'Resolution delay~~',
'Class:Incident/Attribute:time_spent+' => '~~',
'Class:Incident/Attribute:resolution_code' => 'Resolution code~~',
'Class:Incident/Attribute:resolution_code+' => '~~',
'Class:Incident/Attribute:resolution_code/Value:assistance' => 'Assistance~~',
'Class:Incident/Attribute:resolution_code/Value:assistance+' => '',
'Class:Incident/Attribute:resolution_code/Value:bug fixed' => 'Bug fixed~~',
'Class:Incident/Attribute:resolution_code/Value:bug fixed+' => '',
'Class:Incident/Attribute:resolution_code/Value:hardware repair' => 'Hardware repair~~',
'Class:Incident/Attribute:resolution_code/Value:hardware repair+' => '',
'Class:Incident/Attribute:resolution_code/Value:other' => 'Other~~',
'Class:Incident/Attribute:resolution_code/Value:other+' => '',
'Class:Incident/Attribute:resolution_code/Value:software patch' => 'Software patch~~',
'Class:Incident/Attribute:resolution_code/Value:software patch+' => '',
'Class:Incident/Attribute:resolution_code/Value:system update' => 'System update~~',
'Class:Incident/Attribute:resolution_code/Value:system update+' => '',
'Class:Incident/Attribute:resolution_code/Value:training' => 'Training~~',
'Class:Incident/Attribute:resolution_code/Value:training+' => '',
'Class:Incident/Attribute:sla_ttr_passed' => 'SLA ttr passed~~',
'Class:Incident/Attribute:sla_ttr_passed+' => '~~',
'Class:Incident/Attribute:solution' => 'Solution~~',
'Class:Incident/Attribute:solution+' => '~~',
'Class:Incident/Attribute:pending_reason' => 'Pending reason~~',
'Class:Incident/Attribute:pending_reason+' => '~~',
'Class:Incident/Attribute:parent_incident_id' => 'Parent incident~~',
'Class:Incident/Attribute:parent_incident_id+' => '~~',
'Class:Incident/Attribute:parent_incident_ref' => 'Parent incident ref~~',
'Class:Incident/Attribute:parent_incident_ref+' => '~~',
'Class:Incident/Attribute:parent_change_id' => 'Parent change~~',
'Class:Incident/Attribute:parent_change_id+' => '~~',
'Class:Incident/Attribute:parent_change_ref' => 'Parent change ref~~',
'Class:Incident/Attribute:parent_change_ref+' => '~~',
'Class:Incident/Attribute:parent_problem_id' => 'Parent problem id~~',
'Class:Incident/Attribute:parent_problem_id+' => '~~',
'Class:Incident/Attribute:parent_problem_ref' => 'Parent problem ref~~',
'Class:Incident/Attribute:parent_problem_ref+' => '~~',
'Class:Incident/Attribute:related_request_list' => 'Child requests~~',
'Class:Incident/Attribute:related_request_list+' => '~~',
'Class:Incident/Attribute:child_incidents_list' => 'Child incidents~~',
'Class:Incident/Attribute:child_incidents_list+' => 'All the child incidents related to this incident~~',
'Class:Incident/Attribute:public_log' => 'Public log~~',
'Class:Incident/Attribute:public_log+' => '~~',
'Class:Incident/Attribute:status' => 'Status~~',
'Class:Incident/Attribute:status+' => '~~',
'Class:Incident/Attribute:status/Value:assigned' => 'Assigned~~',
'Class:Incident/Attribute:status/Value:assigned+' => '~~',
'Class:Incident/Attribute:status/Value:closed' => 'Closed~~',
'Class:Incident/Attribute:status/Value:closed+' => '~~',
'Class:Incident/Attribute:status/Value:escalated_tto' => 'Escalated TTO~~',
'Class:Incident/Attribute:status/Value:escalated_tto+' => '~~',
'Class:Incident/Attribute:status/Value:escalated_ttr' => 'Escalated TTR~~',
'Class:Incident/Attribute:status/Value:escalated_ttr+' => '~~',
'Class:Incident/Attribute:status/Value:new' => 'New~~',
'Class:Incident/Attribute:status/Value:new+' => '~~',
'Class:Incident/Attribute:status/Value:pending' => 'Pending~~',
'Class:Incident/Attribute:status/Value:pending+' => '~~',
'Class:Incident/Attribute:status/Value:resolved' => 'Resolved~~',
'Class:Incident/Attribute:status/Value:resolved+' => '~~',
'Class:Incident/Attribute:status/Value:waiting_for_approval' => 'Waiting for approval~~',
'Class:Incident/Attribute:status/Value:waiting_for_approval+' => '~~',
'Class:Incident/Attribute:time_spent' => 'Resolution delay~~',
'Class:Incident/Attribute:time_spent+' => '~~',
'Class:Incident/Attribute:tto' => 'TTO~~',
'Class:Incident/Attribute:tto+' => 'Time To Own~~',
'Class:Incident/Attribute:tto_escalation_deadline' => 'TTO Deadline~~',
'Class:Incident/Attribute:tto_escalation_deadline+' => '~~',
'Class:Incident/Attribute:ttr' => 'TTR~~',
'Class:Incident/Attribute:ttr+' => 'Time To Resolve~~',
'Class:Incident/Attribute:ttr_escalation_deadline' => 'TTR Deadline~~',
'Class:Incident/Attribute:ttr_escalation_deadline+' => '~~',
'Class:Incident/Attribute:urgency' => 'Urgency~~',
'Class:Incident/Attribute:urgency+' => 'How quickly the fault needs to be resolved~~',
'Class:Incident/Attribute:urgency/Value:1' => 'Critical~~',
'Class:Incident/Attribute:urgency/Value:1+' => '~~',
'Class:Incident/Attribute:urgency/Value:2' => 'High~~',
'Class:Incident/Attribute:urgency/Value:2+' => '~~',
'Class:Incident/Attribute:urgency/Value:3' => 'Medium~~',
'Class:Incident/Attribute:urgency/Value:3+' => '~~',
'Class:Incident/Attribute:urgency/Value:4' => 'Low~~',
'Class:Incident/Attribute:urgency/Value:4+' => '~~',
'Class:Incident/Attribute:user_comment' => 'User comment~~',
'Class:Incident/Attribute:user_comment+' => '~~',
'Class:Incident/Attribute:user_satisfaction' => 'User satisfaction~~',
'Class:Incident/Attribute:user_satisfaction+' => '~~',
'Class:Incident/Attribute:user_satisfaction/Value:1' => 'Very satisfied~~',
'Class:Incident/Attribute:user_satisfaction/Value:1+' => '',
'Class:Incident/Attribute:user_satisfaction/Value:1+' => '~~',
'Class:Incident/Attribute:user_satisfaction/Value:2' => 'Fairly statisfied~~',
'Class:Incident/Attribute:user_satisfaction/Value:2+' => '',
'Class:Incident/Attribute:user_satisfaction/Value:2+' => '~~',
'Class:Incident/Attribute:user_satisfaction/Value:3' => 'Rather Dissatified~~',
'Class:Incident/Attribute:user_satisfaction/Value:3+' => '',
'Class:Incident/Attribute:user_satisfaction/Value:3+' => '~~',
'Class:Incident/Attribute:user_satisfaction/Value:4' => 'Very Dissatisfied~~',
'Class:Incident/Attribute:user_satisfaction/Value:4+' => '',
'Class:Incident/Attribute:user_comment' => 'User comment~~',
'Class:Incident/Attribute:user_comment+' => '~~',
'Class:Incident/Attribute:parent_incident_id_friendlyname' => 'parent_incident_id_friendlyname~~',
'Class:Incident/Attribute:parent_incident_id_friendlyname+' => '~~',
'Class:Incident/Stimulus:ev_assign' => 'Assign~~',
'Class:Incident/Stimulus:ev_assign+' => '~~',
'Class:Incident/Stimulus:ev_reassign' => 'Re-assign~~',
'Class:Incident/Stimulus:ev_reassign+' => '~~',
'Class:Incident/Stimulus:ev_pending' => 'Pending~~',
'Class:Incident/Stimulus:ev_pending+' => '~~',
'Class:Incident/Stimulus:ev_timeout' => 'Timeout~~',
'Class:Incident/Stimulus:ev_timeout+' => '~~',
'Class:Incident/Stimulus:ev_autoresolve' => 'Automatic resolve~~',
'Class:Incident/Stimulus:ev_autoresolve+' => '~~',
'Class:Incident/Stimulus:ev_autoclose' => 'Automatic close~~',
'Class:Incident/Stimulus:ev_autoclose+' => '~~',
'Class:Incident/Stimulus:ev_resolve' => 'Mark as resolved~~',
'Class:Incident/Stimulus:ev_resolve+' => '~~',
'Class:Incident/Stimulus:ev_close' => 'Close this request~~',
'Class:Incident/Stimulus:ev_close+' => '~~',
'Class:Incident/Stimulus:ev_reopen' => 'Re-open~~',
'Class:Incident/Stimulus:ev_reopen+' => '~~',
'Class:Incident/Attribute:user_satisfaction/Value:4+' => '~~',
'Class:Incident/Error:CannotAssignParentIncidentIdToSelf' => 'Cannot assign the Parent incident to the incident itself~~',
'Class:Incident/Method:ResolveChildTickets' => 'ResolveChildTickets~~',
'Class:Incident/Method:ResolveChildTickets+' => 'Cascade the resolution to child ticket (ev_autoresolve), and align the following characteristics: service, team, agent, resolution info~~',
'Class:Incident/Stimulus:ev_assign' => 'Assign~~',
'Class:Incident/Stimulus:ev_assign+' => '~~',
'Class:Incident/Stimulus:ev_autoclose' => 'Automatic close~~',
'Class:Incident/Stimulus:ev_autoclose+' => '~~',
'Class:Incident/Stimulus:ev_autoresolve' => 'Automatic resolve~~',
'Class:Incident/Stimulus:ev_autoresolve+' => '~~',
'Class:Incident/Stimulus:ev_close' => 'Close this request~~',
'Class:Incident/Stimulus:ev_close+' => '~~',
'Class:Incident/Stimulus:ev_pending' => 'Pending~~',
'Class:Incident/Stimulus:ev_pending+' => '~~',
'Class:Incident/Stimulus:ev_reassign' => 'Re-assign~~',
'Class:Incident/Stimulus:ev_reassign+' => '~~',
'Class:Incident/Stimulus:ev_reopen' => 'Re-open~~',
'Class:Incident/Stimulus:ev_reopen+' => '~~',
'Class:Incident/Stimulus:ev_resolve' => 'Mark as resolved~~',
'Class:Incident/Stimulus:ev_resolve+' => '~~',
'Class:Incident/Stimulus:ev_timeout' => 'Timeout~~',
'Class:Incident/Stimulus:ev_timeout+' => '~~',
'Menu:Incident:EscalatedIncidents' => 'Escalated incidents~~',
'Menu:Incident:EscalatedIncidents+' => '~~',
'Menu:Incident:MyIncidents' => 'Incidents assigned to me~~',
'Menu:Incident:MyIncidents+' => 'Incidents assigned to me (as Agent)~~',
'Menu:Incident:OpenIncidents' => 'All open incidents~~',
'Menu:Incident:OpenIncidents+' => '~~',
'Menu:Incident:Overview' => 'Overview~~',
'Menu:Incident:Overview+' => '~~',
'Menu:Incident:Shortcuts' => 'Shortcuts~~',
'Menu:Incident:Shortcuts+' => '~~',
'Menu:IncidentManagement' => 'Incident Management~~',
'Menu:IncidentManagement+' => '~~',
'Menu:NewIncident' => 'New incident~~',
'Menu:NewIncident+' => 'Create a new incident ticket~~',
'Menu:SearchIncidents' => 'Search for incidents~~',
'Menu:SearchIncidents+' => 'Search for incident tickets~~',
'Tickets:Related:OpenIncidents' => 'Open incidents~~',
));
'UI-IncidentManagementOverview-IncidentByPriority-last-14-days' => 'Last 14 days incident per priority~~',
'UI-IncidentManagementOverview-Last-14-days' => 'Last 14 days number of incidents~~',
'UI-IncidentManagementOverview-OpenIncidentByAgent' => 'Open incidents by agent~~',
'UI-IncidentManagementOverview-OpenIncidentByCustomer' => 'Open incidents by customer~~',
'UI-IncidentManagementOverview-OpenIncidentByStatus' => 'Open incidents by status~~',
]);

View File

@@ -3,71 +3,21 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: KnownError
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:KnownError' => 'Known Error~~',
'Class:KnownError+' => 'Error documented for a known issue~~',
'Class:KnownError/Attribute:name' => 'Name~~',
'Class:KnownError/Attribute:name+' => '~~',
'Class:KnownError/Attribute:org_id' => 'Customer~~',
'Class:KnownError/Attribute:org_id+' => '~~',
'Class:KnownError/Attribute:ci_list' => 'CIs~~',
'Class:KnownError/Attribute:ci_list+' => 'All the configuration items that are related to this known error~~',
'Class:KnownError/Attribute:cust_name' => 'Customer Name~~',
'Class:KnownError/Attribute:cust_name+' => '~~',
'Class:KnownError/Attribute:problem_id' => 'Related Problem~~',
'Class:KnownError/Attribute:problem_id+' => '~~',
'Class:KnownError/Attribute:problem_ref' => 'Related Problem Ref~~',
'Class:KnownError/Attribute:problem_ref+' => '~~',
'Class:KnownError/Attribute:symptom' => 'Symptom~~',
'Class:KnownError/Attribute:symptom+' => '~~',
'Class:KnownError/Attribute:root_cause' => 'Root Cause~~',
'Class:KnownError/Attribute:root_cause+' => '~~',
'Class:KnownError/Attribute:workaround' => 'Work around~~',
'Class:KnownError/Attribute:workaround+' => '~~',
'Class:KnownError/Attribute:solution' => 'Solution~~',
'Class:KnownError/Attribute:solution+' => '~~',
'Class:KnownError/Attribute:error_code' => 'Error Code~~',
'Class:KnownError/Attribute:error_code+' => '~~',
'Class:KnownError/Attribute:document_list' => 'Documents~~',
'Class:KnownError/Attribute:document_list+' => 'All the documents linked to this known error~~',
'Class:KnownError/Attribute:domain' => 'Domain~~',
'Class:KnownError/Attribute:domain+' => '~~',
'Class:KnownError/Attribute:domain/Value:Application' => 'Application~~',
@@ -78,46 +28,32 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:KnownError/Attribute:domain/Value:Network+' => 'Network~~',
'Class:KnownError/Attribute:domain/Value:Server' => 'Server~~',
'Class:KnownError/Attribute:domain/Value:Server+' => 'Server~~',
'Class:KnownError/Attribute:vendor' => 'Vendor~~',
'Class:KnownError/Attribute:vendor+' => '~~',
'Class:KnownError/Attribute:error_code' => 'Error Code~~',
'Class:KnownError/Attribute:error_code+' => '~~',
'Class:KnownError/Attribute:model' => 'Model~~',
'Class:KnownError/Attribute:model+' => '~~',
'Class:KnownError/Attribute:name' => 'Name~~',
'Class:KnownError/Attribute:name+' => '~~',
'Class:KnownError/Attribute:org_id' => 'Customer~~',
'Class:KnownError/Attribute:org_id+' => '~~',
'Class:KnownError/Attribute:problem_id' => 'Related Problem~~',
'Class:KnownError/Attribute:problem_id+' => '~~',
'Class:KnownError/Attribute:problem_ref' => 'Related Problem Ref~~',
'Class:KnownError/Attribute:problem_ref+' => '~~',
'Class:KnownError/Attribute:root_cause' => 'Root Cause~~',
'Class:KnownError/Attribute:root_cause+' => '~~',
'Class:KnownError/Attribute:solution' => 'Solution~~',
'Class:KnownError/Attribute:solution+' => '~~',
'Class:KnownError/Attribute:symptom' => 'Symptom~~',
'Class:KnownError/Attribute:symptom+' => '~~',
'Class:KnownError/Attribute:vendor' => 'Vendor~~',
'Class:KnownError/Attribute:vendor+' => '~~',
'Class:KnownError/Attribute:version' => 'Version~~',
'Class:KnownError/Attribute:version+' => '~~',
'Class:KnownError/Attribute:ci_list' => 'CIs~~',
'Class:KnownError/Attribute:ci_list+' => 'All the configuration items that are related to this known error~~',
'Class:KnownError/Attribute:document_list' => 'Documents~~',
'Class:KnownError/Attribute:document_list+' => 'All the documents linked to this known error~~',
));
//
// Class: lnkErrorToFunctionalCI
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkErrorToFunctionalCI' => 'Link Error / FunctionalCI~~',
'Class:lnkErrorToFunctionalCI+' => 'Infra related to a known error~~',
'Class:lnkErrorToFunctionalCI/Name' => '%1$s / %2$s~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_id' => 'CI~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_id+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_name' => 'CI name~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_name+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_id' => 'Error~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_id+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_name' => 'Error name~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_name+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:reason' => 'Reason~~',
'Class:lnkErrorToFunctionalCI/Attribute:reason+' => '~~',
));
//
// Class: lnkDocumentToError
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:KnownError/Attribute:workaround' => 'Work around~~',
'Class:KnownError/Attribute:workaround+' => '~~',
'Class:lnkDocumentToError' => 'Link Documents / Errors~~',
'Class:lnkDocumentToError+' => 'A link between a document and a known error~~',
'Class:lnkDocumentToError/Name' => '%1$s / %2$s~~',
'Class:lnkDocumentToError/Attribute:document_id' => 'Document~~',
'Class:lnkDocumentToError/Attribute:document_id+' => '~~',
'Class:lnkDocumentToError/Attribute:document_name' => 'Document Name~~',
@@ -128,16 +64,27 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkDocumentToError/Attribute:error_name+' => '~~',
'Class:lnkDocumentToError/Attribute:link_type' => 'link_type~~',
'Class:lnkDocumentToError/Attribute:link_type+' => '~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ProblemManagement' => 'Problem Management~~',
'Menu:ProblemManagement+' => 'Problem Management~~',
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Class:lnkDocumentToError/Name' => '%1$s / %2$s~~',
'Class:lnkErrorToFunctionalCI' => 'Link Error / FunctionalCI~~',
'Class:lnkErrorToFunctionalCI+' => 'Infra related to a known error~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_id' => 'Error~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_id+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_name' => 'Error name~~',
'Class:lnkErrorToFunctionalCI/Attribute:error_name+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_id' => 'CI~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_id+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_name' => 'CI name~~',
'Class:lnkErrorToFunctionalCI/Attribute:functionalci_name+' => '~~',
'Class:lnkErrorToFunctionalCI/Attribute:reason' => 'Reason~~',
'Class:lnkErrorToFunctionalCI/Attribute:reason+' => '~~',
'Class:lnkErrorToFunctionalCI/Name' => '%1$s / %2$s~~',
'Menu:NewError' => 'New known error~~',
'Menu:NewError+' => 'Creation of a new known error~~',
'Menu:SearchError' => 'Search for known errors~~',
'Menu:SearchError+' => 'Search for known errors~~',
'Menu:Problem:KnownErrors' => 'All known errors~~',
'Menu:Problem:KnownErrors+' => 'All known errors~~',
));
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Menu:ProblemManagement' => 'Problem Management~~',
'Menu:ProblemManagement+' => 'Problem Management~~',
'Menu:SearchError' => 'Search for known errors~~',
'Menu:SearchError+' => 'Search for known errors~~',
]);

View File

@@ -2,115 +2,99 @@
/**
* Localized data
*
* @copyright Copyright (C) 2013 XXXXX
* @license http://opensource.org/licenses/AGPL-3.0
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Menu:CreateMailbox' => 'Create a mailbox...~~',
'Menu:OAuthClient' => 'OAuth client~~',
'Menu:OAuthClient+' => '~~',
'Menu:GenerateTokens' => 'Generate access token...~~',
'Menu:RegenerateTokens' => 'Regenerate access token...~~',
'itop-oauth-client/Operation:CreateMailBox/Title' => 'Mailbox creation~~',
'itop-oauth-client:UsedForSMTP' => 'This OAuth client is used for SMTP~~',
'itop-oauth-client:TestSMTP' => 'Email send test~~',
'itop-oauth-client:MissingOAuthClient' => 'Missing Oauth client for user name %1$s~~',
'itop-oauth-client:Message:MissingToken' => 'Generate access token before using this OAuth client~~',
'itop-oauth-client:Message:RegenerateToken' => 'Regenerate access token to to take into account the changes~~',
'itop-oauth-client:Message:TokenCreated' => 'Access token created~~',
'itop-oauth-client:Message:TokenRecreated' => 'Access token regenerated~~',
'itop-oauth-client:Message:TokenError' => 'Access token not generated due to server error~~',
'OAuthClient:Name/UseForSMTPMustBeUnique' => 'The combination Login (%1$s) and Use for SMTP (%2$s) has already be used for OAuth Client~~',
'OAuthClient:baseinfo' => 'Base Information~~',
'OAuthClient:scope' => 'Scope~~',
]);
//
// Class: OAuthClient
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:OAuthClient' => 'OAuth Client~~',
'Class:OAuthClient/Attribute:provider' => 'Provider~~',
'Class:OAuthClient/Attribute:provider+' => '~~',
'Class:OAuthClient/Attribute:name' => 'Login~~',
'Class:OAuthClient/Attribute:name+' => '~~',
'Class:OAuthClient/Attribute:scope' => 'Scope~~',
'Class:OAuthClient/Attribute:scope+' => '~~',
'Class:OAuthClient/Attribute:status' => 'Status~~',
'Class:OAuthClient/Attribute:status+' => 'After creation, use the action “Generate access token” to be able to use this OAuth client~~',
'Class:OAuthClient/Attribute:status/Value:active' => 'Access token generated~~',
'Class:OAuthClient/Attribute:status/Value:inactive' => 'No Access token~~',
'Class:OAuthClient/Attribute:client_id' => 'Client id~~',
'Class:OAuthClient/Attribute:client_id+' => 'A long string of characters provided by your OAuth2 provider~~',
'Class:OAuthClient/Attribute:client_secret' => 'Client secret~~',
'Class:OAuthClient/Attribute:client_secret+' => 'Another long string of characters provided by your OAuth2 provider~~',
'Class:OAuthClient/Attribute:description' => 'Description~~',
'Class:OAuthClient/Attribute:description+' => '~~',
'Class:OAuthClient/Attribute:client_id' => 'Client id~~',
'Class:OAuthClient/Attribute:client_id+' => '~~',
'Class:OAuthClient/Attribute:client_secret' => 'Client secret~~',
'Class:OAuthClient/Attribute:client_secret+' => '~~',
'Class:OAuthClient/Attribute:mailbox_list' => 'Mailbox list~~',
'Class:OAuthClient/Attribute:mailbox_list+' => '~~',
'Class:OAuthClient/Attribute:name' => 'Login~~',
'Class:OAuthClient/Attribute:name+' => 'In general, this is your email address~~',
'Class:OAuthClient/Attribute:provider' => 'Provider~~',
'Class:OAuthClient/Attribute:provider+' => '~~',
'Class:OAuthClient/Attribute:redirect_url' => 'Redirect url~~',
'Class:OAuthClient/Attribute:redirect_url+' => 'This url must be copied in the OAuth2 configuration of the provider
Erase the field to recalculate default value~~',
'Class:OAuthClient/Attribute:refresh_token' => 'Refresh token~~',
'Class:OAuthClient/Attribute:refresh_token+' => '~~',
'Class:OAuthClient/Attribute:refresh_token_expiration' => 'Refresh token expiration~~',
'Class:OAuthClient/Attribute:refresh_token_expiration+' => '~~',
'Class:OAuthClient/Attribute:status' => 'Status~~',
'Class:OAuthClient/Attribute:status+' => 'After creation, use the action “Generate access token” to be able to use this OAuth client~~',
'Class:OAuthClient/Attribute:status/Value:active' => 'Access token generated~~',
'Class:OAuthClient/Attribute:status/Value:inactive' => 'No Access token~~',
'Class:OAuthClient/Attribute:token' => 'Access token~~',
'Class:OAuthClient/Attribute:token+' => '~~',
'Class:OAuthClient/Attribute:token_expiration' => 'Access token expiration~~',
'Class:OAuthClient/Attribute:token_expiration+' => '~~',
'Class:OAuthClient/Attribute:redirect_url' => 'Redirect url~~',
'Class:OAuthClient/Attribute:redirect_url+' => '~~',
'Class:OAuthClient/Attribute:mailbox_list' => 'Mailbox list~~',
'Class:OAuthClient/Attribute:mailbox_list+' => '~~'
]);
//
// Class: OAuthClientAzure
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:OAuthClientAzure' => 'OAuth client for Microsoft Azure~~',
'Class:OAuthClientAzure/Name' => '%1$s (%2$s)~~',
'Class:OAuthClientAzure/Attribute:scope' => 'Scope~~',
'Class:OAuthClientAzure/Attribute:scope+' => 'Usually default selection is appropriate~~',
'Class:OAuthClientAzure/Attribute:scope/Value:SMTP' => 'SMTP~~',
'Class:OAuthClientAzure/Attribute:scope/Value:SMTP+' => '~~',
'Class:OAuthClientAzure/Attribute:scope/Value:IMAP' => 'IMAP~~',
'Class:OAuthClientAzure/Attribute:scope/Value:IMAP+' => '~~',
'Class:OAuthClientAzure/Attribute:advanced_scope' => 'Advanced scope~~',
'Class:OAuthClientAzure/Attribute:advanced_scope+' => 'As soon as you enter something here it takes precedence on the “Scope” selection which is then ignored~~',
'Class:OAuthClientAzure/Attribute:used_scope' => 'Used scope~~',
'Class:OAuthClientAzure/Attribute:used_scope+' => '~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:simple' => 'Simple~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:simple+' => '~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:advanced' => 'Advanced~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:advanced+' => '~~',
'Class:OAuthClientAzure/Attribute:scope' => 'Scope~~',
'Class:OAuthClientAzure/Attribute:scope+' => 'Usually default selection is appropriate~~',
'Class:OAuthClientAzure/Attribute:scope/Value:IMAP' => 'IMAP~~',
'Class:OAuthClientAzure/Attribute:scope/Value:IMAP+' => '~~',
'Class:OAuthClientAzure/Attribute:scope/Value:SMTP' => 'SMTP~~',
'Class:OAuthClientAzure/Attribute:scope/Value:SMTP+' => '~~',
'Class:OAuthClientAzure/Attribute:tenant' => 'Tenant~~',
'Class:OAuthClientAzure/Attribute:tenant+' => 'Tenant ID of the configured application. For multi-tenant application, use "common".~~',
'Class:OAuthClientAzure/Attribute:used_for_smtp' => 'Used for SMTP~~',
'Class:OAuthClientAzure/Attribute:used_for_smtp+' => 'At least one OAuth client must have this flag to “Yes”, if you want iTop to use it for sending mails~~',
'Class:OAuthClientAzure/Attribute:used_for_smtp/Value:yes' => 'Yes~~',
'Class:OAuthClientAzure/Attribute:used_for_smtp/Value:no' => 'No~~',
));
//
// Class: OAuthClientGoogle
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:OAuthClientAzure/Attribute:used_for_smtp/Value:yes' => 'Yes~~',
'Class:OAuthClientAzure/Attribute:used_scope' => 'Used scope~~',
'Class:OAuthClientAzure/Attribute:used_scope+' => '~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:advanced' => 'Advanced~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:advanced+' => '~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:simple' => 'Simple~~',
'Class:OAuthClientAzure/Attribute:used_scope/Value:simple+' => '~~',
'Class:OAuthClientAzure/Name' => '%1$s (%2$s)~~',
'Class:OAuthClientGoogle' => 'OAuth client for Google~~',
'Class:OAuthClientGoogle/Name' => '%1$s (%2$s)~~',
'Class:OAuthClientGoogle/Attribute:scope' => 'Scope~~',
'Class:OAuthClientGoogle/Attribute:scope+' => 'Usually default selection is appropriate~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:SMTP' => 'SMTP~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:SMTP+' => '~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:IMAP' => 'IMAP~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:IMAP+' => '~~',
'Class:OAuthClientGoogle/Attribute:advanced_scope' => 'Advanced scope~~',
'Class:OAuthClientGoogle/Attribute:advanced_scope+' => 'As soon as you enter something here it takes precedence on the “Scope” selection which is then ignored~~',
'Class:OAuthClientGoogle/Attribute:used_scope' => 'Used scope~~',
'Class:OAuthClientGoogle/Attribute:used_scope+' => '~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:simple' => 'Simple~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:simple+' => '~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:advanced' => 'Advanced~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:advanced+' => '~~',
'Class:OAuthClientGoogle/Attribute:scope' => 'Scope~~',
'Class:OAuthClientGoogle/Attribute:scope+' => 'Usually default selection is appropriate~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:IMAP' => 'IMAP~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:IMAP+' => '~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:SMTP' => 'SMTP~~',
'Class:OAuthClientGoogle/Attribute:scope/Value:SMTP+' => '~~',
'Class:OAuthClientGoogle/Attribute:used_for_smtp' => 'Used for SMTP~~',
'Class:OAuthClientGoogle/Attribute:used_for_smtp+' => 'At least one OAuth client must have this flag to “Yes”, if you want iTop to use it for sending mails~~',
'Class:OAuthClientGoogle/Attribute:used_for_smtp/Value:yes' => 'Yes~~',
'Class:OAuthClientGoogle/Attribute:used_for_smtp/Value:no' => 'No~~',
));
'Class:OAuthClientGoogle/Attribute:used_for_smtp/Value:yes' => 'Yes~~',
'Class:OAuthClientGoogle/Attribute:used_scope' => 'Used scope~~',
'Class:OAuthClientGoogle/Attribute:used_scope+' => '~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:advanced' => 'Advanced~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:advanced+' => '~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:simple' => 'Simple~~',
'Class:OAuthClientGoogle/Attribute:used_scope/Value:simple+' => '~~',
'Class:OAuthClientGoogle/Name' => '%1$s (%2$s)~~',
'Menu:CreateMailbox' => 'Create a mailbox...~~',
'Menu:GenerateTokens' => 'Generate access token...~~',
'Menu:OAuthClient' => 'OAuth client~~',
'Menu:OAuthClient+' => '~~',
'Menu:RegenerateTokens' => 'Regenerate access token...~~',
'OAuthClient:Name/UseForSMTPMustBeUnique' => 'The combination Login (%1$s) and Use for SMTP (%2$s) has already be used for OAuth Client~~',
'OAuthClient:baseinfo' => 'Base Information~~',
'OAuthClient:scope' => 'Scope~~',
'itop-oauth-client/Operation:CreateMailBox/Title' => 'Mailbox creation~~',
'itop-oauth-client:Message:MissingToken' => 'Generate access token before using this OAuth client~~',
'itop-oauth-client:Message:RegenerateToken' => 'Regenerate access token to to take into account the changes~~',
'itop-oauth-client:Message:TokenCreated' => 'Access token created~~',
'itop-oauth-client:Message:TokenError' => 'Access token not generated due to server error~~',
'itop-oauth-client:Message:TokenRecreated' => 'Access token regenerated~~',
'itop-oauth-client:MissingOAuthClient' => 'Missing Oauth client for user name %1$s~~',
'itop-oauth-client:TestSMTP' => 'Email send test~~',
'itop-oauth-client:UsedForSMTP' => 'This OAuth client is used for SMTP~~',
]);

View File

@@ -1,154 +1,114 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Brick:Portal:AggregatePage:DefaultTitle' => 'Dashboard~~',
'Brick:Portal:Browse:Action:Create' => 'Create~~',
'Brick:Portal:Browse:Action:CreateObjectFromThis' => 'New %1$s~~',
'Brick:Portal:Browse:Action:Drilldown' => 'Drilldown~~',
'Brick:Portal:Browse:Action:Edit' => 'Edit~~',
'Brick:Portal:Browse:Action:View' => 'Details~~',
'Brick:Portal:Browse:Filter:NoData' => 'No item~~',
'Brick:Portal:Browse:Mode:List' => 'List~~',
'Brick:Portal:Browse:Mode:Mosaic' => 'Mosaic~~',
'Brick:Portal:Browse:Mode:Tree' => 'Tree~~',
'Brick:Portal:Browse:Name' => 'Browse throught items~~',
'Brick:Portal:Browse:Tree:CollapseAll' => 'Collapse all~~',
'Brick:Portal:Browse:Tree:ExpandAll' => 'Expand all~~',
'Brick:Portal:Create:ChooseType' => 'Please, choose a type~~',
'Brick:Portal:Create:Name' => 'Quick creation~~',
'Brick:Portal:Filter:Name' => 'Prefilter a brick~~',
'Brick:Portal:Filter:SearchInput:Placeholder' => 'eg. connect wifi~~',
'Brick:Portal:Filter:SearchInput:Submit' => 'Search~~',
'Brick:Portal:Manage:All' => 'All~~',
'Brick:Portal:Manage:DisplayMode:bar-chart' => 'Bar Chart~~',
'Brick:Portal:Manage:DisplayMode:list' => 'List~~',
'Brick:Portal:Manage:DisplayMode:pie-chart' => 'Pie Chart~~',
'Brick:Portal:Manage:Group' => 'Group~~',
'Brick:Portal:Manage:Name' => 'Manage items~~',
'Brick:Portal:Manage:Others' => 'Others~~',
'Brick:Portal:Manage:Table:ItemActions' => 'Actions~~',
'Brick:Portal:Manage:Table:NoData' => 'No item.~~',
'Brick:Portal:Manage:fct:avg' => 'Average~~',
'Brick:Portal:Manage:fct:count' => 'Total~~',
'Brick:Portal:Manage:fct:max' => 'Max~~',
'Brick:Portal:Manage:fct:min' => 'Min~~',
'Brick:Portal:Manage:fct:sum' => 'Sum~~',
'Brick:Portal:Object:Copy:CopiedTooltip' => 'Copied~~',
'Brick:Portal:Object:Copy:TextToCopy' => '%2$s',
'Brick:Portal:Object:Copy:Tooltip' => 'Copy object link~~',
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
'Brick:Portal:Object:Form:Message:ObjectSaved' => '%1$s saved~~',
'Brick:Portal:Object:Form:Message:Saved' => 'Saved~~',
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, complete the following information:~~',
'Brick:Portal:Object:Form:View:Title' => '%1$s: %2$s~~',
'Brick:Portal:Object:Name' => 'Object~~',
'Brick:Portal:Object:Search:Hierarchy:Title' => 'Select %1$s (%2$s)~~',
'Brick:Portal:Object:Search:Regular:Title' => 'Select %1$s (%2$s)~~',
'Brick:Portal:UserProfile:Name' => 'User profile~~',
'Brick:Portal:UserProfile:Navigation:Dropdown:Logout' => 'Logoff~~',
'Brick:Portal:UserProfile:Navigation:Dropdown:MyProfil' => 'My profile~~',
'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:Password:ChoosePassword' => 'Choose password~~',
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
'Brick:Portal:UserProfile:Password:Title' => 'Password~~',
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
'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~~',
'Page:DefaultTitle' => '%1$s User portal~~',
'Page:GoPortalHome' => 'Home page~~',
'Page:GoPreviousPage' => 'Previous page~~',
'Page:Home' => 'Home~~',
'Page:PleaseWait' => 'Please wait...~~',
'Page:ReloadPage' => 'Reload page~~',
'Portal:Attachments:DropZone:Message' => 'Drop your files to add them as attachments~~',
'Portal:Autocomplete:NoResult' => 'No data~~',
'Portal:Button:Add' => 'Add~~',
'Portal:Button:Apply' => 'Update~~',
'Portal:Button:Cancel' => 'Cancel~~',
'Portal:Button:Close' => 'Close~~',
'Portal:Button:Delete' => 'Delete~~',
'Portal:Button:Remove' => 'Remove~~',
'Portal:Button:Submit' => 'Submit~~',
'Portal:Calendar-FirstDayOfWeek' => 'en-us~~',
'Portal:Datatables:Language:DisplayLength:All' => 'All~~',
'Portal:Datatables:Language:EmptyTable' => 'No data available in this table~~',
'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:LengthMenu' => 'Display _MENU_ items per page~~',
'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:Paginate:Next' => 'Next~~',
'Portal:Datatables:Language:Paginate:Previous' => 'Previous~~',
'Portal:Datatables:Language:Processing' => 'Please wait...~~',
'Portal:Datatables:Language:Search' => 'Filter:~~',
'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
));
// Object form
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Portal:Form:Caselog:Entry:Close:Tooltip' => 'Close this entry~~',
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
'Portal:Datatables:Language:ZeroRecords' => 'No result~~',
'Portal:EnvironmentBanner:GoToProduction' => 'Go back to PRODUCTION mode~~',
'Portal:EnvironmentBanner:Title' => 'You are currently in <strong>%1$s</strong> mode~~',
'Portal:Error:ObjectCannotBeCreated' => 'Error: object cannot be created. Check associated objects and attachments before submitting again this form.~~',
'Portal:Error:ObjectCannotBeUpdated' => 'Error: object cannot be updated. Check associated objects and attachments before submitting again this form.~~',
));
// 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 information~~',
'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, 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' => '%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~~',
));
'Portal:ErrorUserLoggedOut' => 'You are logged out and need to log in again in order to continue.~~',
'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:File:None' => 'No file~~',
'Portal:Form:Caselog:Entry:Close:Tooltip' => 'Close this entry~~',
'Portal:Form:Close:Warning' => 'Do you want to leave this form ? Data entered may be lost~~',
]);

View File

@@ -1,41 +1,29 @@
<?php
// Copyright (C) 2010-2024 Combodo SAS
//
// 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
// along with iTop. If not, see <http://www.gnu.org/licenses/>
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
* @author Benjamin Planque <benjamin.planque@combodo.com>
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
*
*/
//////////////////////////////////////////////////////////////////////
// Note: The classes have been grouped by categories: bizmodel
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'portal:itop-portal' => 'Standard portal~~', // This is the portal name that will be displayed in portal dispatcher (eg. URL in menus)
'Page:DefaultTitle' => '%1$s - User portal~~',
'Brick:Portal:UserProfile:Title' => 'My profile~~',
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Brick:Portal:ClosedRequests:Title' => 'Closed requests~~',
'Brick:Portal:ListAllRequests:Tab' => 'On-going and closed~~',
'Brick:Portal:ListAllRequests:Title' => 'All requests~~',
'Brick:Portal:ListAllRequests:Title+' => '<p>View all requests regardless of their status.</p>~~',
'Brick:Portal:NewRequest:Title' => 'New request~~',
'Brick:Portal:NewRequest:Title+' => '<p>Need help?</p><p>Pick from the services catalog and submit your request to our support teams.</p>~~',
'Brick:Portal:OngoingRequests:Title' => 'Ongoing requests~~',
'Brick:Portal:OngoingRequests:Title+' => '<p>Follow up with your ongoing requests.</p><p>Check the progress, add comments, attach documents, acknowledge the solution.</p>~~',
'Brick:Portal:OngoingRequests:Tab:OnGoing' => 'Open~~',
'Brick:Portal:OngoingRequests:Tab:Resolved' => 'Resolved~~',
'Brick:Portal:ClosedRequests:Title' => 'Closed requests~~',
));
'Brick:Portal:OngoingRequests:Title' => 'Ongoing requests~~',
'Brick:Portal:OngoingRequests:Title+' => '<p>Follow up with your ongoing requests.</p><p>Check the progress, add comments, attach documents, acknowledge the solution.</p>~~',
'Brick:Portal:SearchInAllRequests:Title' => 'Search in all requests~~',
'Brick:Portal:SearchInAllRequests:Title+' => '<p>Regardless of their status.</p>~~',
'Brick:Portal:UserProfile:Title' => 'My profile~~',
'Page:DefaultTitle' => '%1$s - User portal~~',
'portal:itop-portal' => 'Standard portal~~',
]);

View File

@@ -3,86 +3,49 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ProblemManagement' => 'Problem management~~',
'Menu:ProblemManagement+' => 'Problem management~~',
'Menu:Problem:Overview' => 'Overview~~',
'Menu:Problem:Overview+' => 'Overview~~',
'Menu:NewProblem' => 'New problem~~',
'Menu:NewProblem+' => 'New problem~~',
'Menu:SearchProblems' => 'Search for problems~~',
'Menu:SearchProblems+' => 'Search for problems~~',
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Menu:Problem:MyProblems' => 'My problems~~',
'Menu:Problem:MyProblems+' => 'My problems~~',
'Menu:Problem:OpenProblems' => 'All open problems~~',
'Menu:Problem:OpenProblems+' => 'All open problems~~',
'UI-ProblemManagementOverview-ProblemByService' => 'Problems by service~~',
'UI-ProblemManagementOverview-ProblemByService+' => 'Problems by service~~',
'UI-ProblemManagementOverview-ProblemByPriority' => 'Problems by priority~~',
'UI-ProblemManagementOverview-ProblemByPriority+' => 'Problems by priority~~',
'UI-ProblemManagementOverview-ProblemUnassigned' => 'Unassigned problems~~',
'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Unassigned problems~~',
'UI:ProblemMgmtMenuOverview:Title' => 'Dashboard for Problem Management~~',
'UI:ProblemMgmtMenuOverview:Title+' => 'Dashboard for Problem Management~~',
));
//
// Class: Problem
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Problem' => 'Problem~~',
'Class:Problem+' => '~~',
'Class:Problem/Attribute:status' => 'Status~~',
'Class:Problem/Attribute:status+' => '~~',
'Class:Problem/Attribute:status/Value:new' => 'New~~',
'Class:Problem/Attribute:status/Value:new+' => '~~',
'Class:Problem/Attribute:status/Value:assigned' => 'Assigned~~',
'Class:Problem/Attribute:status/Value:assigned+' => '~~',
'Class:Problem/Attribute:status/Value:resolved' => 'Resolved~~',
'Class:Problem/Attribute:status/Value:resolved+' => '~~',
'Class:Problem/Attribute:status/Value:closed' => 'Closed~~',
'Class:Problem/Attribute:status/Value:closed+' => '~~',
'Class:Problem/Attribute:assignment_date' => 'Assignment Date~~',
'Class:Problem/Attribute:assignment_date+' => '~~',
'Class:Problem/Attribute:impact' => 'Impact~~',
'Class:Problem/Attribute:impact+' => 'Impact is the severity of the problem, how many end users are affected~~',
'Class:Problem/Attribute:impact/Value:1' => 'A Department~~',
'Class:Problem/Attribute:impact/Value:1+' => '~~',
'Class:Problem/Attribute:impact/Value:2' => 'A Service~~',
'Class:Problem/Attribute:impact/Value:2+' => '~~',
'Class:Problem/Attribute:impact/Value:3' => 'A person~~',
'Class:Problem/Attribute:impact/Value:3+' => '~~',
'Class:Problem/Attribute:knownerrors_list' => 'Known Errors~~',
'Class:Problem/Attribute:knownerrors_list+' => 'All the known errors that are linked to this problem~~',
'Class:Problem/Attribute:priority' => 'Priority~~',
'Class:Problem/Attribute:priority+' => 'Order in which problems need to be handled~~',
'Class:Problem/Attribute:priority/Value:1' => 'Critical~~',
'Class:Problem/Attribute:priority/Value:1+' => '~~',
'Class:Problem/Attribute:priority/Value:2' => 'High~~',
'Class:Problem/Attribute:priority/Value:2+' => '~~',
'Class:Problem/Attribute:priority/Value:3' => 'Medium~~',
'Class:Problem/Attribute:priority/Value:3+' => '~~',
'Class:Problem/Attribute:priority/Value:4' => 'Low~~',
'Class:Problem/Attribute:priority/Value:4+' => '~~',
'Class:Problem/Attribute:product' => 'Product~~',
'Class:Problem/Attribute:product+' => '~~',
'Class:Problem/Attribute:related_change_id' => 'Related Change~~',
'Class:Problem/Attribute:related_change_id+' => '~~',
'Class:Problem/Attribute:related_change_ref' => 'Related Change ref~~',
'Class:Problem/Attribute:related_change_ref+' => '~~',
'Class:Problem/Attribute:related_incident_list' => 'Related incidents~~',
'Class:Problem/Attribute:related_incident_list+' => 'All the incidents that are related to this problem~~',
'Class:Problem/Attribute:related_request_list' => 'Related requests~~',
'Class:Problem/Attribute:related_request_list+' => 'All the requests that are related to this problem~~',
'Class:Problem/Attribute:resolution_date' => 'Resolution Date~~',
'Class:Problem/Attribute:resolution_date+' => '~~',
'Class:Problem/Attribute:service_id' => 'Service~~',
'Class:Problem/Attribute:service_id+' => '~~',
'Class:Problem/Attribute:service_name' => 'Service name~~',
@@ -91,56 +54,53 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Problem/Attribute:servicesubcategory_id+' => '~~',
'Class:Problem/Attribute:servicesubcategory_name' => 'Service subcategory~~',
'Class:Problem/Attribute:servicesubcategory_name+' => '~~',
'Class:Problem/Attribute:product' => 'Product~~',
'Class:Problem/Attribute:product+' => '~~',
'Class:Problem/Attribute:impact' => 'Impact~~',
'Class:Problem/Attribute:impact+' => '~~',
'Class:Problem/Attribute:impact/Value:1' => 'A Department~~',
'Class:Problem/Attribute:impact/Value:1+' => '~~',
'Class:Problem/Attribute:impact/Value:2' => 'A Service~~',
'Class:Problem/Attribute:impact/Value:2+' => '~~',
'Class:Problem/Attribute:impact/Value:3' => 'A person~~',
'Class:Problem/Attribute:impact/Value:3+' => '~~',
'Class:Problem/Attribute:status' => 'Status~~',
'Class:Problem/Attribute:status+' => '~~',
'Class:Problem/Attribute:status/Value:assigned' => 'Assigned~~',
'Class:Problem/Attribute:status/Value:assigned+' => '~~',
'Class:Problem/Attribute:status/Value:closed' => 'Closed~~',
'Class:Problem/Attribute:status/Value:closed+' => '~~',
'Class:Problem/Attribute:status/Value:new' => 'New~~',
'Class:Problem/Attribute:status/Value:new+' => '~~',
'Class:Problem/Attribute:status/Value:resolved' => 'Resolved~~',
'Class:Problem/Attribute:status/Value:resolved+' => '~~',
'Class:Problem/Attribute:urgency' => 'Urgency~~',
'Class:Problem/Attribute:urgency+' => '~~',
'Class:Problem/Attribute:urgency+' => 'How quickly the problem needs to be resolved~~',
'Class:Problem/Attribute:urgency/Value:1' => 'Critical~~',
'Class:Problem/Attribute:urgency/Value:1+' => '',
'Class:Problem/Attribute:urgency/Value:1+' => '~~',
'Class:Problem/Attribute:urgency/Value:2' => 'High~~',
'Class:Problem/Attribute:urgency/Value:2+' => '',
'Class:Problem/Attribute:urgency/Value:2+' => '~~',
'Class:Problem/Attribute:urgency/Value:3' => 'Medium~~',
'Class:Problem/Attribute:urgency/Value:3+' => '',
'Class:Problem/Attribute:urgency/Value:3+' => '~~',
'Class:Problem/Attribute:urgency/Value:4' => 'Low~~',
'Class:Problem/Attribute:urgency/Value:4+' => '',
'Class:Problem/Attribute:priority' => 'Priority~~',
'Class:Problem/Attribute:priority+' => '~~',
'Class:Problem/Attribute:priority/Value:1' => 'Critical~~',
'Class:Problem/Attribute:priority/Value:1+' => '',
'Class:Problem/Attribute:priority/Value:2' => 'High~~',
'Class:Problem/Attribute:priority/Value:2+' => '',
'Class:Problem/Attribute:priority/Value:3' => 'Medium~~',
'Class:Problem/Attribute:priority/Value:3+' => '',
'Class:Problem/Attribute:priority/Value:4' => 'Low~~',
'Class:Problem/Attribute:priority/Value:4+' => '',
'Class:Problem/Attribute:related_change_id' => 'Related Change~~',
'Class:Problem/Attribute:related_change_id+' => '~~',
'Class:Problem/Attribute:related_change_ref' => 'Related Change ref~~',
'Class:Problem/Attribute:related_change_ref+' => '~~',
'Class:Problem/Attribute:assignment_date' => 'Assignment Date~~',
'Class:Problem/Attribute:assignment_date+' => '~~',
'Class:Problem/Attribute:resolution_date' => 'Resolution Date~~',
'Class:Problem/Attribute:resolution_date+' => '~~',
'Class:Problem/Attribute:knownerrors_list' => 'Known Errors~~',
'Class:Problem/Attribute:knownerrors_list+' => 'All the known errors that are linked to this problem~~',
'Class:Problem/Attribute:related_request_list' => 'Related requests~~',
'Class:Problem/Attribute:related_request_list+' => 'All the requests that are related to this problem~~',
'Class:Problem/Attribute:related_incident_list' => 'Related incidents~~',
'Class:Problem/Attribute:related_incident_list+' => 'All the incidents that are related to this problem~~',
'Class:Problem/Attribute:urgency/Value:4+' => '~~',
'Class:Problem/Stimulus:ev_assign' => 'Assign~~',
'Class:Problem/Stimulus:ev_assign+' => '~~',
'Class:Problem/Stimulus:ev_close' => 'Close~~',
'Class:Problem/Stimulus:ev_close+' => '~~',
'Class:Problem/Stimulus:ev_reassign' => 'Reassign~~',
'Class:Problem/Stimulus:ev_reassign+' => '~~',
'Class:Problem/Stimulus:ev_resolve' => 'Resolve~~',
'Class:Problem/Stimulus:ev_resolve+' => '~~',
'Class:Problem/Stimulus:ev_close' => 'Close~~',
'Class:Problem/Stimulus:ev_close+' => '~~',
));
'Menu:NewProblem' => 'New problem~~',
'Menu:NewProblem+' => 'New problem~~',
'Menu:Problem:MyProblems' => 'My problems~~',
'Menu:Problem:MyProblems+' => 'My problems~~',
'Menu:Problem:OpenProblems' => 'All open problems~~',
'Menu:Problem:OpenProblems+' => 'All open problems~~',
'Menu:Problem:Overview' => 'Overview~~',
'Menu:Problem:Overview+' => 'Overview~~',
'Menu:Problem:Shortcuts' => 'Shortcuts~~',
'Menu:ProblemManagement' => 'Problem management~~',
'Menu:ProblemManagement+' => 'Problem management~~',
'Menu:SearchProblems' => 'Search for problems~~',
'Menu:SearchProblems+' => 'Search for problems~~',
'UI-ProblemManagementOverview-ProblemByPriority' => 'Problems by priority~~',
'UI-ProblemManagementOverview-ProblemByPriority+' => 'Problems by priority~~',
'UI-ProblemManagementOverview-ProblemByService' => 'Problems by service~~',
'UI-ProblemManagementOverview-ProblemByService+' => 'Problems by service~~',
'UI-ProblemManagementOverview-ProblemUnassigned' => 'Unassigned problems~~',
'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Unassigned problems~~',
'UI:ProblemMgmtMenuOverview:Title' => 'Dashboard for Problem Management~~',
'UI:ProblemMgmtMenuOverview:Title+' => 'Dashboard for Problem Management~~',
]);

View File

@@ -1,259 +1,244 @@
<?php
/*
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:RequestManagement' => 'Helpdesk',
'Menu:RequestManagement+' => '',
'Menu:RequestManagementProvider' => 'Poskytovateľ Helpdesku',
'Menu:RequestManagementProvider+' => '',
'Menu:UserRequest:Provider' => 'Otvorené požiadavky prenesené na poskytovateľa',
'Menu:UserRequest:Provider+' => '',
'Menu:UserRequest:Overview' => 'Prehľad',
'Menu:UserRequest:Overview+' => '',
'Menu:NewUserRequest' => 'Nové požiadavky užívateľa',
'Menu:NewUserRequest+' => '',
'Menu:SearchUserRequests' => 'Vyhľadať užívateľské požiadavky',
'Menu:SearchUserRequests+' => '',
'Menu:UserRequest:Shortcuts' => 'Skratky',
'Menu:UserRequest:Shortcuts+' => '',
'Menu:UserRequest:MyRequests' => 'požiadavky pridelené mne',
'Menu:UserRequest:MyRequests+' => '',
'Menu:UserRequest:MySupportRequests' => 'Moje hovory podpory',
'Menu:UserRequest:MySupportRequests+' => '',
'Menu:UserRequest:EscalatedRequests' => 'Eskalované požiadavky',
'Menu:UserRequest:EscalatedRequests+' => '',
'Menu:UserRequest:OpenRequests' => 'Všetky otvorené požiadavky',
'Menu:UserRequest:OpenRequests+' => '',
'UI:WelcomeMenu:MyAssignedCalls' => 'požiadavky pridelené mne',
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'požiadavky za posledných 14 dní (po typoch)',
'UI-RequestManagementOverview-Last-14-days' => 'požiadavky posledných 14 dní (po dňoch)',
'UI-RequestManagementOverview-OpenRequestByStatus' => 'Otvorené požiadavky podľa stavu',
'UI-RequestManagementOverview-OpenRequestByAgent' => 'Otvorené požiadavky podľa agenta',
'UI-RequestManagementOverview-OpenRequestByType' => 'Otvorené požiadavky podľa typu',
'UI-RequestManagementOverview-OpenRequestByCustomer' => 'Otvorené požiadavky podľa organizácie',
'Class:UserRequest:KnownErrorList' => 'Známe chyby',
'Class:UserRequest:KnownErrorList+' => 'Known Errors related to Functional CI linked to the current ticket~~',
));
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: UserRequest
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:UserRequest' => 'Požiadavka užívateľa',
'Class:UserRequest+' => '',
'Class:UserRequest/Attribute:status' => 'Stav',
'Class:UserRequest/Attribute:status+' => '',
'Class:UserRequest/Attribute:status/Value:new' => 'Nová',
'Class:UserRequest/Attribute:status/Value:new+' => '',
'Class:UserRequest/Attribute:status/Value:escalated_tto' => 'Eskalované TTO',
'Class:UserRequest/Attribute:status/Value:escalated_tto+' => '',
'Class:UserRequest/Attribute:status/Value:assigned' => 'Pridelené',
'Class:UserRequest/Attribute:status/Value:assigned+' => '',
'Class:UserRequest/Attribute:status/Value:escalated_ttr' => 'Eskalované TTR',
'Class:UserRequest/Attribute:status/Value:escalated_ttr+' => '',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval' => 'Čaká sa na schválenie',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval+' => '',
'Class:UserRequest/Attribute:status/Value:approved' => 'Schválená',
'Class:UserRequest/Attribute:status/Value:approved+' => '',
'Class:UserRequest/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:UserRequest/Attribute:status/Value:rejected+' => '',
'Class:UserRequest/Attribute:status/Value:pending' => 'Pozdržaná',
'Class:UserRequest/Attribute:status/Value:pending+' => '',
'Class:UserRequest/Attribute:status/Value:resolved' => 'Vyriešená',
'Class:UserRequest/Attribute:status/Value:resolved+' => '',
'Class:UserRequest/Attribute:status/Value:closed' => 'Zatvorená',
'Class:UserRequest/Attribute:status/Value:closed+' => '',
'Class:UserRequest/Attribute:request_type' => 'Typ požiadavky',
'Class:UserRequest/Attribute:request_type+' => '',
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '',
'Class:UserRequest+' => '~~',
'Class:UserRequest/Attribute:approver_email' => 'Email schvalovateľa',
'Class:UserRequest/Attribute:approver_email+' => '~~',
'Class:UserRequest/Attribute:approver_id' => 'Schvalovateľ',
'Class:UserRequest/Attribute:approver_id+' => '~~',
'Class:UserRequest/Attribute:assignment_date' => 'Dátum pridelenia',
'Class:UserRequest/Attribute:assignment_date+' => '~~',
'Class:UserRequest/Attribute:cumulatedpending' => 'Kumulatívne pozdržané',
'Class:UserRequest/Attribute:cumulatedpending+' => '~~',
'Class:UserRequest/Attribute:escalation_flag' => 'Eskalačný príznak',
'Class:UserRequest/Attribute:escalation_flag+' => '~~',
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'Nie',
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '~~',
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Áno',
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '~~',
'Class:UserRequest/Attribute:escalation_reason' => 'Dôvod eskalácie',
'Class:UserRequest/Attribute:escalation_reason+' => '~~',
'Class:UserRequest/Attribute:impact' => 'Dopad',
'Class:UserRequest/Attribute:impact+' => '',
'Class:UserRequest/Attribute:impact+' => 'Impact is the severity of the fault, how many end users are affected.~~',
'Class:UserRequest/Attribute:impact/Value:1' => 'Oddelenie',
'Class:UserRequest/Attribute:impact/Value:1+' => '',
'Class:UserRequest/Attribute:impact/Value:1+' => '~~',
'Class:UserRequest/Attribute:impact/Value:2' => 'Služba',
'Class:UserRequest/Attribute:impact/Value:2+' => '',
'Class:UserRequest/Attribute:impact/Value:2+' => '~~',
'Class:UserRequest/Attribute:impact/Value:3' => 'Osoba',
'Class:UserRequest/Attribute:impact/Value:3+' => '',
'Class:UserRequest/Attribute:priority' => 'Priorita',
'Class:UserRequest/Attribute:priority+' => '',
'Class:UserRequest/Attribute:priority/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:priority/Value:1+' => '',
'Class:UserRequest/Attribute:priority/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:priority/Value:2+' => '',
'Class:UserRequest/Attribute:priority/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:priority/Value:3+' => '',
'Class:UserRequest/Attribute:priority/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:priority/Value:4+' => '',
'Class:UserRequest/Attribute:urgency' => 'Naliehavosť',
'Class:UserRequest/Attribute:urgency+' => '',
'Class:UserRequest/Attribute:urgency/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:urgency/Value:1+' => '',
'Class:UserRequest/Attribute:urgency/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:urgency/Value:2+' => '',
'Class:UserRequest/Attribute:urgency/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:urgency/Value:3+' => '',
'Class:UserRequest/Attribute:urgency/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:urgency/Value:4+' => '',
'Class:UserRequest/Attribute:impact/Value:3+' => '~~',
'Class:UserRequest/Attribute:last_pending_date' => 'Posledný dátum pozdržania',
'Class:UserRequest/Attribute:last_pending_date+' => '~~',
'Class:UserRequest/Attribute:origin' => 'Pôvod',
'Class:UserRequest/Attribute:origin+' => '',
'Class:UserRequest/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:UserRequest/Attribute:origin/Value:in_person+' => 'Request created following a face-to-face discussion~~',
'Class:UserRequest/Attribute:origin+' => 'What\'s the trigger of this request ticket creation~~',
'Class:UserRequest/Attribute:origin/Value:chat' => 'Chat~~',
'Class:UserRequest/Attribute:origin/Value:chat+' => 'Request created following a chat discussion~~',
'Class:UserRequest/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:UserRequest/Attribute:origin/Value:in_person+' => 'Request created following a face-to-face discussion~~',
'Class:UserRequest/Attribute:origin/Value:mail' => 'Mail',
'Class:UserRequest/Attribute:origin/Value:mail+' => '',
'Class:UserRequest/Attribute:origin/Value:mail+' => 'Request created on an email reception~~',
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'Dohľad',
'Class:UserRequest/Attribute:origin/Value:monitoring+' => '',
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'Request created on a monitoring alert~~',
'Class:UserRequest/Attribute:origin/Value:phone' => 'Telefón',
'Class:UserRequest/Attribute:origin/Value:phone+' => '',
'Class:UserRequest/Attribute:origin/Value:phone+' => 'Request created following a phone call~~',
'Class:UserRequest/Attribute:origin/Value:portal' => 'Portál',
'Class:UserRequest/Attribute:origin/Value:portal+' => '',
'Class:UserRequest/Attribute:approver_id' => 'Schvalovateľ',
'Class:UserRequest/Attribute:approver_id+' => '',
'Class:UserRequest/Attribute:approver_email' => 'Email schvalovateľa',
'Class:UserRequest/Attribute:approver_email+' => '',
'Class:UserRequest/Attribute:service_id' => 'Služba',
'Class:UserRequest/Attribute:service_id+' => '',
'Class:UserRequest/Attribute:service_name' => 'Názov služby',
'Class:UserRequest/Attribute:service_name+' => '',
'Class:UserRequest/Attribute:servicesubcategory_id' => 'Subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_id+' => '',
'Class:UserRequest/Attribute:servicesubcategory_name' => 'Názov subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_name+' => '',
'Class:UserRequest/Attribute:escalation_flag' => 'Eskalačný príznak',
'Class:UserRequest/Attribute:escalation_flag+' => '',
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'Nie',
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '',
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Áno',
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '',
'Class:UserRequest/Attribute:escalation_reason' => 'Dôvod eskalácie',
'Class:UserRequest/Attribute:escalation_reason+' => '',
'Class:UserRequest/Attribute:assignment_date' => 'Dátum pridelenia',
'Class:UserRequest/Attribute:assignment_date+' => '',
'Class:UserRequest/Attribute:resolution_date' => 'Dátum vyriešenia',
'Class:UserRequest/Attribute:resolution_date+' => '',
'Class:UserRequest/Attribute:last_pending_date' => 'Posledný dátum pozdržania',
'Class:UserRequest/Attribute:last_pending_date+' => '',
'Class:UserRequest/Attribute:cumulatedpending' => 'Kumulatívne pozdržané',
'Class:UserRequest/Attribute:cumulatedpending+' => '',
'Class:UserRequest/Attribute:tto' => 'TTO',
'Class:UserRequest/Attribute:tto+' => '',
'Class:UserRequest/Attribute:ttr' => 'TTR',
'Class:UserRequest/Attribute:ttr+' => '',
'Class:UserRequest/Attribute:tto_escalation_deadline' => 'Dátum eskalácie TTO',
'Class:UserRequest/Attribute:tto_escalation_deadline+' => '',
'Class:UserRequest/Attribute:sla_tto_passed' => 'SLA TTO dodržané',
'Class:UserRequest/Attribute:sla_tto_passed+' => '',
'Class:UserRequest/Attribute:sla_tto_over' => 'SLA TTO prekročené',
'Class:UserRequest/Attribute:sla_tto_over+' => '',
'Class:UserRequest/Attribute:ttr_escalation_deadline' => 'Dátum eskalácie TTR',
'Class:UserRequest/Attribute:ttr_escalation_deadline+' => '',
'Class:UserRequest/Attribute:sla_ttr_passed' => 'SLA TTR dodržané',
'Class:UserRequest/Attribute:sla_ttr_passed+' => '',
'Class:UserRequest/Attribute:sla_ttr_over' => 'SLA TTR prekročené',
'Class:UserRequest/Attribute:sla_ttr_over+' => '',
'Class:UserRequest/Attribute:time_spent' => 'Oneskorenie vyriešenia',
'Class:UserRequest/Attribute:time_spent+' => '',
'Class:UserRequest/Attribute:resolution_code' => 'Kód riešenia',
'Class:UserRequest/Attribute:resolution_code+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Asistencia',
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Chyba opravená',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Oprava hardvéru',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Iné',
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Softvérová záplata',
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'Aktualizácia systému',
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Školenie',
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '',
'Class:UserRequest/Attribute:solution' => 'Riešenie',
'Class:UserRequest/Attribute:solution+' => '',
'Class:UserRequest/Attribute:pending_reason' => 'Dôvod pozdržania',
'Class:UserRequest/Attribute:pending_reason+' => '',
'Class:UserRequest/Attribute:parent_request_id' => 'Nadradená Požiadavka',
'Class:UserRequest/Attribute:parent_request_id+' => '',
'Class:UserRequest/Attribute:origin/Value:portal+' => 'Request created on the user portal~~',
'Class:UserRequest/Attribute:parent_change_id' => 'Nadradená Zmena',
'Class:UserRequest/Attribute:parent_change_id+' => '~~',
'Class:UserRequest/Attribute:parent_change_ref' => 'Referencia na zmenu',
'Class:UserRequest/Attribute:parent_change_ref+' => '~~',
'Class:UserRequest/Attribute:parent_incident_id' => 'Parent incident~~',
'Class:UserRequest/Attribute:parent_incident_id+' => '~~',
'Class:UserRequest/Attribute:parent_request_ref' => 'Požiadavka o odporúčanie',
'Class:UserRequest/Attribute:parent_request_ref+' => '',
'Class:UserRequest/Attribute:parent_problem_id' => 'Rodičovský problém',
'Class:UserRequest/Attribute:parent_problem_id+' => '',
'Class:UserRequest/Attribute:parent_problem_ref' => 'Referencia na problém',
'Class:UserRequest/Attribute:parent_problem_ref+' => '',
'Class:UserRequest/Attribute:parent_change_id' => 'Nadradená Zmena',
'Class:UserRequest/Attribute:parent_change_id+' => '',
'Class:UserRequest/Attribute:parent_change_ref' => 'Referencia na zmenu',
'Class:UserRequest/Attribute:parent_change_ref+' => '',
'Class:UserRequest/Attribute:parent_incident_ref' => 'Parent incident ref~~',
'Class:UserRequest/Attribute:parent_incident_ref+' => '~~',
'Class:UserRequest/Attribute:parent_problem_id' => 'Rodičovský problém',
'Class:UserRequest/Attribute:parent_problem_id+' => '~~',
'Class:UserRequest/Attribute:parent_problem_ref' => 'Referencia na problém',
'Class:UserRequest/Attribute:parent_problem_ref+' => '~~',
'Class:UserRequest/Attribute:parent_request_id' => 'Nadradená Požiadavka',
'Class:UserRequest/Attribute:parent_request_id+' => '~~',
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'Priateľské meno ID požiadavky rodiča',
'Class:UserRequest/Attribute:parent_request_id_friendlyname+' => '~~',
'Class:UserRequest/Attribute:parent_request_ref' => 'Požiadavka o odporúčanie',
'Class:UserRequest/Attribute:parent_request_ref+' => '~~',
'Class:UserRequest/Attribute:pending_reason' => 'Dôvod pozdržania',
'Class:UserRequest/Attribute:pending_reason+' => '~~',
'Class:UserRequest/Attribute:priority' => 'Priorita',
'Class:UserRequest/Attribute:priority+' => 'Order in which tickets need to be handled~~',
'Class:UserRequest/Attribute:priority/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:priority/Value:1+' => 'Highest priority~~',
'Class:UserRequest/Attribute:priority/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:priority/Value:2+' => '~~',
'Class:UserRequest/Attribute:priority/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:priority/Value:3+' => '~~',
'Class:UserRequest/Attribute:priority/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:priority/Value:4+' => 'Lowest priority~~',
'Class:UserRequest/Attribute:public_log' => 'Verejný záznam',
'Class:UserRequest/Attribute:public_log+' => '~~',
'Class:UserRequest/Attribute:related_request_list' => 'Podriadené požiadavky',
'Class:UserRequest/Attribute:related_request_list+' => 'All the requests that are linked to this parent request~~',
'Class:UserRequest/Attribute:public_log' => 'Verejný záznam',
'Class:UserRequest/Attribute:public_log+' => '',
'Class:UserRequest/Attribute:user_satisfaction' => 'Spokojnosť užívateľa',
'Class:UserRequest/Attribute:user_satisfaction+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Veľmi spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Pomerne spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Skôr nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Veľmi nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '',
'Class:UserRequest/Attribute:request_type' => 'Typ požiadavky',
'Class:UserRequest/Attribute:request_type+' => '~~',
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '~~',
'Class:UserRequest/Attribute:resolution_code' => 'Kód riešenia',
'Class:UserRequest/Attribute:resolution_code+' => 'What was done to resolve the request?~~',
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Asistencia',
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Chyba opravená',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Oprava hardvéru',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Iné',
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Softvérová záplata',
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'Aktualizácia systému',
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Školenie',
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '~~',
'Class:UserRequest/Attribute:resolution_date' => 'Dátum vyriešenia',
'Class:UserRequest/Attribute:resolution_date+' => '~~',
'Class:UserRequest/Attribute:service_id' => 'Služba',
'Class:UserRequest/Attribute:service_id+' => '~~',
'Class:UserRequest/Attribute:service_name' => 'Názov služby',
'Class:UserRequest/Attribute:service_name+' => '~~',
'Class:UserRequest/Attribute:servicesubcategory_id' => 'Subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_id+' => '~~',
'Class:UserRequest/Attribute:servicesubcategory_name' => 'Názov subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_name+' => '~~',
'Class:UserRequest/Attribute:sla_tto_over' => 'SLA TTO prekročené',
'Class:UserRequest/Attribute:sla_tto_over+' => '~~',
'Class:UserRequest/Attribute:sla_tto_passed' => 'SLA TTO dodržané',
'Class:UserRequest/Attribute:sla_tto_passed+' => '~~',
'Class:UserRequest/Attribute:sla_ttr_over' => 'SLA TTR prekročené',
'Class:UserRequest/Attribute:sla_ttr_over+' => '~~',
'Class:UserRequest/Attribute:sla_ttr_passed' => 'SLA TTR dodržané',
'Class:UserRequest/Attribute:sla_ttr_passed+' => '~~',
'Class:UserRequest/Attribute:solution' => 'Riešenie',
'Class:UserRequest/Attribute:solution+' => '~~',
'Class:UserRequest/Attribute:status' => 'Stav',
'Class:UserRequest/Attribute:status+' => '~~',
'Class:UserRequest/Attribute:status/Value:approved' => 'Schválená',
'Class:UserRequest/Attribute:status/Value:approved+' => '~~',
'Class:UserRequest/Attribute:status/Value:assigned' => 'Pridelené',
'Class:UserRequest/Attribute:status/Value:assigned+' => '~~',
'Class:UserRequest/Attribute:status/Value:closed' => 'Zatvorená',
'Class:UserRequest/Attribute:status/Value:closed+' => '~~',
'Class:UserRequest/Attribute:status/Value:escalated_tto' => 'Eskalované TTO',
'Class:UserRequest/Attribute:status/Value:escalated_tto+' => '~~',
'Class:UserRequest/Attribute:status/Value:escalated_ttr' => 'Eskalované TTR',
'Class:UserRequest/Attribute:status/Value:escalated_ttr+' => '~~',
'Class:UserRequest/Attribute:status/Value:new' => 'Nová',
'Class:UserRequest/Attribute:status/Value:new+' => '~~',
'Class:UserRequest/Attribute:status/Value:pending' => 'Pozdržaná',
'Class:UserRequest/Attribute:status/Value:pending+' => '~~',
'Class:UserRequest/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:UserRequest/Attribute:status/Value:rejected+' => '~~',
'Class:UserRequest/Attribute:status/Value:resolved' => 'Vyriešená',
'Class:UserRequest/Attribute:status/Value:resolved+' => '~~',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval' => 'Čaká sa na schválenie',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval+' => '~~',
'Class:UserRequest/Attribute:time_spent' => 'Oneskorenie vyriešenia',
'Class:UserRequest/Attribute:time_spent+' => '~~',
'Class:UserRequest/Attribute:tto' => 'TTO',
'Class:UserRequest/Attribute:tto+' => 'Time To Own~~',
'Class:UserRequest/Attribute:tto_escalation_deadline' => 'Dátum eskalácie TTO',
'Class:UserRequest/Attribute:tto_escalation_deadline+' => '~~',
'Class:UserRequest/Attribute:ttr' => 'TTR',
'Class:UserRequest/Attribute:ttr+' => 'Time To Resolve~~',
'Class:UserRequest/Attribute:ttr_escalation_deadline' => 'Dátum eskalácie TTR',
'Class:UserRequest/Attribute:ttr_escalation_deadline+' => '~~',
'Class:UserRequest/Attribute:urgency' => 'Naliehavosť',
'Class:UserRequest/Attribute:urgency+' => 'How quickly the fault needs to be resolved~~',
'Class:UserRequest/Attribute:urgency/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:urgency/Value:1+' => 'Most urgent~~',
'Class:UserRequest/Attribute:urgency/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:urgency/Value:2+' => '~~',
'Class:UserRequest/Attribute:urgency/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:urgency/Value:3+' => '~~',
'Class:UserRequest/Attribute:urgency/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:urgency/Value:4+' => 'Lowest urgency level~~',
'Class:UserRequest/Attribute:user_comment' => 'Komentár užívateľa',
'Class:UserRequest/Attribute:user_comment+' => '',
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'Priateľské meno ID požiadavky rodiča',
'Class:UserRequest/Attribute:parent_request_id_friendlyname+' => '',
'Class:UserRequest/Stimulus:ev_assign' => 'Prideiť',
'Class:UserRequest/Stimulus:ev_assign+' => '',
'Class:UserRequest/Stimulus:ev_reassign' => 'Znovu Prideiť',
'Class:UserRequest/Stimulus:ev_reassign+' => '',
'Class:UserRequest/Stimulus:ev_approve' => 'Schváliť',
'Class:UserRequest/Stimulus:ev_approve+' => '',
'Class:UserRequest/Stimulus:ev_reject' => 'Zamietnúť',
'Class:UserRequest/Stimulus:ev_reject+' => '',
'Class:UserRequest/Stimulus:ev_pending' => 'Pozdržať',
'Class:UserRequest/Stimulus:ev_pending+' => '',
'Class:UserRequest/Stimulus:ev_timeout' => 'Vypršanie času',
'Class:UserRequest/Stimulus:ev_timeout+' => '',
'Class:UserRequest/Stimulus:ev_autoresolve' => 'Automatické vyriešenie',
'Class:UserRequest/Stimulus:ev_autoresolve+' => '',
'Class:UserRequest/Stimulus:ev_autoclose' => 'Automatické zatvorenie',
'Class:UserRequest/Stimulus:ev_autoclose+' => '',
'Class:UserRequest/Stimulus:ev_resolve' => 'Vyriešiť',
'Class:UserRequest/Stimulus:ev_resolve+' => '',
'Class:UserRequest/Stimulus:ev_close' => 'Zatvoriť',
'Class:UserRequest/Stimulus:ev_close+' => '',
'Class:UserRequest/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:UserRequest/Stimulus:ev_reopen+' => '',
'Class:UserRequest/Stimulus:ev_wait_for_approval' => 'Počkať na schválenie',
'Class:UserRequest/Stimulus:ev_wait_for_approval+' => '',
'Class:UserRequest/Attribute:user_comment+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction' => 'Spokojnosť užívateľa',
'Class:UserRequest/Attribute:user_satisfaction+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Veľmi spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Pomerne spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Skôr nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Veľmi nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '~~',
'Class:UserRequest/Error:CannotAssignParentRequestIdToSelf' => 'Cannot assign the Parent request to the request itself~~',
'Class:UserRequest/Method:ResolveChildTickets' => 'ResolveChildTickets~~',
'Class:UserRequest/Method:ResolveChildTickets+' => 'Cascade the resolution to child requests (ev_autoresolve), and align the following characteristics of the request: service, team, agent, resolution info~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Organization:Overview:UserRequests' => 'User Requests from this organization~~',
'Class:UserRequest/Stimulus:ev_approve' => 'Schváliť',
'Class:UserRequest/Stimulus:ev_approve+' => '~~',
'Class:UserRequest/Stimulus:ev_assign' => 'Prideiť',
'Class:UserRequest/Stimulus:ev_assign+' => '~~',
'Class:UserRequest/Stimulus:ev_autoclose' => 'Automatické zatvorenie',
'Class:UserRequest/Stimulus:ev_autoclose+' => '~~',
'Class:UserRequest/Stimulus:ev_autoresolve' => 'Automatické vyriešenie',
'Class:UserRequest/Stimulus:ev_autoresolve+' => '~~',
'Class:UserRequest/Stimulus:ev_close' => 'Zatvoriť',
'Class:UserRequest/Stimulus:ev_close+' => '~~',
'Class:UserRequest/Stimulus:ev_pending' => 'Pozdržať',
'Class:UserRequest/Stimulus:ev_pending+' => '~~',
'Class:UserRequest/Stimulus:ev_reassign' => 'Znovu Prideiť',
'Class:UserRequest/Stimulus:ev_reassign+' => '~~',
'Class:UserRequest/Stimulus:ev_reject' => 'Zamietnúť',
'Class:UserRequest/Stimulus:ev_reject+' => '~~',
'Class:UserRequest/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:UserRequest/Stimulus:ev_reopen+' => '~~',
'Class:UserRequest/Stimulus:ev_resolve' => 'Vyriešiť',
'Class:UserRequest/Stimulus:ev_resolve+' => '~~',
'Class:UserRequest/Stimulus:ev_timeout' => 'Vypršanie času',
'Class:UserRequest/Stimulus:ev_timeout+' => '~~',
'Class:UserRequest/Stimulus:ev_wait_for_approval' => 'Počkať na schválenie',
'Class:UserRequest/Stimulus:ev_wait_for_approval+' => '~~',
'Class:UserRequest:KnownErrorList' => 'Známe chyby',
'Class:UserRequest:KnownErrorList+' => 'Known Errors related to Functional CI linked to the current ticket~~',
'Menu:NewUserRequest' => 'Nové požiadavky užívateľa',
'Menu:NewUserRequest+' => 'Create a new user request ticket~~',
'Menu:RequestManagement' => 'Helpdesk',
'Menu:RequestManagement+' => '~~',
'Menu:RequestManagementProvider' => 'Poskytovateľ Helpdesku',
'Menu:RequestManagementProvider+' => '~~',
'Menu:SearchUserRequests' => 'Vyhľadať užívateľské požiadavky',
'Menu:SearchUserRequests+' => 'Search for user request tickets~~',
'Menu:UserRequest:EscalatedRequests' => 'Eskalované požiadavky',
'Menu:UserRequest:EscalatedRequests+' => '~~',
'Menu:UserRequest:MyRequests' => 'požiadavky pridelené mne',
'Menu:UserRequest:MyRequests+' => 'Requests assigned to me (as Agent)~~',
'Menu:UserRequest:MySupportRequests' => 'Moje hovory podpory',
'Menu:UserRequest:MySupportRequests+' => '~~',
'Menu:UserRequest:OpenRequests' => 'Všetky otvorené požiadavky',
'Menu:UserRequest:OpenRequests+' => '~~',
'Menu:UserRequest:Overview' => 'Prehľad',
'Menu:UserRequest:Overview+' => '~~',
'Menu:UserRequest:Provider' => 'Otvorené požiadavky prenesené na poskytovateľa',
'Menu:UserRequest:Provider+' => '~~',
'Menu:UserRequest:Shortcuts' => 'Skratky',
'Menu:UserRequest:Shortcuts+' => '~~',
'Organization:Overview:MyUserRequests' => 'My User Requests for this organization~~',
'Organization:Overview:Tickets' => 'Tickets for this organization~~',
));
'Organization:Overview:UserRequests' => 'User Requests from this organization~~',
'UI-RequestManagementOverview-Last-14-days' => 'požiadavky posledných 14 dní (po dňoch)',
'UI-RequestManagementOverview-OpenRequestByAgent' => 'Otvorené požiadavky podľa agenta',
'UI-RequestManagementOverview-OpenRequestByCustomer' => 'Otvorené požiadavky podľa organizácie',
'UI-RequestManagementOverview-OpenRequestByStatus' => 'Otvorené požiadavky podľa stavu',
'UI-RequestManagementOverview-OpenRequestByType' => 'Otvorené požiadavky podľa typu',
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'požiadavky za posledných 14 dní (po typoch)',
'UI:WelcomeMenu:MyAssignedCalls' => 'požiadavky pridelené mne',
]);

View File

@@ -1,287 +1,268 @@
<?php
/*
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:RequestManagement' => 'Helpdesk',
'Menu:RequestManagement+' => '',
'Menu:RequestManagementProvider' => 'Poskytovateľ Helpdesku',
'Menu:RequestManagementProvider+' => '',
'Menu:UserRequest:Provider' => 'Otvorené požiadavky prenesené na poskytovateľa',
'Menu:UserRequest:Provider+' => '',
'Menu:UserRequest:Overview' => 'Prehľad',
'Menu:UserRequest:Overview+' => '',
'Menu:NewUserRequest' => 'Nové požiadavky užívateľa',
'Menu:NewUserRequest+' => '',
'Menu:SearchUserRequests' => 'Vyhľadať užívateľské požiadavky',
'Menu:SearchUserRequests+' => '',
'Menu:UserRequest:Shortcuts' => 'Skratky',
'Menu:UserRequest:Shortcuts+' => '',
'Menu:UserRequest:MyRequests' => 'požiadavky pridelené mne',
'Menu:UserRequest:MyRequests+' => '',
'Menu:UserRequest:MySupportRequests' => 'Moje hovory podpory',
'Menu:UserRequest:MySupportRequests+' => '',
'Menu:UserRequest:EscalatedRequests' => 'Eskalované požiadavky',
'Menu:UserRequest:EscalatedRequests+' => '',
'Menu:UserRequest:OpenRequests' => 'Všetky otvorené požiadavky',
'Menu:UserRequest:OpenRequests+' => '',
'UI:WelcomeMenu:MyAssignedCalls' => 'požiadavky pridelené mne',
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'požiadavky za posledných 14 dní (po typoch)',
'UI-RequestManagementOverview-Last-14-days' => 'požiadavky posledných 14 dní (po dňoch)',
'UI-RequestManagementOverview-OpenRequestByStatus' => 'Otvorené požiadavky podľa stavu',
'UI-RequestManagementOverview-OpenRequestByAgent' => 'Otvorené požiadavky podľa agenta',
'UI-RequestManagementOverview-OpenRequestByType' => 'Otvorené požiadavky podľa typu',
'UI-RequestManagementOverview-OpenRequestByCustomer' => 'Otvorené požiadavky podľa organizácie',
'Class:UserRequest:KnownErrorList' => 'Známe chyby',
'Class:UserRequest:KnownErrorList+' => 'Known Errors related to Functional CI linked to the current ticket~~',
'Menu:UserRequest:MyWorkOrders' => 'Pracovné príkazy pridelené mne',
'Menu:UserRequest:MyWorkOrders+' => '',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Problem:KnownProblemList' => 'Známe problémy',
'Tickets:Related:OpenIncidents' => 'Open incidents~~',
));
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: UserRequest
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:UserRequest' => 'Požiadavka užívateľa',
'Class:UserRequest+' => '',
'Class:UserRequest/Attribute:status' => 'Stav',
'Class:UserRequest/Attribute:status+' => '',
'Class:UserRequest/Attribute:status/Value:new' => 'Nová',
'Class:UserRequest/Attribute:status/Value:new+' => '',
'Class:UserRequest/Attribute:status/Value:escalated_tto' => 'Eskalované TTO',
'Class:UserRequest/Attribute:status/Value:escalated_tto+' => '',
'Class:UserRequest/Attribute:status/Value:assigned' => 'Pridelené',
'Class:UserRequest/Attribute:status/Value:assigned+' => '',
'Class:UserRequest/Attribute:status/Value:escalated_ttr' => 'Eskalované TTR',
'Class:UserRequest/Attribute:status/Value:escalated_ttr+' => '',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval' => 'Čaká sa na schválenie',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval+' => '',
'Class:UserRequest/Attribute:status/Value:approved' => 'Schválená',
'Class:UserRequest/Attribute:status/Value:approved+' => '',
'Class:UserRequest/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:UserRequest/Attribute:status/Value:rejected+' => '',
'Class:UserRequest/Attribute:status/Value:pending' => 'Pozdržaná',
'Class:UserRequest/Attribute:status/Value:pending+' => '',
'Class:UserRequest/Attribute:status/Value:resolved' => 'Vyriešená',
'Class:UserRequest/Attribute:status/Value:resolved+' => '',
'Class:UserRequest/Attribute:status/Value:closed' => 'Zatvorená',
'Class:UserRequest/Attribute:status/Value:closed+' => '',
'Class:UserRequest/Attribute:request_type' => 'Typ požiadavky',
'Class:UserRequest/Attribute:request_type+' => '',
'Class:UserRequest/Attribute:request_type/Value:incident' => 'Incident',
'Class:UserRequest/Attribute:request_type/Value:incident+' => '',
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '',
'Class:UserRequest+' => '~~',
'Class:UserRequest/Attribute:approver_email' => 'Email schvalovateľa',
'Class:UserRequest/Attribute:approver_email+' => '~~',
'Class:UserRequest/Attribute:approver_id' => 'Schvalovateľ',
'Class:UserRequest/Attribute:approver_id+' => '~~',
'Class:UserRequest/Attribute:assignment_date' => 'Dátum pridelenia',
'Class:UserRequest/Attribute:assignment_date+' => '~~',
'Class:UserRequest/Attribute:cumulatedpending' => 'Kumulatívne pozdržané',
'Class:UserRequest/Attribute:cumulatedpending+' => '~~',
'Class:UserRequest/Attribute:escalation_flag' => 'Eskalačný príznak',
'Class:UserRequest/Attribute:escalation_flag+' => '~~',
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'Nie',
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '~~',
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Áno',
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '~~',
'Class:UserRequest/Attribute:escalation_reason' => 'Dôvod eskalácie',
'Class:UserRequest/Attribute:escalation_reason+' => '~~',
'Class:UserRequest/Attribute:impact' => 'Dopad',
'Class:UserRequest/Attribute:impact+' => '',
'Class:UserRequest/Attribute:impact+' => 'Impact is the severity of the fault, how many end users are affected~~',
'Class:UserRequest/Attribute:impact/Value:1' => 'Oddelenie',
'Class:UserRequest/Attribute:impact/Value:1+' => '',
'Class:UserRequest/Attribute:impact/Value:1+' => '~~',
'Class:UserRequest/Attribute:impact/Value:2' => 'Služba',
'Class:UserRequest/Attribute:impact/Value:2+' => '',
'Class:UserRequest/Attribute:impact/Value:2+' => '~~',
'Class:UserRequest/Attribute:impact/Value:3' => 'Osoba',
'Class:UserRequest/Attribute:impact/Value:3+' => '',
'Class:UserRequest/Attribute:priority' => 'Priorita',
'Class:UserRequest/Attribute:priority+' => '',
'Class:UserRequest/Attribute:priority/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:priority/Value:1+' => '',
'Class:UserRequest/Attribute:priority/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:priority/Value:2+' => '',
'Class:UserRequest/Attribute:priority/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:priority/Value:3+' => '',
'Class:UserRequest/Attribute:priority/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:priority/Value:4+' => '',
'Class:UserRequest/Attribute:urgency' => 'Naliehavosť',
'Class:UserRequest/Attribute:urgency+' => '',
'Class:UserRequest/Attribute:urgency/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:urgency/Value:1+' => '',
'Class:UserRequest/Attribute:urgency/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:urgency/Value:2+' => '',
'Class:UserRequest/Attribute:urgency/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:urgency/Value:3+' => '',
'Class:UserRequest/Attribute:urgency/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:urgency/Value:4+' => '',
'Class:UserRequest/Attribute:impact/Value:3+' => '~~',
'Class:UserRequest/Attribute:last_pending_date' => 'Posledný dátum pozdržania',
'Class:UserRequest/Attribute:last_pending_date+' => '~~',
'Class:UserRequest/Attribute:origin' => 'Pôvod',
'Class:UserRequest/Attribute:origin+' => '',
'Class:UserRequest/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:UserRequest/Attribute:origin/Value:in_person+' => 'Request created following a face-to-face discussion~~',
'Class:UserRequest/Attribute:origin+' => 'What\'s the trigger of this request ticket creation~~',
'Class:UserRequest/Attribute:origin/Value:chat' => 'Chat~~',
'Class:UserRequest/Attribute:origin/Value:chat+' => 'Request created following a chat discussion~~',
'Class:UserRequest/Attribute:origin/Value:in_person' => 'In-person~~',
'Class:UserRequest/Attribute:origin/Value:in_person+' => 'Request created following a face-to-face discussion~~',
'Class:UserRequest/Attribute:origin/Value:mail' => 'Mail',
'Class:UserRequest/Attribute:origin/Value:mail+' => '',
'Class:UserRequest/Attribute:origin/Value:mail+' => 'Request created on an email reception~~',
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'Dohľad',
'Class:UserRequest/Attribute:origin/Value:monitoring+' => '',
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'Request created on a monitoring alert~~',
'Class:UserRequest/Attribute:origin/Value:phone' => 'Telefón',
'Class:UserRequest/Attribute:origin/Value:phone+' => '',
'Class:UserRequest/Attribute:origin/Value:phone+' => 'Request created following a phone call~~',
'Class:UserRequest/Attribute:origin/Value:portal' => 'Portál',
'Class:UserRequest/Attribute:origin/Value:portal+' => '',
'Class:UserRequest/Attribute:approver_id' => 'Schvalovateľ',
'Class:UserRequest/Attribute:approver_id+' => '',
'Class:UserRequest/Attribute:approver_email' => 'Email schvalovateľa',
'Class:UserRequest/Attribute:approver_email+' => '',
'Class:UserRequest/Attribute:service_id' => 'Služba',
'Class:UserRequest/Attribute:service_id+' => '',
'Class:UserRequest/Attribute:service_name' => 'Názov služby',
'Class:UserRequest/Attribute:service_name+' => '',
'Class:UserRequest/Attribute:servicesubcategory_id' => 'Subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_id+' => '',
'Class:UserRequest/Attribute:servicesubcategory_name' => 'Názov subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_name+' => '',
'Class:UserRequest/Attribute:escalation_flag' => 'Eskalačný príznak',
'Class:UserRequest/Attribute:escalation_flag+' => '',
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'Nie',
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '',
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Áno',
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '',
'Class:UserRequest/Attribute:escalation_reason' => 'Dôvod eskalácie',
'Class:UserRequest/Attribute:escalation_reason+' => '',
'Class:UserRequest/Attribute:assignment_date' => 'Dátum pridelenia',
'Class:UserRequest/Attribute:assignment_date+' => '',
'Class:UserRequest/Attribute:resolution_date' => 'Dátum vyriešenia',
'Class:UserRequest/Attribute:resolution_date+' => '',
'Class:UserRequest/Attribute:last_pending_date' => 'Posledný dátum pozdržania',
'Class:UserRequest/Attribute:last_pending_date+' => '',
'Class:UserRequest/Attribute:cumulatedpending' => 'Kumulatívne pozdržané',
'Class:UserRequest/Attribute:cumulatedpending+' => '',
'Class:UserRequest/Attribute:tto' => 'TTO',
'Class:UserRequest/Attribute:tto+' => '',
'Class:UserRequest/Attribute:ttr' => 'TTR',
'Class:UserRequest/Attribute:ttr+' => '',
'Class:UserRequest/Attribute:tto_escalation_deadline' => 'Dátum eskalácie TTO',
'Class:UserRequest/Attribute:tto_escalation_deadline+' => '',
'Class:UserRequest/Attribute:sla_tto_passed' => 'SLA TTO dodržané',
'Class:UserRequest/Attribute:sla_tto_passed+' => '',
'Class:UserRequest/Attribute:sla_tto_over' => 'SLA TTO prekročené',
'Class:UserRequest/Attribute:sla_tto_over+' => '',
'Class:UserRequest/Attribute:ttr_escalation_deadline' => 'Dátum eskalácie TTR',
'Class:UserRequest/Attribute:ttr_escalation_deadline+' => '',
'Class:UserRequest/Attribute:sla_ttr_passed' => 'SLA TTR dodržané',
'Class:UserRequest/Attribute:sla_ttr_passed+' => '',
'Class:UserRequest/Attribute:sla_ttr_over' => 'SLA TTR prekročené',
'Class:UserRequest/Attribute:sla_ttr_over+' => '',
'Class:UserRequest/Attribute:time_spent' => 'Oneskorenie vyriešenia',
'Class:UserRequest/Attribute:time_spent+' => '',
'Class:UserRequest/Attribute:resolution_code' => 'Kód riešenia',
'Class:UserRequest/Attribute:resolution_code+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Asistencia',
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Chyba opravená',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Oprava hardvéru',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Iné',
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Softvérová záplata',
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'Aktualizácia systému',
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '',
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Školenie',
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '',
'Class:UserRequest/Attribute:solution' => 'Riešenie',
'Class:UserRequest/Attribute:solution+' => '',
'Class:UserRequest/Attribute:pending_reason' => 'Dôvod pozdržania',
'Class:UserRequest/Attribute:pending_reason+' => '',
'Class:UserRequest/Attribute:parent_request_id' => 'Nadradená Požiadavka',
'Class:UserRequest/Attribute:parent_request_id+' => '',
'Class:UserRequest/Attribute:parent_request_ref' => 'Požiadavka o odporúčanie',
'Class:UserRequest/Attribute:parent_request_ref+' => '',
'Class:UserRequest/Attribute:parent_problem_id' => 'Rodičovský problém',
'Class:UserRequest/Attribute:parent_problem_id+' => '',
'Class:UserRequest/Attribute:parent_problem_ref' => 'Referencia na problém',
'Class:UserRequest/Attribute:parent_problem_ref+' => '',
'Class:UserRequest/Attribute:origin/Value:portal+' => 'Request created on the user portal~~',
'Class:UserRequest/Attribute:parent_change_id' => 'Nadradená Zmena',
'Class:UserRequest/Attribute:parent_change_id+' => '',
'Class:UserRequest/Attribute:parent_change_id+' => '~~',
'Class:UserRequest/Attribute:parent_change_ref' => 'Referencia na zmenu',
'Class:UserRequest/Attribute:parent_change_ref+' => '',
'Class:UserRequest/Attribute:parent_change_ref+' => '~~',
'Class:UserRequest/Attribute:parent_problem_id' => 'Rodičovský problém',
'Class:UserRequest/Attribute:parent_problem_id+' => '~~',
'Class:UserRequest/Attribute:parent_problem_ref' => 'Referencia na problém',
'Class:UserRequest/Attribute:parent_problem_ref+' => '~~',
'Class:UserRequest/Attribute:parent_request_id' => 'Nadradená Požiadavka',
'Class:UserRequest/Attribute:parent_request_id+' => '~~',
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'Priateľské meno ID požiadavky rodiča',
'Class:UserRequest/Attribute:parent_request_id_friendlyname+' => '~~',
'Class:UserRequest/Attribute:parent_request_ref' => 'Požiadavka o odporúčanie',
'Class:UserRequest/Attribute:parent_request_ref+' => '~~',
'Class:UserRequest/Attribute:pending_reason' => 'Dôvod pozdržania',
'Class:UserRequest/Attribute:pending_reason+' => '~~',
'Class:UserRequest/Attribute:priority' => 'Priorita',
'Class:UserRequest/Attribute:priority+' => 'Order in which tickets need to be handled~~',
'Class:UserRequest/Attribute:priority/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:priority/Value:1+' => 'Highest priority~~',
'Class:UserRequest/Attribute:priority/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:priority/Value:2+' => '~~',
'Class:UserRequest/Attribute:priority/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:priority/Value:3+' => '~~',
'Class:UserRequest/Attribute:priority/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:priority/Value:4+' => 'Lowest priority~~',
'Class:UserRequest/Attribute:public_log' => 'Verejný záznam',
'Class:UserRequest/Attribute:public_log+' => '~~',
'Class:UserRequest/Attribute:related_request_list' => 'Podriadené požiadavky',
'Class:UserRequest/Attribute:related_request_list+' => 'All the requests that are linked to this parent request~~',
'Class:UserRequest/Attribute:public_log' => 'Verejný záznam',
'Class:UserRequest/Attribute:public_log+' => '',
'Class:UserRequest/Attribute:user_satisfaction' => 'Spokojnosť užívateľa',
'Class:UserRequest/Attribute:user_satisfaction+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Veľmi spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Pomerne spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Skôr nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '',
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Veľmi nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '',
'Class:UserRequest/Attribute:request_type' => 'Typ požiadavky',
'Class:UserRequest/Attribute:request_type+' => '~~',
'Class:UserRequest/Attribute:request_type/Value:incident' => 'Incident',
'Class:UserRequest/Attribute:request_type/Value:incident+' => '~~',
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '~~',
'Class:UserRequest/Attribute:resolution_code' => 'Kód riešenia',
'Class:UserRequest/Attribute:resolution_code+' => 'What was done to resolve the request?~~',
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Asistencia',
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Chyba opravená',
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Oprava hardvéru',
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Iné',
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Softvérová záplata',
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'Aktualizácia systému',
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '~~',
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Školenie',
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '~~',
'Class:UserRequest/Attribute:resolution_date' => 'Dátum vyriešenia',
'Class:UserRequest/Attribute:resolution_date+' => '~~',
'Class:UserRequest/Attribute:service_id' => 'Služba',
'Class:UserRequest/Attribute:service_id+' => '~~',
'Class:UserRequest/Attribute:service_name' => 'Názov služby',
'Class:UserRequest/Attribute:service_name+' => '~~',
'Class:UserRequest/Attribute:servicesubcategory_id' => 'Subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_id+' => '~~',
'Class:UserRequest/Attribute:servicesubcategory_name' => 'Názov subkategórie služieb',
'Class:UserRequest/Attribute:servicesubcategory_name+' => '~~',
'Class:UserRequest/Attribute:sla_tto_over' => 'SLA TTO prekročené',
'Class:UserRequest/Attribute:sla_tto_over+' => '~~',
'Class:UserRequest/Attribute:sla_tto_passed' => 'SLA TTO dodržané',
'Class:UserRequest/Attribute:sla_tto_passed+' => '~~',
'Class:UserRequest/Attribute:sla_ttr_over' => 'SLA TTR prekročené',
'Class:UserRequest/Attribute:sla_ttr_over+' => '~~',
'Class:UserRequest/Attribute:sla_ttr_passed' => 'SLA TTR dodržané',
'Class:UserRequest/Attribute:sla_ttr_passed+' => '~~',
'Class:UserRequest/Attribute:solution' => 'Riešenie',
'Class:UserRequest/Attribute:solution+' => '~~',
'Class:UserRequest/Attribute:status' => 'Stav',
'Class:UserRequest/Attribute:status+' => '~~',
'Class:UserRequest/Attribute:status/Value:approved' => 'Schválená',
'Class:UserRequest/Attribute:status/Value:approved+' => '~~',
'Class:UserRequest/Attribute:status/Value:assigned' => 'Pridelené',
'Class:UserRequest/Attribute:status/Value:assigned+' => '~~',
'Class:UserRequest/Attribute:status/Value:closed' => 'Zatvorená',
'Class:UserRequest/Attribute:status/Value:closed+' => '~~',
'Class:UserRequest/Attribute:status/Value:escalated_tto' => 'Eskalované TTO',
'Class:UserRequest/Attribute:status/Value:escalated_tto+' => '~~',
'Class:UserRequest/Attribute:status/Value:escalated_ttr' => 'Eskalované TTR',
'Class:UserRequest/Attribute:status/Value:escalated_ttr+' => '~~',
'Class:UserRequest/Attribute:status/Value:new' => 'Nová',
'Class:UserRequest/Attribute:status/Value:new+' => '~~',
'Class:UserRequest/Attribute:status/Value:pending' => 'Pozdržaná',
'Class:UserRequest/Attribute:status/Value:pending+' => '~~',
'Class:UserRequest/Attribute:status/Value:rejected' => 'Zamietnutá',
'Class:UserRequest/Attribute:status/Value:rejected+' => '~~',
'Class:UserRequest/Attribute:status/Value:resolved' => 'Vyriešená',
'Class:UserRequest/Attribute:status/Value:resolved+' => '~~',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval' => 'Čaká sa na schválenie',
'Class:UserRequest/Attribute:status/Value:waiting_for_approval+' => '~~',
'Class:UserRequest/Attribute:time_spent' => 'Oneskorenie vyriešenia',
'Class:UserRequest/Attribute:time_spent+' => '~~',
'Class:UserRequest/Attribute:tto' => 'TTO',
'Class:UserRequest/Attribute:tto+' => 'Time To Own~~',
'Class:UserRequest/Attribute:tto_escalation_deadline' => 'Dátum eskalácie TTO',
'Class:UserRequest/Attribute:tto_escalation_deadline+' => '~~',
'Class:UserRequest/Attribute:ttr' => 'TTR',
'Class:UserRequest/Attribute:ttr+' => 'Time To Resolve~~',
'Class:UserRequest/Attribute:ttr_escalation_deadline' => 'Dátum eskalácie TTR',
'Class:UserRequest/Attribute:ttr_escalation_deadline+' => '~~',
'Class:UserRequest/Attribute:urgency' => 'Naliehavosť',
'Class:UserRequest/Attribute:urgency+' => 'How quickly the fault needs to be resolved~~',
'Class:UserRequest/Attribute:urgency/Value:1' => 'Kritická',
'Class:UserRequest/Attribute:urgency/Value:1+' => 'Most urgent~~',
'Class:UserRequest/Attribute:urgency/Value:2' => 'Vysoká',
'Class:UserRequest/Attribute:urgency/Value:2+' => '~~',
'Class:UserRequest/Attribute:urgency/Value:3' => 'Stredná',
'Class:UserRequest/Attribute:urgency/Value:3+' => '~~',
'Class:UserRequest/Attribute:urgency/Value:4' => 'Nízka',
'Class:UserRequest/Attribute:urgency/Value:4+' => 'Lowest urgency level~~',
'Class:UserRequest/Attribute:user_comment' => 'Komentár užívateľa',
'Class:UserRequest/Attribute:user_comment+' => '',
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'Priateľské meno ID požiadavky rodiča',
'Class:UserRequest/Attribute:parent_request_id_friendlyname+' => '',
'Class:UserRequest/Stimulus:ev_assign' => 'Prideiť',
'Class:UserRequest/Stimulus:ev_assign+' => '',
'Class:UserRequest/Stimulus:ev_reassign' => 'Znovu Prideiť',
'Class:UserRequest/Stimulus:ev_reassign+' => '',
'Class:UserRequest/Stimulus:ev_approve' => 'Schváliť',
'Class:UserRequest/Stimulus:ev_approve+' => '',
'Class:UserRequest/Stimulus:ev_reject' => 'Zamietnúť',
'Class:UserRequest/Stimulus:ev_reject+' => '',
'Class:UserRequest/Stimulus:ev_pending' => 'Pozdržať',
'Class:UserRequest/Stimulus:ev_pending+' => '',
'Class:UserRequest/Stimulus:ev_timeout' => 'Vypršanie času',
'Class:UserRequest/Stimulus:ev_timeout+' => '',
'Class:UserRequest/Stimulus:ev_autoresolve' => 'Automatické vyriešenie',
'Class:UserRequest/Stimulus:ev_autoresolve+' => '',
'Class:UserRequest/Stimulus:ev_autoclose' => 'Automatické zatvorenie',
'Class:UserRequest/Stimulus:ev_autoclose+' => '',
'Class:UserRequest/Stimulus:ev_resolve' => 'Vyriešiť',
'Class:UserRequest/Stimulus:ev_resolve+' => '',
'Class:UserRequest/Stimulus:ev_close' => 'Zatvoriť',
'Class:UserRequest/Stimulus:ev_close+' => '',
'Class:UserRequest/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:UserRequest/Stimulus:ev_reopen+' => '',
'Class:UserRequest/Stimulus:ev_wait_for_approval' => 'Počkať na schválenie',
'Class:UserRequest/Stimulus:ev_wait_for_approval+' => '',
'Class:UserRequest/Attribute:user_comment+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction' => 'Spokojnosť užívateľa',
'Class:UserRequest/Attribute:user_satisfaction+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Veľmi spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Pomerne spokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Skôr nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '~~',
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Veľmi nespokojný',
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '~~',
'Class:UserRequest/Error:CannotAssignParentRequestIdToSelf' => 'Cannot assign the Parent request to the request itself~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Portal:TitleDetailsFor_Request' => 'Detaily pre požiadavky',
'Portal:ButtonUpdate' => 'Aktualizácia',
'Portal:ButtonClose' => 'Zatvoriť',
'Portal:ButtonReopen' => 'Znova otvoriť',
'Portal:ShowServices' => 'Katalóg služieb',
'Portal:SelectRequestType' => 'Zvoľ typ požiadavky',
'Portal:SelectServiceElementFrom_Service' => 'Zvoľ služby prvku pre %1$s',
'Portal:ListServices' => 'Zoznam služieb',
'Portal:TitleDetailsFor_Service' => 'Detaily pre službu',
'Portal:Button:CreateRequestFromService' => 'Vytvor Požiadavka pre túto službu',
'Portal:ListOpenRequests' => 'Vypíš otvorené požiadavky',
'Portal:UserRequest:MoreInfo' => 'Viac informácií',
'Portal:Details-Service-Element' => 'Prvky služieb',
'Portal:NoClosedTicket' => 'Žiadne zatvorené požiadavky',
'Portal:NoService' => '',
'Portal:ListOpenProblems' => 'Prebiehajúce problémy',
'Portal:ShowProblem' => 'Problémy',
'Portal:ShowFaqs' => 'Často kladené otázky',
'Portal:NoOpenProblem' => 'Žiadny otvorený problém',
'Portal:SelectLanguage' => 'Zmeň svoj jazyk',
'Portal:LanguageChangedTo_Lang' => 'Jazyk zmenený na',
'Portal:ChooseYourFavoriteLanguage' => 'Vyberte si svoj obľúbený jazyk',
'Class:UserRequest/Method:ResolveChildTickets' => 'ResolveChildTickets~~',
'Class:UserRequest/Method:ResolveChildTickets+' => 'Cascade the resolution to child requests (ev_autoresolve), and align the following characteristics of the request: service, team, agent, resolution info~~',
));
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Organization:Overview:UserRequests' => 'User Requests from this organization~~',
'Class:UserRequest/Stimulus:ev_approve' => 'Schváliť',
'Class:UserRequest/Stimulus:ev_approve+' => '~~',
'Class:UserRequest/Stimulus:ev_assign' => 'Prideiť',
'Class:UserRequest/Stimulus:ev_assign+' => '~~',
'Class:UserRequest/Stimulus:ev_autoclose' => 'Automatické zatvorenie',
'Class:UserRequest/Stimulus:ev_autoclose+' => '~~',
'Class:UserRequest/Stimulus:ev_autoresolve' => 'Automatické vyriešenie',
'Class:UserRequest/Stimulus:ev_autoresolve+' => '~~',
'Class:UserRequest/Stimulus:ev_close' => 'Zatvoriť',
'Class:UserRequest/Stimulus:ev_close+' => '~~',
'Class:UserRequest/Stimulus:ev_pending' => 'Pozdržať',
'Class:UserRequest/Stimulus:ev_pending+' => '~~',
'Class:UserRequest/Stimulus:ev_reassign' => 'Znovu Prideiť',
'Class:UserRequest/Stimulus:ev_reassign+' => '~~',
'Class:UserRequest/Stimulus:ev_reject' => 'Zamietnúť',
'Class:UserRequest/Stimulus:ev_reject+' => '~~',
'Class:UserRequest/Stimulus:ev_reopen' => 'Znova otvoriť',
'Class:UserRequest/Stimulus:ev_reopen+' => '~~',
'Class:UserRequest/Stimulus:ev_resolve' => 'Vyriešiť',
'Class:UserRequest/Stimulus:ev_resolve+' => '~~',
'Class:UserRequest/Stimulus:ev_timeout' => 'Vypršanie času',
'Class:UserRequest/Stimulus:ev_timeout+' => '~~',
'Class:UserRequest/Stimulus:ev_wait_for_approval' => 'Počkať na schválenie',
'Class:UserRequest/Stimulus:ev_wait_for_approval+' => '~~',
'Class:UserRequest:KnownErrorList' => 'Známe chyby',
'Class:UserRequest:KnownErrorList+' => 'Known Errors related to Functional CI linked to the current ticket~~',
'Menu:NewUserRequest' => 'Nové požiadavky užívateľa',
'Menu:NewUserRequest+' => 'Create a new user request ticket~~',
'Menu:RequestManagement' => 'Helpdesk',
'Menu:RequestManagement+' => '~~',
'Menu:RequestManagementProvider' => 'Poskytovateľ Helpdesku',
'Menu:RequestManagementProvider+' => '~~',
'Menu:SearchUserRequests' => 'Vyhľadať užívateľské požiadavky',
'Menu:SearchUserRequests+' => 'Search for user request tickets~~',
'Menu:UserRequest:EscalatedRequests' => 'Eskalované požiadavky',
'Menu:UserRequest:EscalatedRequests+' => '~~',
'Menu:UserRequest:MyRequests' => 'požiadavky pridelené mne',
'Menu:UserRequest:MyRequests+' => 'Requests assigned to me (as Agent)~~',
'Menu:UserRequest:MySupportRequests' => 'Moje hovory podpory',
'Menu:UserRequest:MySupportRequests+' => '~~',
'Menu:UserRequest:MyWorkOrders' => 'Pracovné príkazy pridelené mne',
'Menu:UserRequest:MyWorkOrders+' => 'All work orders assigned to me~~',
'Menu:UserRequest:OpenRequests' => 'Všetky otvorené požiadavky',
'Menu:UserRequest:OpenRequests+' => '~~',
'Menu:UserRequest:Overview' => 'Prehľad',
'Menu:UserRequest:Overview+' => '~~',
'Menu:UserRequest:Provider' => 'Otvorené požiadavky prenesené na poskytovateľa',
'Menu:UserRequest:Provider+' => '~~',
'Menu:UserRequest:Shortcuts' => 'Skratky',
'Menu:UserRequest:Shortcuts+' => '~~',
'Organization:Overview:MyUserRequests' => 'My User Requests for this organization~~',
'Organization:Overview:Tickets' => 'Tickets for this organization~~',
));
'Organization:Overview:UserRequests' => 'User Requests from this organization~~',
'Portal:Button:CreateRequestFromService' => 'Vytvor Požiadavka pre túto službu',
'Portal:ButtonClose' => 'Zatvoriť',
'Portal:ButtonReopen' => 'Znova otvoriť',
'Portal:ButtonUpdate' => 'Aktualizácia',
'Portal:ChooseYourFavoriteLanguage' => 'Vyberte si svoj obľúbený jazyk',
'Portal:Details-Service-Element' => 'Prvky služieb',
'Portal:LanguageChangedTo_Lang' => 'Jazyk zmenený na',
'Portal:ListOpenProblems' => 'Prebiehajúce problémy',
'Portal:ListOpenRequests' => 'Vypíš otvorené požiadavky',
'Portal:ListServices' => 'Zoznam služieb',
'Portal:NoClosedTicket' => 'Žiadne zatvorené požiadavky',
'Portal:NoOpenProblem' => 'Žiadny otvorený problém',
'Portal:NoService' => '~~',
'Portal:SelectLanguage' => 'Zmeň svoj jazyk',
'Portal:SelectRequestType' => 'Zvoľ typ požiadavky',
'Portal:SelectServiceElementFrom_Service' => 'Zvoľ služby prvku pre %1$s',
'Portal:ShowFaqs' => 'Často kladené otázky',
'Portal:ShowProblem' => 'Problémy',
'Portal:ShowServices' => 'Katalóg služieb',
'Portal:TitleDetailsFor_Request' => 'Detaily pre požiadavky',
'Portal:TitleDetailsFor_Service' => 'Detaily pre službu',
'Portal:UserRequest:MoreInfo' => 'Viac informácií',
'Tickets:Related:OpenIncidents' => 'Open incidents~~',
'UI-RequestManagementOverview-Last-14-days' => 'požiadavky posledných 14 dní (po dňoch)',
'UI-RequestManagementOverview-OpenRequestByAgent' => 'Otvorené požiadavky podľa agenta',
'UI-RequestManagementOverview-OpenRequestByCustomer' => 'Otvorené požiadavky podľa organizácie',
'UI-RequestManagementOverview-OpenRequestByStatus' => 'Otvorené požiadavky podľa stavu',
'UI-RequestManagementOverview-OpenRequestByType' => 'Otvorené požiadavky podľa typu',
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'požiadavky za posledných 14 dní (po typoch)',
'UI:WelcomeMenu:MyAssignedCalls' => 'požiadavky pridelené mne',
]);

View File

@@ -3,498 +3,249 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ServiceManagement' => 'Manažment služieb',
'Menu:ServiceManagement+' => '',
'Menu:Service:Overview' => 'Prehľad',
'Menu:Service:Overview+' => '',
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'zmluvy podľa úrovne služby',
'UI-ServiceManagementMenu-ContractsByStatus' => 'zmluvy podla stavu',
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'zmluvy končiace za menej ako 30 dní',
'Menu:ProviderContract' => 'Poskytovateľské zmluvy',
'Menu:ProviderContract+' => '',
'Menu:CustomerContract' => 'Zákaznícke zmluvy',
'Menu:CustomerContract+' => '',
'Menu:ServiceSubcategory' => 'Subkategórie služieb',
'Menu:ServiceSubcategory+' => '',
'Menu:Service' => 'Služby',
'Menu:Service+' => '',
'Menu:ServiceElement' => 'Prvky služby',
'Menu:ServiceElement+' => '',
'Menu:SLA' => 'SLAs',
'Menu:SLA+' => '',
'Menu:SLT' => 'SLTs',
'Menu:SLT+' => '',
'Menu:DeliveryModel' => 'Typy dodávky',
'Menu:DeliveryModel+' => '',
'Menu:ServiceFamily' => 'Rodiny služieb',
'Menu:ServiceFamily+' => '',
'Contract:baseinfo' => 'General information~~',
'Contract:moreinfo' => 'Contractual information~~',
'Contract:cost' => 'Cost information~~',
));
/*
'UI:ServiceManagementMenu' => 'Gestion des Services',
'UI:ServiceManagementMenu+' => 'Gestion des Services',
'UI:ServiceManagementMenu:Title' => 'Résumé des services & contrats',
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'Contrats par niveau de service',
'UI-ServiceManagementMenu-ContractsByStatus' => 'Contrats par état',
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'Contrats se terminant dans moins de 30 jours',
/**
*
*/
//
// Class: Organization
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
'Class:Organization/Attribute:deliverymodel_name+' => '',
));
//
// Class: ContractType
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ContractType' => 'Typ zmluvy',
'Class:ContractType+' => '',
));
//
// Class: Contract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Contract' => 'zmluva',
'Class:Contract+' => '',
'Class:Contract/Attribute:name' => 'Názov',
'Class:Contract/Attribute:name+' => '',
'Class:Contract/Attribute:org_id' => 'Zákazník',
'Class:Contract/Attribute:org_id+' => '',
'Class:Contract/Attribute:organization_name' => 'Meno zákazníka',
'Class:Contract/Attribute:organization_name+' => '',
'Class:Contract+' => '~~',
'Class:Contract/Attribute:billing_frequency' => 'Frekvencia faktúrovania',
'Class:Contract/Attribute:billing_frequency+' => '~~',
'Class:Contract/Attribute:contacts_list' => 'Kontakty',
'Class:Contract/Attribute:contacts_list+' => 'All the contacts for this customer contract~~',
'Class:Contract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:Contract/Attribute:contracttype_id+' => '~~',
'Class:Contract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:Contract/Attribute:contracttype_name+' => '~~',
'Class:Contract/Attribute:cost' => 'Cena',
'Class:Contract/Attribute:cost+' => '~~',
'Class:Contract/Attribute:cost_currency' => 'Mena ceny',
'Class:Contract/Attribute:cost_currency+' => '~~',
'Class:Contract/Attribute:cost_currency/Value:dollars' => 'USD',
'Class:Contract/Attribute:cost_currency/Value:dollars+' => '~~',
'Class:Contract/Attribute:cost_currency/Value:euros' => 'EUR',
'Class:Contract/Attribute:cost_currency/Value:euros+' => '~~',
'Class:Contract/Attribute:cost_unit' => 'Cenová jednotka',
'Class:Contract/Attribute:cost_unit+' => '~~',
'Class:Contract/Attribute:description' => 'Popis',
'Class:Contract/Attribute:description+' => '~~',
'Class:Contract/Attribute:documents_list' => 'Zoznam dokumentov',
'Class:Contract/Attribute:documents_list+' => 'All the documents for this customer contract~~',
'Class:Contract/Attribute:description' => 'Popis',
'Class:Contract/Attribute:description+' => '',
'Class:Contract/Attribute:start_date' => 'Dátum začiatku',
'Class:Contract/Attribute:start_date+' => '',
'Class:Contract/Attribute:end_date' => 'Dátum ukončenia',
'Class:Contract/Attribute:end_date+' => '',
'Class:Contract/Attribute:cost' => 'Cena',
'Class:Contract/Attribute:cost+' => '',
'Class:Contract/Attribute:cost_currency' => 'Mena ceny',
'Class:Contract/Attribute:cost_currency+' => '',
'Class:Contract/Attribute:cost_currency/Value:dollars' => 'USD',
'Class:Contract/Attribute:cost_currency/Value:dollars+' => '',
'Class:Contract/Attribute:cost_currency/Value:euros' => 'EUR',
'Class:Contract/Attribute:cost_currency/Value:euros+' => '',
'Class:Contract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:Contract/Attribute:contracttype_id+' => '',
'Class:Contract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:Contract/Attribute:contracttype_name+' => '',
'Class:Contract/Attribute:billing_frequency' => 'Frekvencia faktúrovania',
'Class:Contract/Attribute:billing_frequency+' => '',
'Class:Contract/Attribute:cost_unit' => 'Cenová jednotka',
'Class:Contract/Attribute:cost_unit+' => '',
'Class:Contract/Attribute:provider_id' => 'Poskytovateľ',
'Class:Contract/Attribute:provider_id+' => '',
'Class:Contract/Attribute:provider_name' => 'Meno poskytovateľa',
'Class:Contract/Attribute:provider_name+' => '',
'Class:Contract/Attribute:status' => 'Stav',
'Class:Contract/Attribute:status+' => '',
'Class:Contract/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Contract/Attribute:status/Value:implementation+' => '',
'Class:Contract/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Contract/Attribute:status/Value:obsolete+' => '',
'Class:Contract/Attribute:status/Value:production' => 'Produkcia',
'Class:Contract/Attribute:status/Value:production+' => '',
'Class:Contract/Attribute:end_date+' => '~~',
'Class:Contract/Attribute:finalclass' => 'Typ',
'Class:Contract/Attribute:finalclass+' => '',
));
//
// Class: CustomerContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Contract/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Contract/Attribute:name' => 'Názov',
'Class:Contract/Attribute:name+' => '~~',
'Class:Contract/Attribute:org_id' => 'Zákazník',
'Class:Contract/Attribute:org_id+' => '~~',
'Class:Contract/Attribute:organization_name' => 'Meno zákazníka',
'Class:Contract/Attribute:organization_name+' => 'Common name~~',
'Class:Contract/Attribute:provider_id' => 'Poskytovateľ',
'Class:Contract/Attribute:provider_id+' => '~~',
'Class:Contract/Attribute:provider_name' => 'Meno poskytovateľa',
'Class:Contract/Attribute:provider_name+' => '~~',
'Class:Contract/Attribute:start_date' => 'Dátum začiatku',
'Class:Contract/Attribute:start_date+' => '~~',
'Class:Contract/Attribute:status' => 'Stav',
'Class:Contract/Attribute:status+' => '~~',
'Class:Contract/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Contract/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:Contract/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Contract/Attribute:status/Value:obsolete+' => 'obsolete~~',
'Class:Contract/Attribute:status/Value:production' => 'Produkcia',
'Class:Contract/Attribute:status/Value:production+' => 'production~~',
'Class:ContractType' => 'Typ zmluvy',
'Class:ContractType+' => '~~',
'Class:CustomerContract' => 'Zákaznícka zmluva',
'Class:CustomerContract+' => '',
'Class:CustomerContract/Attribute:services_list' => 'Služby',
'Class:CustomerContract/Attribute:services_list+' => 'All the services purchased for this contract~~',
'Class:CustomerContract+' => '~~',
'Class:CustomerContract/Attribute:functionalcis_list' => 'CIs~~',
'Class:CustomerContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this contract~~',
'Class:CustomerContract/Attribute:providercontracts_list' => 'Provider contracts~~',
'Class:CustomerContract/Attribute:providercontracts_list+' => 'All the provider contracts to deliver the services for this contract (underpinning contract)~~',
));
//
// Class: ProviderContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:CustomerContract/Attribute:services_list' => 'Služby',
'Class:CustomerContract/Attribute:services_list+' => 'All the services purchased for this contract~~',
'Class:DeliveryModel' => 'Model dodávky',
'Class:DeliveryModel+' => '~~',
'Class:DeliveryModel/Attribute:contacts_list' => 'Kontakty',
'Class:DeliveryModel/Attribute:contacts_list+' => 'All the contacts (Teams and Person) for this delivery model~~',
'Class:DeliveryModel/Attribute:customers_list' => 'Zákazníci',
'Class:DeliveryModel/Attribute:customers_list+' => 'All the customers having this delivering model~~',
'Class:DeliveryModel/Attribute:description' => 'Popis',
'Class:DeliveryModel/Attribute:description+' => '~~',
'Class:DeliveryModel/Attribute:name' => 'Názov',
'Class:DeliveryModel/Attribute:name+' => '~~',
'Class:DeliveryModel/Attribute:org_id' => 'Organizácia',
'Class:DeliveryModel/Attribute:org_id+' => '~~',
'Class:DeliveryModel/Attribute:organization_name' => 'Názov organizácie',
'Class:DeliveryModel/Attribute:organization_name+' => '~~',
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '~~',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
'Class:Organization/Attribute:deliverymodel_name+' => '~~',
'Class:ProviderContract' => 'Poskytovateľská zmluva',
'Class:ProviderContract+' => '',
'Class:ProviderContract+' => '~~',
'Class:ProviderContract/Attribute:coverage' => 'Časy pokrytia',
'Class:ProviderContract/Attribute:coverage+' => '~~',
'Class:ProviderContract/Attribute:functionalcis_list' => 'Zariadenia',
'Class:ProviderContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this contract~~',
'Class:ProviderContract/Attribute:sla' => 'SLA',
'Class:ProviderContract/Attribute:sla+' => '',
'Class:ProviderContract/Attribute:coverage' => 'Časy pokrytia',
'Class:ProviderContract/Attribute:coverage+' => '',
));
//
// Class: lnkContactToContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContactToContract' => 'väzba - Kontakt / zmluva',
'Class:lnkContactToContract+' => '',
'Class:lnkContactToContract/Name' => '%1$s / %2$s~~',
'Class:lnkContactToContract/Attribute:contract_id' => 'zmluva',
'Class:lnkContactToContract/Attribute:contract_id+' => '',
'Class:lnkContactToContract/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContactToContract/Attribute:contract_name+' => '',
'Class:lnkContactToContract/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToContract/Attribute:contact_id+' => '',
'Class:lnkContactToContract/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToContract/Attribute:contact_name+' => '',
));
//
// Class: lnkContractToDocument
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContractToDocument' => 'väzba - zmluva / Dokument',
'Class:lnkContractToDocument+' => '',
'Class:lnkContractToDocument/Name' => '%1$s / %2$s~~',
'Class:lnkContractToDocument/Attribute:contract_id' => 'zmluva',
'Class:lnkContractToDocument/Attribute:contract_id+' => '',
'Class:lnkContractToDocument/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContractToDocument/Attribute:contract_name+' => '',
'Class:lnkContractToDocument/Attribute:document_id' => 'Dokument',
'Class:lnkContractToDocument/Attribute:document_id+' => '',
'Class:lnkContractToDocument/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkContractToDocument/Attribute:document_name+' => '',
));
//
// Class: lnkFunctionalCIToProviderContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkFunctionalCIToProviderContract' => 'väzba - Komponent / Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract+' => '',
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '',
));
//
// Class: ServiceFamily
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ServiceFamily' => 'Kategória služieb',
'Class:ServiceFamily+' => '',
'Class:ServiceFamily/Attribute:name' => 'Názov',
'Class:ServiceFamily/Attribute:name+' => '',
'Class:ServiceFamily/Attribute:icon' => 'Icon~~',
'Class:ServiceFamily/Attribute:icon+' => '~~',
'Class:ServiceFamily/Attribute:services_list' => 'Služby',
'Class:ServiceFamily/Attribute:services_list+' => 'All the services in this category~~',
));
//
// Class: Service
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Service' => 'Služby',
'Class:Service+' => '',
'Class:Service/ComplementaryName' => '%1$s - %2$s~~',
'Class:Service/Attribute:name' => 'Názov',
'Class:Service/Attribute:name+' => '',
'Class:Service/Attribute:org_id' => 'Poskytovateľ',
'Class:Service/Attribute:org_id+' => '',
'Class:Service/Attribute:organization_name' => 'Meno poskytovateľa',
'Class:Service/Attribute:organization_name+' => '',
'Class:Service/Attribute:description' => 'Popis',
'Class:Service/Attribute:description+' => '',
'Class:Service/Attribute:servicefamily_id' => 'Kategória služieb',
'Class:Service/Attribute:servicefamily_id+' => '',
'Class:Service/Attribute:servicefamily_name' => 'Názov rodiny služieb',
'Class:Service/Attribute:servicefamily_name+' => '',
'Class:Service/Attribute:documents_list' => 'Dokumenty',
'Class:Service/Attribute:documents_list+' => 'All the documents linked to the service~~',
'Class:Service/Attribute:contacts_list' => 'Kontakty',
'Class:Service/Attribute:contacts_list+' => 'All the contacts for this service~~',
'Class:Service/Attribute:status' => 'Stav',
'Class:Service/Attribute:status+' => '',
'Class:Service/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Service/Attribute:status/Value:implementation+' => '',
'Class:Service/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:Service/Attribute:status/Value:obsolete+' => '',
'Class:Service/Attribute:status/Value:production' => 'Produkcia',
'Class:Service/Attribute:status/Value:production+' => '',
'Class:Service/Attribute:icon' => 'Icon~~',
'Class:Service/Attribute:icon+' => '~~',
'Class:Service/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:Service/Attribute:customercontracts_list+' => 'All the customer contracts that have purchased this service~~',
'Class:Service/Attribute:servicesubcategories_list' => 'Podkategórie služieb',
'Class:Service/Attribute:servicesubcategories_list+' => 'All the sub categories for this service~~',
));
//
// Class: lnkDocumentToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkDocumentToService' => 'väzba - Dokument / Služba',
'Class:lnkDocumentToService+' => '',
'Class:lnkDocumentToService/Name' => '%1$s / %2$s~~',
'Class:lnkDocumentToService/Attribute:service_id' => 'Služba',
'Class:lnkDocumentToService/Attribute:service_id+' => '',
'Class:lnkDocumentToService/Attribute:service_name' => 'Názov služby',
'Class:lnkDocumentToService/Attribute:service_name+' => '',
'Class:lnkDocumentToService/Attribute:document_id' => 'Dokument',
'Class:lnkDocumentToService/Attribute:document_id+' => '',
'Class:lnkDocumentToService/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkDocumentToService/Attribute:document_name+' => '',
));
//
// Class: lnkContactToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContactToService' => 'väzba - Kontakt / Služba',
'Class:lnkContactToService+' => '',
'Class:lnkContactToService/Name' => '%1$s / %2$s~~',
'Class:lnkContactToService/Attribute:service_id' => 'Služba',
'Class:lnkContactToService/Attribute:service_id+' => '',
'Class:lnkContactToService/Attribute:service_name' => 'Názov služby',
'Class:lnkContactToService/Attribute:service_name+' => '',
'Class:lnkContactToService/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToService/Attribute:contact_id+' => '',
'Class:lnkContactToService/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToService/Attribute:contact_name+' => '',
));
//
// Class: ServiceSubcategory
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ServiceSubcategory' => 'Podkategória služieb',
'Class:ServiceSubcategory+' => '',
'Class:ServiceSubcategory/ComplementaryName' => '%1$s - %2$s~~',
'Class:ServiceSubcategory/Attribute:name' => 'Názov',
'Class:ServiceSubcategory/Attribute:name+' => '',
'Class:ServiceSubcategory/Attribute:description' => 'Popis',
'Class:ServiceSubcategory/Attribute:description+' => '',
'Class:ServiceSubcategory/Attribute:service_id' => 'Služba',
'Class:ServiceSubcategory/Attribute:service_id+' => '',
'Class:ServiceSubcategory/Attribute:service_name' => 'Názov služby',
'Class:ServiceSubcategory/Attribute:service_name+' => '',
'Class:ServiceSubcategory/Attribute:status' => 'Stav',
'Class:ServiceSubcategory/Attribute:status+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:implementation' => 'Implementácia',
'Class:ServiceSubcategory/Attribute:status/Value:implementation+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:production' => 'Produkcia',
'Class:ServiceSubcategory/Attribute:status/Value:production+' => '',
'Class:ServiceSubcategory/Attribute:request_type' => 'Typ požiadavky',
'Class:ServiceSubcategory/Attribute:request_type+' => '',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident' => 'Incident',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident+' => '',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request+' => '',
'Class:ServiceSubcategory/Attribute:service_provider' => 'Provider Name~~',
'Class:ServiceSubcategory/Attribute:service_org_id' => 'Provider~~',
));
//
// Class: SLA
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ProviderContract/Attribute:sla+' => 'Service Level Agreement~~',
'Class:SLA' => 'SLA',
'Class:SLA+' => '',
'Class:SLA/Attribute:name' => 'Názov',
'Class:SLA/Attribute:name+' => '',
'Class:SLA/Attribute:description' => 'Popis',
'Class:SLA/Attribute:description+' => '',
'Class:SLA/Attribute:org_id' => 'Poskytovateľ',
'Class:SLA/Attribute:org_id+' => '',
'Class:SLA/Attribute:organization_name' => 'Názov organizácie poskytovateľa',
'Class:SLA/Attribute:organization_name+' => '',
'Class:SLA/Attribute:slts_list' => 'SLTs',
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
'Class:SLA+' => '~~',
'Class:SLA/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracts using this SLA~~',
'Class:SLA/Attribute:description' => 'Popis',
'Class:SLA/Attribute:description+' => '~~',
'Class:SLA/Attribute:name' => 'Názov',
'Class:SLA/Attribute:name+' => '~~',
'Class:SLA/Attribute:org_id' => 'Poskytovateľ',
'Class:SLA/Attribute:org_id+' => '~~',
'Class:SLA/Attribute:organization_name' => 'Názov organizácie poskytovateľa',
'Class:SLA/Attribute:organization_name+' => '~~',
'Class:SLA/Attribute:slts_list' => 'SLTs',
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
));
//
// Class: SLT
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:SLT' => 'SLT',
'Class:SLT+' => '',
'Class:SLT/Attribute:name' => 'Názov',
'Class:SLT/Attribute:name+' => '',
'Class:SLT/Attribute:priority' => 'Priorita',
'Class:SLT/Attribute:priority+' => '',
'Class:SLT/Attribute:priority/Value:1' => 'Kritická',
'Class:SLT/Attribute:priority/Value:1+' => '',
'Class:SLT/Attribute:priority/Value:2' => 'Vysoká',
'Class:SLT/Attribute:priority/Value:2+' => '',
'Class:SLT/Attribute:priority/Value:3' => 'Stredná',
'Class:SLT/Attribute:priority/Value:3+' => '',
'Class:SLT/Attribute:priority/Value:4' => 'Nízka',
'Class:SLT/Attribute:priority/Value:4+' => '',
'Class:SLT/Attribute:request_type' => 'Typ požiadavky',
'Class:SLT/Attribute:request_type+' => '',
'Class:SLT/Attribute:request_type/Value:incident' => 'Incident',
'Class:SLT/Attribute:request_type/Value:incident+' => '',
'Class:SLT/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:SLT/Attribute:request_type/Value:service_request+' => '',
'Class:SLT+' => '~~',
'Class:SLT/Attribute:metric' => 'Metrika',
'Class:SLT/Attribute:metric+' => '',
'Class:SLT/Attribute:metric+' => '~~',
'Class:SLT/Attribute:metric/Value:tto' => 'TTO',
'Class:SLT/Attribute:metric/Value:tto+' => '',
'Class:SLT/Attribute:metric/Value:tto+' => 'TTO~~',
'Class:SLT/Attribute:metric/Value:ttr' => 'TTR',
'Class:SLT/Attribute:metric/Value:ttr+' => '',
'Class:SLT/Attribute:value' => 'Hodnota',
'Class:SLT/Attribute:value+' => '',
'Class:SLT/Attribute:metric/Value:ttr+' => 'TTR~~',
'Class:SLT/Attribute:name' => 'Názov',
'Class:SLT/Attribute:name+' => '~~',
'Class:SLT/Attribute:priority' => 'Priorita',
'Class:SLT/Attribute:priority+' => '~~',
'Class:SLT/Attribute:priority/Value:1' => 'Kritická',
'Class:SLT/Attribute:priority/Value:1+' => 'critical~~',
'Class:SLT/Attribute:priority/Value:2' => 'Vysoká',
'Class:SLT/Attribute:priority/Value:2+' => 'high~~',
'Class:SLT/Attribute:priority/Value:3' => 'Stredná',
'Class:SLT/Attribute:priority/Value:3+' => 'medium~~',
'Class:SLT/Attribute:priority/Value:4' => 'Nízka',
'Class:SLT/Attribute:priority/Value:4+' => 'low~~',
'Class:SLT/Attribute:request_type' => 'Typ požiadavky',
'Class:SLT/Attribute:request_type+' => '~~',
'Class:SLT/Attribute:request_type/Value:incident' => 'Incident',
'Class:SLT/Attribute:request_type/Value:incident+' => 'incident~~',
'Class:SLT/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:SLT/Attribute:request_type/Value:service_request+' => 'service request~~',
'Class:SLT/Attribute:unit' => 'Jednotka',
'Class:SLT/Attribute:unit+' => '',
'Class:SLT/Attribute:unit+' => '~~',
'Class:SLT/Attribute:unit/Value:hours' => 'Hodiny',
'Class:SLT/Attribute:unit/Value:hours+' => '',
'Class:SLT/Attribute:unit/Value:hours+' => 'hours~~',
'Class:SLT/Attribute:unit/Value:minutes' => 'Minúty',
'Class:SLT/Attribute:unit/Value:minutes+' => '',
));
//
// Class: lnkSLAToSLT
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkSLAToSLT' => 'väzba - SLA / SLT',
'Class:lnkSLAToSLT+' => '',
'Class:lnkSLAToSLT/Name' => '%1$s / %2$s~~',
'Class:lnkSLAToSLT/Attribute:sla_id' => 'SLA',
'Class:lnkSLAToSLT/Attribute:sla_id+' => '',
'Class:lnkSLAToSLT/Attribute:sla_name' => 'SLA Názov',
'Class:lnkSLAToSLT/Attribute:sla_name+' => '',
'Class:lnkSLAToSLT/Attribute:slt_id' => 'SLT',
'Class:lnkSLAToSLT/Attribute:slt_id+' => '',
'Class:lnkSLAToSLT/Attribute:slt_name' => 'SLT Názov',
'Class:lnkSLAToSLT/Attribute:slt_name+' => '',
'Class:lnkSLAToSLT/Attribute:slt_metric' => 'SLT metric~~',
'Class:lnkSLAToSLT/Attribute:slt_metric+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type' => 'SLT request type~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_ticket_priority' => 'SLT ticket priority~~',
'Class:lnkSLAToSLT/Attribute:slt_ticket_priority+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_value' => 'SLT value~~',
'Class:lnkSLAToSLT/Attribute:slt_value+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit' => 'SLT value unit~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit+' => '~~',
));
//
// Class: lnkCustomerContractToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkCustomerContractToService' => 'väzba - Zákaznícka zmluva / Služba',
'Class:lnkCustomerContractToService+' => '',
'Class:lnkCustomerContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_id' => 'Zákaznícka zmluva',
'Class:lnkCustomerContractToService/Attribute:customercontract_id+' => '',
'Class:lnkCustomerContractToService/Attribute:customercontract_name' => 'Názov zákazníckeho zmluvy',
'Class:lnkCustomerContractToService/Attribute:customercontract_name+' => '',
'Class:lnkCustomerContractToService/Attribute:service_id' => 'Služba',
'Class:lnkCustomerContractToService/Attribute:service_id+' => '',
'Class:lnkCustomerContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkCustomerContractToService/Attribute:service_name+' => '',
'Class:lnkCustomerContractToService/Attribute:sla_id' => 'SLA',
'Class:lnkCustomerContractToService/Attribute:sla_id+' => '',
'Class:lnkCustomerContractToService/Attribute:sla_name' => 'SLA Názov',
'Class:lnkCustomerContractToService/Attribute:sla_name+' => '',
));
//
// Class: lnkCustomerContractToProviderContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkCustomerContractToProviderContract' => 'Link Customer Contract / Provider Contract~~',
'Class:lnkCustomerContractToProviderContract+' => '~~',
'Class:lnkCustomerContractToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_id' => 'Customer contract~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_id+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_name' => 'Customer contract Name~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_name+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_id' => 'Provider contract~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_id+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_name' => 'Provider contract Name~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_name+' => '~~',
));
//
// Class: lnkCustomerContractToFunctionalCI
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:SLT/Attribute:unit/Value:minutes+' => 'minutes~~',
'Class:SLT/Attribute:value' => 'Hodnota',
'Class:SLT/Attribute:value+' => '~~',
'Class:Service' => 'Služby',
'Class:Service+' => '~~',
'Class:Service/Attribute:contacts_list' => 'Kontakty',
'Class:Service/Attribute:contacts_list+' => 'All the contacts for this service~~',
'Class:Service/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:Service/Attribute:customercontracts_list+' => 'All the customer contracts that have purchased this service~~',
'Class:Service/Attribute:description' => 'Popis',
'Class:Service/Attribute:description+' => '~~',
'Class:Service/Attribute:documents_list' => 'Dokumenty',
'Class:Service/Attribute:documents_list+' => 'All the documents linked to the service~~',
'Class:Service/Attribute:icon' => 'Icon~~',
'Class:Service/Attribute:icon+' => '~~',
'Class:Service/Attribute:name' => 'Názov',
'Class:Service/Attribute:name+' => '~~',
'Class:Service/Attribute:org_id' => 'Poskytovateľ',
'Class:Service/Attribute:org_id+' => '~~',
'Class:Service/Attribute:organization_name' => 'Meno poskytovateľa',
'Class:Service/Attribute:organization_name+' => '~~',
'Class:Service/Attribute:servicefamily_id' => 'Kategória služieb',
'Class:Service/Attribute:servicefamily_id+' => '~~',
'Class:Service/Attribute:servicefamily_name' => 'Názov rodiny služieb',
'Class:Service/Attribute:servicefamily_name+' => '~~',
'Class:Service/Attribute:servicesubcategories_list' => 'Podkategórie služieb',
'Class:Service/Attribute:servicesubcategories_list+' => 'All the sub categories for this service~~',
'Class:Service/Attribute:status' => 'Stav',
'Class:Service/Attribute:status+' => '~~',
'Class:Service/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Service/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:Service/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:Service/Attribute:status/Value:obsolete+' => '~~',
'Class:Service/Attribute:status/Value:production' => 'Produkcia',
'Class:Service/Attribute:status/Value:production+' => '~~',
'Class:Service/ComplementaryName' => '%1$s - %2$s~~',
'Class:ServiceFamily' => 'Kategória služieb',
'Class:ServiceFamily+' => '~~',
'Class:ServiceFamily/Attribute:icon' => 'Icon~~',
'Class:ServiceFamily/Attribute:icon+' => '~~',
'Class:ServiceFamily/Attribute:name' => 'Názov',
'Class:ServiceFamily/Attribute:name+' => '~~',
'Class:ServiceFamily/Attribute:services_list' => 'Služby',
'Class:ServiceFamily/Attribute:services_list+' => 'All the services in this category~~',
'Class:ServiceSubcategory' => 'Podkategória služieb',
'Class:ServiceSubcategory+' => '~~',
'Class:ServiceSubcategory/Attribute:description' => 'Popis',
'Class:ServiceSubcategory/Attribute:description+' => '~~',
'Class:ServiceSubcategory/Attribute:name' => 'Názov',
'Class:ServiceSubcategory/Attribute:name+' => '~~',
'Class:ServiceSubcategory/Attribute:request_type' => 'Typ požiadavky',
'Class:ServiceSubcategory/Attribute:request_type+' => '~~',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident' => 'Incident',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident+' => 'incident~~',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request+' => 'service request~~',
'Class:ServiceSubcategory/Attribute:service_id' => 'Služba',
'Class:ServiceSubcategory/Attribute:service_id+' => '~~',
'Class:ServiceSubcategory/Attribute:service_name' => 'Názov služby',
'Class:ServiceSubcategory/Attribute:service_name+' => '~~',
'Class:ServiceSubcategory/Attribute:service_org_id' => 'Provider~~',
'Class:ServiceSubcategory/Attribute:service_provider' => 'Provider Name~~',
'Class:ServiceSubcategory/Attribute:status' => 'Stav',
'Class:ServiceSubcategory/Attribute:status+' => '~~',
'Class:ServiceSubcategory/Attribute:status/Value:implementation' => 'Implementácia',
'Class:ServiceSubcategory/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete+' => 'obsolete~~',
'Class:ServiceSubcategory/Attribute:status/Value:production' => 'Produkcia',
'Class:ServiceSubcategory/Attribute:status/Value:production+' => 'production~~',
'Class:ServiceSubcategory/ComplementaryName' => '%1$s - %2$s~~',
'Class:lnkContactToContract' => 'väzba - Kontakt / zmluva',
'Class:lnkContactToContract+' => '~~',
'Class:lnkContactToContract/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToContract/Attribute:contact_id+' => '~~',
'Class:lnkContactToContract/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToContract/Attribute:contact_name+' => '~~',
'Class:lnkContactToContract/Attribute:contract_id' => 'zmluva',
'Class:lnkContactToContract/Attribute:contract_id+' => '~~',
'Class:lnkContactToContract/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContactToContract/Attribute:contract_name+' => '~~',
'Class:lnkContactToContract/Name' => '%1$s / %2$s~~',
'Class:lnkContactToService' => 'väzba - Kontakt / Služba',
'Class:lnkContactToService+' => '~~',
'Class:lnkContactToService/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToService/Attribute:contact_id+' => '~~',
'Class:lnkContactToService/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToService/Attribute:contact_name+' => '~~',
'Class:lnkContactToService/Attribute:service_id' => 'Služba',
'Class:lnkContactToService/Attribute:service_id+' => '~~',
'Class:lnkContactToService/Attribute:service_name' => 'Názov služby',
'Class:lnkContactToService/Attribute:service_name+' => '~~',
'Class:lnkContactToService/Name' => '%1$s / %2$s~~',
'Class:lnkContractToDocument' => 'väzba - zmluva / Dokument',
'Class:lnkContractToDocument+' => '~~',
'Class:lnkContractToDocument/Attribute:contract_id' => 'zmluva',
'Class:lnkContractToDocument/Attribute:contract_id+' => '~~',
'Class:lnkContractToDocument/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContractToDocument/Attribute:contract_name+' => '~~',
'Class:lnkContractToDocument/Attribute:document_id' => 'Dokument',
'Class:lnkContractToDocument/Attribute:document_id+' => '~~',
'Class:lnkContractToDocument/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkContractToDocument/Attribute:document_name+' => '~~',
'Class:lnkContractToDocument/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToFunctionalCI' => 'Link Customer Contract / FunctionalCI~~',
'Class:lnkCustomerContractToFunctionalCI+' => '~~',
'Class:lnkCustomerContractToFunctionalCI/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToFunctionalCI/Attribute:customercontract_id' => 'Customer contract~~',
'Class:lnkCustomerContractToFunctionalCI/Attribute:customercontract_id+' => '~~',
'Class:lnkCustomerContractToFunctionalCI/Attribute:customercontract_name' => 'Customer contract Name~~',
@@ -503,47 +254,117 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkCustomerContractToFunctionalCI/Attribute:functionalci_id+' => '~~',
'Class:lnkCustomerContractToFunctionalCI/Attribute:functionalci_name' => 'CI Name~~',
'Class:lnkCustomerContractToFunctionalCI/Attribute:functionalci_name+' => '~~',
));
//
// Class: DeliveryModel
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DeliveryModel' => 'Model dodávky',
'Class:DeliveryModel+' => '',
'Class:DeliveryModel/Attribute:name' => 'Názov',
'Class:DeliveryModel/Attribute:name+' => '',
'Class:DeliveryModel/Attribute:org_id' => 'Organizácia',
'Class:DeliveryModel/Attribute:org_id+' => '',
'Class:DeliveryModel/Attribute:organization_name' => 'Názov organizácie',
'Class:DeliveryModel/Attribute:organization_name+' => '',
'Class:DeliveryModel/Attribute:description' => 'Popis',
'Class:DeliveryModel/Attribute:description+' => '',
'Class:DeliveryModel/Attribute:contacts_list' => 'Kontakty',
'Class:DeliveryModel/Attribute:contacts_list+' => 'All the contacts (Teams and Person) for this delivery model~~',
'Class:DeliveryModel/Attribute:customers_list' => 'Zákazníci',
'Class:DeliveryModel/Attribute:customers_list+' => 'All the customers having this delivering model~~',
));
//
// Class: lnkDeliveryModelToContact
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkCustomerContractToFunctionalCI/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToProviderContract' => 'Link Customer Contract / Provider Contract~~',
'Class:lnkCustomerContractToProviderContract+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_id' => 'Customer contract~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_id+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_name' => 'Customer contract Name~~',
'Class:lnkCustomerContractToProviderContract/Attribute:customercontract_name+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_id' => 'Provider contract~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_id+' => '~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_name' => 'Provider contract Name~~',
'Class:lnkCustomerContractToProviderContract/Attribute:providercontract_name+' => '~~',
'Class:lnkCustomerContractToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToService' => 'väzba - Zákaznícka zmluva / Služba',
'Class:lnkCustomerContractToService+' => '~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_id' => 'Zákaznícka zmluva',
'Class:lnkCustomerContractToService/Attribute:customercontract_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_name' => 'Názov zákazníckeho zmluvy',
'Class:lnkCustomerContractToService/Attribute:customercontract_name+' => '~~',
'Class:lnkCustomerContractToService/Attribute:service_id' => 'Služba',
'Class:lnkCustomerContractToService/Attribute:service_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkCustomerContractToService/Attribute:service_name+' => '~~',
'Class:lnkCustomerContractToService/Attribute:sla_id' => 'SLA',
'Class:lnkCustomerContractToService/Attribute:sla_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:sla_name' => 'SLA Názov',
'Class:lnkCustomerContractToService/Attribute:sla_name+' => '~~',
'Class:lnkCustomerContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkDeliveryModelToContact' => 'väzba - Model dodávky / Kontakt',
'Class:lnkDeliveryModelToContact+' => '',
'Class:lnkDeliveryModelToContact/Name' => '%1$s / %2$s~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name' => 'Názov typu dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name+' => '',
'Class:lnkDeliveryModelToContact+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:contact_id' => 'Kontakt',
'Class:lnkDeliveryModelToContact/Attribute:contact_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:contact_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:contact_name' => 'Meno kontaktu',
'Class:lnkDeliveryModelToContact/Attribute:contact_name+' => '',
'Class:lnkDeliveryModelToContact/Attribute:contact_name+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name' => 'Názov typu dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:role_id' => 'Rola',
'Class:lnkDeliveryModelToContact/Attribute:role_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:role_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:role_name' => 'Názov role',
'Class:lnkDeliveryModelToContact/Attribute:role_name+' => '',
));
'Class:lnkDeliveryModelToContact/Attribute:role_name+' => '~~',
'Class:lnkDeliveryModelToContact/Name' => '%1$s / %2$s~~',
'Class:lnkDocumentToService' => 'väzba - Dokument / Služba',
'Class:lnkDocumentToService+' => '~~',
'Class:lnkDocumentToService/Attribute:document_id' => 'Dokument',
'Class:lnkDocumentToService/Attribute:document_id+' => '~~',
'Class:lnkDocumentToService/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkDocumentToService/Attribute:document_name+' => '~~',
'Class:lnkDocumentToService/Attribute:service_id' => 'Služba',
'Class:lnkDocumentToService/Attribute:service_id+' => '~~',
'Class:lnkDocumentToService/Attribute:service_name' => 'Názov služby',
'Class:lnkDocumentToService/Attribute:service_name+' => '~~',
'Class:lnkDocumentToService/Name' => '%1$s / %2$s~~',
'Class:lnkFunctionalCIToProviderContract' => 'väzba - Komponent / Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'Zariadenie',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'Názov CI',
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '~~',
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s~~',
'Class:lnkSLAToSLT' => 'väzba - SLA / SLT',
'Class:lnkSLAToSLT+' => '~~',
'Class:lnkSLAToSLT/Attribute:sla_id' => 'SLA',
'Class:lnkSLAToSLT/Attribute:sla_id+' => '~~',
'Class:lnkSLAToSLT/Attribute:sla_name' => 'SLA Názov',
'Class:lnkSLAToSLT/Attribute:sla_name+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_id' => 'SLT',
'Class:lnkSLAToSLT/Attribute:slt_id+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_metric' => 'SLT metric~~',
'Class:lnkSLAToSLT/Attribute:slt_metric+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_name' => 'SLT Názov',
'Class:lnkSLAToSLT/Attribute:slt_name+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type' => 'SLT request type~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_ticket_priority' => 'SLT ticket priority~~',
'Class:lnkSLAToSLT/Attribute:slt_ticket_priority+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_value' => 'SLT value~~',
'Class:lnkSLAToSLT/Attribute:slt_value+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit' => 'SLT value unit~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit+' => '~~',
'Class:lnkSLAToSLT/Name' => '%1$s / %2$s~~',
'Contract:baseinfo' => 'General information~~',
'Contract:cost' => 'Cost information~~',
'Contract:moreinfo' => 'Contractual information~~',
'Menu:CustomerContract' => 'Zákaznícke zmluvy',
'Menu:CustomerContract+' => 'Customer contracts~~',
'Menu:DeliveryModel' => 'Typy dodávky',
'Menu:DeliveryModel+' => 'Delivery models~~',
'Menu:ProviderContract' => 'Poskytovateľské zmluvy',
'Menu:ProviderContract+' => 'Provider contracts~~',
'Menu:SLA' => 'SLAs',
'Menu:SLA+' => 'Service Level Agreements~~',
'Menu:SLT' => 'SLTs',
'Menu:SLT+' => 'Service Level Targets~~',
'Menu:Service' => 'Služby',
'Menu:Service+' => 'Services~~',
'Menu:Service:Overview' => 'Prehľad',
'Menu:Service:Overview+' => '~~',
'Menu:ServiceElement' => 'Prvky služby',
'Menu:ServiceElement+' => 'Sevice elements~~',
'Menu:ServiceFamily' => 'Rodiny služieb',
'Menu:ServiceFamily+' => 'Service families~~',
'Menu:ServiceManagement' => 'Manažment služieb',
'Menu:ServiceManagement+' => 'Service Management Overview~~',
'Menu:ServiceSubcategory' => 'Subkategórie služieb',
'Menu:ServiceSubcategory+' => 'Service subcategories~~',
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'zmluvy podľa úrovne služby',
'UI-ServiceManagementMenu-ContractsByStatus' => 'zmluvy podla stavu',
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'zmluvy končiace za menej ako 30 dní',
]);

View File

@@ -3,415 +3,316 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ServiceManagement' => 'Manažment služieb',
'Menu:ServiceManagement+' => '',
'Menu:Service:Overview' => 'Prehľad',
'Menu:Service:Overview+' => '',
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'zmluvy podľa úrovne služby',
'UI-ServiceManagementMenu-ContractsByStatus' => 'zmluvy podla stavu',
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'zmluvy končiace za menej ako 30 dní',
'Menu:ProviderContract' => 'Poskytovateľské zmluvy',
'Menu:ProviderContract+' => '',
'Menu:CustomerContract' => 'Zákaznícke zmluvy',
'Menu:CustomerContract+' => '',
'Menu:ServiceSubcategory' => 'Subkategórie služieb',
'Menu:ServiceSubcategory+' => '',
'Menu:Service' => 'Služby',
'Menu:Service+' => '',
'Menu:ServiceElement' => 'Prvky služby',
'Menu:ServiceElement+' => '',
'Menu:SLA' => 'SLAs',
'Menu:SLA+' => '',
'Menu:SLT' => 'SLTs',
'Menu:SLT+' => '',
'Menu:DeliveryModel' => 'Typy dodávky',
'Menu:DeliveryModel+' => '',
'Menu:ServiceFamily' => 'Rodiny služieb',
'Menu:ServiceFamily+' => '',
'Menu:Procedure' => 'Katalóg procedúr',
'Menu:Procedure+' => '',
'Contract:baseinfo' => 'General information~~',
'Contract:moreinfo' => 'Contractual information~~',
'Contract:cost' => 'Cost information~~',
));
//
// Class: Organization
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
));
//
// Class: ContractType
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ContractType' => 'Typ zmluvy',
'Class:ContractType+' => '',
));
//
// Class: Contract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Contract' => 'zmluva',
'Class:Contract+' => '',
'Class:Contract/Attribute:name' => 'Názov',
'Class:Contract/Attribute:name+' => '',
'Class:Contract/Attribute:org_id' => 'Zákazník',
'Class:Contract/Attribute:org_id+' => '',
'Class:Contract/Attribute:organization_name' => 'Meno zákazníka',
'Class:Contract/Attribute:organization_name+' => '',
'Class:Contract+' => '~~',
'Class:Contract/Attribute:billing_frequency' => 'Frekvencia faktúrovania',
'Class:Contract/Attribute:billing_frequency+' => '~~',
'Class:Contract/Attribute:contacts_list' => 'Kontakty',
'Class:Contract/Attribute:contacts_list+' => 'All the contacts for this customer contract~~',
'Class:Contract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:Contract/Attribute:contracttype_id+' => '~~',
'Class:Contract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:Contract/Attribute:contracttype_name+' => '~~',
'Class:Contract/Attribute:cost' => 'Cena',
'Class:Contract/Attribute:cost+' => '~~',
'Class:Contract/Attribute:cost_currency' => 'Mena ceny',
'Class:Contract/Attribute:cost_currency+' => '~~',
'Class:Contract/Attribute:cost_currency/Value:dollars' => 'USD',
'Class:Contract/Attribute:cost_currency/Value:dollars+' => '~~',
'Class:Contract/Attribute:cost_currency/Value:euros' => 'EUR',
'Class:Contract/Attribute:cost_currency/Value:euros+' => '~~',
'Class:Contract/Attribute:cost_unit' => 'Cenová jednotka',
'Class:Contract/Attribute:cost_unit+' => '~~',
'Class:Contract/Attribute:description' => 'Popis',
'Class:Contract/Attribute:description+' => '~~',
'Class:Contract/Attribute:documents_list' => 'Zoznam dokumentov',
'Class:Contract/Attribute:documents_list+' => 'All the documents for this customer contract~~',
'Class:Contract/Attribute:description' => 'Popis',
'Class:Contract/Attribute:description+' => '',
'Class:Contract/Attribute:start_date' => 'Dátum začiatku',
'Class:Contract/Attribute:start_date+' => '',
'Class:Contract/Attribute:end_date' => 'Dátum ukončenia',
'Class:Contract/Attribute:end_date+' => '',
'Class:Contract/Attribute:cost' => 'Cena',
'Class:Contract/Attribute:cost+' => '',
'Class:Contract/Attribute:cost_currency' => 'Mena ceny',
'Class:Contract/Attribute:cost_currency+' => '',
'Class:Contract/Attribute:cost_currency/Value:dollars' => 'USD',
'Class:Contract/Attribute:cost_currency/Value:dollars+' => '',
'Class:Contract/Attribute:cost_currency/Value:euros' => 'EUR',
'Class:Contract/Attribute:cost_currency/Value:euros+' => '',
'Class:Contract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:Contract/Attribute:contracttype_id+' => '',
'Class:Contract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:Contract/Attribute:contracttype_name+' => '',
'Class:Contract/Attribute:billing_frequency' => 'Frekvencia faktúrovania',
'Class:Contract/Attribute:billing_frequency+' => '',
'Class:Contract/Attribute:cost_unit' => 'Cenová jednotka',
'Class:Contract/Attribute:cost_unit+' => '',
'Class:Contract/Attribute:provider_id' => 'Poskytovateľ',
'Class:Contract/Attribute:provider_id+' => '',
'Class:Contract/Attribute:provider_name' => 'Meno poskytovateľa',
'Class:Contract/Attribute:provider_name+' => '',
'Class:Contract/Attribute:status' => 'Stav',
'Class:Contract/Attribute:status+' => '',
'Class:Contract/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Contract/Attribute:status/Value:implementation+' => '',
'Class:Contract/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Contract/Attribute:status/Value:obsolete+' => '',
'Class:Contract/Attribute:status/Value:production' => 'Produkcia',
'Class:Contract/Attribute:status/Value:production+' => '',
'Class:Contract/Attribute:end_date+' => '~~',
'Class:Contract/Attribute:finalclass' => 'Typ',
'Class:Contract/Attribute:finalclass+' => '',
));
//
// Class: CustomerContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Contract/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Contract/Attribute:name' => 'Názov',
'Class:Contract/Attribute:name+' => '~~',
'Class:Contract/Attribute:org_id' => 'Zákazník',
'Class:Contract/Attribute:org_id+' => '~~',
'Class:Contract/Attribute:organization_name' => 'Meno zákazníka',
'Class:Contract/Attribute:organization_name+' => 'Common name~~',
'Class:Contract/Attribute:provider_id' => 'Poskytovateľ',
'Class:Contract/Attribute:provider_id+' => '~~',
'Class:Contract/Attribute:provider_name' => 'Meno poskytovateľa',
'Class:Contract/Attribute:provider_name+' => 'Common name~~',
'Class:Contract/Attribute:start_date' => 'Dátum začiatku',
'Class:Contract/Attribute:start_date+' => '~~',
'Class:Contract/Attribute:status' => 'Stav',
'Class:Contract/Attribute:status+' => '~~',
'Class:Contract/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Contract/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:Contract/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Contract/Attribute:status/Value:obsolete+' => 'obsolete~~',
'Class:Contract/Attribute:status/Value:production' => 'Produkcia',
'Class:Contract/Attribute:status/Value:production+' => 'production~~',
'Class:ContractType' => 'Typ zmluvy',
'Class:ContractType+' => '~~',
'Class:CustomerContract' => 'Zákaznícka zmluva',
'Class:CustomerContract+' => '',
'Class:CustomerContract+' => '~~',
'Class:CustomerContract/Attribute:services_list' => 'Služby',
'Class:CustomerContract/Attribute:services_list+' => 'All the services purchased for this contract~~',
));
//
// Class: ProviderContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DeliveryModel' => 'Model dodávky',
'Class:DeliveryModel+' => '~~',
'Class:DeliveryModel/Attribute:contacts_list' => 'Kontakty',
'Class:DeliveryModel/Attribute:contacts_list+' => 'All the contacts (Teams and Person) for this delivery model~~',
'Class:DeliveryModel/Attribute:customers_list' => 'Zákazníci',
'Class:DeliveryModel/Attribute:customers_list+' => 'All the customers having this delivering model~~',
'Class:DeliveryModel/Attribute:description' => 'Popis',
'Class:DeliveryModel/Attribute:description+' => '~~',
'Class:DeliveryModel/Attribute:name' => 'Názov',
'Class:DeliveryModel/Attribute:name+' => '~~',
'Class:DeliveryModel/Attribute:org_id' => 'Organizácia',
'Class:DeliveryModel/Attribute:org_id+' => '~~',
'Class:DeliveryModel/Attribute:organization_name' => 'Názov organizácie',
'Class:DeliveryModel/Attribute:organization_name+' => 'Common name~~',
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '~~',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
'Class:ProviderContract' => 'Poskytovateľská zmluva',
'Class:ProviderContract+' => '',
'Class:ProviderContract+' => '~~',
'Class:ProviderContract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:ProviderContract/Attribute:contracttype_id+' => '~~',
'Class:ProviderContract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:ProviderContract/Attribute:contracttype_name+' => '~~',
'Class:ProviderContract/Attribute:coverage' => 'Časy pokrytia',
'Class:ProviderContract/Attribute:coverage+' => '~~',
'Class:ProviderContract/Attribute:functionalcis_list' => 'Zariadenia',
'Class:ProviderContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this provider contract~~',
'Class:ProviderContract/Attribute:services_list' => 'Services~~',
'Class:ProviderContract/Attribute:services_list+' => 'All the services purchased with this contract~~',
'Class:ProviderContract/Attribute:sla' => 'SLA',
'Class:ProviderContract/Attribute:sla+' => '',
'Class:ProviderContract/Attribute:coverage' => 'Časy pokrytia',
'Class:ProviderContract/Attribute:coverage+' => '',
'Class:ProviderContract/Attribute:contracttype_id' => 'Typ zmluvy',
'Class:ProviderContract/Attribute:contracttype_id+' => '',
'Class:ProviderContract/Attribute:contracttype_name' => 'Názov typu zmluvy',
'Class:ProviderContract/Attribute:contracttype_name+' => '',
));
//
// Class: lnkContactToContract
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContactToContract' => 'väzba - Kontakt / zmluva',
'Class:lnkContactToContract+' => '',
'Class:lnkContactToContract/Name' => '%1$s / %2$s~~',
'Class:lnkContactToContract/Attribute:contract_id' => 'zmluva',
'Class:lnkContactToContract/Attribute:contract_id+' => '',
'Class:lnkContactToContract/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContactToContract/Attribute:contract_name+' => '',
'Class:lnkContactToContract/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToContract/Attribute:contact_id+' => '',
'Class:lnkContactToContract/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToContract/Attribute:contact_name+' => '',
));
//
// Class: lnkContractToDocument
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContractToDocument' => 'väzba - zmluva / Dokument',
'Class:lnkContractToDocument+' => '',
'Class:lnkContractToDocument/Name' => '%1$s / %2$s~~',
'Class:lnkContractToDocument/Attribute:contract_id' => 'zmluva',
'Class:lnkContractToDocument/Attribute:contract_id+' => '',
'Class:lnkContractToDocument/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContractToDocument/Attribute:contract_name+' => '',
'Class:lnkContractToDocument/Attribute:document_id' => 'Dokument',
'Class:lnkContractToDocument/Attribute:document_id+' => '',
'Class:lnkContractToDocument/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkContractToDocument/Attribute:document_name+' => '',
));
//
// Class: ServiceFamily
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ServiceFamily' => 'Kategória služieb',
'Class:ServiceFamily+' => '',
'Class:ServiceFamily/Attribute:name' => 'Názov',
'Class:ServiceFamily/Attribute:name+' => '',
'Class:ServiceFamily/Attribute:icon' => 'Icon~~',
'Class:ServiceFamily/Attribute:icon+' => '~~',
'Class:ServiceFamily/Attribute:services_list' => 'Služby',
'Class:ServiceFamily/Attribute:services_list+' => 'All the services in this category~~',
));
//
// Class: Service
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Service' => 'Služby',
'Class:Service+' => '',
'Class:Service/ComplementaryName' => '%1$s - %2$s~~',
'Class:Service/Attribute:name' => 'Názov',
'Class:Service/Attribute:name+' => '',
'Class:Service/Attribute:org_id' => 'Poskytovateľ',
'Class:Service/Attribute:org_id+' => '',
'Class:Service/Attribute:organization_name' => 'Meno poskytovateľa',
'Class:Service/Attribute:organization_name+' => '',
'Class:Service/Attribute:servicefamily_id' => 'Kategória služieb',
'Class:Service/Attribute:servicefamily_id+' => '',
'Class:Service/Attribute:servicefamily_name' => 'Názov rodiny služieb',
'Class:Service/Attribute:servicefamily_name+' => '',
'Class:Service/Attribute:description' => 'Popis',
'Class:Service/Attribute:description+' => '',
'Class:Service/Attribute:documents_list' => 'Dokumenty',
'Class:Service/Attribute:documents_list+' => 'All the documents linked to the service~~',
'Class:Service/Attribute:contacts_list' => 'Kontakty',
'Class:Service/Attribute:contacts_list+' => 'All the contacts for this service~~',
'Class:Service/Attribute:status' => 'Stav',
'Class:Service/Attribute:status+' => '',
'Class:Service/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Service/Attribute:status/Value:implementation+' => '',
'Class:Service/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:Service/Attribute:status/Value:obsolete+' => '',
'Class:Service/Attribute:status/Value:production' => 'Produkcia',
'Class:Service/Attribute:status/Value:production+' => '',
'Class:Service/Attribute:icon' => 'Icon~~',
'Class:Service/Attribute:icon+' => '~~',
'Class:Service/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:Service/Attribute:customercontracts_list+' => 'All the customer contracts that have purchased this service~~',
'Class:Service/Attribute:providercontracts_list' => 'Poskytovateľské zmluvy',
'Class:Service/Attribute:providercontracts_list+' => 'All the provider contracts to support this service~~',
'Class:Service/Attribute:functionalcis_list' => 'Zariadenia',
'Class:Service/Attribute:functionalcis_list+' => 'All the configuration items that are used to provide this service~~',
'Class:Service/Attribute:servicesubcategories_list' => 'Podkategórie služieb',
'Class:Service/Attribute:servicesubcategories_list+' => 'All the sub categories for this service~~',
));
//
// Class: lnkDocumentToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkDocumentToService' => 'väzba - Dokument / Služba',
'Class:lnkDocumentToService+' => '',
'Class:lnkDocumentToService/Name' => '%1$s / %2$s~~',
'Class:lnkDocumentToService/Attribute:service_id' => 'Služba',
'Class:lnkDocumentToService/Attribute:service_id+' => '',
'Class:lnkDocumentToService/Attribute:service_name' => 'Názov služby',
'Class:lnkDocumentToService/Attribute:service_name+' => '',
'Class:lnkDocumentToService/Attribute:document_id' => 'Dokument',
'Class:lnkDocumentToService/Attribute:document_id+' => '',
'Class:lnkDocumentToService/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkDocumentToService/Attribute:document_name+' => '',
));
//
// Class: lnkContactToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContactToService' => 'väzba - Kontakt / Služba',
'Class:lnkContactToService+' => '',
'Class:lnkContactToService/Name' => '%1$s / %2$s~~',
'Class:lnkContactToService/Attribute:service_id' => 'Služba',
'Class:lnkContactToService/Attribute:service_id+' => '',
'Class:lnkContactToService/Attribute:service_name' => 'Názov služby',
'Class:lnkContactToService/Attribute:service_name+' => '',
'Class:lnkContactToService/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToService/Attribute:contact_id+' => '',
'Class:lnkContactToService/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToService/Attribute:contact_name+' => '',
));
//
// Class: ServiceSubcategory
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ServiceSubcategory' => 'Podkategória služieb',
'Class:ServiceSubcategory+' => '',
'Class:ServiceSubcategory/ComplementaryName' => '%1$s - %2$s~~',
'Class:ServiceSubcategory/Attribute:name' => 'Názov',
'Class:ServiceSubcategory/Attribute:name+' => '',
'Class:ServiceSubcategory/Attribute:description' => 'Popis',
'Class:ServiceSubcategory/Attribute:description+' => '',
'Class:ServiceSubcategory/Attribute:service_id' => 'Služba',
'Class:ServiceSubcategory/Attribute:service_id+' => '',
'Class:ServiceSubcategory/Attribute:service_name' => 'Názov služby',
'Class:ServiceSubcategory/Attribute:service_name+' => '',
'Class:ServiceSubcategory/Attribute:request_type' => 'Typ požiadavky',
'Class:ServiceSubcategory/Attribute:request_type+' => '',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident' => 'Incident',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident+' => '',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request+' => '',
'Class:ServiceSubcategory/Attribute:status' => 'Stav',
'Class:ServiceSubcategory/Attribute:status+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:implementation' => 'Implementácia',
'Class:ServiceSubcategory/Attribute:status/Value:implementation+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete+' => '',
'Class:ServiceSubcategory/Attribute:status/Value:production' => 'Produkcia',
'Class:ServiceSubcategory/Attribute:status/Value:production+' => '',
));
//
// Class: SLA
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ProviderContract/Attribute:sla+' => 'Service Level Agreement~~',
'Class:SLA' => 'SLA',
'Class:SLA+' => '',
'Class:SLA/Attribute:name' => 'Názov',
'Class:SLA/Attribute:name+' => '',
'Class:SLA/Attribute:description' => 'Popis',
'Class:SLA/Attribute:description+' => '',
'Class:SLA/Attribute:org_id' => 'Poskytovateľ',
'Class:SLA/Attribute:org_id+' => '',
'Class:SLA/Attribute:organization_name' => 'Názov organizácie poskytovateľa',
'Class:SLA/Attribute:organization_name+' => '',
'Class:SLA/Attribute:slts_list' => 'SLTs',
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
'Class:SLA+' => '~~',
'Class:SLA/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracted services using this SLA~~',
'Class:SLA/Attribute:description' => 'Popis',
'Class:SLA/Attribute:description+' => '~~',
'Class:SLA/Attribute:name' => 'Názov',
'Class:SLA/Attribute:name+' => '~~',
'Class:SLA/Attribute:org_id' => 'Poskytovateľ',
'Class:SLA/Attribute:org_id+' => '~~',
'Class:SLA/Attribute:organization_name' => 'Názov organizácie poskytovateľa',
'Class:SLA/Attribute:organization_name+' => 'Common name~~',
'Class:SLA/Attribute:slts_list' => 'SLTs',
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
));
//
// Class: SLT
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:SLT' => 'SLT',
'Class:SLT+' => '',
'Class:SLT/Attribute:name' => 'Názov',
'Class:SLT/Attribute:name+' => '',
'Class:SLT/Attribute:priority' => 'Priorita',
'Class:SLT/Attribute:priority+' => '',
'Class:SLT/Attribute:priority/Value:1' => 'Kritická',
'Class:SLT/Attribute:priority/Value:1+' => '',
'Class:SLT/Attribute:priority/Value:2' => 'Vysoká',
'Class:SLT/Attribute:priority/Value:2+' => '',
'Class:SLT/Attribute:priority/Value:3' => 'Stredná',
'Class:SLT/Attribute:priority/Value:3+' => '',
'Class:SLT/Attribute:priority/Value:4' => 'Nízka',
'Class:SLT/Attribute:priority/Value:4+' => '',
'Class:SLT/Attribute:request_type' => 'Typ požiadavky',
'Class:SLT/Attribute:request_type+' => '',
'Class:SLT/Attribute:request_type/Value:incident' => 'Incident',
'Class:SLT/Attribute:request_type/Value:incident+' => '',
'Class:SLT/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:SLT/Attribute:request_type/Value:service_request+' => '',
'Class:SLT+' => '~~',
'Class:SLT/Attribute:metric' => 'Metrika',
'Class:SLT/Attribute:metric+' => '',
'Class:SLT/Attribute:metric+' => '~~',
'Class:SLT/Attribute:metric/Value:tto' => 'TTO',
'Class:SLT/Attribute:metric/Value:tto+' => '',
'Class:SLT/Attribute:metric/Value:tto+' => 'TTO~~',
'Class:SLT/Attribute:metric/Value:ttr' => 'TTR',
'Class:SLT/Attribute:metric/Value:ttr+' => '',
'Class:SLT/Attribute:value' => 'Hodnota',
'Class:SLT/Attribute:value+' => '',
'Class:SLT/Attribute:unit' => 'Jednotka',
'Class:SLT/Attribute:unit+' => '',
'Class:SLT/Attribute:unit/Value:hours' => 'Hodiny',
'Class:SLT/Attribute:unit/Value:hours+' => '',
'Class:SLT/Attribute:unit/Value:minutes' => 'Minúty',
'Class:SLT/Attribute:unit/Value:minutes+' => '',
'Class:SLT/Attribute:metric/Value:ttr+' => 'TTR~~',
'Class:SLT/Attribute:name' => 'Názov',
'Class:SLT/Attribute:name+' => '~~',
'Class:SLT/Attribute:priority' => 'Priorita',
'Class:SLT/Attribute:priority+' => '~~',
'Class:SLT/Attribute:priority/Value:1' => 'Kritická',
'Class:SLT/Attribute:priority/Value:1+' => 'critical~~',
'Class:SLT/Attribute:priority/Value:2' => 'Vysoká',
'Class:SLT/Attribute:priority/Value:2+' => 'high~~',
'Class:SLT/Attribute:priority/Value:3' => 'Stredná',
'Class:SLT/Attribute:priority/Value:3+' => 'medium~~',
'Class:SLT/Attribute:priority/Value:4' => 'Nízka',
'Class:SLT/Attribute:priority/Value:4+' => 'low~~',
'Class:SLT/Attribute:request_type' => 'Typ požiadavky',
'Class:SLT/Attribute:request_type+' => '~~',
'Class:SLT/Attribute:request_type/Value:incident' => 'Incident',
'Class:SLT/Attribute:request_type/Value:incident+' => 'incident~~',
'Class:SLT/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:SLT/Attribute:request_type/Value:service_request+' => 'service request~~',
'Class:SLT/Attribute:slas_list' => 'SLAs~~',
'Class:SLT/Attribute:slas_list+' => 'All the service level agreements using this SLT~~',
));
//
// Class: lnkSLAToSLT
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:SLT/Attribute:unit' => 'Jednotka',
'Class:SLT/Attribute:unit+' => '~~',
'Class:SLT/Attribute:unit/Value:hours' => 'Hodiny',
'Class:SLT/Attribute:unit/Value:hours+' => 'hours~~',
'Class:SLT/Attribute:unit/Value:minutes' => 'Minúty',
'Class:SLT/Attribute:unit/Value:minutes+' => 'minutes~~',
'Class:SLT/Attribute:value' => 'Hodnota',
'Class:SLT/Attribute:value+' => '~~',
'Class:Service' => 'Služby',
'Class:Service+' => '~~',
'Class:Service/Attribute:contacts_list' => 'Kontakty',
'Class:Service/Attribute:contacts_list+' => 'All the contacts for this service~~',
'Class:Service/Attribute:customercontracts_list' => 'Zákaznícke zmluvy',
'Class:Service/Attribute:customercontracts_list+' => 'All the customer contracts that have purchased this service~~',
'Class:Service/Attribute:description' => 'Popis',
'Class:Service/Attribute:description+' => '~~',
'Class:Service/Attribute:documents_list' => 'Dokumenty',
'Class:Service/Attribute:documents_list+' => 'All the documents linked to the service~~',
'Class:Service/Attribute:functionalcis_list' => 'Zariadenia',
'Class:Service/Attribute:functionalcis_list+' => 'All the configuration items that are used to provide this service~~',
'Class:Service/Attribute:icon' => 'Icon~~',
'Class:Service/Attribute:icon+' => '~~',
'Class:Service/Attribute:name' => 'Názov',
'Class:Service/Attribute:name+' => '~~',
'Class:Service/Attribute:org_id' => 'Poskytovateľ',
'Class:Service/Attribute:org_id+' => '~~',
'Class:Service/Attribute:organization_name' => 'Meno poskytovateľa',
'Class:Service/Attribute:organization_name+' => '~~',
'Class:Service/Attribute:providercontracts_list' => 'Poskytovateľské zmluvy',
'Class:Service/Attribute:providercontracts_list+' => 'All the provider contracts to support this service~~',
'Class:Service/Attribute:servicefamily_id' => 'Kategória služieb',
'Class:Service/Attribute:servicefamily_id+' => '~~',
'Class:Service/Attribute:servicefamily_name' => 'Názov rodiny služieb',
'Class:Service/Attribute:servicefamily_name+' => '~~',
'Class:Service/Attribute:servicesubcategories_list' => 'Podkategórie služieb',
'Class:Service/Attribute:servicesubcategories_list+' => 'All the sub categories for this service~~',
'Class:Service/Attribute:status' => 'Stav',
'Class:Service/Attribute:status+' => '~~',
'Class:Service/Attribute:status/Value:implementation' => 'Implementácia',
'Class:Service/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:Service/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:Service/Attribute:status/Value:obsolete+' => '~~',
'Class:Service/Attribute:status/Value:production' => 'Produkcia',
'Class:Service/Attribute:status/Value:production+' => '~~',
'Class:Service/ComplementaryName' => '%1$s - %2$s~~',
'Class:ServiceFamily' => 'Kategória služieb',
'Class:ServiceFamily+' => '~~',
'Class:ServiceFamily/Attribute:icon' => 'Icon~~',
'Class:ServiceFamily/Attribute:icon+' => '~~',
'Class:ServiceFamily/Attribute:name' => 'Názov',
'Class:ServiceFamily/Attribute:name+' => '~~',
'Class:ServiceFamily/Attribute:services_list' => 'Služby',
'Class:ServiceFamily/Attribute:services_list+' => 'All the services in this category~~',
'Class:ServiceSubcategory' => 'Podkategória služieb',
'Class:ServiceSubcategory+' => '~~',
'Class:ServiceSubcategory/Attribute:description' => 'Popis',
'Class:ServiceSubcategory/Attribute:description+' => '~~',
'Class:ServiceSubcategory/Attribute:name' => 'Názov',
'Class:ServiceSubcategory/Attribute:name+' => '~~',
'Class:ServiceSubcategory/Attribute:request_type' => 'Typ požiadavky',
'Class:ServiceSubcategory/Attribute:request_type+' => '~~',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident' => 'Incident',
'Class:ServiceSubcategory/Attribute:request_type/Value:incident+' => 'incident~~',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request' => 'Požiadavka',
'Class:ServiceSubcategory/Attribute:request_type/Value:service_request+' => 'service request~~',
'Class:ServiceSubcategory/Attribute:service_id' => 'Služba',
'Class:ServiceSubcategory/Attribute:service_id+' => '~~',
'Class:ServiceSubcategory/Attribute:service_name' => 'Názov služby',
'Class:ServiceSubcategory/Attribute:service_name+' => '~~',
'Class:ServiceSubcategory/Attribute:status' => 'Stav',
'Class:ServiceSubcategory/Attribute:status+' => '~~',
'Class:ServiceSubcategory/Attribute:status/Value:implementation' => 'Implementácia',
'Class:ServiceSubcategory/Attribute:status/Value:implementation+' => 'implementation~~',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete' => 'Vyradená',
'Class:ServiceSubcategory/Attribute:status/Value:obsolete+' => 'obsolete~~',
'Class:ServiceSubcategory/Attribute:status/Value:production' => 'Produkcia',
'Class:ServiceSubcategory/Attribute:status/Value:production+' => 'production~~',
'Class:ServiceSubcategory/ComplementaryName' => '%1$s - %2$s~~',
'Class:lnkContactToContract' => 'väzba - Kontakt / zmluva',
'Class:lnkContactToContract+' => '~~',
'Class:lnkContactToContract/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToContract/Attribute:contact_id+' => '~~',
'Class:lnkContactToContract/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToContract/Attribute:contact_name+' => '~~',
'Class:lnkContactToContract/Attribute:contract_id' => 'zmluva',
'Class:lnkContactToContract/Attribute:contract_id+' => '~~',
'Class:lnkContactToContract/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContactToContract/Attribute:contract_name+' => '~~',
'Class:lnkContactToContract/Name' => '%1$s / %2$s~~',
'Class:lnkContactToService' => 'väzba - Kontakt / Služba',
'Class:lnkContactToService+' => '~~',
'Class:lnkContactToService/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToService/Attribute:contact_id+' => '~~',
'Class:lnkContactToService/Attribute:contact_name' => 'Názov kontaktu',
'Class:lnkContactToService/Attribute:contact_name+' => '~~',
'Class:lnkContactToService/Attribute:service_id' => 'Služba',
'Class:lnkContactToService/Attribute:service_id+' => '~~',
'Class:lnkContactToService/Attribute:service_name' => 'Názov služby',
'Class:lnkContactToService/Attribute:service_name+' => '~~',
'Class:lnkContactToService/Name' => '%1$s / %2$s~~',
'Class:lnkContractToDocument' => 'väzba - zmluva / Dokument',
'Class:lnkContractToDocument+' => '~~',
'Class:lnkContractToDocument/Attribute:contract_id' => 'zmluva',
'Class:lnkContractToDocument/Attribute:contract_id+' => '~~',
'Class:lnkContractToDocument/Attribute:contract_name' => 'Názov zmluvy',
'Class:lnkContractToDocument/Attribute:contract_name+' => '~~',
'Class:lnkContractToDocument/Attribute:document_id' => 'Dokument',
'Class:lnkContractToDocument/Attribute:document_id+' => '~~',
'Class:lnkContractToDocument/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkContractToDocument/Attribute:document_name+' => '~~',
'Class:lnkContractToDocument/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToService' => 'väzba - Zákaznícka zmluva / Služba',
'Class:lnkCustomerContractToService+' => '~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_id' => 'Zákaznícka zmluva',
'Class:lnkCustomerContractToService/Attribute:customercontract_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_name' => 'Názov zákazníckeho zmluvy',
'Class:lnkCustomerContractToService/Attribute:customercontract_name+' => '~~',
'Class:lnkCustomerContractToService/Attribute:service_id' => 'Služba',
'Class:lnkCustomerContractToService/Attribute:service_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkCustomerContractToService/Attribute:service_name+' => '~~',
'Class:lnkCustomerContractToService/Attribute:sla_id' => 'SLA',
'Class:lnkCustomerContractToService/Attribute:sla_id+' => '~~',
'Class:lnkCustomerContractToService/Attribute:sla_name' => 'SLA Názov',
'Class:lnkCustomerContractToService/Attribute:sla_name+' => '~~',
'Class:lnkCustomerContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkDeliveryModelToContact' => 'väzba - Model dodávky / Kontakt',
'Class:lnkDeliveryModelToContact+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:contact_id' => 'Kontakt',
'Class:lnkDeliveryModelToContact/Attribute:contact_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:contact_name' => 'Meno kontaktu',
'Class:lnkDeliveryModelToContact/Attribute:contact_name+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name' => 'Názov typu dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:role_id' => 'Rola',
'Class:lnkDeliveryModelToContact/Attribute:role_id+' => '~~',
'Class:lnkDeliveryModelToContact/Attribute:role_name' => 'Názov role',
'Class:lnkDeliveryModelToContact/Attribute:role_name+' => '~~',
'Class:lnkDeliveryModelToContact/Name' => '%1$s / %2$s~~',
'Class:lnkDocumentToService' => 'väzba - Dokument / Služba',
'Class:lnkDocumentToService+' => '~~',
'Class:lnkDocumentToService/Attribute:document_id' => 'Dokument',
'Class:lnkDocumentToService/Attribute:document_id+' => '~~',
'Class:lnkDocumentToService/Attribute:document_name' => 'Názov dokumentu',
'Class:lnkDocumentToService/Attribute:document_name+' => '~~',
'Class:lnkDocumentToService/Attribute:service_id' => 'Služba',
'Class:lnkDocumentToService/Attribute:service_id+' => '~~',
'Class:lnkDocumentToService/Attribute:service_name' => 'Názov služby',
'Class:lnkDocumentToService/Attribute:service_name+' => '~~',
'Class:lnkDocumentToService/Name' => '%1$s / %2$s~~',
'Class:lnkProviderContractToService' => 'väzba - Poskytovateľská zmluva / Služba',
'Class:lnkProviderContractToService+' => '~~',
'Class:lnkProviderContractToService/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkProviderContractToService/Attribute:providercontract_id+' => '~~',
'Class:lnkProviderContractToService/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkProviderContractToService/Attribute:providercontract_name+' => '~~',
'Class:lnkProviderContractToService/Attribute:service_id' => 'Služba',
'Class:lnkProviderContractToService/Attribute:service_id+' => '~~',
'Class:lnkProviderContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkProviderContractToService/Attribute:service_name+' => '~~',
'Class:lnkProviderContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkSLAToSLT' => 'väzba - SLA / SLT',
'Class:lnkSLAToSLT+' => '',
'Class:lnkSLAToSLT/Name' => '%1$s / %2$s~~',
'Class:lnkSLAToSLT+' => '~~',
'Class:lnkSLAToSLT/Attribute:sla_id' => 'SLA',
'Class:lnkSLAToSLT/Attribute:sla_id+' => '',
'Class:lnkSLAToSLT/Attribute:sla_id+' => '~~',
'Class:lnkSLAToSLT/Attribute:sla_name' => 'SLA Názov',
'Class:lnkSLAToSLT/Attribute:sla_name+' => '',
'Class:lnkSLAToSLT/Attribute:sla_name+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_id' => 'SLT',
'Class:lnkSLAToSLT/Attribute:slt_id+' => '',
'Class:lnkSLAToSLT/Attribute:slt_name' => 'SLT Názov',
'Class:lnkSLAToSLT/Attribute:slt_name+' => '',
'Class:lnkSLAToSLT/Attribute:slt_id+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_metric' => 'Slt metric~~',
'Class:lnkSLAToSLT/Attribute:slt_metric+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_name' => 'SLT Názov',
'Class:lnkSLAToSLT/Attribute:slt_name+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type' => 'Slt request type~~',
'Class:lnkSLAToSLT/Attribute:slt_request_type+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_ticket_priority' => 'Slt ticket priority~~',
@@ -420,87 +321,35 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkSLAToSLT/Attribute:slt_value+' => '~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit' => 'Slt value unit~~',
'Class:lnkSLAToSLT/Attribute:slt_value_unit+' => '~~',
));
//
// Class: lnkCustomerContractToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkCustomerContractToService' => 'väzba - Zákaznícka zmluva / Služba',
'Class:lnkCustomerContractToService+' => '',
'Class:lnkCustomerContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkCustomerContractToService/Attribute:customercontract_id' => 'Zákaznícka zmluva',
'Class:lnkCustomerContractToService/Attribute:customercontract_id+' => '',
'Class:lnkCustomerContractToService/Attribute:customercontract_name' => 'Názov zákazníckeho zmluvy',
'Class:lnkCustomerContractToService/Attribute:customercontract_name+' => '',
'Class:lnkCustomerContractToService/Attribute:service_id' => 'Služba',
'Class:lnkCustomerContractToService/Attribute:service_id+' => '',
'Class:lnkCustomerContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkCustomerContractToService/Attribute:service_name+' => '',
'Class:lnkCustomerContractToService/Attribute:sla_id' => 'SLA',
'Class:lnkCustomerContractToService/Attribute:sla_id+' => '',
'Class:lnkCustomerContractToService/Attribute:sla_name' => 'SLA Názov',
'Class:lnkCustomerContractToService/Attribute:sla_name+' => '',
));
//
// Class: lnkProviderContractToService
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkProviderContractToService' => 'väzba - Poskytovateľská zmluva / Služba',
'Class:lnkProviderContractToService+' => '',
'Class:lnkProviderContractToService/Name' => '%1$s / %2$s~~',
'Class:lnkProviderContractToService/Attribute:service_id' => 'Služba',
'Class:lnkProviderContractToService/Attribute:service_id+' => '',
'Class:lnkProviderContractToService/Attribute:service_name' => 'Názov služby',
'Class:lnkProviderContractToService/Attribute:service_name+' => '',
'Class:lnkProviderContractToService/Attribute:providercontract_id' => 'Poskytovateľská zmluva',
'Class:lnkProviderContractToService/Attribute:providercontract_id+' => '',
'Class:lnkProviderContractToService/Attribute:providercontract_name' => 'Názov poskytovateľského zmluvy',
'Class:lnkProviderContractToService/Attribute:providercontract_name+' => '',
));
//
// Class: DeliveryModel
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DeliveryModel' => 'Model dodávky',
'Class:DeliveryModel+' => '',
'Class:DeliveryModel/Attribute:name' => 'Názov',
'Class:DeliveryModel/Attribute:name+' => '',
'Class:DeliveryModel/Attribute:org_id' => 'Organizácia',
'Class:DeliveryModel/Attribute:org_id+' => '',
'Class:DeliveryModel/Attribute:organization_name' => 'Názov organizácie',
'Class:DeliveryModel/Attribute:organization_name+' => '',
'Class:DeliveryModel/Attribute:description' => 'Popis',
'Class:DeliveryModel/Attribute:description+' => '',
'Class:DeliveryModel/Attribute:contacts_list' => 'Kontakty',
'Class:DeliveryModel/Attribute:contacts_list+' => 'All the contacts (Teams and Person) for this delivery model~~',
'Class:DeliveryModel/Attribute:customers_list' => 'Zákazníci',
'Class:DeliveryModel/Attribute:customers_list+' => 'All the customers having this delivering model~~',
));
//
// Class: lnkDeliveryModelToContact
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkDeliveryModelToContact' => 'väzba - Model dodávky / Kontakt',
'Class:lnkDeliveryModelToContact+' => '',
'Class:lnkDeliveryModelToContact/Name' => '%1$s / %2$s~~',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name' => 'Názov typu dodávky',
'Class:lnkDeliveryModelToContact/Attribute:deliverymodel_name+' => '',
'Class:lnkDeliveryModelToContact/Attribute:contact_id' => 'Kontakt',
'Class:lnkDeliveryModelToContact/Attribute:contact_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:contact_name' => 'Meno kontaktu',
'Class:lnkDeliveryModelToContact/Attribute:contact_name+' => '',
'Class:lnkDeliveryModelToContact/Attribute:role_id' => 'Rola',
'Class:lnkDeliveryModelToContact/Attribute:role_id+' => '',
'Class:lnkDeliveryModelToContact/Attribute:role_name' => 'Názov role',
'Class:lnkDeliveryModelToContact/Attribute:role_name+' => '',
));
'Class:lnkSLAToSLT/Name' => '%1$s / %2$s~~',
'Contract:baseinfo' => 'General information~~',
'Contract:cost' => 'Cost information~~',
'Contract:moreinfo' => 'Contractual information~~',
'Menu:CustomerContract' => 'Zákaznícke zmluvy',
'Menu:CustomerContract+' => 'Customer contracts~~',
'Menu:DeliveryModel' => 'Typy dodávky',
'Menu:DeliveryModel+' => 'Delivery models~~',
'Menu:Procedure' => 'Katalóg procedúr',
'Menu:Procedure+' => 'All procedures catalog~~',
'Menu:ProviderContract' => 'Poskytovateľské zmluvy',
'Menu:ProviderContract+' => 'Provider contracts~~',
'Menu:SLA' => 'SLAs',
'Menu:SLA+' => 'Service Level Agreements~~',
'Menu:SLT' => 'SLTs',
'Menu:SLT+' => 'Service Level Targets~~',
'Menu:Service' => 'Služby',
'Menu:Service+' => 'Services~~',
'Menu:Service:Overview' => 'Prehľad',
'Menu:Service:Overview+' => '~~',
'Menu:ServiceElement' => 'Prvky služby',
'Menu:ServiceElement+' => 'Sevice elements~~',
'Menu:ServiceFamily' => 'Rodiny služieb',
'Menu:ServiceFamily+' => 'Service families~~',
'Menu:ServiceManagement' => 'Manažment služieb',
'Menu:ServiceManagement+' => 'Service management overview~~',
'Menu:ServiceSubcategory' => 'Subkategórie služieb',
'Menu:ServiceSubcategory+' => 'Service subcategories~~',
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'zmluvy podľa úrovne služby',
'UI-ServiceManagementMenu-ContractsByStatus' => 'zmluvy podla stavu',
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'zmluvy končiace za menej ako 30 dní',
]);

View File

@@ -1,369 +1,249 @@
<?php
/**
* Localized data
* @author Benjamin Planque <benjamin.planque@combodo.com>
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
//////////////////////////////////////////////////////////////////////
// Note: The classes have been grouped by categories: bizmodel
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Classes in 'bizmodel'
//////////////////////////////////////////////////////////////////////
//
//
// Class: Organization
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Organization' => 'Organizácia',
'Class:Organization+' => '',
'Class:Organization/Attribute:name' => 'Názov',
'Class:Organization/Attribute:name+' => '',
'Class:Organization/Attribute:code' => 'Kód',
'Class:Organization/Attribute:code+' => '',
'Class:Organization/Attribute:status' => 'Stav',
'Class:Organization/Attribute:status+' => '',
'Class:Organization/Attribute:status/Value:active' => 'Aktívna',
'Class:Organization/Attribute:status/Value:active+' => '',
'Class:Organization/Attribute:status/Value:inactive' => 'Neaktívna',
'Class:Organization/Attribute:status/Value:inactive+' => '',
'Class:Organization/Attribute:parent_id' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_id+' => '',
'Class:Organization/Attribute:parent_name' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_name+' => '',
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
'Class:Organization/Attribute:deliverymodel_name+' => '',
'Class:Organization/Attribute:parent_id_friendlyname' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_id_friendlyname+' => '',
'Class:Organization/Attribute:overview' => 'Overview~~',
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
));
//
// Class: Location
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Location' => 'Poloha',
'Class:Location+' => '',
'Class:Location/Attribute:name' => 'Názov',
'Class:Location/Attribute:name+' => '',
'Class:Location/Attribute:status' => 'Stav',
'Class:Location/Attribute:status+' => '',
'Class:Location/Attribute:status/Value:active' => 'Aktívna',
'Class:Location/Attribute:status/Value:active+' => '',
'Class:Location/Attribute:status/Value:inactive' => 'Neaktívna',
'Class:Location/Attribute:status/Value:inactive+' => '',
'Class:Location/Attribute:org_id' => 'Organizácia vlastníka',
'Class:Location/Attribute:org_id+' => '',
'Class:Location/Attribute:org_name' => 'Názov organizácie vlastníka',
'Class:Location/Attribute:org_name+' => '',
'Class:Location/Attribute:address' => 'Adresa',
'Class:Location/Attribute:address+' => '',
'Class:Location/Attribute:postal_code' => 'PSČ',
'Class:Location/Attribute:postal_code+' => '',
'Class:Location/Attribute:city' => 'Mesto',
'Class:Location/Attribute:city+' => '',
'Class:Location/Attribute:country' => 'Štát',
'Class:Location/Attribute:country+' => '',
'Class:Location/Attribute:physicaldevice_list' => 'Zariadenia',
'Class:Location/Attribute:physicaldevice_list+' => 'All the devices in this location~~',
'Class:Location/Attribute:person_list' => 'Kontakty',
'Class:Location/Attribute:person_list+' => 'All the contacts located on this location~~',
));
//
// Class: Contact
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
* @author Benjamin Planque <benjamin.planque@combodo.com>
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:Contact' => 'Kontakt',
'Class:Contact+' => '',
'Class:Contact/ComplementaryName' => '%1$s - %2$s~~',
'Class:Contact/Attribute:name' => 'Meno',
'Class:Contact/Attribute:name+' => '',
'Class:Contact/Attribute:status' => 'Stav',
'Class:Contact/Attribute:status+' => '',
'Class:Contact/Attribute:status/Value:active' => 'Aktívny',
'Class:Contact/Attribute:status/Value:active+' => '',
'Class:Contact/Attribute:status/Value:inactive' => 'Neaktívny',
'Class:Contact/Attribute:status/Value:inactive+' => '',
'Class:Contact/Attribute:org_id' => 'Organizácia',
'Class:Contact/Attribute:org_id+' => '',
'Class:Contact/Attribute:org_name' => 'Názov Organizácie',
'Class:Contact/Attribute:org_name+' => '',
'Class:Contact/Attribute:email' => 'Email',
'Class:Contact/Attribute:email+' => '',
'Class:Contact/Attribute:phone' => 'Telefón',
'Class:Contact/Attribute:phone+' => '',
'Class:Contact/Attribute:notify' => 'Upozornenie',
'Class:Contact/Attribute:notify+' => '',
'Class:Contact/Attribute:notify/Value:no' => 'nie',
'Class:Contact/Attribute:notify/Value:no+' => '',
'Class:Contact/Attribute:notify/Value:yes' => 'áno',
'Class:Contact/Attribute:notify/Value:yes+' => '',
'Class:Contact/Attribute:function' => 'Funkcia',
'Class:Contact/Attribute:function+' => '',
'Class:Contact+' => '~~',
'Class:Contact/Attribute:cis_list' => 'Zariadenia',
'Class:Contact/Attribute:cis_list+' => 'All the configuration items linked to this contact~~',
'Class:Contact/Attribute:email' => 'Email',
'Class:Contact/Attribute:email+' => '~~',
'Class:Contact/Attribute:finalclass' => 'Typ kontaktu',
'Class:Contact/Attribute:finalclass+' => '',
));
//
// Class: Person
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Contact/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Contact/Attribute:function' => 'Funkcia',
'Class:Contact/Attribute:function+' => '~~',
'Class:Contact/Attribute:name' => 'Meno',
'Class:Contact/Attribute:name+' => '~~',
'Class:Contact/Attribute:notify' => 'Upozornenie',
'Class:Contact/Attribute:notify+' => 'Flag which can be used by each notification~~',
'Class:Contact/Attribute:notify/Value:no' => 'nie',
'Class:Contact/Attribute:notify/Value:no+' => 'no~~',
'Class:Contact/Attribute:notify/Value:yes' => 'áno',
'Class:Contact/Attribute:notify/Value:yes+' => 'yes~~',
'Class:Contact/Attribute:org_id' => 'Organizácia',
'Class:Contact/Attribute:org_id+' => '~~',
'Class:Contact/Attribute:org_name' => 'Názov Organizácie',
'Class:Contact/Attribute:org_name+' => '~~',
'Class:Contact/Attribute:phone' => 'Telefón',
'Class:Contact/Attribute:phone+' => '~~',
'Class:Contact/Attribute:status' => 'Stav',
'Class:Contact/Attribute:status+' => '~~',
'Class:Contact/Attribute:status/Value:active' => 'Aktívny',
'Class:Contact/Attribute:status/Value:active+' => 'Active~~',
'Class:Contact/Attribute:status/Value:inactive' => 'Neaktívny',
'Class:Contact/Attribute:status/Value:inactive+' => 'Inactive~~',
'Class:Contact/ComplementaryName' => '%1$s - %2$s~~',
'Class:ContactType' => 'Typ kontaktu',
'Class:ContactType+' => '~~',
'Class:Document' => 'Dokument',
'Class:Document+' => '~~',
'Class:Document/Attribute:cis_list' => 'Komponenty',
'Class:Document/Attribute:cis_list+' => 'All the configuration items linked to this document~~',
'Class:Document/Attribute:description' => 'Popis',
'Class:Document/Attribute:description+' => '~~',
'Class:Document/Attribute:documenttype_id' => 'Typ dokumentu',
'Class:Document/Attribute:documenttype_id+' => '~~',
'Class:Document/Attribute:documenttype_name' => 'Názov typu dokumentu',
'Class:Document/Attribute:documenttype_name+' => '~~',
'Class:Document/Attribute:finalclass' => 'Typ dokumentu',
'Class:Document/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Document/Attribute:name' => 'Názov',
'Class:Document/Attribute:name+' => '~~',
'Class:Document/Attribute:org_id' => 'Organizácia',
'Class:Document/Attribute:org_id+' => '~~',
'Class:Document/Attribute:org_name' => 'Názov Organizácie',
'Class:Document/Attribute:org_name+' => '~~',
'Class:Document/Attribute:status' => 'Stav',
'Class:Document/Attribute:status+' => '~~',
'Class:Document/Attribute:status/Value:draft' => 'Návrh',
'Class:Document/Attribute:status/Value:draft+' => '~~',
'Class:Document/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Document/Attribute:status/Value:obsolete+' => '~~',
'Class:Document/Attribute:status/Value:published' => 'Publikovaný',
'Class:Document/Attribute:status/Value:published+' => '~~',
'Class:Document/Attribute:version' => 'Version~~',
'Class:Document/Attribute:version+' => '~~',
'Class:Document/ComplementaryName' => '%1$s - %2$s - %3$s~~',
'Class:DocumentFile' => 'Dokumentový súbor',
'Class:DocumentFile+' => '~~',
'Class:DocumentFile/Attribute:file' => 'Súbor',
'Class:DocumentFile/Attribute:file+' => '~~',
'Class:DocumentNote' => 'Poznámka dokumentu',
'Class:DocumentNote+' => '~~',
'Class:DocumentNote/Attribute:text' => 'Text',
'Class:DocumentNote/Attribute:text+' => '~~',
'Class:DocumentType' => 'Typ dokumentu',
'Class:DocumentType+' => '~~',
'Class:DocumentWeb' => 'Web stránka dokumentu',
'Class:DocumentWeb+' => '~~',
'Class:DocumentWeb/Attribute:url' => 'URL',
'Class:DocumentWeb/Attribute:url+' => '~~',
'Class:Location' => 'Poloha',
'Class:Location+' => 'Any type of location: Region, Country, City, Site, Building, Floor, Room, Rack,...~~',
'Class:Location/Attribute:address' => 'Adresa',
'Class:Location/Attribute:address+' => 'Postal address~~',
'Class:Location/Attribute:city' => 'Mesto',
'Class:Location/Attribute:city+' => '~~',
'Class:Location/Attribute:country' => 'Štát',
'Class:Location/Attribute:country+' => '~~',
'Class:Location/Attribute:name' => 'Názov',
'Class:Location/Attribute:name+' => '~~',
'Class:Location/Attribute:org_id' => 'Organizácia vlastníka',
'Class:Location/Attribute:org_id+' => '~~',
'Class:Location/Attribute:org_name' => 'Názov organizácie vlastníka',
'Class:Location/Attribute:org_name+' => '~~',
'Class:Location/Attribute:person_list' => 'Kontakty',
'Class:Location/Attribute:person_list+' => 'All the contacts located on this location~~',
'Class:Location/Attribute:physicaldevice_list' => 'Zariadenia',
'Class:Location/Attribute:physicaldevice_list+' => 'All the devices in this location~~',
'Class:Location/Attribute:postal_code' => 'PSČ',
'Class:Location/Attribute:postal_code+' => 'ZIP/Postal code~~',
'Class:Location/Attribute:status' => 'Stav',
'Class:Location/Attribute:status+' => '~~',
'Class:Location/Attribute:status/Value:active' => 'Aktívna',
'Class:Location/Attribute:status/Value:active+' => 'Active~~',
'Class:Location/Attribute:status/Value:inactive' => 'Neaktívna',
'Class:Location/Attribute:status/Value:inactive+' => 'Inactive~~',
'Class:Organization' => 'Organizácia',
'Class:Organization+' => '~~',
'Class:Organization/Attribute:code' => 'Kód',
'Class:Organization/Attribute:code+' => 'Organization code (Siret, DUNS,...)~~',
'Class:Organization/Attribute:deliverymodel_id' => 'Model dodávky',
'Class:Organization/Attribute:deliverymodel_id+' => '~~',
'Class:Organization/Attribute:deliverymodel_name' => 'Názov modelu dodávky',
'Class:Organization/Attribute:deliverymodel_name+' => '~~',
'Class:Organization/Attribute:name' => 'Názov',
'Class:Organization/Attribute:name+' => 'Common name~~',
'Class:Organization/Attribute:overview' => 'Overview~~',
'Class:Organization/Attribute:parent_id' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_id+' => 'Parent organization~~',
'Class:Organization/Attribute:parent_id_friendlyname' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_id_friendlyname+' => 'Parent organization~~',
'Class:Organization/Attribute:parent_name' => 'Nadradená organizácia',
'Class:Organization/Attribute:parent_name+' => 'Name of the parent organization~~',
'Class:Organization/Attribute:status' => 'Stav',
'Class:Organization/Attribute:status+' => '~~',
'Class:Organization/Attribute:status/Value:active' => 'Aktívna',
'Class:Organization/Attribute:status/Value:active+' => 'Active~~',
'Class:Organization/Attribute:status/Value:inactive' => 'Neaktívna',
'Class:Organization/Attribute:status/Value:inactive+' => 'Inactive~~',
'Class:Person' => 'Osoba',
'Class:Person+' => '',
'Class:Person/ComplementaryName' => '%1$s - %2$s~~',
'Class:Person/Attribute:name' => 'Priezvisko',
'Class:Person/Attribute:name+' => '',
'Class:Person/Attribute:first_name' => 'Krstné meno',
'Class:Person/Attribute:first_name+' => '',
'Class:Person+' => '~~',
'Class:Person/Attribute:employee_number' => 'Číslo zamestnanca',
'Class:Person/Attribute:employee_number+' => '',
'Class:Person/Attribute:mobile_phone' => 'Telefónne číslo',
'Class:Person/Attribute:mobile_phone+' => '',
'Class:Person/Attribute:employee_number+' => '~~',
'Class:Person/Attribute:first_name' => 'Krstné meno',
'Class:Person/Attribute:first_name+' => '~~',
'Class:Person/Attribute:location_id' => 'Poloha',
'Class:Person/Attribute:location_id+' => '',
'Class:Person/Attribute:location_id+' => '~~',
'Class:Person/Attribute:location_name' => 'Názov lokality',
'Class:Person/Attribute:location_name+' => '',
'Class:Person/Attribute:location_name+' => '~~',
'Class:Person/Attribute:manager_id' => 'Manažér',
'Class:Person/Attribute:manager_id+' => '',
'Class:Person/Attribute:manager_id+' => '~~',
'Class:Person/Attribute:manager_id_friendlyname' => 'Ľahko čitateľné meno manažéra',
'Class:Person/Attribute:manager_id_friendlyname+' => '~~',
'Class:Person/Attribute:manager_name' => 'Meno manažéra',
'Class:Person/Attribute:manager_name+' => '',
'Class:Person/Attribute:manager_name+' => '~~',
'Class:Person/Attribute:mobile_phone' => 'Telefónne číslo',
'Class:Person/Attribute:mobile_phone+' => '~~',
'Class:Person/Attribute:name' => 'Priezvisko',
'Class:Person/Attribute:name+' => '~~',
'Class:Person/Attribute:picture' => 'Picture~~',
'Class:Person/Attribute:picture+' => '~~',
'Class:Person/Attribute:team_list' => 'Tímy',
'Class:Person/Attribute:team_list+' => 'All the teams this person belongs to~~',
'Class:Person/Attribute:tickets_list' => 'Tickety',
'Class:Person/Attribute:tickets_list+' => 'All the tickets this person is the caller~~',
'Class:Person/Attribute:user_list' => 'Users~~',
'Class:Person/Attribute:user_list+' => 'All the Users associated to this person~~',
'Class:Person/Attribute:manager_id_friendlyname' => 'Ľahko čitateľné meno manažéra',
'Class:Person/Attribute:manager_id_friendlyname+' => '',
'Class:Person/Attribute:picture' => 'Picture~~',
'Class:Person/Attribute:picture+' => '~~',
'Class:Person/UniquenessRule:employee_number+' => 'The employee number must be unique in the organization~~',
'Class:Person/UniquenessRule:employee_number' => 'there is already a person in \'$this->org_name$\' organization with the same employee number~~',
'Class:Person/UniquenessRule:name+' => 'The employee name should be unique inside its organization~~',
'Class:Person/UniquenessRule:name' => 'There is already a person in \'$this->org_name$\' organization with the same name~~',
'Class:Person/ComplementaryName' => '%1$s - %2$s~~',
'Class:Person/Error:ChangingOrgDenied' => 'Impossible to move this person under organization \'%1$s\' as it would break his access to the User Portal, his associated user not being allowed on this organization~~',
));
//
// Class: Team
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Person/UniquenessRule:employee_number' => 'there is already a person in \'$this->org_name$\' organization with the same employee number~~',
'Class:Person/UniquenessRule:employee_number+' => 'The employee number must be unique in the organization~~',
'Class:Person/UniquenessRule:name' => 'There is already a person in \'$this->org_name$\' organization with the same name~~',
'Class:Person/UniquenessRule:name+' => 'The employee name should be unique inside its organization~~',
'Class:Team' => 'Tím',
'Class:Team+' => '',
'Class:Team/ComplementaryName' => '%1$s - %2$s~~',
'Class:Team+' => '~~',
'Class:Team/Attribute:persons_list' => 'Osoby',
'Class:Team/Attribute:persons_list+' => 'All the people belonging to this team~~',
'Class:Team/Attribute:tickets_list' => 'Tickety',
'Class:Team/Attribute:tickets_list+' => 'All the tickets assigned to this team~~',
));
//
// Class: Document
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Document' => 'Dokument',
'Class:Document+' => '',
'Class:Document/ComplementaryName' => '%1$s - %2$s - %3$s~~',
'Class:Document/Attribute:name' => 'Názov',
'Class:Document/Attribute:name+' => '',
'Class:Document/Attribute:org_id' => 'Organizácia',
'Class:Document/Attribute:org_id+' => '',
'Class:Document/Attribute:org_name' => 'Názov Organizácie',
'Class:Document/Attribute:org_name+' => '',
'Class:Document/Attribute:documenttype_id' => 'Typ dokumentu',
'Class:Document/Attribute:documenttype_id+' => '',
'Class:Document/Attribute:documenttype_name' => 'Názov typu dokumentu',
'Class:Document/Attribute:documenttype_name+' => '',
'Class:Document/Attribute:version' => 'Version~~',
'Class:Document/Attribute:version+' => '~~',
'Class:Document/Attribute:description' => 'Popis',
'Class:Document/Attribute:description+' => '',
'Class:Document/Attribute:status' => 'Stav',
'Class:Document/Attribute:status+' => '',
'Class:Document/Attribute:status/Value:draft' => 'Návrh',
'Class:Document/Attribute:status/Value:draft+' => '',
'Class:Document/Attribute:status/Value:obsolete' => 'Vyradený',
'Class:Document/Attribute:status/Value:obsolete+' => '',
'Class:Document/Attribute:status/Value:published' => 'Publikovaný',
'Class:Document/Attribute:status/Value:published+' => '',
'Class:Document/Attribute:cis_list' => 'Komponenty',
'Class:Document/Attribute:cis_list+' => 'All the configuration items linked to this document~~',
'Class:Document/Attribute:finalclass' => 'Typ dokumentu',
'Class:Document/Attribute:finalclass+' => '',
));
//
// Class: DocumentFile
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DocumentFile' => 'Dokumentový súbor',
'Class:DocumentFile+' => '',
'Class:DocumentFile/Attribute:file' => 'Súbor',
'Class:DocumentFile/Attribute:file+' => '',
));
//
// Class: DocumentNote
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DocumentNote' => 'Poznámka dokumentu',
'Class:DocumentNote+' => '',
'Class:DocumentNote/Attribute:text' => 'Text',
'Class:DocumentNote/Attribute:text+' => '',
));
//
// Class: DocumentWeb
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DocumentWeb' => 'Web stránka dokumentu',
'Class:DocumentWeb+' => '',
'Class:DocumentWeb/Attribute:url' => 'URL',
'Class:DocumentWeb/Attribute:url+' => '',
));
//
// Class: Typology
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Team/ComplementaryName' => '%1$s - %2$s~~',
'Class:Typology' => 'Typológia',
'Class:Typology+' => '',
'Class:Typology/Attribute:name' => 'Názov',
'Class:Typology/Attribute:name+' => '',
'Class:Typology+' => '~~',
'Class:Typology/Attribute:finalclass' => 'Typ',
'Class:Typology/Attribute:finalclass+' => '',
));
//
// Class: DocumentType
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:DocumentType' => 'Typ dokumentu',
'Class:DocumentType+' => '',
));
//
// Class: ContactType
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:ContactType' => 'Typ kontaktu',
'Class:ContactType+' => '',
));
//
// Class: lnkPersonToTeam
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Typology/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Typology/Attribute:name' => 'Názov',
'Class:Typology/Attribute:name+' => '~~',
'Class:lnkPersonToTeam' => 'väzba - Osoba / Tím',
'Class:lnkPersonToTeam+' => '',
'Class:lnkPersonToTeam+' => '~~',
'Class:lnkPersonToTeam/Attribute:person_id' => 'Osoba',
'Class:lnkPersonToTeam/Attribute:person_id+' => 'A member of the team~~',
'Class:lnkPersonToTeam/Attribute:person_name' => 'Meno osoby',
'Class:lnkPersonToTeam/Attribute:person_name+' => '~~',
'Class:lnkPersonToTeam/Attribute:role_id' => 'Rola',
'Class:lnkPersonToTeam/Attribute:role_id+' => 'To select within a typology of possible roles~~',
'Class:lnkPersonToTeam/Attribute:role_name' => 'Názov role',
'Class:lnkPersonToTeam/Attribute:role_name+' => '~~',
'Class:lnkPersonToTeam/Attribute:team_id' => 'Tím',
'Class:lnkPersonToTeam/Attribute:team_id+' => 'A team to which the person belongs~~',
'Class:lnkPersonToTeam/Attribute:team_name' => 'Názov tímu',
'Class:lnkPersonToTeam/Attribute:team_name+' => '~~',
'Class:lnkPersonToTeam/Name' => '%1$s / %2$s~~',
'Class:lnkPersonToTeam/Name+' => '~~',
'Class:lnkPersonToTeam/Attribute:team_id' => 'Tím',
'Class:lnkPersonToTeam/Attribute:team_id+' => '',
'Class:lnkPersonToTeam/Attribute:team_name' => 'Názov tímu',
'Class:lnkPersonToTeam/Attribute:team_name+' => '',
'Class:lnkPersonToTeam/Attribute:person_id' => 'Osoba',
'Class:lnkPersonToTeam/Attribute:person_id+' => '',
'Class:lnkPersonToTeam/Attribute:person_name' => 'Meno osoby',
'Class:lnkPersonToTeam/Attribute:person_name+' => '',
'Class:lnkPersonToTeam/Attribute:role_id' => 'Rola',
'Class:lnkPersonToTeam/Attribute:role_id+' => '',
'Class:lnkPersonToTeam/Attribute:role_name' => 'Názov role',
'Class:lnkPersonToTeam/Attribute:role_name+' => '',
));
//
// Application Menu
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:DataAdministration' => 'Dátová administrácia',
'Menu:DataAdministration+' => '',
'Menu:Catalogs' => 'Katalógy',
'Menu:Catalogs+' => '',
'Menu:Audit' => 'Audity',
'Menu:Audit+' => '',
'Menu:Audit+' => 'Audit~~',
'Menu:CSVImport' => 'CSV import~~',
'Menu:CSVImport+' => 'Bulk creation or update~~',
'Menu:Organization' => 'Organizácia',
'Menu:Organization+' => '',
'Menu:Catalogs' => 'Katalógy',
'Menu:Catalogs+' => 'Data types~~',
'Menu:ConfigManagement' => 'Manažment konfigurácie',
'Menu:ConfigManagement+' => '',
'Menu:ConfigManagementCI' => 'Konfiguračné položky',
'Menu:ConfigManagementCI+' => '',
'Menu:ConfigManagementOverview' => 'Prehľad',
'Menu:ConfigManagementOverview+' => '',
'Menu:Contact' => 'Kontakty',
'Menu:Contact+' => '',
'Menu:Contact:Count' => '%1$d kontakt/y/ov',
'Menu:Person' => 'Osoby',
'Menu:Person+' => '',
'Menu:Team' => 'Tímy',
'Menu:Team+' => '',
'Menu:Document' => 'Dokumenty',
'Menu:Document+' => '',
'Menu:Location' => 'Poloha',
'Menu:Location+' => '',
'Menu:NewContact' => 'Nový kontakt',
'Menu:NewContact+' => '',
'Menu:SearchContacts' => 'Vyhľadať kontakty',
'Menu:SearchContacts+' => '',
'Menu:ConfigManagement:Shortcuts' => 'Skratky',
'Menu:ConfigManagement+' => 'Configuration management~~',
'Menu:ConfigManagement:AllContacts' => 'Všetky kontakty: %1$d',
'Menu:Typology' => 'Konfiguračná typológia',
'Menu:Typology+' => '',
'UI_WelcomeMenu_AllConfigItems' => 'Zhrnutie',
'Menu:ConfigManagement:Shortcuts' => 'Skratky',
'Menu:ConfigManagement:Typology' => 'Konfiguračná typológia',
));
// Add translation for Fieldsets
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Menu:ConfigManagementCI' => 'Konfiguračné položky',
'Menu:ConfigManagementCI+' => 'Configuration items~~',
'Menu:ConfigManagementOverview' => 'Prehľad',
'Menu:ConfigManagementOverview+' => 'Overview~~',
'Menu:Contact' => 'Kontakty',
'Menu:Contact+' => 'Contacts~~',
'Menu:Contact:Count' => '%1$d kontakt/y/ov',
'Menu:DataAdministration' => 'Dátová administrácia',
'Menu:DataAdministration+' => 'Data administration~~',
'Menu:Document' => 'Dokumenty',
'Menu:Document+' => 'All documents~~',
'Menu:Location' => 'Poloha',
'Menu:Location+' => 'All locations~~',
'Menu:NewContact' => 'Nový kontakt',
'Menu:NewContact+' => 'New contact~~',
'Menu:Organization' => 'Organizácia',
'Menu:Organization+' => 'All organizations~~',
'Menu:Person' => 'Osoby',
'Menu:Person+' => 'All persons~~',
'Menu:SearchContacts' => 'Vyhľadať kontakty',
'Menu:SearchContacts+' => 'Search for contacts~~',
'Menu:Team' => 'Tímy',
'Menu:Team+' => 'All teams~~',
'Menu:Typology' => 'Konfiguračná typológia',
'Menu:Typology+' => 'Typology configuration~~',
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
'Person:info' => 'Všeobecné informácie',
'Person:notifiy' => 'Upozornenie',
'Person:personal_info' => 'Personal information~~',
'UI_WelcomeMenu_AllConfigItems' => 'Zhrnutie',
'User:info' => 'Všeobecné informácie',
'User:profiles' => 'Profiles (minimum one)~~',
'Person:personal_info' => 'Personal information~~',
'Person:notifiy' => 'Upozornenie',
));
// Themes
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'theme:fullmoon' => 'Full moon~~',
'theme:test-red' => 'Test instance (Red)~~',
));
]);

View File

@@ -2,9 +2,13 @@
/**
* Localized data
*
* @copyright Copyright (C) 2013 XXXXX
* @license http://opensource.org/licenses/AGPL-3.0
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'theme:light-grey' => 'Light Grey (deprecated)~~',
));
]);

View File

@@ -3,213 +3,125 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
// Dictionnay conventions
// Class:<class_name>
// Class:<class_name>+
// Class:<class_name>/Attribute:<attribute_code>
// Class:<class_name>/Attribute:<attribute_code>+
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
// Class:<class_name>/Stimulus:<stimulus_code>
// Class:<class_name>/Stimulus:<stimulus_code>+
//
// Class: Ticket
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:ResponseTicketTTO/Interface:iMetricComputer' => 'Time To Own~~',
'Class:ResponseTicketTTO/Interface:iMetricComputer+' => 'Goal based on a SLT of type TTO~~',
'Class:ResponseTicketTTR/Interface:iMetricComputer' => 'Time To Resolve~~',
'Class:ResponseTicketTTR/Interface:iMetricComputer+' => 'Goal based on a SLT of type TTR~~',
'Class:Ticket' => 'Ticket',
'Class:Ticket+' => '',
'Class:Ticket/Attribute:ref' => 'Referencia',
'Class:Ticket/Attribute:ref+' => '',
'Class:Ticket/Attribute:org_id' => 'Organizácia',
'Class:Ticket/Attribute:org_id+' => '',
'Class:Ticket/Attribute:org_name' => 'Názov organizácie',
'Class:Ticket/Attribute:org_name+' => '',
'Class:Ticket/Attribute:caller_id' => 'Zadávateľ',
'Class:Ticket/Attribute:caller_id+' => '',
'Class:Ticket/Attribute:caller_name' => 'Meno volajúceho',
'Class:Ticket/Attribute:caller_name+' => '',
'Class:Ticket/Attribute:team_id' => 'Tím',
'Class:Ticket/Attribute:team_id+' => '',
'Class:Ticket/Attribute:team_name' => 'Názov tímu',
'Class:Ticket/Attribute:team_name+' => '',
'Class:Ticket+' => '~~',
'Class:Ticket/Attribute:agent_id' => 'Agent',
'Class:Ticket/Attribute:agent_id+' => '',
'Class:Ticket/Attribute:agent_id+' => '~~',
'Class:Ticket/Attribute:agent_name' => 'Meno agenta',
'Class:Ticket/Attribute:agent_name+' => '',
'Class:Ticket/Attribute:title' => 'Nadpis',
'Class:Ticket/Attribute:title+' => '',
'Class:Ticket/Attribute:description' => 'Popis',
'Class:Ticket/Attribute:description+' => '',
'Class:Ticket/Attribute:start_date' => 'Dátum začiatku',
'Class:Ticket/Attribute:start_date+' => '',
'Class:Ticket/Attribute:end_date' => 'Dátum ukončenia',
'Class:Ticket/Attribute:end_date+' => '',
'Class:Ticket/Attribute:last_update' => 'Posledná aktualizácia',
'Class:Ticket/Attribute:last_update+' => '',
'Class:Ticket/Attribute:agent_name+' => '~~',
'Class:Ticket/Attribute:caller_id' => 'Zadávateľ',
'Class:Ticket/Attribute:caller_id+' => '~~',
'Class:Ticket/Attribute:caller_name' => 'Meno volajúceho',
'Class:Ticket/Attribute:caller_name+' => '~~',
'Class:Ticket/Attribute:close_date' => 'Dátum uzavretia',
'Class:Ticket/Attribute:close_date+' => '',
'Class:Ticket/Attribute:private_log' => 'Skrytý záznam',
'Class:Ticket/Attribute:private_log+' => '',
'Class:Ticket/Attribute:close_date+' => '~~',
'Class:Ticket/Attribute:contacts_list' => 'Kontakty',
'Class:Ticket/Attribute:contacts_list+' => 'All the contacts linked to this ticket~~',
'Class:Ticket/Attribute:description' => 'Popis',
'Class:Ticket/Attribute:description+' => '~~',
'Class:Ticket/Attribute:end_date' => 'Dátum ukončenia',
'Class:Ticket/Attribute:end_date+' => '~~',
'Class:Ticket/Attribute:finalclass' => 'Typ',
'Class:Ticket/Attribute:finalclass+' => 'Name of the final class~~',
'Class:Ticket/Attribute:functionalcis_list' => 'Komponenty',
'Class:Ticket/Attribute:functionalcis_list+' => 'All the configuration items impacted by this ticket. Items marked as "Computed" have been automatically marked as impacted. Items marked as "Not impacted" are excluded from the impact.~~',
'Class:Ticket/Attribute:workorders_list' => 'Pracovné príkazy',
'Class:Ticket/Attribute:workorders_list+' => 'All the work orders for this ticket~~',
'Class:Ticket/Attribute:finalclass' => 'Typ',
'Class:Ticket/Attribute:finalclass+' => '',
'Class:Ticket/Attribute:last_update' => 'Posledná aktualizácia',
'Class:Ticket/Attribute:last_update+' => '~~',
'Class:Ticket/Attribute:operational_status' => 'Operational status~~',
'Class:Ticket/Attribute:operational_status+' => 'Computed after the detailed status~~',
'Class:Ticket/Attribute:operational_status/Value:closed' => 'Closed~~',
'Class:Ticket/Attribute:operational_status/Value:closed+' => '~~',
'Class:Ticket/Attribute:operational_status/Value:ongoing' => 'Ongoing~~',
'Class:Ticket/Attribute:operational_status/Value:ongoing+' => 'Work in progress~~',
'Class:Ticket/Attribute:operational_status/Value:resolved' => 'Resolved~~',
'Class:Ticket/Attribute:operational_status/Value:resolved+' => '~~',
'Class:Ticket/Attribute:operational_status/Value:closed' => 'Closed~~',
'Class:Ticket/Attribute:operational_status/Value:closed+' => '~~',
'Ticket:ImpactAnalysis' => 'Impact Analysis~~',
));
//
// Class: lnkContactToTicket
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:lnkContactToTicket' => 'väzba - Kontakt / Ticket',
'Class:lnkContactToTicket+' => '',
'Class:lnkContactToTicket/Name' => '%1$s / %2$s~~',
'Class:lnkContactToTicket/Attribute:ticket_id' => 'Ticket',
'Class:lnkContactToTicket/Attribute:ticket_id+' => '',
'Class:lnkContactToTicket/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:lnkContactToTicket/Attribute:ticket_ref+' => '',
'Class:lnkContactToTicket/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToTicket/Attribute:contact_id+' => '',
'Class:lnkContactToTicket/Attribute:contact_name' => 'Contact name~~',
'Class:lnkContactToTicket/Attribute:contact_name+' => '~~',
'Class:lnkContactToTicket/Attribute:contact_email' => 'Email kontaktu',
'Class:lnkContactToTicket/Attribute:contact_email+' => '',
'Class:lnkContactToTicket/Attribute:role' => 'Rola',
'Class:lnkContactToTicket/Attribute:role+' => '',
'Class:lnkContactToTicket/Attribute:role_code' => 'Role~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:manual' => 'Added manually~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:computed' => 'Computed~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:do_not_notify' => 'Do not notify~~',
));
//
// Class: WorkOrder
//
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:Ticket/Attribute:org_id' => 'Organizácia',
'Class:Ticket/Attribute:org_id+' => '~~',
'Class:Ticket/Attribute:org_name' => 'Názov organizácie',
'Class:Ticket/Attribute:org_name+' => '~~',
'Class:Ticket/Attribute:private_log' => 'Skrytý záznam',
'Class:Ticket/Attribute:private_log+' => '~~',
'Class:Ticket/Attribute:ref' => 'Referencia',
'Class:Ticket/Attribute:ref+' => '~~',
'Class:Ticket/Attribute:start_date' => 'Dátum začiatku',
'Class:Ticket/Attribute:start_date+' => '~~',
'Class:Ticket/Attribute:team_id' => 'Tím',
'Class:Ticket/Attribute:team_id+' => '~~',
'Class:Ticket/Attribute:team_name' => 'Názov tímu',
'Class:Ticket/Attribute:team_name+' => '~~',
'Class:Ticket/Attribute:title' => 'Nadpis',
'Class:Ticket/Attribute:title+' => '~~',
'Class:Ticket/Attribute:workorders_list' => 'Pracovné príkazy',
'Class:Ticket/Attribute:workorders_list+' => 'All the work orders for this ticket~~',
'Class:WorkOrder' => 'Pracovný príkaz',
'Class:WorkOrder+' => '',
'Class:WorkOrder/Attribute:name' => 'Názov',
'Class:WorkOrder/Attribute:name+' => '',
'Class:WorkOrder/Attribute:status' => 'Stav',
'Class:WorkOrder/Attribute:status+' => '',
'Class:WorkOrder/Attribute:status/Value:open' => 'Otvorený',
'Class:WorkOrder/Attribute:status/Value:open+' => '',
'Class:WorkOrder/Attribute:status/Value:closed' => 'Zatvorený',
'Class:WorkOrder/Attribute:status/Value:closed+' => '',
'Class:WorkOrder/Attribute:description' => 'Popis',
'Class:WorkOrder/Attribute:description+' => '',
'Class:WorkOrder/Attribute:ticket_id' => 'Ticket',
'Class:WorkOrder/Attribute:ticket_id+' => '',
'Class:WorkOrder/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:WorkOrder/Attribute:ticket_ref+' => '',
'Class:WorkOrder/Attribute:team_id' => 'Tím',
'Class:WorkOrder/Attribute:team_id+' => '',
'Class:WorkOrder/Attribute:team_name' => 'Názov tímu',
'Class:WorkOrder/Attribute:team_name+' => '',
'Class:WorkOrder/Attribute:agent_id' => 'Agent',
'Class:WorkOrder/Attribute:agent_id+' => '',
'Class:WorkOrder+' => '~~',
'Class:WorkOrder/Attribute:agent_email' => 'Email agenta',
'Class:WorkOrder/Attribute:agent_email+' => '',
'Class:WorkOrder/Attribute:start_date' => 'Dátum začiatku',
'Class:WorkOrder/Attribute:start_date+' => '',
'Class:WorkOrder/Attribute:agent_email+' => '~~',
'Class:WorkOrder/Attribute:agent_id' => 'Agent',
'Class:WorkOrder/Attribute:agent_id+' => '~~',
'Class:WorkOrder/Attribute:description' => 'Popis',
'Class:WorkOrder/Attribute:description+' => '~~',
'Class:WorkOrder/Attribute:end_date' => 'Dátum ukončenia',
'Class:WorkOrder/Attribute:end_date+' => '',
'Class:WorkOrder/Attribute:end_date+' => '~~',
'Class:WorkOrder/Attribute:log' => 'Záznam',
'Class:WorkOrder/Attribute:log+' => '',
'Class:WorkOrder/Attribute:log+' => '~~',
'Class:WorkOrder/Attribute:name' => 'Názov',
'Class:WorkOrder/Attribute:name+' => '~~',
'Class:WorkOrder/Attribute:start_date' => 'Dátum začiatku',
'Class:WorkOrder/Attribute:start_date+' => '~~',
'Class:WorkOrder/Attribute:status' => 'Stav',
'Class:WorkOrder/Attribute:status+' => '~~',
'Class:WorkOrder/Attribute:status/Value:closed' => 'Zatvorený',
'Class:WorkOrder/Attribute:status/Value:closed+' => '~~',
'Class:WorkOrder/Attribute:status/Value:open' => 'Otvorený',
'Class:WorkOrder/Attribute:status/Value:open+' => '~~',
'Class:WorkOrder/Attribute:team_id' => 'Tím',
'Class:WorkOrder/Attribute:team_id+' => '~~',
'Class:WorkOrder/Attribute:team_name' => 'Názov tímu',
'Class:WorkOrder/Attribute:team_name+' => '~~',
'Class:WorkOrder/Attribute:ticket_id' => 'Ticket',
'Class:WorkOrder/Attribute:ticket_id+' => '~~',
'Class:WorkOrder/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:WorkOrder/Attribute:ticket_ref+' => '~~',
'Class:WorkOrder/Stimulus:ev_close' => 'Zatvoriť',
'Class:WorkOrder/Stimulus:ev_close+' => '',
));
// Fieldset translation
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Ticket:baseinfo' => 'Všeobecné informácia',
'Ticket:date' => 'Dátumy',
'Ticket:contact' => 'Kontakt',
'Ticket:moreinfo' => 'Viac informácií',
'Ticket:relation' => 'Vzťahy',
'Ticket:log' => 'Komunikácie',
'Ticket:Type' => 'Kvalifikácia',
'Ticket:support' => 'Podpora',
'Ticket:resolution' => 'Riešenie',
'Ticket:SLA' => 'SLA report',
'WorkOrder:Details' => 'Detaily',
'WorkOrder:Moreinfo' => 'Viac informácií',
'Tickets:ResolvedFrom' => 'Automatically resolved from %1$s~~',
'Class:cmdbAbstractObject/Method:Set' => 'Set~~',
'Class:cmdbAbstractObject/Method:Set+' => 'Set a field with a static value~~',
'Class:cmdbAbstractObject/Method:Set/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Set/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:Set/Param:2' => 'Value~~',
'Class:cmdbAbstractObject/Method:Set/Param:2+' => 'The value to set~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate' => 'SetCurrentDate~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate+' => 'Set a field with the current date and time~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull' => 'SetCurrentDateIfNull~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull+' => 'Set an empty field with the current date and time~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser' => 'SetCurrentUser~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser+' => 'Set a field with the currently logged in user~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser/Param:1+' => 'The field to set, in the current object. If the field is a string then the friendly name will be used, otherwise the identifier will be used. That friendly name is the name of the person if any is attached to the user, otherwise it is the login.~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson' => 'SetCurrentPerson~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson+' => 'Set a field with the currently logged in person (the "person" attached to the logged in "user").~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson/Param:1+' => 'The field to set, in the current object. If the field is a string then the friendly name will be used, otherwise the identifier will be used.~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime' => 'SetElapsedTime~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime+' => 'Set a field with the time (seconds) elapsed since a date given by another field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2' => 'Reference Field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2+' => 'The field from which to get the reference date~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:3' => 'Working Hours~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:3+' => 'Leave empty to rely on the standard working hours scheme, or set to "DefaultWorkingTimeComputer" to force a 24x7 scheme~~',
'Class:cmdbAbstractObject/Method:SetIfNull' => 'SetIfNull~~',
'Class:cmdbAbstractObject/Method:SetIfNull+' => 'Set a field only if it is empty, with a static value~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:2' => 'Value~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:2+' => 'The value to set~~',
'Class:WorkOrder/Stimulus:ev_close+' => '~~',
'Class:cmdbAbstractObject/Method:AddValue' => 'AddValue~~',
'Class:cmdbAbstractObject/Method:AddValue+' => 'Add a fixed value to a field~~',
'Class:cmdbAbstractObject/Method:AddValue/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:AddValue/Param:1+' => 'The field to modify, in the current object~~',
'Class:cmdbAbstractObject/Method:AddValue/Param:2' => 'Value~~',
'Class:cmdbAbstractObject/Method:AddValue/Param:2+' => 'Decimal value which will be added, can be negative~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus' => 'ApplyStimulus~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus+' => 'Apply the specified stimulus to the current object~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus/Param:1' => 'Stimulus code~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus/Param:1+' => 'A valid stimulus code for the current class~~',
'Class:cmdbAbstractObject/Method:Copy' => 'Copy~~',
'Class:cmdbAbstractObject/Method:Copy+' => 'Copy the value of a field to another field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:Copy/Param:2' => 'Source Field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:2+' => 'The field to get the value from, in the current object~~',
'Class:cmdbAbstractObject/Method:Reset' => 'Reset~~',
'Class:cmdbAbstractObject/Method:Reset+' => 'Reset a field to its default value~~',
'Class:cmdbAbstractObject/Method:Reset/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Reset/Param:1+' => 'The field to reset, in the current object~~',
'Class:cmdbAbstractObject/Method:Set' => 'Set~~',
'Class:cmdbAbstractObject/Method:Set+' => 'Set a field with a static value~~',
'Class:cmdbAbstractObject/Method:Set/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Set/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:Set/Param:2' => 'Value~~',
'Class:cmdbAbstractObject/Method:Set/Param:2+' => 'The value to set~~',
'Class:cmdbAbstractObject/Method:SetComputedDate' => 'SetComputedDate~~',
'Class:cmdbAbstractObject/Method:SetComputedDate+' => 'Set a field with a date computed from another field with extra logic~~',
'Class:cmdbAbstractObject/Method:SetComputedDate/Param:1' => 'Target Field~~',
@@ -226,23 +138,67 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'Class:cmdbAbstractObject/Method:SetComputedDateIfNull/Param:2+' => 'Textual information to modify the source date, eg. "+3 days"~~',
'Class:cmdbAbstractObject/Method:SetComputedDateIfNull/Param:3' => 'Source field~~',
'Class:cmdbAbstractObject/Method:SetComputedDateIfNull/Param:3+' => 'The field used as source to apply the Modifier logic~~',
'Class:cmdbAbstractObject/Method:Reset' => 'Reset~~',
'Class:cmdbAbstractObject/Method:Reset+' => 'Reset a field to its default value~~',
'Class:cmdbAbstractObject/Method:Reset/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Reset/Param:1+' => 'The field to reset, in the current object~~',
'Class:cmdbAbstractObject/Method:Copy' => 'Copy~~',
'Class:cmdbAbstractObject/Method:Copy+' => 'Copy the value of a field to another field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:Copy/Param:2' => 'Source Field~~',
'Class:cmdbAbstractObject/Method:Copy/Param:2+' => 'The field to get the value from, in the current object~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus' => 'ApplyStimulus~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus+' => 'Apply the specified stimulus to the current object~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus/Param:1' => 'Stimulus code~~',
'Class:cmdbAbstractObject/Method:ApplyStimulus/Param:1+' => 'A valid stimulus code for the current class~~',
'Class:ResponseTicketTTO/Interface:iMetricComputer' => 'Time To Own~~',
'Class:ResponseTicketTTO/Interface:iMetricComputer+' => 'Goal based on a SLT of type TTO~~',
'Class:ResponseTicketTTR/Interface:iMetricComputer' => 'Time To Resolve~~',
'Class:ResponseTicketTTR/Interface:iMetricComputer+' => 'Goal based on a SLT of type TTR~~',
));
'Class:cmdbAbstractObject/Method:SetCurrentDate' => 'SetCurrentDate~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate+' => 'Set a field with the current date and time~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentDate/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull' => 'SetCurrentDateIfNull~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull+' => 'Set an empty field with the current date and time~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentDateIfNull/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson' => 'SetCurrentPerson~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson+' => 'Set a field with the currently logged in person (the "person" attached to the logged in "user").~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentPerson/Param:1+' => 'The field to set, in the current object. If the field is a string then the friendly name will be used, otherwise the identifier will be used.~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser' => 'SetCurrentUser~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser+' => 'Set a field with the currently logged in user~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetCurrentUser/Param:1+' => 'The field to set, in the current object. If the field is a string then the friendly name will be used, otherwise the identifier will be used. That friendly name is the name of the person if any is attached to the user, otherwise it is the login.~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime' => 'SetElapsedTime~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime+' => 'Set a field with the time (seconds) elapsed since a date given by another field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2' => 'Reference Field~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2+' => 'The field from which to get the reference date~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:3' => 'Working Hours~~',
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:3+' => 'Leave empty to rely on the standard working hours scheme, or set to "DefaultWorkingTimeComputer" to force a 24x7 scheme~~',
'Class:cmdbAbstractObject/Method:SetIfNull' => 'SetIfNull~~',
'Class:cmdbAbstractObject/Method:SetIfNull+' => 'Set a field only if it is empty, with a static value~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:1' => 'Target Field~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:1+' => 'The field to set, in the current object~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:2' => 'Value~~',
'Class:cmdbAbstractObject/Method:SetIfNull/Param:2+' => 'The value to set~~',
'Class:lnkContactToTicket' => 'väzba - Kontakt / Ticket',
'Class:lnkContactToTicket+' => '~~',
'Class:lnkContactToTicket/Attribute:contact_email' => 'Email kontaktu',
'Class:lnkContactToTicket/Attribute:contact_email+' => '~~',
'Class:lnkContactToTicket/Attribute:contact_id' => 'Kontakt',
'Class:lnkContactToTicket/Attribute:contact_id+' => '~~',
'Class:lnkContactToTicket/Attribute:contact_name' => 'Contact name~~',
'Class:lnkContactToTicket/Attribute:contact_name+' => '~~',
'Class:lnkContactToTicket/Attribute:role' => 'Rola',
'Class:lnkContactToTicket/Attribute:role+' => '~~',
'Class:lnkContactToTicket/Attribute:role_code' => 'Role~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:computed' => 'Computed~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:do_not_notify' => 'Do not notify~~',
'Class:lnkContactToTicket/Attribute:role_code/Value:manual' => 'Added manually~~',
'Class:lnkContactToTicket/Attribute:ticket_id' => 'Ticket',
'Class:lnkContactToTicket/Attribute:ticket_id+' => '~~',
'Class:lnkContactToTicket/Attribute:ticket_ref' => 'Referencia na Ticket',
'Class:lnkContactToTicket/Attribute:ticket_ref+' => '~~',
'Class:lnkContactToTicket/Name' => '%1$s / %2$s~~',
'Ticket:ImpactAnalysis' => 'Impact Analysis~~',
'Ticket:SLA' => 'SLA report',
'Ticket:Type' => 'Kvalifikácia',
'Ticket:baseinfo' => 'Všeobecné informácia',
'Ticket:contact' => 'Kontakt',
'Ticket:date' => 'Dátumy',
'Ticket:log' => 'Komunikácie',
'Ticket:moreinfo' => 'Viac informácií',
'Ticket:relation' => 'Vzťahy',
'Ticket:resolution' => 'Riešenie',
'Ticket:support' => 'Podpora',
'Tickets:ResolvedFrom' => 'Automatically resolved from %1$s~~',
'WorkOrder:Details' => 'Detaily',
'WorkOrder:Moreinfo' => 'Viac informácií',
]);

View File

@@ -3,22 +3,11 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Core:ormValue:ormDocument:DownloadsCount' => '%1s~~',

View File

@@ -3,22 +3,11 @@
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
* along with iTop. If not, see <http://www.gnu.org/licenses/>
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'Class:cmdbAbstractObject/UniquenessRule:no_duplicate' => '%1$s: %2$s is already linked to %3$s: %4$s, duplicates are not allowed on this relation.~~',

View File

@@ -689,9 +689,9 @@ Dict::Add('EN US', 'English', 'English', array(
'Class:Trigger/Attribute:complement+' => 'Further information as provided in english, by this trigger',
'Class:Trigger/Attribute:subscription_policy' => 'Subscription policy',
'Class:Trigger/Attribute:subscription_policy+' => 'Allows users to unsubscribe from the trigger',
'Class:Trigger/Attribute:subscription_policy/Value:allow_no_channel' => 'Allow no channel',
'Class:Trigger/Attribute:subscription_policy/Value:force_at_least_one_channel' => 'Force at least one channel',
'Class:Trigger/Attribute:subscription_policy/Value:force_all_channels' => 'Force all channels',
'Class:Trigger/Attribute:subscription_policy/Value:allow_no_channel' => 'Allow complete unsubscription',
'Class:Trigger/Attribute:subscription_policy/Value:force_at_least_one_channel' => 'Force at least one channel (News or Email)',
'Class:Trigger/Attribute:subscription_policy/Value:force_all_channels' => 'Deny unsubscription',
));
//

View File

@@ -187,6 +187,8 @@ Dict::Add('EN US', 'English', 'English', array(
'Class:User/Error:OrganizationNotAllowed' => 'Organization not allowed.',
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.',
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.',
'Class:User/Warning:NoOrganizationMeansFullAccess' => 'No "Allowed Organizations" defined for this user, this means they have access to all organizations',
'Class:User/Warning:NoContactHasImpact' => 'Cautious: there is no Person defined on this User, this prevents access to portals, news notifications and other side effects in back-office',
'Class:UserInternal' => 'User Internal',
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT,
));

View File

@@ -636,6 +636,11 @@ Dict::Add('FR FR', 'French', 'Français', array(
'Class:Trigger/Attribute:context+' => 'Contexte de déclenchement',
'Class:Trigger/Attribute:complement' => 'Information complémentaire',
'Class:Trigger/Attribute:complement+' => 'Détails en anglais, fourni par ce type de déclencheur',
'Class:Trigger/Attribute:subscription_policy' => 'Politique d\'abonnement',
'Class:Trigger/Attribute:subscription_policy+' => 'Allows users to unsubscribe from the trigger',
'Class:Trigger/Attribute:subscription_policy/Value:allow_no_channel' => 'Autoriser la désinscription de tous les canaux',
'Class:Trigger/Attribute:subscription_policy/Value:force_at_least_one_channel' => 'Forcer la conservation d\'un canal (News ou Email)',
'Class:Trigger/Attribute:subscription_policy/Value:force_all_channels' => 'Interdire la désinscription',
));
//

View File

@@ -171,6 +171,8 @@ Dict::Add('FR FR', 'French', 'Français', array(
'Class:User/Error:OrganizationNotAllowed' => 'Organisation non autorisée.',
'Class:User/Error:UserOrganizationNotAllowed' => 'L\'utilisateur n\'appartient pas à vos organisations.',
'Class:User/Error:PersonIsMandatory' => 'Le Contact est obligatoire.',
'Class:User/Warning:NoOrganizationMeansFullAccess' => 'Aucune "Organisations permises" définie pour cet utilisateur, il aura accès à toutes les organisations sans restriction',
'Class:User/Warning:NoContactHasImpact' => 'Attention: il n\'y a pas de Personne liée à cet utilisateur, il ne pourra pas se connecter à un portail, ni recevoir de News, ni changer sa langue.',
'Class:UserInternal' => 'Utilisateur interne',
'Class:UserInternal+' => 'Utilisateur défini dans '.ITOP_APPLICATION_SHORT,
));

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,25 +1,16 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
// Bulk modify
'UI:Bulk:modify:IncompatibleAttribute' => 'This attribute can\'t be edited in bulk context~~',
'UI:Bulk:Export:MaliciousInjection:Alert:Title' => 'Excel security warning~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Bulk:Export:MaliciousInjection:Alert:Message' => 'Opening a file with untrusted data in Microsoft Excel may lead to formula injection. Ensure that your Excel settings are configured to handle files safely. <a href="%1$s">Learn more in our documentation.</a>~~',
));
'UI:Bulk:Export:MaliciousInjection:Alert:Title' => 'Excel security warning~~',
'UI:Bulk:modify:IncompatibleAttribute' => 'This attribute can\'t be edited in bulk context~~',
]);

View File

@@ -1,21 +1,14 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:DisplayBlock:List:AddEntry:Tooltip' => 'Add an entry in the list~~',
));
]);

View File

@@ -1,74 +1,44 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
// Placeholders
// $%1s : host object class name
// $%2s : host object friendlyname
// $%3s : current tab name
// $%4s : remote object class name
// $%5s : remote object friendlyname
'UI:Links:Object:New:Modal:Title' => 'Create an object~~',
// Create
'UI:Links:Create:Button' => 'Create~~',
'UI:Links:Create:Button+' => 'Create a %4$s~~',
'UI:Links:Create:Modal:Title' => 'Create a %4$s in %2$s~~',
// Add
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Links:Add:Button' => 'Add~~',
'UI:Links:Add:Button+' => 'Add a %4$s~~',
'UI:Links:Add:Modal:Title' => 'Add a %4$s to %2$s~~',
// Modify link
'UI:Links:ModifyLink:Button' => 'Modify~~',
'UI:Links:ModifyLink:Button+' => 'Modify this link~~',
'UI:Links:ModifyLink:Modal:Title' => 'Modify the link between %2$s and %5$s~~',
// Modify object
'UI:Links:ModifyObject:Button' => 'Modify~~',
'UI:Links:ModifyObject:Button+' => 'Modify this object~~',
'UI:Links:ModifyObject:Modal:Title' => '%5$s~~',
// Remove
'UI:Links:Remove:Button' => 'Remove~~',
'UI:Links:Remove:Button+' => 'Remove this %4$s~~',
'UI:Links:Remove:Modal:Title' => 'Remove a %4$s from its %1$s~~',
'UI:Links:Remove:Modal:Message' => 'Do you really want to remove %5$s from %2$s?~~',
// Delete
'UI:Links:Delete:Button' => 'Delete~~',
'UI:Links:Delete:Button+' => 'Delete this %4$s~~',
'UI:Links:Delete:Modal:Title' => 'Delete a %4$s~~',
'UI:Links:Delete:Modal:Message' => 'Do you really want to delete %5$s?~~',
// Bulk
'UI:Links:Bulk:LinkWillBeCreatedForAllObjects' => 'Add to all objects~~',
'UI:Links:Bulk:LinkWillBeDeletedFromAllObjects' => 'Remove from all objects~~',
'UI:Links:Bulk:LinkWillBeCreatedFor1Object' => 'Add to one object~~',
'UI:Links:Bulk:LinkWillBeDeletedFrom1Object' => 'Remove from one object~~',
'UI:Links:Bulk:LinkWillBeCreatedForXObjects' => 'Add {count} objects~~',
'UI:Links:Bulk:LinkWillBeDeletedFromXObjects' => 'Remove {count} objects~~',
'UI:Links:Bulk:LinkExistForAllObjects' => 'All objets are already linked~~',
'UI:Links:Bulk:LinkExistForOneObject' => 'One object is linked~~',
'UI:Links:Bulk:LinkExistForXObjects' => '{count} objects are linked~~',
// New item
'UI:Links:Bulk:LinkWillBeCreatedFor1Object' => 'Add to one object~~',
'UI:Links:Bulk:LinkWillBeCreatedForAllObjects' => 'Add to all objects~~',
'UI:Links:Bulk:LinkWillBeCreatedForXObjects' => 'Add {count} objects~~',
'UI:Links:Bulk:LinkWillBeDeletedFrom1Object' => 'Remove from one object~~',
'UI:Links:Bulk:LinkWillBeDeletedFromAllObjects' => 'Remove from all objects~~',
'UI:Links:Bulk:LinkWillBeDeletedFromXObjects' => 'Remove {count} objects~~',
'UI:Links:Create:Button' => 'Create~~',
'UI:Links:Create:Button+' => 'Create a %4$s~~',
'UI:Links:Create:Modal:Title' => 'Create a %4$s in %2$s~~',
'UI:Links:Delete:Button' => 'Delete~~',
'UI:Links:Delete:Button+' => 'Delete this %4$s~~',
'UI:Links:Delete:Modal:Message' => 'Do you really want to delete %5$s?~~',
'UI:Links:Delete:Modal:Title' => 'Delete a %4$s~~',
'UI:Links:ModifyLink:Button' => 'Modify~~',
'UI:Links:ModifyLink:Button+' => 'Modify this link~~',
'UI:Links:ModifyLink:Modal:Title' => 'Modify the link between %2$s and %5$s~~',
'UI:Links:ModifyObject:Button' => 'Modify~~',
'UI:Links:ModifyObject:Button+' => 'Modify this object~~',
'UI:Links:ModifyObject:Modal:Title' => '%5$s~~',
'UI:Links:NewItem' => 'New item~~',
));
'UI:Links:Object:New:Modal:Title' => 'Create an object~~',
'UI:Links:Remove:Button' => 'Remove~~',
'UI:Links:Remove:Button+' => 'Remove this %4$s~~',
'UI:Links:Remove:Modal:Message' => 'Do you really want to remove %5$s from %2$s?~~',
'UI:Links:Remove:Modal:Title' => 'Remove a %4$s from its %1$s~~',
]);

View File

@@ -19,44 +19,45 @@
Dict::Add('EN US', 'English', 'English', array(
'UI:Newsroom:iTopNotification:Label' => ITOP_APPLICATION_SHORT,
'UI:Newsroom:iTopNotification:ViewAllPage:Title' => 'Your ' . ITOP_APPLICATION_SHORT.' notifications',
'UI:Newsroom:iTopNotification:ViewAllPage:Title' => 'Your ' . ITOP_APPLICATION_SHORT.' news',
'UI:Newsroom:iTopNotification:ViewAllPage:SubTitle' => 'Manage your news, flag them as read or unread, delete them, etc.',
'UI:Newsroom:iTopNotification:ViewAllPage:Read:Label' => 'Read',
'UI:Newsroom:iTopNotification:ViewAllPage:Unread:Label' => 'Unread',
'UI:Newsroom:iTopNotification:SelectMode:Label' => 'Select mode',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAllAsRead:Label' => 'Mark all as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAllAsUnread:Label' => 'Mark all as unread',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Label' => 'Delete all',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Success:Message' => 'All %1$s notifications have been deleted',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Title' => 'Delete all notifications',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Message' => 'Are you sure you want to delete all notifications?',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Success:Message' => 'All %1$s news have been deleted',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Title' => 'Delete all news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Message' => 'Are you sure you want to delete all news?',
'UI:Newsroom:iTopNotification:ViewAllPage:Empty:Title' => 'No notification, you are up to date!',
'UI:Newsroom:iTopNotification:ViewAllPage:Empty:Title' => 'No news, you are up to date!',
// Actions
// - Unitary buttons
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Label' => 'Delete this notification',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:ViewObject:Label' => 'Go to the notification url',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Label' => 'Delete this news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:ViewObject:Label' => 'Go to the news url',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Label' => 'Mark as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Label' => 'Mark as unread',
// - Bulk buttons
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkSelectedAsRead:Label' => 'Mark selected as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkSelectedAsUnread:Label' => 'Mark selected as unread',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Label' => 'Delete selected',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Title' => 'Delete selected notifications',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Message' => 'Are you sure you want to delete selected notifications?',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Title' => 'Delete selected news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Message' => 'Are you sure you want to delete selected news?',
// Feedback messages
'UI:Newsroom:iTopNotification:ViewAllPage:Action:InvalidAction:Message' => 'Invalid action: "%1$s"',
// - Mark as read
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:NoEvent:Message' => 'No notification to mark as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Success:Message' => 'The notification has been marked as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsReadMultiple:Success:Message' => '%1$s notifications have been marked as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:NoEvent:Message' => 'No news to mark as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Success:Message' => 'The news has been marked as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsReadMultiple:Success:Message' => '%1$s news have been marked as read',
// - Mark as unread
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:NoEvent:Message' => 'No notification to mark as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Success:Message' => 'The notification has been marked as unread',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnreadMultiple:Success:Message' => '%1$s notifications have been marked as unread',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:NoEvent:Message' => 'No news to mark as read',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Success:Message' => 'The news has been marked as unread',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnreadMultiple:Success:Message' => '%1$s news have been marked as unread',
// Delete
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:NoEvent:Message' => 'No notification to delete',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Success:Message' => 'The notification has been deleted',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteMultiple:Success:Message' => '%1$s notifications have been deleted',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:NoEvent:Message' => 'No news to delete',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Success:Message' => 'The news has been deleted',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteMultiple:Success:Message' => '%1$s news have been deleted',
));

View File

@@ -19,44 +19,45 @@
Dict::Add('FR FR', 'French', 'Français', array(
'UI:Newsroom:iTopNotification:Label' => ITOP_APPLICATION_SHORT,
'UI:Newsroom:iTopNotification:ViewAllPage:Title' => 'Vos notifications ' . ITOP_APPLICATION_SHORT,
'UI:Newsroom:iTopNotification:ViewAllPage:Title' => 'Vos news ' . ITOP_APPLICATION_SHORT,
'UI:Newsroom:iTopNotification:ViewAllPage:SubTitle' => 'Gérer vos news, les marquer comme lues ou non lues, les supprimer, etc.',
'UI:Newsroom:iTopNotification:ViewAllPage:Read:Label' => 'Lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Unread:Label' => 'Non lue',
'UI:Newsroom:iTopNotification:SelectMode:Label' => 'Sélection multiple',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAllAsRead:Label' => 'Marquer tout comme lu',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAllAsUnread:Label' => 'Marquer tout comme non lu',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Label' => 'Supprimer tout',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Success:Message' => '%1$s notifications ont été supprimées',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Title' => 'Supprimer toutes les notifications',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Message' => 'Êtes-vous sûr de vouloir supprimer toutes les notifications ?',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Success:Message' => '%1$s news ont été supprimées',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Title' => 'Supprimer toutes les news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteAll:Confirmation:Message' => 'Êtes-vous sûr de vouloir supprimer toutes les news ?',
'UI:Newsroom:iTopNotification:ViewAllPage:Empty:Title' => 'Aucune notification, vous êtes à jour !',
'UI:Newsroom:iTopNotification:ViewAllPage:Empty:Title' => 'Aucune news, vous êtes à jour !',
// Actions
// - Unitary buttons
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Label' => 'Supprimer cette notification',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:ViewObject:Label' => 'Aller à l\'url de la notification',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Label' => 'Supprimer cette news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:ViewObject:Label' => 'Aller à l\'url de la news',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Label' => 'Marquer comme lu',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Label' => 'Marquer comme non lu',
// - Bulk buttons
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkSelectedAsRead:Label' => 'Marquer sélectionnée(s) comme lu',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkSelectedAsUnread:Label' => 'Marquer sélectionnée(s) comme non lu',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Label' => 'Supprimer sélectionnée(s)',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Title' => 'Supprimer les notifications sélectionnées',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Message' => 'Êtes-vous sûr de vouloir supprimer les notifications sélectionnées ?',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Title' => 'Supprimer les news sélectionnées',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteSelected:Confirmation:Message' => 'Êtes-vous sûr de vouloir supprimer les news sélectionnées ?',
// Feedback messages
'UI:Newsroom:iTopNotification:ViewAllPage:Action:InvalidAction:Message' => 'Action invalide : "%1$s"',
// - Mark as read
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:NoEvent:Message' => 'Aucune notification à marquer comme lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Success:Message' => 'La notification a été marquée comme lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsReadMultiple:Success:Message' => '%1$s notifications ont été marquées comme lues',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:NoEvent:Message' => 'Aucune news à marquer comme lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsRead:Success:Message' => 'La news a été marquée comme lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsReadMultiple:Success:Message' => '%1$s news ont été marquées comme lues',
// - Mark as unread
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:NoEvent:Message' => 'Aucune notification à marquer comme non lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Success:Message' => 'La notification a été marquée comme non lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnreadMultiple:Success:Message' => '%1$s notifications ont été marquées comme non lues',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:NoEvent:Message' => 'Aucune news à marquer comme non lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnread:Success:Message' => 'La news a été marquée comme non lue',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:MarkAsUnreadMultiple:Success:Message' => '%1$s news ont été marquées comme non lues',
// Delete
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:NoEvent:Message' => 'Aucune notification à supprimer',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Success:Message' => 'La notification a été supprimée',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteMultiple:Success:Message' => '%1$s notifications ont été supprimées',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:NoEvent:Message' => 'Aucune news à supprimer',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:Delete:Success:Message' => 'La news a été supprimée',
'UI:Newsroom:iTopNotification:ViewAllPage:Action:DeleteMultiple:Success:Message' => '%1$s news ont été supprimées',
));

View File

@@ -1,24 +1,17 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Object:Modal:Title' => 'Create an object~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Object:Modal:Create:MandatoryAttributeBlobInputs:Warning:Text' => 'This form contains a mandatory file attribute which cannot be set in modal mode. The creation of this object will be incomplete, edit it in a full-page form to complete it.~~',
'UI:Object:Modal:Modify:MandatoryAttributeBlobInputs:Warning:Text' => 'This form contains a mandatory file attribute which cannot be set in modal mode. This object is incomplete, edit it in a full-page form to complete it.~~',
'UI:Object:Modal:Modify:Filled:MandatoryAttributeBlobInputs:Warning:Text' => 'This form contains mandatory file attribute which cannot be modified in modal mode.~~',
));
'UI:Object:Modal:Modify:MandatoryAttributeBlobInputs:Warning:Text' => 'This form contains a mandatory file attribute which cannot be set in modal mode. This object is incomplete, edit it in a full-page form to complete it.~~',
'UI:Object:Modal:Title' => 'Create an object~~',
]);

View File

@@ -1,18 +1,17 @@
<?php
/*
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
// UI elements
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:WelcomePopup:Button:RemindLater' => 'Remind me later~~',
'UI:WelcomePopup:Button:Acknowledge' => 'Got it~~',
]);
// Message
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:WelcomePopup:Message:320_01:Title' => ITOP_APPLICATION_SHORT . ' 3: Introducing fullmoon design~~',
'UI:WelcomePopup:Button:RemindLater' => 'Remind me later~~',
'UI:WelcomePopup:Message:320_01:Description' => '<div>Congratulations, you landed on '.ITOP_APPLICATION.' '.ITOP_VERSION_NAME.'!</div>
<br>
<div>This version features a brand new modern and accessible backoffice design.</div>
@@ -21,4 +20,5 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
We hope youll enjoy this version as much as we enjoyed imagining and creating it.</div>
<br>
<div>Customize your '.ITOP_APPLICATION.' preferences for a personalized experience.</div>~~',
'UI:WelcomePopup:Message:320_01:Title' => ITOP_APPLICATION_SHORT.' 3: Introducing fullmoon design~~',
]);

View File

@@ -1,22 +1,14 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Global search
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Component:Breadcrumbs:PreviousItemsListToggler:Label' => 'Previous pages~~',
));
]);

View File

@@ -1,35 +1,27 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Display DataTable
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Datatables:Language:Processing' => 'Please wait...~~',
'UI:Datatables:Language:LengthMenu' => '_MENU_ per page~~',
'UI:Datatables:Language:ZeroRecords' => 'No result~~',
'UI:Datatables:Language:Info' => '_TOTAL_ item(s)~~',
'UI:Datatables:Language:InfoEmpty' => 'No information~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Datatables:Column:RowActions:Description' => '~~',
'UI:Datatables:Column:RowActions:Label' => '~~',
'UI:Datatables:Language:DisplayLength:All' => 'All~~',
'UI:Datatables:Language:EmptyTable' => 'No data available in this table~~',
'UI:Datatables:Language:Error' => 'An error occurred while running the query~~',
'UI:Datatables:Language:DisplayLength:All' => 'All~~',
'UI:Datatables:Language:Info' => '_TOTAL_ item(s)~~',
'UI:Datatables:Language:InfoEmpty' => 'No information~~',
'UI:Datatables:Language:LengthMenu' => '_MENU_ per page~~',
'UI:Datatables:Language:Processing' => 'Please wait...~~',
'UI:Datatables:Language:Sort:Ascending' => 'enable for an ascending sort~~',
'UI:Datatables:Language:Sort:Descending' => 'enable for a descending sort~~',
'UI:Datatables:Column:RowActions:Label' => '~~',
'UI:Datatables:Column:RowActions:Description' => '~~',
'UI:Datatables:Language:ZeroRecords' => 'No result~~',
'UI:Datatables:RowActions:ConfirmationDialog' => 'Action Confirmation~~',
'UI:Datatables:RowActions:ConfirmationMessage' => 'Do you confirm action ?~~',
));
]);

View File

@@ -1,22 +1,14 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Global search
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Component:Field:BulkModify:UnknownValues:Tooltip' => 'Unknown values~~',
));
]);

View File

@@ -1,27 +1,19 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Global search
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Component:GlobalSearch:Tooltip' => 'Search throughout the whole application~~',
'UI:Component:GlobalSearch:Input:Placeholder' => 'Search...~~',
'UI:Component:GlobalSearch:Recents:Title' => 'Recents~~',
'UI:Component:GlobalSearch:LastQueries:NoQuery:Placeholder' => 'You haven\'t run any search yet~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Component:GlobalSearch:HistoryDisabled' => 'History is disabled~~',
'UI:Component:GlobalSearch:Input:Placeholder' => 'Search...~~',
'UI:Component:GlobalSearch:KeyboardShortcut:OpenDrawer' => 'Open global search~~',
));
'UI:Component:GlobalSearch:LastQueries:NoQuery:Placeholder' => 'You haven\'t run any search yet~~',
'UI:Component:GlobalSearch:Recents:Title' => 'Recents~~',
'UI:Component:GlobalSearch:Tooltip' => 'Search throughout the whole application~~',
]);

View File

@@ -1,22 +1,16 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Input
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Component:Input:ChangeNotAllowed' => 'This change is not allowed~~',
'UI:Component:Input:Password:DoesNotMatch' => 'Passwords do not match~~',
));
'UI:Component:Input:Set:MinimumItems' => 'Minimum %1$s item(s) required~~',
]);

View File

@@ -1,26 +1,19 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Modal:Confirmation:DefaultTitle' => 'Confirmation~~',
'UI:Modal:Informative:Title' => 'Informative Modal~~',
'UI:Modal:InformativeError:Title' => 'Error~~',
'UI:Modal:InformativeWarning:Title' => 'Warning~~',
'UI:Modal:InformativeInformation:Title' => 'Information~~',
'UI:Modal:InformativeSuccess:Title' => 'Success~~',
));
'UI:Modal:InformativeWarning:Title' => 'Warning~~',
]);

View File

@@ -1,27 +1,19 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Quick create
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Component:QuickCreate:Tooltip' => 'Quickly create any type of object~~',
'UI:Component:QuickCreate:Input:Placeholder' => 'Select object type...~~',
'UI:Component:QuickCreate:Recents:Title' => 'Recents~~',
'UI:Component:QuickCreate:LastClasses:NoClass:Placeholder' => 'You haven\'t create any object yet~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Component:QuickCreate:HistoryDisabled' => 'History is disabled~~',
'UI:Component:QuickCreate:Input:Placeholder' => 'Select object type...~~',
'UI:Component:QuickCreate:KeyboardShortcut:OpenDrawer' => 'Open quick create~~',
));
'UI:Component:QuickCreate:LastClasses:NoClass:Placeholder' => 'You haven\'t create any object yet~~',
'UI:Component:QuickCreate:Recents:Title' => 'Recents~~',
'UI:Component:QuickCreate:Tooltip' => 'Quickly create any type of object~~',
]);

View File

@@ -1,58 +1,38 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Activity panel
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Layout:ActivityPanel:SizeToggler:Expand:Tooltip' => 'Expand~~',
'UI:Layout:ActivityPanel:SizeToggler:Reduce:Tooltip' => 'Reduce~~',
'UI:Layout:ActivityPanel:DisplayToggler:Close:Tooltip' => 'Close~~',
'UI:Layout:ActivityPanel:LoadMoreEntries:Tooltip' => 'Load more entries~~',
'UI:Layout:ActivityPanel:LoadAllEntries:Tooltip' => 'Load all previous entries~~',
// Tabs
'UI:Layout:ActivityPanel:Tab:Activity:Title' => 'Activity~~',
'UI:Layout:ActivityPanel:Tab:Log:DraftIndicator:Tooltip' => 'Draft entry~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Title' => 'Logs~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Tooltip' => 'Show / hide logs entries on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Menu:Hint' => 'Choose which logs to display on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Transitions:Title' => 'State changes~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Transitions:Tooltip' => 'Show / hide state changes on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Edits:Title' => 'Edits~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Edits:Tooltip' => 'Show / hide fields edits on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Action:OpenAll:Tooltip' => 'Open all entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Action:CloseAll:Tooltip' => 'Close all entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Info:AuthorsCount:Tooltip' => 'Number of persons interacting in the visible entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Info:MessagesCount:Tooltip' => 'Number of messages in the visible log(s)~~',
// Compose button
'UI:Layout:ActivityPanel:ComposeButton:Tooltip' => 'Compose a new log entry~~',
// Case log entry
'UI:Layout:ActivityPanel:MultipleEntriesSaveConfirmation:Title' => 'Multiple logs save~~',
'UI:Layout:ActivityPanel:MultipleEntriesSaveConfirmation:Explanation' => 'By pressing the "save" button, you will submit entries for all the edited logs at once.~~',
// Notification entry
'UI:Layout:ActivityPanel:NotificationEntry:MessageLink:Tooltip' => 'Click to open the notifications tab and get more information~~',
// Placeholder
'UI:Layout:ActivityPanel:NoEntry:Placeholder:Hint' => 'It\'s calm up here, no activity yet~~',
// Closed cover
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Layout:ActivityPanel:ClosedCover:Title' => 'Activity panel~~',
'UI:Layout:ActivityPanel:ClosedCover:Tooltip' => 'Click to open the activity panel~~',
));
'UI:Layout:ActivityPanel:ComposeButton:Tooltip' => 'Compose a new log entry~~',
'UI:Layout:ActivityPanel:DisplayToggler:Close:Tooltip' => 'Close~~',
'UI:Layout:ActivityPanel:LoadAllEntries:Tooltip' => 'Load all previous entries~~',
'UI:Layout:ActivityPanel:LoadMoreEntries:Tooltip' => 'Load more entries~~',
'UI:Layout:ActivityPanel:MultipleEntriesSaveConfirmation:Explanation' => 'By pressing the "save" button, you will submit entries for all the edited logs at once.~~',
'UI:Layout:ActivityPanel:MultipleEntriesSaveConfirmation:Title' => 'Multiple logs save~~',
'UI:Layout:ActivityPanel:NoEntry:Placeholder:Hint' => 'It\'s calm up here, no activity yet~~',
'UI:Layout:ActivityPanel:NotificationEntry:MessageLink:Tooltip' => 'Click to open the notifications tab and get more information~~',
'UI:Layout:ActivityPanel:SizeToggler:Expand:Tooltip' => 'Expand~~',
'UI:Layout:ActivityPanel:SizeToggler:Reduce:Tooltip' => 'Reduce~~',
'UI:Layout:ActivityPanel:Tab:Activity:Title' => 'Activity~~',
'UI:Layout:ActivityPanel:Tab:Log:DraftIndicator:Tooltip' => 'Draft entry~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Action:CloseAll:Tooltip' => 'Close all entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Action:OpenAll:Tooltip' => 'Open all entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Edits:Title' => 'Edits~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Edits:Tooltip' => 'Show / hide fields edits on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Menu:Hint' => 'Choose which logs to display on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Title' => 'Logs~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Logs:Tooltip' => 'Show / hide logs entries on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Transitions:Title' => 'State changes~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Filter:Transitions:Tooltip' => 'Show / hide state changes on this tab~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Info:AuthorsCount:Tooltip' => 'Number of persons interacting in the visible entries~~',
'UI:Layout:ActivityPanel:Tab:Toolbar:Info:MessagesCount:Tooltip' => 'Number of messages in the visible log(s)~~',
]);

View File

@@ -1,34 +1,25 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Navigation menu
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Layout:NavigationMenu:CompanyLogo:AltText' => 'Company logo~~',
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Hint' => 'Matches from all menu groups will be displayed~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Placeholder' => 'Filter...~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Tooltip' => 'Type your keywords to filter menus~~',
'UI:Layout:NavigationMenu:MenuFilter:Placeholder:Hint' => 'Seems like there is no matching menu~~',
'UI:Layout:NavigationMenu:Silo:Label' => 'Select organization to filter on~~',
'UI:Layout:NavigationMenu:Toggler:Tooltip' => 'Expand / Collapse~~',
'UI:Layout:NavigationMenu:Toggler:TooltipWithSiloLabel' => 'Expand / Collapse (Filtered on %1$s)~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Placeholder' => 'Filter...~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Tooltip' => 'Type your keywords to filter menus~~',
'UI:Layout:NavigationMenu:MenuFilter:Input:Hint' => 'Matches from all menu groups will be displayed~~',
'UI:Layout:NavigationMenu:MenuFilter:Placeholder:Hint' => 'Seems like there is no matching menu~~',
'UI:Layout:NavigationMenu:UserInfo:WelcomeMessage:Text' => 'Hi %1$s!~~',
'UI:Layout:NavigationMenu:UserInfo:Picture:AltText' => '%1$s\'s contact picture~~',
'UI:Layout:NavigationMenu:UserInfo:WelcomeMessage:Text' => 'Hi %1$s!~~',
'UI:Layout:NavigationMenu:UserMenu:Toggler:Label' => 'Open user menu~~',
'UI:Layout:NavigationMenu:KeyboardShortcut:FocusFilter' => 'Filter menu entries~~',
));
]);

View File

@@ -1,13 +1,19 @@
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Layout:ObjectDetails:KeyboardShortcut:EditObject' => 'Edit displayed object~~',
'UI:Layout:ObjectDetails:DatamodelSchemaLink:Tooltip' => 'Class data model schema~~',
'UI:Layout:ObjectDetails:KeyboardShortcut:DeleteObject' => 'Delete displayed object~~',
'UI:Layout:ObjectDetails:KeyboardShortcut:EditObject' => 'Edit displayed object~~',
'UI:Layout:ObjectDetails:KeyboardShortcut:NewObject' => 'Create a new object (with same class as displayed object)~~',
'UI:Layout:ObjectDetails:KeyboardShortcut:SaveObject' => 'Save displayed object~~',
'UI:Layout:ObjectDetails:New:Modal:Title' => 'Creation of an object~~',
'UI:Layout:ObjectDetails:DatamodelSchemaLink:Tooltip' => 'Class data model schema~~',
]);

View File

@@ -1,7 +1,13 @@
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UIBlock:Error:CannotGetBlocks' => 'Could not retrieve blocks from content area "%1$s" as it does seem to exists for page content "%2$s"~~',

View File

@@ -1,7 +1,13 @@
<?php
/*
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Layout:TabContainer:ExtraTabsListToggler:Label' => 'Other tabs~~',

View File

@@ -1,7 +1,13 @@
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license http://opensource.org/licenses/AGPL-3.0
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UIBlock:Error:AddBlockForbidden' => 'Cannot add block to %1$s~~',

View File

@@ -1,25 +1,17 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Navigation menu
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:ErrorPage:UnstableVersion' => 'You are using an unstable version that may include bugs. If you think this error occurred because of this please send us your feedback!~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:ErrorPage:KittyDisclaimer' => 'No kitty were injured during the making of this GIF and release.
- The R&amp;D Team~~',
));
'UI:ErrorPage:UnstableVersion' => 'You are using an unstable version that may include bugs. If you think this error occurred because of this please send us your feedback!~~',
]);

View File

@@ -20,7 +20,8 @@
Dict::Add('EN US', 'English', 'English', array(
'UI:NotificationsCenter:Page:Title' => 'Notifications center',
'UI:NotificationsCenter:Panel:Title' => 'Notifications center',
'UI:NotificationsCenter:Panel:Table:Channels' => 'Channels.',
'UI:NotificationsCenter:Panel:SubTitle' => 'Manage Notifications that you have received : unsubscribe or limit them to a single channel',
'UI:NotificationsCenter:Panel:Table:Channels' => 'Channels',
'UI:NotificationsCenter:Unsubscribe:Success' => 'You have been successfully unsubscribed from the selected notifications.',
'UI:NotificationsCenter:Unsubscribe:Error' => 'An error occurred while unsubscribing from the selected notifications.',
'UI:NotificationsCenter:Subscribe:Success' => 'You have been successfully subscribed to the selected notifications.',

View File

@@ -0,0 +1,31 @@
<?php
/**
* Copyright (C) 2013-2024 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
*/
Dict::Add('FR FR', 'French', 'Français', array(
'UI:NotificationsCenter:Page:Title' => 'Notifications',
'UI:NotificationsCenter:Panel:Title' => 'Notifications',
'UI:NotificationsCenter:Panel:SubTitle' => 'Gérer les Notifications dont vous êtes destinataire : désinscrivez-vous ou limitez les à un seul canal',
'UI:NotificationsCenter:Panel:Table:Channels' => 'Canaux',
'UI:NotificationsCenter:Unsubscribe:Success' => 'Vous avez été désinscrit avec succès de ce canal de notification.',
'UI:NotificationsCenter:Unsubscribe:Error' => 'Une erreur c\'est produite, lors de votre désinscription.',
'UI:NotificationsCenter:Subscribe:Success' => 'Vous avez été ré-inscrit avec succès sur ce canal de notification.',
'UI:NotificationsCenter:Subscribe:Error' => 'Une erreur c\'est produite, lors de votre ré-inscription.',
'UI:NotificationsCenter:Channel:OutOf:Text' => '%1$s sur %2$s',
'UI:NotificationsCenter:Advanced:Input:Label' => '%1$s: %2$s',
));

View File

@@ -1,51 +1,48 @@
<?php
/**
* Copyright (C) 2013-2024 Combodo SAS
* Localized data
*
* This file is part of iTop.
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
* 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
*/
// Navigation menu
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
'UI:Preferences:Title' => 'Preferences~~',
'UI:Preferences:UserInterface:Title' => 'User interface~~',
'UI:Preferences:General:Title' => 'General~~',
'UI:Preferences:General:Theme' => 'Theme~~',
'UI:Preferences:General:Theme:DefaultThemeLabel' => '%1$s (default)~~',
/**
*
*/
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
'UI:Favorites:General:ShowSummaryCards' => 'Show summary cards~~',
'UI:Favorites:General:ShowSummaryCards+' => 'When hovering an hyperlink targeting an object, display a short summary of the object, if available for that class~~',
'UI:Preferences:Lists:Title' => 'Lists~~',
'UI:Preferences:RichText:Title' => 'Rich text editor~~',
'UI:Preferences:RichText:ToolbarState' => 'Toolbar default state~~',
'UI:Preferences:RichText:ToolbarState:Expanded' => 'Expanded~~',
'UI:Preferences:RichText:ToolbarState:Collapsed' => 'Collapsed~~',
'UI:Preferences:ActivityPanel:Title' => 'Activity panel~~',
'UI:Preferences:ActivityPanel:EntryFormOpened' => 'Entry form opened by default~~',
'UI:Preferences:ActivityPanel:EntryFormOpened+' => 'Whether the entry form will be opened when displaying an object. If unchecked, you will still be able to open it by clicking the compose button~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Title' => 'Application keyboard shortcuts~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Input:Hint' => 'Type a keyboard shortcut~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Tooltip' => 'Record a keyboard shortcut~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Reset' => 'Reset~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Reset:Tooltip' => 'Back to default keyboard shortcut~~',
'UI:Preferences:Tabs:Title' => 'Tabs~~',
'UI:Preferences:Tabs:Layout:Label' => 'Layout~~',
'UI:Preferences:Tabs:Layout:Horizontal' => 'Horizontal~~',
'UI:Preferences:Tabs:Layout:Vertical' => 'Vertical~~',
'UI:Preferences:Tabs:Scrollable:Label' => 'Navigation~~',
'UI:Preferences:Tabs:Scrollable:Classic' => 'Classic~~',
'UI:Preferences:Tabs:Scrollable:Scrollable' => 'Scrollable~~',
'UI:Preferences:ActivityPanel:Title' => 'Activity panel~~',
'UI:Preferences:ChooseAPlaceholder' => 'User placeholder image~~',
'UI:Preferences:ChooseAPlaceholder+' => 'Choose a placeholder image that will be displayed if the contact linked to your user doesn\'t have one~~',
'UI:Preferences:ChooseAPlaceholder:Success:Message' => 'Your placeholder image has been successfully updated~~',
));
'UI:Preferences:General:Theme' => 'Theme~~',
'UI:Preferences:General:Theme:DefaultThemeLabel' => '%1$s (default)~~',
'UI:Preferences:General:Title' => 'General~~',
'UI:Preferences:General:Toasts' => 'Toast notifications position~~',
'UI:Preferences:General:Toasts:Bottom' => 'Bottom~~',
'UI:Preferences:General:Toasts:Top' => 'Top~~',
'UI:Preferences:Lists:Title' => 'Lists~~',
'UI:Preferences:Notifications' => 'Notifications~~',
'UI:Preferences:Notifications+' => 'Configure the notifications you want to receive <a href="%1$s">on this page</a>.~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Reset' => 'Reset~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Reset:Tooltip' => 'Back to default keyboard shortcut~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Button:Tooltip' => 'Record a keyboard shortcut~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Input:Hint' => 'Type a keyboard shortcut~~',
'UI:Preferences:PersonalizeKeyboardShortcuts:Title' => 'Application keyboard shortcuts~~',
'UI:Preferences:RichText:Title' => 'Rich text editor~~',
'UI:Preferences:RichText:ToolbarState' => 'Toolbar default state~~',
'UI:Preferences:RichText:ToolbarState:Collapsed' => 'Collapsed~~',
'UI:Preferences:RichText:ToolbarState:Expanded' => 'Expanded~~',
'UI:Preferences:Tabs:Layout:Horizontal' => 'Horizontal~~',
'UI:Preferences:Tabs:Layout:Label' => 'Layout~~',
'UI:Preferences:Tabs:Layout:Vertical' => 'Vertical~~',
'UI:Preferences:Tabs:Scrollable:Classic' => 'Classic~~',
'UI:Preferences:Tabs:Scrollable:Label' => 'Navigation~~',
'UI:Preferences:Tabs:Scrollable:Scrollable' => 'Scrollable~~',
'UI:Preferences:Tabs:Title' => 'Tabs~~',
'UI:Preferences:Title' => 'Preferences~~',
'UI:Preferences:UserInterface:Title' => 'User interface~~',
]);

View File

@@ -1,205 +0,0 @@
jQuery.extend(
{
createUploadIframe: function(id, uri)
{
//create frame
var frameId = 'jUploadFrame' + id;
var iframeHtml = '<iframe id="' + frameId + '" name="' + frameId + '" style="position:absolute; top:-9999px; left:-9999px"';
if(window.ActiveXObject)
{
if(typeof uri== 'boolean')
{
iframeHtml += ' src="' + 'javascript:false' + '"';
}
else if(typeof uri== 'string')
{
iframeHtml += ' src="' + uri + '"';
}
}
iframeHtml += ' />';
jQuery(iframeHtml).appendTo(document.body);
return jQuery('#' + frameId).get(0);
},
createUploadForm: function(id, fileElementId)
{
//create form
var formId = 'jUploadForm' + id;
var fileId = 'jUploadFile' + id;
var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
var oldElement = jQuery('#' + fileElementId);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
//set attributes
jQuery(form).css('position', 'absolute');
jQuery(form).css('top', '-1200px');
jQuery(form).css('left', '-1200px');
jQuery(form).appendTo('body');
return form;
},
ajaxFileUpload: function(s) {
// TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
s = jQuery.extend({}, jQuery.ajaxSettings, s);
var id = new Date().getTime();
var form = jQuery.createUploadForm(id, s.fileElementId);
var io = jQuery.createUploadIframe(id, s.secureuri);
var frameId = 'jUploadFrame' + id;
var formId = 'jUploadForm' + id;
// Watch for a new set of requests
if ( s.global && ! jQuery.active++ )
{
jQuery.event.trigger( "ajaxStart" );
}
var requestDone = false;
// Create the request object
var xml = {};
if ( s.global )
jQuery.event.trigger("ajaxSend", [xml, s]);
// Wait for a response to come back
var uploadCallback = function(isTimeout)
{
var io = document.getElementById(frameId);
try
{
if(io.contentWindow)
{
xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null;
xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
}else if(io.contentDocument)
{
xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null;
xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document;
}
}
catch(e)
{
jQuery.handleError(s, xml, null, e);
}
if ( xml || isTimeout == "timeout")
{
requestDone = true;
var status;
try {
status = isTimeout != "timeout" ? "success" : "error";
// Make sure that the request was successful or notmodified
if ( status != "error" )
{
// process the data (runs the xml through httpData regardless of callback)
var data = jQuery.uploadHttpData( xml, s.dataType );
// If a local callback was specified, fire it and pass it the data
if ( s.success )
s.success( data, status );
// Fire the global callback
if( s.global )
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
} else
jQuery.handleError(s, xml, status);
} catch(e)
{
status = "error";
jQuery.handleError(s, xml, status, e);
}
// The request was completed
if( s.global )
jQuery.event.trigger( "ajaxComplete", [xml, s] );
// Handle the global AJAX counter
if ( s.global && ! --jQuery.active )
jQuery.event.trigger( "ajaxStop" );
// Process result
if ( s.complete )
s.complete(xml, status);
jQuery(io).unbind();
setTimeout(function()
{ try
{
jQuery(io).remove();
jQuery(form).remove();
} catch(e)
{
jQuery.handleError(s, xml, null, e);
}
}, 100);
xml = null;
}
};
// Timeout checker
if ( s.timeout > 0 )
{
setTimeout(function(){
// Check to see if the request is still happening
if( !requestDone ) uploadCallback( "timeout" );
}, s.timeout);
}
try
{
var form = jQuery('#' + formId);
jQuery(form).attr('action', s.url);
jQuery(form).attr('method', 'POST');
jQuery(form).attr('target', frameId);
if(form.encoding)
{
jQuery(form).attr('encoding', 'multipart/form-data');
}
else
{
jQuery(form).attr('enctype', 'multipart/form-data');
}
jQuery(form).submit();
} catch(e)
{
jQuery.handleError(s, xml, null, e);
}
jQuery('#' + frameId).load(uploadCallback );
return {abort: function () {}};
},
uploadHttpData: function( r, type ) {
var data = !type;
data = type == "xml" || data ? r.responseXML : r.responseText;
// If the type is "script", eval it in global context
if ( type == "script" )
jQuery.globalEval( data );
// Get the JavaScript object, if JSON is used.
if ( type == "json" )
eval( "data = " + data );
// evaluate scripts within html
if ( type == "html" )
jQuery("<div>").html(data).evalScripts();
return data;
}
});
// handleError is deprecated since jQuery 1.5 !!
jQuery.extend({
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error )
s.error( xhr, status, e );
// If we have some XML response text (e.g. from an AJAX call) then log it in the console
else if(xhr.responseText)
{
//console.log(xhr.responseText);
}
}
});

View File

@@ -16,7 +16,11 @@ const CombodoCKEditorFeeds = {
return async function(queryText) {
return new Promise( resolve => {
setTimeout( () => {
fetch(options.url + queryText)
fetch(options.url + queryText, {
headers: {
'X-Combodo-Ajax': true
}
})
.then(response => {
return response.json();
})

View File

@@ -115,6 +115,9 @@ const CombodoCKEditorHandler = {
fetch(uploadUrl, {
method: 'POST',
body: formData,
headers: {
'X-Combodo-Ajax': true
},
})
.then(response => response.json())
.then(responseData => {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -14,6 +14,8 @@
--ck-text-huge-font-size: 1.8rem;
}
/** text size classes */
.text-tiny {
font-size: var(--ck-text-tiny-font-size);
}
@@ -29,3 +31,21 @@
.text-huge {
font-size: var(--ck-text-huge-font-size);
}
/** marker classes */
.marker-yellow {
background-color: var(--ck-highlight-marker-yellow);
}
.marker-green {
background-color: var(--ck-highlight-marker-green);
}
.marker-pink {
background-color: var(--ck-highlight-marker-pink);
}
.marker-blue {
background-color: var(--ck-highlight-marker-blue);
}

View File

@@ -1 +1 @@
!function(e){const t=e.af=e.af||{};t.dictionary=Object.assign(t.dictionary||{},{"(may require <kbd>Fn</kbd>)":"","%0 of %1":"%0 van %1",Accept:"",Accessibility:"","Accessibility help":"","Align center":"Belyn in die middel","Align left":"Belyn links","Align right":"Belyn regs",Aquamarine:"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"",Black:"","Block quote":"Verwysingsaanhaling",Blue:"",Bold:"Vet","Bold text":"",Cancel:"Kanselleer",Clear:"","Click to edit block":"",Close:"","Close contextual balloons, dropdowns, and dialogs":"",Code:"Bronkode","Code block":"","Content editing keystrokes":"","Dim grey":"","Drag to move":"","Dropdown toolbar":"","Edit block":"","Editor block content toolbar":"","Editor contextual toolbar":"","Editor dialog":"","Editor editing area: %0":"","Editor menu bar":"","Editor toolbar":"","Entering %0 code snippet":"","Entering code snippet":"","Execute the currently focused button. Executing buttons that interact with the editor content moves the focus back to the content.":"",Green:"",Grey:"","Help Contents. To close this dialog press ESC.":"",HEX:"","Insert code block":"Voeg bronkodeblok in",Italic:"Kursief","Italic text":"",Justify:"Belyn beide kante","Leaving %0 code snippet":"","Leaving code snippet":"","Light blue":"","Light green":"","Light grey":"",MENU_BAR_MENU_EDIT:"Wysig",MENU_BAR_MENU_FILE:"",MENU_BAR_MENU_FONT:"",MENU_BAR_MENU_FORMAT:"",MENU_BAR_MENU_HELP:"",MENU_BAR_MENU_INSERT:"",MENU_BAR_MENU_TEXT:"",MENU_BAR_MENU_TOOLS:"",MENU_BAR_MENU_VIEW:"","Move focus between form fields (inputs, buttons, etc.)":"","Move focus in and out of an active dialog window":"","Move focus to the menu bar, navigate between menu bars":"","Move focus to the toolbar, navigate between toolbars":"","Move out of an inline code style":"","Navigate through the toolbar or menu bar":"",Next:"","No results found":"","No searchable items":"","Open the accessibility help dialog":"",Orange:"","Plain text":"Gewone skrif",'Please enter a valid color (e.g. "ff0000").':"","Press %0 for help.":"",Previous:"",Purple:"",Red:"","Remove color":"Verwyder kleur","Restore default":"Herstel verstek","Rich Text Editor":"",Save:"Stoor","Show more items":"Wys meer items",Strikethrough:"Deurstreep","Strikethrough text":"",Subscript:"Onderskrif",Superscript:"Boskrif","Text alignment":"Teksbelyning","Text alignment toolbar":"Teksbelyning nutsbank","These keyboard shortcuts allow for quick access to content editing features.":"","Toggle caption off":"","Toggle caption on":"",Turquoise:"",Underline:"Onderstreep","Underline text":"","Use the following keystrokes for more efficient navigation in the CKEditor 5 user interface.":"","User interface and content navigation keystrokes":"",White:"",Yellow:""}),t.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));
!function(e){const t=e.af=e.af||{};t.dictionary=Object.assign(t.dictionary||{},{"(may require <kbd>Fn</kbd>)":"","%0 of %1":"%0 van %1",Accept:"",Accessibility:"","Accessibility help":"","Align center":"Belyn in die middel","Align left":"Belyn links","Align right":"Belyn regs",Aquamarine:"","Below, you can find a list of keyboard shortcuts that can be used in the editor.":"",Black:"","Block quote":"Verwysingsaanhaling",Blue:"",Bold:"Vet","Bold text":"",Cancel:"Kanselleer",Clear:"","Click to edit block":"",Close:"","Close contextual balloons, dropdowns, and dialogs":"",Code:"Bronkode","Code block":"","Content editing keystrokes":"","Dim grey":"","Drag to move":"","Dropdown toolbar":"","Edit block":"","Editor block content toolbar":"","Editor contextual toolbar":"","Editor dialog":"","Editor editing area: %0":"","Editor menu bar":"","Editor toolbar":"","Entering %0 code snippet":"","Entering code snippet":"","Execute the currently focused button. Executing buttons that interact with the editor content moves the focus back to the content.":"",Green:"",Grey:"","Help Contents. To close this dialog press ESC.":"",HEX:"","Insert code block":"Voeg bronkodeblok in",Italic:"Kursief","Italic text":"",Justify:"Belyn beide kante","Leaving %0 code snippet":"","Leaving code snippet":"","Light blue":"","Light green":"","Light grey":"",MENU_BAR_MENU_EDIT:"Wysig",MENU_BAR_MENU_FILE:"",MENU_BAR_MENU_FONT:"",MENU_BAR_MENU_FORMAT:"",MENU_BAR_MENU_HELP:"",MENU_BAR_MENU_INSERT:"",MENU_BAR_MENU_TEXT:"",MENU_BAR_MENU_TOOLS:"",MENU_BAR_MENU_VIEW:"","Move focus between form fields (inputs, buttons, etc.)":"","Move focus in and out of an active dialog window":"","Move focus to the menu bar, navigate between menu bars":"","Move focus to the toolbar, navigate between toolbars":"","Move out of an inline code style":"","Navigate through the toolbar or menu bar":"",Next:"","No results found":"","No searchable items":"","Open the accessibility help dialog":"",Orange:"","Plain text":"Gewone skrif",'Please enter a valid color (e.g. "ff0000").':"","Press %0 for help.":"",Previous:"",Purple:"",Red:"","Remove color":"Verwyder kleur","Remove Format":"Verwyder formatering","Restore default":"Herstel verstek","Rich Text Editor":"",Save:"Stoor","Show more items":"Wys meer items",Strikethrough:"Deurstreep","Strikethrough text":"",Subscript:"Onderskrif",Superscript:"Boskrif","Text alignment":"Teksbelyning","Text alignment toolbar":"Teksbelyning nutsbank","These keyboard shortcuts allow for quick access to content editing features.":"","Toggle caption off":"","Toggle caption on":"",Turquoise:"",Underline:"Onderstreep","Underline text":"","Use the following keystrokes for more efficient navigation in the CKEditor 5 user interface.":"","User interface and content navigation keystrokes":"",White:"",Yellow:""}),t.getPluralForm=function(e){return 1!=e}}(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={}));

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More