mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 19:48:49 +02:00
Merge remote-tracking branch 'origin/support/3.2' into develop
This commit is contained in:
@@ -17,7 +17,9 @@
|
||||
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
|
||||
use Combodo\iTop\Application\TwigBase\Twig\TwigHelper;
|
||||
use Combodo\iTop\Application\UI\Base\Component\DataTable\DataTableUIBlockFactory;
|
||||
use Combodo\iTop\Application\WebPage\WebPage;
|
||||
use Combodo\iTop\Service\Router\Router;
|
||||
|
||||
/**
|
||||
* Persistent classes (internal): user defined actions
|
||||
@@ -168,6 +170,61 @@ abstract class Action extends cmdbAbstractObject
|
||||
$this->m_aCheckWarnings[] = Dict::S('Action:WarningNoTriggerLinked');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.2.0 N°5472 method creation
|
||||
*/
|
||||
public function DisplayBareRelations(WebPage $oPage, $bEditMode = false)
|
||||
{
|
||||
parent::DisplayBareRelations($oPage, false);
|
||||
|
||||
if ($oPage instanceof iTopWebPage) {
|
||||
$this->GenerateLastExecutionsTab($oPage, $bEditMode);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 3.2.0 N°5472 method creation
|
||||
*/
|
||||
protected function GenerateLastExecutionsTab(iTopWebPage $oPage, $bEditMode)
|
||||
{
|
||||
$oRouter = Router::GetInstance();
|
||||
$sActionLastExecutionsPageUrl = $oRouter->GenerateUrl('notifications.action.last_executions_tab', ['action_id' => $this->GetKey()]);
|
||||
$oPage->AddAjaxTab('action_errors', $sActionLastExecutionsPageUrl, false, Dict::S('Action:last_executions_tab'));
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws InvalidConfigParamException
|
||||
* @since 3.2.0 N°5472 method creation
|
||||
*/
|
||||
public function GetLastExecutionsTabContent(WebPage $oPage): void
|
||||
{
|
||||
$oConfig = utils::GetConfig();
|
||||
$sLastExecutionDaysConfigParamName = 'notifications.last_executions_days';
|
||||
$iLastExecutionDays = $oConfig->Get($sLastExecutionDaysConfigParamName);
|
||||
|
||||
if ($iLastExecutionDays < 0) {
|
||||
throw new InvalidConfigParamException("Invalid value for {$sLastExecutionDaysConfigParamName} config parameter. Param desc: " . $oConfig->GetDescription($sLastExecutionDaysConfigParamName));
|
||||
}
|
||||
|
||||
$sActionQueryOql = 'SELECT EventNotification WHERE action_id = :action_id';
|
||||
$aActionQueryParams = ['action_id' => $this->GetKey()];
|
||||
if ($iLastExecutionDays > 0) {
|
||||
$sActionQueryOql .= ' AND date > DATE_SUB(NOW(), INTERVAL :days DAY)';
|
||||
$aActionQueryParams['days'] = $iLastExecutionDays;
|
||||
$sActionQueryLimit = Dict::Format('Action:last_executions_tab_limit_days', $iLastExecutionDays);
|
||||
} else {
|
||||
$sActionQueryLimit = Dict::S('Action:last_executions_tab_limit_none');
|
||||
}
|
||||
|
||||
$oActionFilter = DBObjectSearch::FromOQL($sActionQueryOql, $aActionQueryParams);
|
||||
$oSet = new DBObjectSet($oActionFilter, ['date' => false]);
|
||||
|
||||
$sPanelTitle = Dict::Format('Action:last_executions_tab_panel_title', $sActionQueryLimit);
|
||||
$oExecutionsListBlock = DataTableUIBlockFactory::MakeForResult($oPage, 'action_executions_list', $oSet, ['panel_title' => $sPanelTitle]);
|
||||
|
||||
$oPage->AddUiBlock($oExecutionsListBlock);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -646,8 +703,6 @@ class ActionEmail extends ActionNotification
|
||||
$oLog->Set('body', HTMLSanitizer::Sanitize($aMessageContent['body']));
|
||||
}
|
||||
}
|
||||
$sStyles = file_get_contents(APPROOT.'css/email.css');
|
||||
$sStyles .= MetaModel::GetConfig()->Get('email_css');
|
||||
|
||||
if ($this->IsBeingTested()) {
|
||||
$sTestBody = $aMessageContent['body'];
|
||||
|
||||
@@ -97,6 +97,31 @@ function apc_delete($key)
|
||||
return $bRet1 || $bRet2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if APCu emulation key exists
|
||||
*
|
||||
* @param string|string[] $keys A string, or an array of strings, that contain keys.
|
||||
*
|
||||
* @return bool|string[] Returns TRUE if the key exists, otherwise FALSE
|
||||
* Or if an array was passed to keys, then an array is returned that
|
||||
* contains all existing keys, or an empty array if none exist.
|
||||
* @since 3.2.0 N°7068
|
||||
*/
|
||||
function apc_exists($keys)
|
||||
{
|
||||
if (is_array($keys)) {
|
||||
$aExistingKeys = [];
|
||||
foreach ($keys as $sKey) {
|
||||
if (apcFile::ExistsOneFile($sKey)) {
|
||||
$aExistingKeys[] = $sKey;
|
||||
}
|
||||
}
|
||||
return $aExistingKeys;
|
||||
} else {
|
||||
return apcFile::ExistsOneFile($keys);
|
||||
}
|
||||
}
|
||||
|
||||
class apcFile
|
||||
{
|
||||
// Check only once per request
|
||||
@@ -183,6 +208,16 @@ class apcFile
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if cache key exists
|
||||
* @param $sKey
|
||||
* @return bool
|
||||
* @since 3.2.0 N°7068
|
||||
*/
|
||||
static public function ExistsOneFile($sKey) {
|
||||
return is_file(self::GetCacheFileName('-' . $sKey)) || is_file(self::GetCacheFileName($sKey));
|
||||
}
|
||||
|
||||
/** Get one cache entry content.
|
||||
* @param $sKey
|
||||
* @return bool|mixed
|
||||
|
||||
@@ -1619,6 +1619,14 @@ class Config
|
||||
'source_of_value' => '',
|
||||
'show_in_conf_sample' => false,
|
||||
],
|
||||
'notifications.last_executions_days' => [
|
||||
'type' => 'integer',
|
||||
'description' => 'Number of days to display in the Action\'s last executions tab (0 means no limit)',
|
||||
'default' => 30 + 31, // 2 months
|
||||
'value' => 61,
|
||||
'source_of_value' => '',
|
||||
'show_in_conf_sample' => false,
|
||||
],
|
||||
'regenerate_session_id_enabled' => [
|
||||
'type' => 'bool',
|
||||
'description' => 'If true then session id will be regenerated on each login, to prevent session fixation.',
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
/*
|
||||
Tabs - additional IE specific bug fixes
|
||||
|
||||
Recommended usage (Conditional Comments):
|
||||
<!--[if lte IE 7]>
|
||||
<link rel="stylesheet" href="tabs_ie.css" type="text/css" media="projection, screen" />
|
||||
<![endif]-->
|
||||
|
||||
*/
|
||||
.tabs-nav { /* auto clear */
|
||||
display: inline-block;
|
||||
}
|
||||
.tabs-nav .tabs-disabled a {
|
||||
filter: alpha(opacity=40);
|
||||
}
|
||||
@@ -50,7 +50,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -35,7 +35,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -48,7 +48,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -35,7 +35,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -47,7 +47,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -49,7 +49,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserLocal/Attribute:expiration/Value:force_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_renewed_date' => 'Password renewal~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date' => 'Password renewed on~~',
|
||||
'Class:UserLocal/Attribute:password_renewed_date+' => 'When the password was last changed~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
// Database inconsistencies
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'DB Tools~~',
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
// Database inconsistencies
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'DB Tools~~',
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -50,7 +50,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'DBAnalyzer-Integrity-OrphanRecord' => 'Árva rekord a `%1$s` -ban, kell hogy legyen megfelelője a `%2$s` táblázatban',
|
||||
'DBAnalyzer-Integrity-InvalidExtKey' => 'Érvénytelen a %1$s külső kulcs (oszlop: `%2$s.%3$s`)',
|
||||
'DBAnalyzer-Integrity-MissingExtKey' => 'Hiányzik a %1$s külső külcs (oszlop: `%2$s.%3$s`)',
|
||||
'DBAnalyzer-Integrity-InvalidValue' => '%1$s értéke érvénytelen (oszlop: `%2$s.%3$s`)~~',
|
||||
'DBAnalyzer-Integrity-InvalidValue' => '%1$s értéke érvénytelen (oszlop: `%2$s.%3$s`)',
|
||||
'DBAnalyzer-Integrity-UsersWithoutProfile' => 'Néhány felhasználónak egyáltalán nincs fiókja',
|
||||
'DBAnalyzer-Integrity-HKInvalid' => 'Sérült a `%1$s` hierarchikus kulcs',
|
||||
'DBAnalyzer-Fetch-Count-Error' => 'Lekérési hiba a `%1$s` -nál, %2$d bejegyzés lekérve / %3$d megszámlálva',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
// Database inconsistencies
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'DB Tools~~',
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
// Database inconsistencies
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'DB Tools~~',
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -12,7 +12,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'Инструменты БД',
|
||||
'DBTools:Class' => 'Класс',
|
||||
'DBTools:Title' => 'Инструменты обслуживания базы данных~~',
|
||||
'DBTools:Title' => 'Инструменты обслуживания базы данных',
|
||||
'DBTools:ErrorsFound' => 'Найденные ошибки',
|
||||
'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~~',
|
||||
|
||||
@@ -25,7 +25,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
// Database inconsistencies
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:DBToolsMenu' => 'DB Tools~~',
|
||||
'Menu:DBToolsMenu' => 'Database integrity~~',
|
||||
'DBTools:Class' => 'Class~~',
|
||||
'DBTools:Title' => 'Database Maintenance Tools~~',
|
||||
'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~~',
|
||||
|
||||
@@ -53,7 +53,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'DBAnalyzer-Integrity-InvalidValue' => '无效的值%1$s (列: `%2$s.%3$s`)',
|
||||
'DBAnalyzer-Integrity-UsersWithoutProfile' => '一些用户账号没有角色',
|
||||
'DBAnalyzer-Integrity-HKInvalid' => '损坏的层级链 `%1$s`',
|
||||
'DBAnalyzer-Fetch-Count-Error' => '读取计数出错于 `%1$s`, %2$d个记录已读取 / %3$d已~~',
|
||||
'DBAnalyzer-Fetch-Count-Error' => '读取计数出错于 `%1$s`, %2$d个记录已读取 / %3$d已',
|
||||
'DBAnalyzer-Integrity-FinalClass' => '字段 `%2$s`.`%1$s` 必须是相同的值, 而不是 `%3$s`.`%1$s`',
|
||||
'DBAnalyzer-Integrity-RootFinalClass' => '字段 `%2$s`.`%1$s` 必须包含一个有效的类型',
|
||||
));
|
||||
|
||||
@@ -29,9 +29,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Attachments:History_File_Removed' => 'Attachment %1$s removed.~~',
|
||||
'Attachments:AddAttachment' => 'Add attachment: ~~',
|
||||
'Attachments:UploadNotAllowedOnThisSystem' => 'File upload in NOT allowed on this system.~~',
|
||||
'Attachment:Max_Go' => '(Maximum file size: %1$s Go)~~',
|
||||
'Attachment:Max_Mo' => '(Maximum file size: %1$s Mo)~~',
|
||||
'Attachment:Max_Ko' => '(Maximum file size: %1$s Ko)~~',
|
||||
'Attachment:Max_Go' => '(Maximum file size: %1$s GB)~~',
|
||||
'Attachment:Max_Mo' => '(Maximum file size: %1$s MB)~~',
|
||||
'Attachment:Max_Ko' => '(Maximum file size: %1$s KB)~~',
|
||||
'Attachments:NoAttachment' => 'No attachment. ~~',
|
||||
'Attachments:PreviewNotAvailable' => 'Preview not available for this type of attachment.~~',
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
|
||||
@@ -29,9 +29,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Attachments:History_File_Removed' => 'Attachment %1$s removed.~~',
|
||||
'Attachments:AddAttachment' => 'Add attachment: ~~',
|
||||
'Attachments:UploadNotAllowedOnThisSystem' => 'File upload in NOT allowed on this system.~~',
|
||||
'Attachment:Max_Go' => '(Maximum file size: %1$s Go)~~',
|
||||
'Attachment:Max_Mo' => '(Maximum file size: %1$s Mo)~~',
|
||||
'Attachment:Max_Ko' => '(Maximum file size: %1$s Ko)~~',
|
||||
'Attachment:Max_Go' => '(Maximum file size: %1$s GB)~~',
|
||||
'Attachment:Max_Mo' => '(Maximum file size: %1$s MB)~~',
|
||||
'Attachment:Max_Ko' => '(Maximum file size: %1$s KB)~~',
|
||||
'Attachments:NoAttachment' => 'No attachment. ~~',
|
||||
'Attachments:PreviewNotAvailable' => 'Preview not available for this type of attachment.~~',
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'bkp-backup-running' => 'A backup is running. Please wait...~~',
|
||||
'bkp-restore-running' => 'A restore is running. Please wait...~~',
|
||||
'Menu:BackupStatus' => 'Scheduled Backups~~',
|
||||
'bkp-status-title' => 'Scheduled Backups~~',
|
||||
'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.~~',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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' => '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-button-backup-now' => 'Backup now!~~',
|
||||
'bkp-button-restore-now' => 'Restore!~~',
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'bkp-backup-running' => 'A backup is running. Please wait...~~',
|
||||
'bkp-restore-running' => 'A restore is running. Please wait...~~',
|
||||
'Menu:BackupStatus' => 'Scheduled backups~~',
|
||||
'bkp-status-title' => 'Scheduled Backups~~',
|
||||
'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.~~',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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' => '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-button-backup-now' => 'Backup now!~~',
|
||||
'bkp-button-restore-now' => 'Restore!~~',
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'bkp-backup-running' => 'A backup is running. Please wait...~~',
|
||||
'bkp-restore-running' => 'A restore is running. Please wait...~~',
|
||||
'Menu:BackupStatus' => 'Scheduled backups~~',
|
||||
'bkp-status-title' => 'Scheduled Backups~~',
|
||||
'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.~~',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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' => '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-button-backup-now' => 'Backup now!~~',
|
||||
'bkp-button-restore-now' => 'Restore!~~',
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
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...~~',
|
||||
'Menu:BackupStatus' => 'Scheduled Backups~~',
|
||||
'bkp-status-title' => 'Scheduled Backups~~',
|
||||
'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.~~',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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' => '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-button-backup-now' => 'Backup now!~~',
|
||||
'bkp-button-restore-now' => 'Restore!~~',
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'bkp-backup-running' => 'A backup is running. Please wait...~~',
|
||||
'bkp-restore-running' => 'A restore is running. Please wait...~~',
|
||||
'Menu:BackupStatus' => 'Scheduled Backups~~',
|
||||
'bkp-status-title' => 'Scheduled Backups~~',
|
||||
'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.~~',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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' => '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-button-backup-now' => 'Backup now!~~',
|
||||
'bkp-button-restore-now' => 'Restore!~~',
|
||||
|
||||
@@ -1282,7 +1282,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:VLAN/Attribute:org_id' => 'Organization~~',
|
||||
'Class:VLAN/Attribute:org_id+' => '~~',
|
||||
'Class:VLAN/Attribute:org_name' => 'Organization name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => 'Common name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => '',
|
||||
'Class:VLAN/Attribute:subnets_list' => 'Subnets~~',
|
||||
'Class:VLAN/Attribute:subnets_list+' => '~~',
|
||||
'Class:VLAN/Attribute:physicalinterfaces_list' => 'Physical network interfaces~~',
|
||||
|
||||
@@ -34,7 +34,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Relation:depends on/UpStream' => 'Wirkt auf ...',
|
||||
'Relation:impacts/LoadData' => 'Daten laden',
|
||||
'Relation:impacts/FilteredData' => 'Daten sind über den Tab "Grafische Ansicht" gefiltert',
|
||||
'Relation:impacts/NoFilteredData' => 'Bitte wählen Sie Objekte ~~',
|
||||
'Relation:impacts/NoFilteredData' => 'Bitte wählen Sie Objekte',
|
||||
));
|
||||
|
||||
|
||||
|
||||
@@ -1438,7 +1438,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:lnkConnectableCIToNetworkDevice/Attribute:connection_type/Value:downlink' => 'Bejövő',
|
||||
'Class:lnkConnectableCIToNetworkDevice/Attribute:connection_type/Value:downlink+' => 'bejövő link',
|
||||
'Class:lnkConnectableCIToNetworkDevice/Attribute:connection_type/Value:uplink' => 'Kimenő',
|
||||
'Class:lnkConnectableCIToNetworkDevice/Attribute:connection_type/Value:uplink+' => 'kimenő link~~',
|
||||
'Class:lnkConnectableCIToNetworkDevice/Attribute:connection_type/Value:uplink+' => 'kimenő link',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -105,7 +105,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:FunctionalCI/Attribute:org_id+' => '',
|
||||
'Class:FunctionalCI/Attribute:organization_name' => 'Organization name~~',
|
||||
'Class:FunctionalCI/Attribute:organization_name+' => 'Common name~~',
|
||||
'Class:FunctionalCI/Attribute:business_criticity' => 'Business criticity~~',
|
||||
'Class:FunctionalCI/Attribute:business_criticity' => 'Business criticality~~',
|
||||
'Class:FunctionalCI/Attribute:business_criticity+' => '~~',
|
||||
'Class:FunctionalCI/Attribute:business_criticity/Value:high' => 'high~~',
|
||||
'Class:FunctionalCI/Attribute:business_criticity/Value:high+' => 'high~~',
|
||||
@@ -268,7 +268,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:DatacenterDevice/Attribute:enclosure_name+' => '~~',
|
||||
'Class:DatacenterDevice/Attribute:nb_u' => 'Rack units~~',
|
||||
'Class:DatacenterDevice/Attribute:nb_u+' => '~~',
|
||||
'Class:DatacenterDevice/Attribute:managementip' => 'Management ip~~',
|
||||
'Class:DatacenterDevice/Attribute:managementip' => 'Management IP~~',
|
||||
'Class:DatacenterDevice/Attribute:managementip+' => '~~',
|
||||
'Class:DatacenterDevice/Attribute:powerA_id' => 'PowerA source~~',
|
||||
'Class:DatacenterDevice/Attribute:powerA_id+' => '~~',
|
||||
@@ -327,9 +327,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Server/Attribute:osversion_id+' => '~~',
|
||||
'Class:Server/Attribute:osversion_name' => 'OS version name~~',
|
||||
'Class:Server/Attribute:osversion_name+' => '~~',
|
||||
'Class:Server/Attribute:oslicence_id' => 'OS licence~~',
|
||||
'Class:Server/Attribute:oslicence_id' => 'OS license~~',
|
||||
'Class:Server/Attribute:oslicence_id+' => '~~',
|
||||
'Class:Server/Attribute:oslicence_name' => 'OS licence name~~',
|
||||
'Class:Server/Attribute:oslicence_name' => 'OS license name~~',
|
||||
'Class:Server/Attribute:oslicence_name+' => '~~',
|
||||
'Class:Server/Attribute:cpu' => 'CPU',
|
||||
'Class:Server/Attribute:cpu+' => '',
|
||||
@@ -548,9 +548,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:SoftwareInstance/Attribute:software_id+' => '~~',
|
||||
'Class:SoftwareInstance/Attribute:software_name' => 'Software',
|
||||
'Class:SoftwareInstance/Attribute:software_name+' => '',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_id' => 'Software licence~~',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_id' => 'Software license~~',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_id+' => '~~',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_name' => 'Software licence name~~',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_name' => 'Software license name~~',
|
||||
'Class:SoftwareInstance/Attribute:softwarelicence_name+' => '~~',
|
||||
'Class:SoftwareInstance/Attribute:path' => 'Path~~',
|
||||
'Class:SoftwareInstance/Attribute:path+' => '~~',
|
||||
@@ -742,9 +742,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:VirtualMachine/Attribute:osversion_id+' => '~~',
|
||||
'Class:VirtualMachine/Attribute:osversion_name' => 'OS version name~~',
|
||||
'Class:VirtualMachine/Attribute:osversion_name+' => '~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_id' => 'OS licence~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_id' => 'OS license~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_id+' => '~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_name' => 'OS licence name~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_name' => 'OS license name~~',
|
||||
'Class:VirtualMachine/Attribute:oslicence_name+' => '~~',
|
||||
'Class:VirtualMachine/Attribute:cpu' => 'CPU~~',
|
||||
'Class:VirtualMachine/Attribute:cpu+' => '~~',
|
||||
@@ -895,7 +895,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Software/ComplementaryName' => '%1$s - %2$s~~',
|
||||
'Class:Software/Attribute:name' => 'Nome',
|
||||
'Class:Software/Attribute:name+' => '',
|
||||
'Class:Software/Attribute:vendor' => 'vendor~~',
|
||||
'Class:Software/Attribute:vendor' => 'Vendor~~',
|
||||
'Class:Software/Attribute:vendor+' => '~~',
|
||||
'Class:Software/Attribute:version' => 'Version~~',
|
||||
'Class:Software/Attribute:version+' => '~~',
|
||||
@@ -917,8 +917,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Software/Attribute:softwareinstance_list+' => 'All the software instances for this software~~',
|
||||
'Class:Software/Attribute:softwarepatch_list' => 'Software Patches~~',
|
||||
'Class:Software/Attribute:softwarepatch_list+' => 'All the patchs for this software~~',
|
||||
'Class:Software/Attribute:softwarelicence_list' => 'Software Licences~~',
|
||||
'Class:Software/Attribute:softwarelicence_list+' => 'All the licences for this software~~',
|
||||
'Class:Software/Attribute:softwarelicence_list' => 'Software Licenses~~',
|
||||
'Class:Software/Attribute:softwarelicence_list+' => 'All the licenses for this software~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -934,7 +934,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Patch/Attribute:documents_list+' => 'All the documents linked to this patch~~',
|
||||
'Class:Patch/Attribute:description' => 'Descrizione',
|
||||
'Class:Patch/Attribute:description+' => '',
|
||||
'Class:Patch/Attribute:finalclass' => 'Type~~',
|
||||
'Class:Patch/Attribute:finalclass' => 'Patch sub-class~~',
|
||||
'Class:Patch/Attribute:finalclass+' => 'Name of the final class~~',
|
||||
));
|
||||
|
||||
@@ -978,7 +978,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Licence/Attribute:name' => 'Nome',
|
||||
'Class:Licence/Attribute:name+' => '',
|
||||
'Class:Licence/Attribute:documents_list' => 'Documents~~',
|
||||
'Class:Licence/Attribute:documents_list+' => 'All the documents linked to this licence~~',
|
||||
'Class:Licence/Attribute:documents_list+' => 'All the documents linked to this license~~',
|
||||
'Class:Licence/Attribute:org_id' => 'Proprietario',
|
||||
'Class:Licence/Attribute:org_id+' => '',
|
||||
'Class:Licence/Attribute:organization_name' => 'Organization name~~',
|
||||
@@ -999,7 +999,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Licence/Attribute:perpetual/Value:no+' => 'no~~',
|
||||
'Class:Licence/Attribute:perpetual/Value:yes' => 'yes~~',
|
||||
'Class:Licence/Attribute:perpetual/Value:yes+' => 'yes~~',
|
||||
'Class:Licence/Attribute:finalclass' => 'Type~~',
|
||||
'Class:Licence/Attribute:finalclass' => 'License sub-class~~',
|
||||
'Class:Licence/Attribute:finalclass+' => 'Name of the final class~~',
|
||||
));
|
||||
|
||||
@@ -1008,7 +1008,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:OSLicence' => 'OS Licence~~',
|
||||
'Class:OSLicence' => 'OS License~~',
|
||||
'Class:OSLicence+' => '~~',
|
||||
'Class:OSLicence/ComplementaryName' => '%1$s - %2$s~~',
|
||||
'Class:OSLicence/Attribute:osversion_id' => 'OS version~~',
|
||||
@@ -1016,9 +1016,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:OSLicence/Attribute:osversion_name' => 'OS version name~~',
|
||||
'Class:OSLicence/Attribute:osversion_name+' => '~~',
|
||||
'Class:OSLicence/Attribute:virtualmachines_list' => 'Virtual machines~~',
|
||||
'Class:OSLicence/Attribute:virtualmachines_list+' => 'All the virtual machines where this licence is used~~',
|
||||
'Class:OSLicence/Attribute:servers_list' => 'servers~~',
|
||||
'Class:OSLicence/Attribute:servers_list+' => 'All the servers where this licence is used~~',
|
||||
'Class:OSLicence/Attribute:virtualmachines_list+' => 'All the virtual machines where this license is used~~',
|
||||
'Class:OSLicence/Attribute:servers_list' => 'Servers~~',
|
||||
'Class:OSLicence/Attribute:servers_list+' => 'All the servers where this license is used~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -1026,7 +1026,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:SoftwareLicence' => 'Software Licence~~',
|
||||
'Class:SoftwareLicence' => 'Software License~~',
|
||||
'Class:SoftwareLicence+' => '~~',
|
||||
'Class:SoftwareLicence/ComplementaryName' => '%1$s - %2$s~~',
|
||||
'Class:SoftwareLicence/Attribute:software_id' => 'Software~~',
|
||||
@@ -1034,7 +1034,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:SoftwareLicence/Attribute:software_name' => 'Software name~~',
|
||||
'Class:SoftwareLicence/Attribute:software_name+' => '~~',
|
||||
'Class:SoftwareLicence/Attribute:softwareinstance_list' => 'Software instances~~',
|
||||
'Class:SoftwareLicence/Attribute:softwareinstance_list+' => 'All the systems where this licence is used~~',
|
||||
'Class:SoftwareLicence/Attribute:softwareinstance_list+' => 'All the systems where this license is used~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -1042,12 +1042,12 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkDocumentToLicence' => 'Link Document / Licence~~',
|
||||
'Class:lnkDocumentToLicence' => 'Link Document / License~~',
|
||||
'Class:lnkDocumentToLicence+' => '~~',
|
||||
'Class:lnkDocumentToLicence/Name' => '%1$s / %2$s~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_id' => 'Licence~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_id' => 'License~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_id+' => '~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_name' => 'Licence name~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_name' => 'License name~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:licence_name+' => '~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:document_id' => 'Document~~',
|
||||
'Class:lnkDocumentToLicence/Attribute:document_id+' => '~~',
|
||||
@@ -1257,8 +1257,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Subnet/Attribute:subnet_name+' => '~~',
|
||||
'Class:Subnet/Attribute:org_id' => 'Organizzazione proprietaria',
|
||||
'Class:Subnet/Attribute:org_id+' => '',
|
||||
'Class:Subnet/Attribute:org_name' => 'Name~~',
|
||||
'Class:Subnet/Attribute:org_name+' => 'Common name~~',
|
||||
'Class:Subnet/Attribute:org_name' => 'Organization name~~',
|
||||
'Class:Subnet/Attribute:org_name+' => '~~',
|
||||
'Class:Subnet/Attribute:ip' => 'IP',
|
||||
'Class:Subnet/Attribute:ip+' => '',
|
||||
'Class:Subnet/Attribute:ip_mask' => 'IP Mask',
|
||||
@@ -1281,7 +1281,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:VLAN/Attribute:org_id' => 'Organization~~',
|
||||
'Class:VLAN/Attribute:org_id+' => '~~',
|
||||
'Class:VLAN/Attribute:org_name' => 'Organization name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => 'Common name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => '~~',
|
||||
'Class:VLAN/Attribute:subnets_list' => 'Subnets~~',
|
||||
'Class:VLAN/Attribute:subnets_list+' => '~~',
|
||||
'Class:VLAN/Attribute:physicalinterfaces_list' => 'Physical network interfaces~~',
|
||||
@@ -1317,7 +1317,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:NetworkInterface+' => '',
|
||||
'Class:NetworkInterface/Attribute:name' => 'Name~~',
|
||||
'Class:NetworkInterface/Attribute:name+' => '~~',
|
||||
'Class:NetworkInterface/Attribute:finalclass' => 'Type~~',
|
||||
'Class:NetworkInterface/Attribute:finalclass' => 'NetworkInterface sub-class~~',
|
||||
'Class:NetworkInterface/Attribute:finalclass+' => 'Name of the final class~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -1281,7 +1281,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:VLAN/Attribute:org_id' => 'Organization~~',
|
||||
'Class:VLAN/Attribute:org_id+' => '~~',
|
||||
'Class:VLAN/Attribute:org_name' => 'Organization name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => 'Common name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => '~~',
|
||||
'Class:VLAN/Attribute:subnets_list' => 'Subnets~~',
|
||||
'Class:VLAN/Attribute:subnets_list+' => '~~',
|
||||
'Class:VLAN/Attribute:physicalinterfaces_list' => 'Physical network interfaces~~',
|
||||
|
||||
@@ -1286,7 +1286,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:VLAN/Attribute:org_id' => 'Organization~~',
|
||||
'Class:VLAN/Attribute:org_id+' => '~~',
|
||||
'Class:VLAN/Attribute:org_name' => 'Organization name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => 'Common name~~',
|
||||
'Class:VLAN/Attribute:org_name+' => '~~',
|
||||
'Class:VLAN/Attribute:subnets_list' => 'Subnets~~',
|
||||
'Class:VLAN/Attribute:subnets_list+' => '~~',
|
||||
'Class:VLAN/Attribute:physicalinterfaces_list' => 'Physical network interfaces~~',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Menu:ConfigEditor' => 'Configuration~~',
|
||||
'Menu:ConfigEditor' => 'General configuration~~',
|
||||
'config-edit-title' => 'Configuration File Editor~~',
|
||||
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
|
||||
'config-apply' => 'Apply~~',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:ConfigEditor' => 'Configuration~~',
|
||||
'Menu:ConfigEditor' => 'General configuration~~',
|
||||
'config-edit-title' => 'Configuration File Editor~~',
|
||||
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
|
||||
'config-apply' => 'Apply~~',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Menu:ConfigEditor' => 'Configuration~~',
|
||||
'Menu:ConfigEditor' => 'General configuration~~',
|
||||
'config-edit-title' => 'Configuration File Editor~~',
|
||||
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
|
||||
'config-apply' => 'Apply~~',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Menu:ConfigEditor' => 'Configuration~~',
|
||||
'Menu:ConfigEditor' => 'General configuration~~',
|
||||
'config-edit-title' => 'Configuration File Editor~~',
|
||||
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
|
||||
'config-apply' => 'Apply~~',
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:ConfigEditor' => 'Configuration~~',
|
||||
'Menu:ConfigEditor' => 'General configuration~~',
|
||||
'config-edit-title' => 'Configuration File Editor~~',
|
||||
'config-edit-intro' => 'Be very cautious when editing the configuration file.~~',
|
||||
'config-apply' => 'Apply~~',
|
||||
|
||||
@@ -37,5 +37,5 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'config-error-transaction' => '错误: 无效的事务编号. 配置<b>没有</b>被更新.',
|
||||
'config-error-file-changed' => '错误: 配置文件在您打开以后已被更改, 无法保存. 请刷新并再次保存.',
|
||||
'config-not-allowed-in-demo' => '抱歉, '.ITOP_APPLICATION_SHORT.'处于<b>演示模式</b>: 不能编辑配置文件.',
|
||||
'config-interactive-not-allowed' => ITOP_APPLICATION_SHORT.'交互式配置编辑器已禁用. 请在配置文件中查看 <code>\'config_editor\' => \'disabled\'</code>.~~',
|
||||
'config-interactive-not-allowed' => ITOP_APPLICATION_SHORT.'交互式配置编辑器已禁用. 请在配置文件中查看 <code>\'config_editor\' => \'disabled\'</code>.',
|
||||
));
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
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' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Application Upgrade~~',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Application Upgrade~~',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'The application is currently under maintenance, no user can access the application. You have to run a setup or restore the application archive to return in normal mode.~~',
|
||||
'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~~',
|
||||
@@ -62,10 +62,10 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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 filesystem~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Error' => 'Checking filesystem failed (%1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:ErrorFileNotExist' => 'Checking filesystem failed (File not exist %1$s)~~',
|
||||
'iTopUpdate:UI:CanCoreUpdate:Failed' => 'Checking filesystem failed~~',
|
||||
'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~~',
|
||||
@@ -81,7 +81,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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 and database~~',
|
||||
'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~~',
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Archivo faltante: %1$s',
|
||||
'FilesInformation:Error:CorruptedFile' => 'El archivo %1$s está corrupto',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'No se puede escribir al archivo %1$s',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Ontbrekend bestand: %1$s',
|
||||
'FilesInformation:Error:CorruptedFile' => 'Corrupt bestand: %1$s',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Kan niet schrijven naar bestand %1$s',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Arquivo ausente: %1$s',
|
||||
'FilesInformation:Error:CorruptedFile' => 'Arquivo %1$s está corrompido',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Sem permissão de escrita no arquivo %1$s',
|
||||
));
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Файл %1$s отсутствует',
|
||||
'FilesInformation:Error:CorruptedFile' => 'Файл %1$s повреждён',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Невозможно выполнить запись в файл %1$s',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
// Errors
|
||||
'FilesInformation:Error:MissingFile' => 'Missing file: %1$s~~',
|
||||
'FilesInformation:Error:CorruptedFile' => 'File %1$s is corrupted~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s~~',
|
||||
'FilesInformation:Error:ListCorruptedFile' => 'File(s) corrupted: %1$s ~~',
|
||||
'FilesInformation:Error:CantWriteToFile' => 'Can not write to file %1$s~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'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 Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -30,7 +30,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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 Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -65,7 +65,7 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'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 configuration before updating',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and '.ITOP_APPLICATION_SHORT.' configuration before updating',
|
||||
'iTopHub:DeployBtn' => 'Deploy !',
|
||||
'iTopHub:DatabaseBackupProgress' => 'Instance backup...',
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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 Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:iTopHub' => 'iTop Hub~~',
|
||||
'Menu:iTopHub:Register' => 'Connect to iTop Hub~~',
|
||||
'Menu:iTopHub:Register+' => 'Go to iTop Hub to update your iTop 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 instance into the Hub.</p>~~',
|
||||
'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 Hub’s store, your one stop place to find wonderful iTop extensions !<br>Find the ones that will help you customize and adapt iTop to your processes.<br><br>By connecting to the Hub from this page, you will push information about this iTop instance into the Hub.</p>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
@@ -45,7 +45,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'iTopHub:Landing:Status' => 'Deployment status~~',
|
||||
'iTopHub:Landing:Install' => 'Deploying extensions...~~',
|
||||
'iTopHub:CompiledOK' => 'Compilation successful.~~',
|
||||
'iTopHub:ConfigurationSafelyReverted' => 'Error detected during deployment!<br>iTop configuration has NOT been modified.~~',
|
||||
'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:ExtensionCategory:Manual' => 'Extensions deployed manually~~',
|
||||
@@ -53,7 +53,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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 to your processes !~~',
|
||||
'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:GetMoreExtensions' => 'Get extensions from iTop Hub...~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
@@ -61,7 +61,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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 configuration before updating~~',
|
||||
'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.~~',
|
||||
|
||||
@@ -18,7 +18,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Menu:iTopHub:MyExtensions+' => 'Расширения, развернутые на данном экземпляре '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:BrowseExtensions' => 'Получить расширения из iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions+' => 'Найдите дополнительные расширения на iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -30,7 +30,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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 Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -30,7 +30,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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 Hub’s store, your one stop place to find wonderful '.ITOP_APPLICATION_SHORT.' 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>~~',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Look into iTop Hub’s 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~~',
|
||||
|
||||
@@ -91,23 +91,23 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Incident/Attribute:priority' => 'Prioritás',
|
||||
'Class:Incident/Attribute:priority+' => '~~',
|
||||
'Class:Incident/Attribute:priority/Value:1' => 'Kritikus',
|
||||
'Class:Incident/Attribute:priority/Value:1+' => 'critical~~',
|
||||
'Class:Incident/Attribute:priority/Value:1+' => '',
|
||||
'Class:Incident/Attribute:priority/Value:2' => 'Magas',
|
||||
'Class:Incident/Attribute:priority/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:priority/Value:2+' => '',
|
||||
'Class:Incident/Attribute:priority/Value:3' => 'Közepes',
|
||||
'Class:Incident/Attribute:priority/Value:3+' => 'medium~~',
|
||||
'Class:Incident/Attribute:priority/Value:3+' => '',
|
||||
'Class:Incident/Attribute:priority/Value:4' => 'Alacsony',
|
||||
'Class:Incident/Attribute:priority/Value:4+' => 'low~~',
|
||||
'Class:Incident/Attribute:priority/Value:4+' => '',
|
||||
'Class:Incident/Attribute:urgency' => 'Sürgősség',
|
||||
'Class:Incident/Attribute:urgency+' => '~~',
|
||||
'Class:Incident/Attribute:urgency/Value:1' => 'Nem várhat',
|
||||
'Class:Incident/Attribute:urgency/Value:1+' => 'critical~~',
|
||||
'Class:Incident/Attribute:urgency/Value:1+' => '',
|
||||
'Class:Incident/Attribute:urgency/Value:2' => 'Nagyon sürgős',
|
||||
'Class:Incident/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:urgency/Value:2+' => '',
|
||||
'Class:Incident/Attribute:urgency/Value:3' => 'Sürgős',
|
||||
'Class:Incident/Attribute:urgency/Value:3+' => 'sürgős',
|
||||
'Class:Incident/Attribute:urgency/Value:4' => 'Nem sürgős',
|
||||
'Class:Incident/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'Class:Incident/Attribute:urgency/Value:4+' => '',
|
||||
'Class:Incident/Attribute:origin' => 'Eredet',
|
||||
'Class:Incident/Attribute:origin+' => '~~',
|
||||
'Class:Incident/Attribute:origin/Value:in_person' => 'In-person~~',
|
||||
@@ -115,13 +115,13 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Incident/Attribute:origin/Value:chat' => 'Chat~~',
|
||||
'Class:Incident/Attribute:origin/Value:chat+' => 'Incident created following a ~~',
|
||||
'Class:Incident/Attribute:origin/Value:mail' => 'Email',
|
||||
'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' => 'Felügyelet',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'monitoring~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'Incident created on a monitoring alert~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone' => 'Telefon',
|
||||
'Class:Incident/Attribute:origin/Value:phone+' => 'phone~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone+' => 'Incident created following a phone call~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal' => 'Portál',
|
||||
'Class:Incident/Attribute:origin/Value:portal+' => 'portal~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal+' => 'Incident created on the user portal~~',
|
||||
'Class:Incident/Attribute:service_id' => 'Szolgáltatás',
|
||||
'Class:Incident/Attribute:service_id+' => '~~',
|
||||
'Class:Incident/Attribute:service_name' => 'Szolgáltatás név',
|
||||
@@ -133,9 +133,9 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Incident/Attribute:escalation_flag' => 'Sürgősség jelzés',
|
||||
'Class:Incident/Attribute:escalation_flag+' => '~~',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:no' => 'Nem',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:no+' => 'No~~',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:no+' => '',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:yes' => 'Igen',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:yes+' => 'Yes~~',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:yes+' => '',
|
||||
'Class:Incident/Attribute:escalation_reason' => 'Sürgősségi ok',
|
||||
'Class:Incident/Attribute:escalation_reason+' => '~~',
|
||||
'Class:Incident/Attribute:assignment_date' => 'Megbízás dátuma',
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
*/
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Menu:IncidentManagement' => 'Incident Management~~',
|
||||
'Menu:IncidentManagement+' => 'Incident Management~~',
|
||||
'Menu:IncidentManagement+' => '',
|
||||
'Menu:Incident:Overview' => 'Overview~~',
|
||||
'Menu:Incident:Overview+' => 'Overview~~',
|
||||
'Menu:Incident:Overview+' => '',
|
||||
'Menu:NewIncident' => 'New incident~~',
|
||||
'Menu:NewIncident+' => 'Create a new incident ticket~~',
|
||||
'Menu:SearchIncidents' => 'Search for incidents~~',
|
||||
@@ -34,9 +34,9 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Menu:Incident:MyIncidents' => 'Incidents assigned to me~~',
|
||||
'Menu:Incident:MyIncidents+' => 'Incidents assigned to me (as Agent)~~',
|
||||
'Menu:Incident:EscalatedIncidents' => 'Escalated incidents~~',
|
||||
'Menu:Incident:EscalatedIncidents+' => 'Escalated incidents~~',
|
||||
'Menu:Incident:EscalatedIncidents+' => '',
|
||||
'Menu:Incident:OpenIncidents' => 'All open incidents~~',
|
||||
'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~~',
|
||||
@@ -90,38 +90,38 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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+' => 'critical~~',
|
||||
'Class:Incident/Attribute:priority/Value:2' => 'high~~',
|
||||
'Class:Incident/Attribute:priority/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:priority/Value:3' => 'medium~~',
|
||||
'Class:Incident/Attribute:priority/Value:3+' => 'medium~~',
|
||||
'Class:Incident/Attribute:priority/Value:4' => 'low~~',
|
||||
'Class:Incident/Attribute:priority/Value:4+' => 'low~~',
|
||||
'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+' => 'critical~~',
|
||||
'Class:Incident/Attribute:urgency/Value:2' => 'high~~',
|
||||
'Class:Incident/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:urgency/Value:3' => 'medium~~',
|
||||
'Class:Incident/Attribute:urgency/Value:3+' => 'medium~~',
|
||||
'Class:Incident/Attribute:urgency/Value:4' => 'low~~',
|
||||
'Class:Incident/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'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: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/Value:chat' => 'Chat~~',
|
||||
'Class:Incident/Attribute:origin/Value:chat+' => 'Incident created following a ~~',
|
||||
'Class:Incident/Attribute:origin/Value:mail' => 'email~~',
|
||||
'Class:Incident/Attribute:origin/Value:mail+' => 'email~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring' => 'monitoring~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'monitoring~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone' => 'phone~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone+' => 'phone~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal' => 'portal~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal+' => 'portal~~',
|
||||
'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~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'Incident created on a monitoring alert~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone' => 'Phone~~',
|
||||
'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:service_id' => 'Service~~',
|
||||
'Class:Incident/Attribute:service_id+' => '~~',
|
||||
'Class:Incident/Attribute:service_name' => 'Service name~~',
|
||||
@@ -133,9 +133,9 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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+' => 'No~~',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:no+' => '',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:yes' => 'Yes~~',
|
||||
'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~~',
|
||||
@@ -146,9 +146,9 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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' => 'TTO~~',
|
||||
'Class:Incident/Attribute:tto+' => '~~',
|
||||
'Class:Incident/Attribute:ttr' => 'ttr~~',
|
||||
'Class:Incident/Attribute:ttr' => 'TTR~~',
|
||||
'Class:Incident/Attribute:ttr+' => '~~',
|
||||
'Class:Incident/Attribute:tto_escalation_deadline' => 'TTO Deadline~~',
|
||||
'Class:Incident/Attribute:tto_escalation_deadline+' => '~~',
|
||||
@@ -166,20 +166,20 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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+' => 'assistance~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:bug fixed' => 'bug fixed~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:bug fixed+' => 'bug fixed~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:hardware repair' => 'hardware repair~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:hardware repair+' => 'hardware repair~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:other' => 'other~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:other+' => 'other~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:software patch' => 'software patch~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:software patch+' => 'software patch~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:system update' => 'system update~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:system update+' => 'system update~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:training' => 'training~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:training+' => 'training~~',
|
||||
'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:solution' => 'Solution~~',
|
||||
'Class:Incident/Attribute:solution+' => '~~',
|
||||
'Class:Incident/Attribute:pending_reason' => 'Pending reason~~',
|
||||
@@ -205,13 +205,13 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'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+' => 'Very satisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:1+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2' => 'Fairly statisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2+' => 'Fairly statisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3' => 'Rather Dissatified~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3+' => 'Rather Dissatified~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:4' => 'Very Dissatisfied~~',
|
||||
'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~~',
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:IncidentManagement' => 'Incident Management~~',
|
||||
'Menu:IncidentManagement+' => 'Incident Management~~',
|
||||
'Menu:IncidentManagement+' => '',
|
||||
'Menu:Incident:Overview' => 'Overview~~',
|
||||
'Menu:Incident:Overview+' => 'Overview~~',
|
||||
'Menu:Incident:Overview+' => '',
|
||||
'Menu:NewIncident' => 'New incident~~',
|
||||
'Menu:NewIncident+' => 'Create a new incident ticket~~',
|
||||
'Menu:SearchIncidents' => 'Search for incidents~~',
|
||||
@@ -34,9 +34,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:Incident:MyIncidents' => 'Incidents assigned to me~~',
|
||||
'Menu:Incident:MyIncidents+' => 'Incidents assigned to me (as Agent)~~',
|
||||
'Menu:Incident:EscalatedIncidents' => 'Escalated incidents~~',
|
||||
'Menu:Incident:EscalatedIncidents+' => 'Escalated incidents~~',
|
||||
'Menu:Incident:EscalatedIncidents+' => '',
|
||||
'Menu:Incident:OpenIncidents' => 'All open incidents~~',
|
||||
'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~~',
|
||||
@@ -90,38 +90,38 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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+' => 'critical~~',
|
||||
'Class:Incident/Attribute:priority/Value:2' => 'high~~',
|
||||
'Class:Incident/Attribute:priority/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:priority/Value:3' => 'medium~~',
|
||||
'Class:Incident/Attribute:priority/Value:3+' => 'medium~~',
|
||||
'Class:Incident/Attribute:priority/Value:4' => 'low~~',
|
||||
'Class:Incident/Attribute:priority/Value:4+' => 'low~~',
|
||||
'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+' => 'critical~~',
|
||||
'Class:Incident/Attribute:urgency/Value:2' => 'high~~',
|
||||
'Class:Incident/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:Incident/Attribute:urgency/Value:3' => 'medium~~',
|
||||
'Class:Incident/Attribute:urgency/Value:3+' => 'medium~~',
|
||||
'Class:Incident/Attribute:urgency/Value:4' => 'low~~',
|
||||
'Class:Incident/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'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: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/Value:chat' => 'Chat~~',
|
||||
'Class:Incident/Attribute:origin/Value:chat+' => 'Incident created following a ~~',
|
||||
'Class:Incident/Attribute:origin/Value:mail' => 'email~~',
|
||||
'Class:Incident/Attribute:origin/Value:mail+' => 'email~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring' => 'monitoring~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'monitoring~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone' => 'phone~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone+' => 'phone~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal' => 'portal~~',
|
||||
'Class:Incident/Attribute:origin/Value:portal+' => 'portal~~',
|
||||
'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~~',
|
||||
'Class:Incident/Attribute:origin/Value:monitoring+' => 'Incident created on a monitoring alert~~',
|
||||
'Class:Incident/Attribute:origin/Value:phone' => 'Phone~~',
|
||||
'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:service_id' => 'Service~~',
|
||||
'Class:Incident/Attribute:service_id+' => '~~',
|
||||
'Class:Incident/Attribute:service_name' => 'Service name~~',
|
||||
@@ -133,9 +133,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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+' => 'No~~',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:no+' => '',
|
||||
'Class:Incident/Attribute:escalation_flag/Value:yes' => 'Yes~~',
|
||||
'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~~',
|
||||
@@ -146,9 +146,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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' => 'TTO~~',
|
||||
'Class:Incident/Attribute:tto+' => '~~',
|
||||
'Class:Incident/Attribute:ttr' => 'ttr~~',
|
||||
'Class:Incident/Attribute:ttr' => 'TTR~~',
|
||||
'Class:Incident/Attribute:ttr+' => '~~',
|
||||
'Class:Incident/Attribute:tto_escalation_deadline' => 'TTO Deadline~~',
|
||||
'Class:Incident/Attribute:tto_escalation_deadline+' => '~~',
|
||||
@@ -166,20 +166,20 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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+' => 'assistance~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:bug fixed' => 'bug fixed~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:bug fixed+' => 'bug fixed~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:hardware repair' => 'hardware repair~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:hardware repair+' => 'hardware repair~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:other' => 'other~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:other+' => 'other~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:software patch' => 'software patch~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:software patch+' => 'software patch~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:system update' => 'system update~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:system update+' => 'system update~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:training' => 'training~~',
|
||||
'Class:Incident/Attribute:resolution_code/Value:training+' => 'training~~',
|
||||
'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:solution' => 'Solution~~',
|
||||
'Class:Incident/Attribute:solution+' => '~~',
|
||||
'Class:Incident/Attribute:pending_reason' => 'Pending reason~~',
|
||||
@@ -205,13 +205,13 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'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+' => 'Very satisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:1+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2' => 'Fairly statisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2+' => 'Fairly statisfied~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:2+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3' => 'Rather Dissatified~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3+' => 'Rather Dissatified~~',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:3+' => '',
|
||||
'Class:Incident/Attribute:user_satisfaction/Value:4' => 'Very Dissatisfied~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth Client~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
*/
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth Client~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -9,8 +9,8 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
'Menu:CreateMailbox' => 'Create a mailbox...~~',
|
||||
'Menu:OAuthClient' => 'OAuth client~~',
|
||||
'Menu:OAuthClient+' => '~~',
|
||||
'Menu:GenerateTokens' => 'Generate access tokens...~~',
|
||||
'Menu:RegenerateTokens' => 'Regenerate access tokens...~~',
|
||||
'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~~',
|
||||
|
||||
@@ -81,7 +81,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
@@ -129,8 +129,8 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form: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)~~',
|
||||
|
||||
@@ -81,7 +81,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
@@ -129,8 +129,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form: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)~~',
|
||||
|
||||
@@ -81,7 +81,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
@@ -129,8 +129,8 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form: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)~~',
|
||||
|
||||
@@ -81,7 +81,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
@@ -129,8 +129,8 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form: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)~~',
|
||||
|
||||
@@ -81,7 +81,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:UserProfile:Password:ConfirmPassword' => 'Confirm password~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeContactAdministrator' => 'To change your password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:Password:CantChangeForUnknownReason' => 'Can\'t change password, please contact your %1$s administrator~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal informations~~',
|
||||
'Brick:Portal:UserProfile:PersonalInformations:Title' => 'Personal information~~',
|
||||
'Brick:Portal:UserProfile:Photo:Title' => 'Photo~~',
|
||||
));
|
||||
|
||||
@@ -129,8 +129,8 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Brick:Portal:Object:Name' => 'Object~~',
|
||||
'Brick:Portal:Object:Form:Create:Title' => 'New %1$s~~',
|
||||
'Brick:Portal:Object:Form:Edit:Title' => 'Updating %2$s (%1$s)~~',
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s : %2$s~~',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => 'Please, fill the following informations:~~',
|
||||
'Brick:Portal:Object:Form: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)~~',
|
||||
|
||||
@@ -132,7 +132,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Brick:Portal:Object:Form:View:Title' => '%1$s: %2$s',
|
||||
'Brick:Portal:Object:Form:Stimulus:Title' => '请填写下列信息:',
|
||||
'Brick:Portal:Object:Form:Message:Saved' => '已保存',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '已保存%1$s~~',
|
||||
'Brick:Portal:Object:Form:Message:ObjectSaved' => '已保存%1$s',
|
||||
'Brick:Portal:Object:Search:Regular:Title' => '选择%1$s (%2$s)',
|
||||
'Brick:Portal:Object:Search:Hierarchy:Title' => '选择%1$s (%2$s)',
|
||||
'Brick:Portal:Object:Copy:TextToCopy' => '%2$s',
|
||||
|
||||
@@ -32,7 +32,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Page:DefaultTitle' => '%1$s - Felhasználói portál',
|
||||
'Brick:Portal:UserProfile:Title' => 'Saját profil',
|
||||
'Brick:Portal:NewRequest:Title' => 'Új kérelem',
|
||||
'Brick:Portal:NewRequest:Title+' => '<p>Segíthetünk?</p><p>Válasszon a szolgáltatáskatalógusból, és küldje el kérését a támogató csapatunknak.</p>~~',
|
||||
'Brick:Portal:NewRequest:Title+' => '<p>Segíthetünk?</p><p>Válasszon a szolgáltatáskatalógusból, és küldje el kérését a támogató csapatunknak.</p>',
|
||||
'Brick:Portal:OngoingRequests:Title' => 'Folyamatban lévő kérelmek',
|
||||
'Brick:Portal:OngoingRequests:Title+' => '<p>Kövesse nyomon a folyamatban lévő kérelmeit.</p><p>Kövesse a folyamatot, tegyen megjegyzéseket, csatoljon dokumentumokat, nyugtázza a megoldást.</p>',
|
||||
'Brick:Portal:OngoingRequests:Tab:OnGoing' => 'Nyitott',
|
||||
|
||||
@@ -87,7 +87,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Problem/Attribute:urgency/Value:3' => 'Sürgős',
|
||||
'Class:Problem/Attribute:urgency/Value:3+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:4' => 'Nem sürgős',
|
||||
'Class:Problem/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'Class:Problem/Attribute:urgency/Value:4+' => '',
|
||||
'Class:Problem/Attribute:priority' => 'Prioritás',
|
||||
'Class:Problem/Attribute:priority+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:1' => 'Kritikus',
|
||||
@@ -97,7 +97,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Problem/Attribute:priority/Value:3' => 'Közepes',
|
||||
'Class:Problem/Attribute:priority/Value:3+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:4' => 'Alacsony',
|
||||
'Class:Problem/Attribute:priority/Value:4+' => 'Low~~',
|
||||
'Class:Problem/Attribute:priority/Value:4+' => '',
|
||||
'Class:Problem/Attribute:related_change_id' => 'Kapcsolódó változások',
|
||||
'Class:Problem/Attribute:related_change_id+' => '',
|
||||
'Class:Problem/Attribute:related_change_ref' => 'Referenciaszám',
|
||||
|
||||
@@ -43,8 +43,8 @@
|
||||
// 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:ProblemManagement' => 'Problem management~~',
|
||||
'Menu:ProblemManagement+' => 'Problem management~~',
|
||||
'Menu:Problem:Overview' => 'Overview~~',
|
||||
'Menu:Problem:Overview+' => 'Overview~~',
|
||||
'Menu:NewProblem' => 'New problem~~',
|
||||
@@ -103,24 +103,24 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:Problem/Attribute:impact/Value:3+' => '~~',
|
||||
'Class:Problem/Attribute:urgency' => 'Urgency~~',
|
||||
'Class:Problem/Attribute:urgency+' => '~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1' => 'critical~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1+' => 'critical~~',
|
||||
'Class:Problem/Attribute:urgency/Value:2' => 'high~~',
|
||||
'Class:Problem/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:Problem/Attribute:urgency/Value:3' => 'medium~~',
|
||||
'Class:Problem/Attribute:urgency/Value:3+' => 'medium~~',
|
||||
'Class:Problem/Attribute:urgency/Value:4' => 'low~~',
|
||||
'Class:Problem/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1' => 'Critical~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:2' => 'High~~',
|
||||
'Class:Problem/Attribute:urgency/Value:2+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:3' => 'Medium~~',
|
||||
'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+' => 'Critical~~',
|
||||
'Class:Problem/Attribute:priority/Value:1+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:2' => 'High~~',
|
||||
'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+' => 'Medium~~',
|
||||
'Class:Problem/Attribute:priority/Value:3+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:4' => 'Low~~',
|
||||
'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~~',
|
||||
|
||||
@@ -106,7 +106,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:Problem/Attribute:urgency' => 'Aciliyeti',
|
||||
'Class:Problem/Attribute:urgency+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:1' => 'Critical~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1+' => 'Critical~~',
|
||||
'Class:Problem/Attribute:urgency/Value:1+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:2' => 'Orta',
|
||||
'Class:Problem/Attribute:urgency/Value:2+' => 'Orta',
|
||||
'Class:Problem/Attribute:urgency/Value:3' => 'Yüksek',
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:RequestManagement' => 'Helpdesk~~',
|
||||
'Menu:RequestManagement+' => 'Helpdesk~~',
|
||||
'Menu:RequestManagement+' => '',
|
||||
'Menu:RequestManagementProvider' => 'Helpdesk provider~~',
|
||||
'Menu:RequestManagementProvider+' => 'Helpdesk provider~~',
|
||||
'Menu:RequestManagementProvider+' => '',
|
||||
'Menu:UserRequest:Provider' => 'Open request transfered to provider~~',
|
||||
'Menu:UserRequest:Provider+' => 'Open request transfered to provider~~',
|
||||
'Menu:UserRequest:Provider+' => '',
|
||||
'Menu:UserRequest:Overview' => 'Overview~~',
|
||||
'Menu:UserRequest:Overview+' => 'Overview~~',
|
||||
'Menu:UserRequest:Overview+' => '',
|
||||
'Menu:NewUserRequest' => 'New user request~~',
|
||||
'Menu:NewUserRequest+' => 'Create a new user request ticket~~',
|
||||
'Menu:SearchUserRequests' => 'Search for user requests~~',
|
||||
@@ -21,11 +21,11 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:UserRequest:MyRequests' => 'Requests assigned to me~~',
|
||||
'Menu:UserRequest:MyRequests+' => 'Requests assigned to me (as Agent)~~',
|
||||
'Menu:UserRequest:MySupportRequests' => 'My support calls~~',
|
||||
'Menu:UserRequest:MySupportRequests+' => 'My support calls~~',
|
||||
'Menu:UserRequest:MySupportRequests+' => '',
|
||||
'Menu:UserRequest:EscalatedRequests' => 'Hot Requests~~',
|
||||
'Menu:UserRequest:EscalatedRequests+' => 'Hot Requests~~',
|
||||
'Menu:UserRequest:EscalatedRequests+' => '',
|
||||
'Menu:UserRequest:OpenRequests' => 'All open requests~~',
|
||||
'Menu:UserRequest:OpenRequests+' => 'All open requests~~',
|
||||
'Menu:UserRequest:OpenRequests+' => '',
|
||||
'UI:WelcomeMenu:MyAssignedCalls' => 'Requests assigned to me~~',
|
||||
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'Last 14 days request per type~~',
|
||||
'UI-RequestManagementOverview-Last-14-days' => 'Last 14 days number of requests~~',
|
||||
@@ -79,7 +79,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:request_type' => 'Request Type~~',
|
||||
'Class:UserRequest/Attribute:request_type+' => '~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Service request~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request+' => 'Service request~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '',
|
||||
'Class:UserRequest/Attribute:impact' => 'Impact~~',
|
||||
'Class:UserRequest/Attribute:impact+' => '~~',
|
||||
'Class:UserRequest/Attribute:impact/Value:1' => 'A department~~',
|
||||
@@ -90,38 +90,38 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:impact/Value:3+' => '~~',
|
||||
'Class:UserRequest/Attribute:priority' => 'Priority~~',
|
||||
'Class:UserRequest/Attribute:priority+' => '~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1+' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2' => 'high~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2+' => 'high~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3+' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4' => 'low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4+' => 'low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1' => 'Critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1+' => '',
|
||||
'Class:UserRequest/Attribute:priority/Value:2' => 'High~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:priority/Value:3' => 'Medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:priority/Value:4' => 'Low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4+' => '',
|
||||
'Class:UserRequest/Attribute:urgency' => 'Urgency~~',
|
||||
'Class:UserRequest/Attribute:urgency+' => '~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1+' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2' => 'high~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3+' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4' => 'low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1' => 'Critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1+' => '',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2' => 'High~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3' => 'Medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4' => 'Low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4+' => '',
|
||||
'Class:UserRequest/Attribute:origin' => 'Origin~~',
|
||||
'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/Value:chat' => 'Chat~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:chat+' => 'Request created following a chat discussion~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail' => 'email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail+' => 'email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => 'phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => 'phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail' => 'Email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail+' => 'Request created on an email reception~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'Monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'Request created on a monitoring alert~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => 'Phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => 'Request created following a phone call~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'Portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'Request created on the user portal~~',
|
||||
'Class:UserRequest/Attribute:approver_id' => 'Approver~~',
|
||||
'Class:UserRequest/Attribute:approver_id+' => '~~',
|
||||
'Class:UserRequest/Attribute:approver_email' => 'Approver Email~~',
|
||||
@@ -137,9 +137,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:escalation_flag' => 'Hot Flag~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag+' => '~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'No~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => 'No~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Yes~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => 'Yes~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '',
|
||||
'Class:UserRequest/Attribute:escalation_reason' => 'Hot reason~~',
|
||||
'Class:UserRequest/Attribute:escalation_reason+' => '~~',
|
||||
'Class:UserRequest/Attribute:assignment_date' => 'Assignment date~~',
|
||||
@@ -170,20 +170,20 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:time_spent+' => '~~',
|
||||
'Class:UserRequest/Attribute:resolution_code' => 'Resolution code~~',
|
||||
'Class:UserRequest/Attribute:resolution_code+' => '~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => 'assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => 'bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => 'hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other+' => 'other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => 'software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'system update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => 'system update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training+' => 'training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'System update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '',
|
||||
'Class:UserRequest/Attribute:solution' => 'Solution~~',
|
||||
'Class:UserRequest/Attribute:solution+' => '~~',
|
||||
'Class:UserRequest/Attribute:pending_reason' => 'Pending reason~~',
|
||||
@@ -211,13 +211,13 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:user_satisfaction' => 'User satisfaction~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction+' => '~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Very satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => 'Very satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Fairly statisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => 'Fairly statisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Rather Dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => 'Rather Dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Very Dissatisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => 'Very Dissatisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Fairly satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Rather dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Very dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '',
|
||||
'Class:UserRequest/Attribute:user_comment' => 'User comment~~',
|
||||
'Class:UserRequest/Attribute:user_comment+' => '~~',
|
||||
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'parent_request_id_friendlyname~~',
|
||||
|
||||
@@ -7,9 +7,9 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Menu:RequestManagement' => 'Helpdesk',
|
||||
'Menu:RequestManagement+' => 'Kérelmek kezelése',
|
||||
'Menu:RequestManagementProvider' => 'Helpdesk szolgáltató',
|
||||
'Menu:RequestManagementProvider+' => 'Helpdesk provider~~',
|
||||
'Menu:RequestManagementProvider+' => '',
|
||||
'Menu:UserRequest:Provider' => 'Szolgáltatónak átadott nyitott kérelmek',
|
||||
'Menu:UserRequest:Provider+' => 'Open requests transfered to provider~~',
|
||||
'Menu:UserRequest:Provider+' => '',
|
||||
'Menu:UserRequest:Overview' => 'Áttekintő',
|
||||
'Menu:UserRequest:Overview+' => 'Áttekintő oldal',
|
||||
'Menu:NewUserRequest' => 'Új felhasználói kérelem',
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:RequestManagement' => 'Helpdesk~~',
|
||||
'Menu:RequestManagement+' => 'Helpdesk~~',
|
||||
'Menu:RequestManagement+' => '',
|
||||
'Menu:RequestManagementProvider' => 'Helpdesk provider~~',
|
||||
'Menu:RequestManagementProvider+' => 'Helpdesk provider~~',
|
||||
'Menu:RequestManagementProvider+' => '',
|
||||
'Menu:UserRequest:Provider' => 'Open requests transfered to provider~~',
|
||||
'Menu:UserRequest:Provider+' => 'Open requests transfered to provider~~',
|
||||
'Menu:UserRequest:Provider+' => '',
|
||||
'Menu:UserRequest:Overview' => 'Overview~~',
|
||||
'Menu:UserRequest:Overview+' => 'Overview~~',
|
||||
'Menu:UserRequest:Overview+' => '',
|
||||
'Menu:NewUserRequest' => 'New user request~~',
|
||||
'Menu:NewUserRequest+' => 'Create a new user request ticket~~',
|
||||
'Menu:SearchUserRequests' => 'Search for user requests~~',
|
||||
@@ -21,11 +21,11 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Menu:UserRequest:MyRequests' => 'Requests assigned to me~~',
|
||||
'Menu:UserRequest:MyRequests+' => 'Requests assigned to me (as Agent)~~',
|
||||
'Menu:UserRequest:MySupportRequests' => 'My support calls~~',
|
||||
'Menu:UserRequest:MySupportRequests+' => 'My support calls~~',
|
||||
'Menu:UserRequest:MySupportRequests+' => '',
|
||||
'Menu:UserRequest:EscalatedRequests' => 'Hot requests~~',
|
||||
'Menu:UserRequest:EscalatedRequests+' => 'Hot requests~~',
|
||||
'Menu:UserRequest:EscalatedRequests+' => '',
|
||||
'Menu:UserRequest:OpenRequests' => 'All open requests~~',
|
||||
'Menu:UserRequest:OpenRequests+' => 'All open requests~~',
|
||||
'Menu:UserRequest:OpenRequests+' => '',
|
||||
'UI:WelcomeMenu:MyAssignedCalls' => 'Requests assigned to me~~',
|
||||
'UI-RequestManagementOverview-RequestByType-last-14-days' => 'Requests of the last 14 days (per type)~~',
|
||||
'UI-RequestManagementOverview-Last-14-days' => 'Requests of the last 14 days (per day)~~',
|
||||
@@ -83,9 +83,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:request_type' => 'Request Type~~',
|
||||
'Class:UserRequest/Attribute:request_type+' => '~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:incident' => 'Incident~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:incident+' => 'Incident~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:incident+' => '',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request' => 'Service request~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request+' => 'Service request~~',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service_request+' => '',
|
||||
'Class:UserRequest/Attribute:impact' => 'Impact~~',
|
||||
'Class:UserRequest/Attribute:impact+' => '~~',
|
||||
'Class:UserRequest/Attribute:impact/Value:1' => 'A department~~',
|
||||
@@ -96,38 +96,38 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:impact/Value:3+' => '~~',
|
||||
'Class:UserRequest/Attribute:priority' => 'Priority~~',
|
||||
'Class:UserRequest/Attribute:priority+' => '~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1+' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2' => 'high~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2+' => 'high~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3+' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4' => 'low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4+' => 'low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1' => 'Critical~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:1+' => 'Highest priority~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2' => 'High~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:priority/Value:3' => 'Medium~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:priority/Value:4' => 'Low~~',
|
||||
'Class:UserRequest/Attribute:priority/Value:4+' => 'Lowest priority~~',
|
||||
'Class:UserRequest/Attribute:urgency' => 'Urgency~~',
|
||||
'Class:UserRequest/Attribute:urgency+' => '~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1+' => 'critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2' => 'high~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2+' => 'high~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3+' => 'medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4' => 'low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4+' => 'low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1' => 'Critical~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:1+' => 'Most urgent~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2' => 'High~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3' => 'Medium~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4' => 'Low~~',
|
||||
'Class:UserRequest/Attribute:urgency/Value:4+' => 'Lowest urgency level~~',
|
||||
'Class:UserRequest/Attribute:origin' => 'Origin~~',
|
||||
'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/Value:chat' => 'Chat~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:chat+' => 'Request created following a chat discussion~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail' => 'email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail+' => 'email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => 'phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => 'phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail' => 'Email~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:mail+' => 'Request created on an email reception~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring' => 'Monitoring~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => 'Request created on a monitoring alert~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => 'Phone~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => 'Request created following a phone call~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'Portal~~',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'Request created on the user portal~~',
|
||||
'Class:UserRequest/Attribute:approver_id' => 'Approver~~',
|
||||
'Class:UserRequest/Attribute:approver_id+' => '~~',
|
||||
'Class:UserRequest/Attribute:approver_email' => 'Approver Email~~',
|
||||
@@ -143,9 +143,9 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:escalation_flag' => 'Hot Flag~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag+' => '~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no' => 'No~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => 'No~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:no+' => '~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes' => 'Yes~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => 'Yes~~',
|
||||
'Class:UserRequest/Attribute:escalation_flag/Value:yes+' => '',
|
||||
'Class:UserRequest/Attribute:escalation_reason' => 'Hot reason~~',
|
||||
'Class:UserRequest/Attribute:escalation_reason+' => '~~',
|
||||
'Class:UserRequest/Attribute:assignment_date' => 'Assignment date~~',
|
||||
@@ -154,7 +154,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:resolution_date+' => '~~',
|
||||
'Class:UserRequest/Attribute:last_pending_date' => 'Last pending date~~',
|
||||
'Class:UserRequest/Attribute:last_pending_date+' => '~~',
|
||||
'Class:UserRequest/Attribute:cumulatedpending' => 'cumulatedpending~~',
|
||||
'Class:UserRequest/Attribute:cumulatedpending' => 'cumulated pending~~',
|
||||
'Class:UserRequest/Attribute:cumulatedpending+' => '~~',
|
||||
'Class:UserRequest/Attribute:tto' => 'TTO~~',
|
||||
'Class:UserRequest/Attribute:tto+' => '~~',
|
||||
@@ -176,20 +176,20 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:time_spent+' => '~~',
|
||||
'Class:UserRequest/Attribute:resolution_code' => 'Resolution code~~',
|
||||
'Class:UserRequest/Attribute:resolution_code+' => '~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => 'assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => 'bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => 'hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other+' => 'other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => 'software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'system update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => 'system update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training+' => 'training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance' => 'Assistance~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:assistance+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed' => 'Bug fixed~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:bug fixed+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair' => 'Hardware repair~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:hardware repair+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other' => 'Other~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:other+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch' => 'Software patch~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:software patch+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update' => 'System update~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:system update+' => '',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training' => 'Training~~',
|
||||
'Class:UserRequest/Attribute:resolution_code/Value:training+' => '',
|
||||
'Class:UserRequest/Attribute:solution' => 'Solution~~',
|
||||
'Class:UserRequest/Attribute:solution+' => '~~',
|
||||
'Class:UserRequest/Attribute:pending_reason' => 'Pending reason~~',
|
||||
@@ -213,13 +213,13 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserRequest/Attribute:user_satisfaction' => 'User satisfaction~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction+' => '~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1' => 'Very satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => 'Very satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Fairly statisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => 'Fairly statisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Rather Dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => 'Rather Dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Very Dissatisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => 'Very Dissatisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:1+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2' => 'Fairly satisfied~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:2+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3' => 'Rather dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:3+' => '',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4' => 'Very dissatified~~',
|
||||
'Class:UserRequest/Attribute:user_satisfaction/Value:4+' => '',
|
||||
'Class:UserRequest/Attribute:user_comment' => 'User comment~~',
|
||||
'Class:UserRequest/Attribute:user_comment+' => '~~',
|
||||
'Class:UserRequest/Attribute:parent_request_id_friendlyname' => 'parent_request_id_friendlyname~~',
|
||||
|
||||
@@ -161,7 +161,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:ProviderContract' => 'Leverandørkontrakt',
|
||||
'Class:ProviderContract+' => '',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list' => 'CIs',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this provider contract~~',
|
||||
'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' => 'Servicetider',
|
||||
|
||||
@@ -160,7 +160,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:ProviderContract' => 'プロバイダー契約',
|
||||
'Class:ProviderContract+' => '',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list' => 'CI',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this provider contract~~',
|
||||
'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' => 'サービス時間帯',
|
||||
|
||||
@@ -170,7 +170,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:ProviderContract' => 'Poskytovateľská zmluva',
|
||||
'Class:ProviderContract+' => '',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list' => 'Zariadenia',
|
||||
'Class:ProviderContract/Attribute:functionalcis_list+' => 'All the configuration items covered by this provider contract~~',
|
||||
'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',
|
||||
|
||||
@@ -338,7 +338,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:SLA/Attribute:slts_list' => 'SLTs',
|
||||
'Class:SLA/Attribute:slts_list+' => 'Service Level Threshholds:',
|
||||
'Class:SLA/Attribute:customercontracts_list' => 'Kunde kontrakter',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracts using this SLA~~',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracted services using this SLA~~',
|
||||
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -348,7 +348,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:SLA/Attribute:slts_list' => 'SLTs~~',
|
||||
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
|
||||
'Class:SLA/Attribute:customercontracts_list' => 'Customer contracts~~',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracts using this SLA~~',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracted services using this SLA~~',
|
||||
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -337,7 +337,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:SLA/Attribute:slts_list' => 'SLT',
|
||||
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this SLA~~',
|
||||
'Class:SLA/Attribute:customercontracts_list' => '顧客連絡先',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracts using this SLA~~',
|
||||
'Class:SLA/Attribute:customercontracts_list+' => 'All the customer contracted services using this SLA~~',
|
||||
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -347,7 +347,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:SLA/Attribute:slts_list' => 'SLTs',
|
||||
'Class:SLA/Attribute:slts_list+' => 'All the service level targets for this 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:customercontracts_list+' => 'All the customer contracted services using this SLA~~',
|
||||
'Class:SLA/Error:UniqueLnkCustomerContractToService' => 'Could not save link with Customer contract %1$s and service %2$s : SLA already exists~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -217,7 +217,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Document/Attribute:status/Value:published+' => '',
|
||||
'Class:Document/Attribute:cis_list' => 'CIs~~',
|
||||
'Class:Document/Attribute:cis_list+' => 'All the configuration items linked to this document~~',
|
||||
'Class:Document/Attribute:finalclass' => 'Document Type~~',
|
||||
'Class:Document/Attribute:finalclass' => 'Document sub-class~~',
|
||||
'Class:Document/Attribute:finalclass+' => 'Name of the final class~~',
|
||||
));
|
||||
|
||||
@@ -263,7 +263,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Typology+' => '~~',
|
||||
'Class:Typology/Attribute:name' => 'Name~~',
|
||||
'Class:Typology/Attribute:name+' => '~~',
|
||||
'Class:Typology/Attribute:finalclass' => 'Type~~',
|
||||
'Class:Typology/Attribute:finalclass' => 'Typology sub-class~~',
|
||||
'Class:Typology/Attribute:finalclass+' => 'Name of the final class~~',
|
||||
));
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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+' => '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~~',
|
||||
@@ -185,7 +185,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'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: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~~',
|
||||
|
||||
@@ -174,7 +174,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:cmdbAbstractObject/Method:SetCurrentUser/Param:1' => 'Célmező',
|
||||
'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+' => 'Set a field with the currently logged in person (the "person" attached to the logged in "user").~~',
|
||||
'Class:cmdbAbstractObject/Method:SetCurrentPerson/Param:1' => 'Célmező',
|
||||
'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',
|
||||
@@ -184,7 +184,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2' => 'Referencia mező',
|
||||
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:2+' => 'The field from which to get the reference date~~',
|
||||
'Class:cmdbAbstractObject/Method:SetElapsedTime/Param:3' => 'Munkaórák',
|
||||
'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: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' => 'Célmező',
|
||||
|
||||
@@ -57,7 +57,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Ticket/Attribute:contacts_list' => 'Contacts~~',
|
||||
'Class:Ticket/Attribute:contacts_list+' => 'All the contacts linked to this ticket~~',
|
||||
'Class:Ticket/Attribute:functionalcis_list' => 'CIs~~',
|
||||
'Class:Ticket/Attribute:functionalcis_list+' => 'All the configuration items impacted for this ticket~~',
|
||||
'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' => 'Work orders~~',
|
||||
'Class:Ticket/Attribute:workorders_list+' => 'All the work orders for this ticket~~',
|
||||
'Class:Ticket/Attribute:finalclass' => 'Tipo',
|
||||
@@ -174,7 +174,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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+' => '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~~',
|
||||
@@ -184,7 +184,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'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: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~~',
|
||||
|
||||
@@ -174,7 +174,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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+' => '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~~',
|
||||
@@ -184,7 +184,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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: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~~',
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user