mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
N°1047 - Replace hard coded 'iTop' occurrences with ITOP_APPLICATION_SHORT
This commit is contained in:
@@ -37,5 +37,5 @@
|
||||
//
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:UserExternal' => 'Externí uživatel',
|
||||
'Class:UserExternal+' => 'Uživatel definovaný mimo iTop',
|
||||
'Class:UserExternal+' => 'Uživatel definovaný mimo '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -22,5 +22,5 @@
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:UserExternal' => 'Extern Bruger',
|
||||
'Class:UserExternal+' => 'Bruger udenfor iTop',
|
||||
'Class:UserExternal+' => 'Bruger udenfor '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -24,5 +24,5 @@
|
||||
*/
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Class:UserExternal' => 'Externer Benutzer',
|
||||
'Class:UserExternal+' => 'Externe authentifizierter iTop-Benutzer',
|
||||
'Class:UserExternal+' => 'Externe authentifizierter '.ITOP_APPLICATION_SHORT.'-Benutzer',
|
||||
));
|
||||
|
||||
@@ -37,5 +37,5 @@
|
||||
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Class:UserExternal' => 'External user',
|
||||
'Class:UserExternal+' => 'User authentified outside of iTop',
|
||||
'Class:UserExternal+' => 'User authentified outside of '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -36,5 +36,5 @@
|
||||
//
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Class:UserExternal' => 'Usuario Externo',
|
||||
'Class:UserExternal+' => 'Usuario Autenticado fuera de iTop',
|
||||
'Class:UserExternal+' => 'Usuario Autenticado fuera de '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -20,6 +20,6 @@
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Class:UserExternal' => 'Utilisateur externe à iTop',
|
||||
'Class:UserExternal+' => 'Utilisateur authentifié à l\'extérieur d\'iTop',
|
||||
'Class:UserExternal' => 'Utilisateur externe à '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserExternal+' => 'Utilisateur authentifié à l\'extérieur de '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -35,5 +35,5 @@
|
||||
//
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserExternal' => 'Esterno utente',
|
||||
'Class:UserExternal+' => 'Utente autenticato al di fuori di iTop',
|
||||
'Class:UserExternal+' => 'Utente autenticato al di fuori di '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -13,5 +13,5 @@
|
||||
//
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Class:UserExternal' => 'Внешний пользователь',
|
||||
'Class:UserExternal+' => 'Пользователь, аутентифицируемый вне iTop',
|
||||
'Class:UserExternal+' => 'Пользователь, аутентифицируемый вне '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
@@ -36,5 +36,5 @@
|
||||
//
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserExternal' => 'Harici kullanıcı',
|
||||
'Class:UserExternal+' => 'iTop dışında yetki kontrolü yapılan kullanıcı',
|
||||
'Class:UserExternal+' => ITOP_APPLICATION_SHORT.' dışında yetki kontrolü yapılan kullanıcı',
|
||||
));
|
||||
|
||||
@@ -35,5 +35,5 @@
|
||||
//
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Class:UserExternal' => '外部用户',
|
||||
'Class:UserExternal+' => '用户在iTop 外部验证身份',
|
||||
'Class:UserExternal+' => '用户在 '.ITOP_APPLICATION_SHORT.' 外部验证身份',
|
||||
));
|
||||
|
||||
@@ -36,8 +36,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:UserLocal' => 'interní uživatel iTop',
|
||||
'Class:UserLocal+' => 'Uživatel ověřen interně v iTop',
|
||||
'Class:UserLocal' => 'interní uživatel '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal+' => 'Uživatel ověřen interně v '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Heslo',
|
||||
'Class:UserLocal/Attribute:password+' => '',
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
* @licence http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:UserLocal' => 'iTop-Bruger',
|
||||
'Class:UserLocal+' => 'Bruger der godkendes af iTop',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.'-Bruger',
|
||||
'Class:UserLocal+' => 'Bruger der godkendes af '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Password',
|
||||
'Class:UserLocal/Attribute:password+' => 'Brugerens password',
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Class:UserLocal' => 'iTop-Benutzer',
|
||||
'Class:UserLocal+' => 'Benutzer, der von iTop authentifiziert wird',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.'-Benutzer',
|
||||
'Class:UserLocal+' => 'Benutzer, der von '.ITOP_APPLICATION_SHORT.' authentifiziert wird',
|
||||
'Class:UserLocal/Attribute:password' => 'Passwort',
|
||||
'Class:UserLocal/Attribute:password+' => 'Benutzerpasswort',
|
||||
|
||||
@@ -43,5 +43,5 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
|
||||
'Error:UserLocalPasswordValidator:UserPasswordPolicyRegex:ValidationFailed' => 'Das Passwort entspricht nicht dem in den Konfigurationsregeln hinterlegten RegEx-Ausdruck',
|
||||
|
||||
'UserLocal:password:expiration' => 'Die folgenden Felder benötigen eine iTop Erweiterung'
|
||||
'UserLocal:password:expiration' => 'Die folgenden Felder benötigen eine '.ITOP_APPLICATION_SHORT.' Erweiterung'
|
||||
));
|
||||
|
||||
@@ -36,8 +36,8 @@
|
||||
//
|
||||
|
||||
Dict::Add('EN US', 'English', 'English', array(
|
||||
'Class:UserLocal' => 'iTop user',
|
||||
'Class:UserLocal+' => 'User authentified by iTop',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' user',
|
||||
'Class:UserLocal+' => 'User authentified by '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Password',
|
||||
'Class:UserLocal/Attribute:password+' => 'User authentication string',
|
||||
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Class:UserLocal' => 'Usuario de iTop',
|
||||
'Class:UserLocal+' => 'Usuario Autenticado vía iTop',
|
||||
'Class:UserLocal' => 'Usuario de '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal+' => 'Usuario Autenticado vía '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Contraseña',
|
||||
'Class:UserLocal/Attribute:password+' => 'Contraseña',
|
||||
|
||||
|
||||
@@ -20,8 +20,8 @@
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Class:UserLocal' => 'Utilisateur iTop',
|
||||
'Class:UserLocal+' => 'Utilisateur authentifié par iTop',
|
||||
'Class:UserLocal' => 'Utilisateur '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal+' => 'Utilisateur authentifié par '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Mot de passe',
|
||||
'Class:UserLocal/Attribute:password+' => '',
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
* @license http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:UserLocal' => 'iTop felhasználó',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' felhasználó',
|
||||
'Class:UserLocal+' => '',
|
||||
'Class:UserLocal/Attribute:password' => 'Jelszó',
|
||||
'Class:UserLocal/Attribute:password+' => '',
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserLocal' => 'Utente iTop',
|
||||
'Class:UserLocal+' => 'Utente autenticato da iTop',
|
||||
'Class:UserLocal' => 'Utente '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal+' => 'Utente autenticato da '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Password',
|
||||
'Class:UserLocal/Attribute:password+' => 'user authentication string',
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
* @licence http://opensource.org/licenses/AGPL-3.0
|
||||
*/
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:UserLocal' => 'iTopユーザー',
|
||||
'Class:UserLocal+' => 'iTopローカル認証ユーザー',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.'ユーザー',
|
||||
'Class:UserLocal+' => ITOP_APPLICATION_SHORT.'ローカル認証ユーザー',
|
||||
'Class:UserLocal/Attribute:password' => 'パスワード',
|
||||
'Class:UserLocal/Attribute:password+' => '認証文字列',
|
||||
|
||||
|
||||
@@ -25,10 +25,10 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Class:UserLocal' => 'iTop-gebruiker',
|
||||
'Class:UserLocal+' => 'Gebruiker die aanmeldt met gegevens aangemaakt in het gebruikersbeheer van iTop',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.'-gebruiker',
|
||||
'Class:UserLocal+' => 'Gebruiker die aanmeldt met gegevens aangemaakt in het gebruikersbeheer van '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Wachtwoord',
|
||||
'Class:UserLocal/Attribute:password+' => 'Het wachtwoord waarmee de gebruiker zich aanmeldt bij iTop',
|
||||
'Class:UserLocal/Attribute:password+' => 'Het wachtwoord waarmee de gebruiker zich aanmeldt bij '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'Class:UserLocal/Attribute:expiration' => 'Wachtwoord verloopt',
|
||||
'Class:UserLocal/Attribute:expiration+' => 'Of het wachtwoord al dan niet verlopen is (vereist een extensie vooraleer dit werkt)',
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Class:UserLocal' => 'Пользователь iTop',
|
||||
'Class:UserLocal+' => 'Пользователь, аутентифицируемый через iTop',
|
||||
'Class:UserLocal' => 'Пользователь '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal+' => 'Пользователь, аутентифицируемый через '.ITOP_APPLICATION_SHORT,
|
||||
'Class:UserLocal/Attribute:password' => 'Пароль',
|
||||
'Class:UserLocal/Attribute:password+' => 'Строка аутентификации пользователя',
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:UserLocal' => 'iTop užívateľ',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' užívateľ',
|
||||
'Class:UserLocal+' => '',
|
||||
'Class:UserLocal/Attribute:password' => 'Heslo',
|
||||
'Class:UserLocal/Attribute:password+' => '',
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:UserLocal' => 'iTop kullanıcısı',
|
||||
'Class:UserLocal+' => 'Yetki kontorlünü iTop tarafından yapılan kullanıcı',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' kullanıcısı',
|
||||
'Class:UserLocal+' => 'Yetki kontorlünü '.ITOP_APPLICATION_SHORT.' tarafından yapılan kullanıcı',
|
||||
'Class:UserLocal/Attribute:password' => 'Şifre',
|
||||
'Class:UserLocal/Attribute:password+' => 'şifre',
|
||||
|
||||
|
||||
@@ -34,8 +34,8 @@
|
||||
// Class: UserLocal
|
||||
//
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Class:UserLocal' => 'iTop 用户',
|
||||
'Class:UserLocal+' => '用户由 iTop 验证身份',
|
||||
'Class:UserLocal' => ITOP_APPLICATION_SHORT.' 用户',
|
||||
'Class:UserLocal+' => '用户由 '.ITOP_APPLICATION_SHORT.' 验证身份',
|
||||
'Class:UserLocal/Attribute:password' => '密码',
|
||||
'Class:UserLocal/Attribute:password+' => '用于验证用户身份的字符串',
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -37,7 +37,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -39,7 +39,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Attachments:Error:FileTooLarge' => 'Die Datei ist zu groß für den Upload: %1$s',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'Die Datei ist leer und kann nicht angehängt werden.
|
||||
Entweder ist die von Ihnen hochdeladene Datei leer,
|
||||
oder melden Sie dem iTop Administrator diesen Fehler, weil eventuell kein ausreichender Speicherplatz zur Verfügung steht',
|
||||
oder melden Sie dem '.ITOP_APPLICATION_SHORT.' Administrator diesen Fehler, weil eventuell kein ausreichender Speicherplatz zur Verfügung steht',
|
||||
'Attachments:Render:Icons' => 'Als Icons anzeigen',
|
||||
'Attachments:Render:Table' => 'Als Liste anzeigen',
|
||||
'UI:Attachments:DropYourFileHint' => 'Dateien in diesem Bereich ablegen...',
|
||||
|
||||
@@ -34,7 +34,7 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.',
|
||||
'Attachments:Render:Icons' => 'Display as icons',
|
||||
'Attachments:Render:Table' => 'Display as list',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area',
|
||||
|
||||
@@ -37,7 +37,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -36,7 +36,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -16,7 +16,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Attachments:History_File_Added' => 'Вложение %1$s добавлено.',
|
||||
'Attachments:History_File_Removed' => 'Вложение %1$s удалено.',
|
||||
'Attachments:AddAttachment' => 'Добавить вложение:',
|
||||
'Attachments:UploadNotAllowedOnThisSystem' => 'Загрузка файлов НЕ разрешена в этой системе. За подробностями обратитесь к администратору вашего iTop',
|
||||
'Attachments:UploadNotAllowedOnThisSystem' => 'Загрузка файлов НЕ разрешена в этой системе. За подробностями обратитесь к администратору вашего '.ITOP_APPLICATION_SHORT,
|
||||
'Attachment:Max_Go' => '(Максимальный размер файла: %1$s ГБ)',
|
||||
'Attachment:Max_Mo' => '(Максимальный размер файла: %1$s МБ)',
|
||||
'Attachment:Max_Ko' => '(Максимальный размер файла: %1$s кБ)',
|
||||
@@ -25,7 +25,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Attachments:Error:FileTooLarge' => 'Файл слишком велик для загрузки. %1$s',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -37,7 +37,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -37,7 +37,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Attachments:Error:FileTooLarge' => 'File is too large to be uploaded. %1$s~~',
|
||||
'Attachments:Error:UploadedFileEmpty' => 'The received file is empty and cannot be attached.
|
||||
Either you have pushed an empty file,
|
||||
or ask your iTop administrator if the iTop server disk is full.~~',
|
||||
or ask your '.ITOP_APPLICATION_SHORT.' administrator if the '.ITOP_APPLICATION_SHORT.' server disk is full.~~',
|
||||
'Attachments:Render:Icons' => 'Display as icons~~',
|
||||
'Attachments:Render:Table' => 'Display as list~~',
|
||||
'UI:Attachments:DropYourFileHint' => 'Drop files anywhere in this area~~',
|
||||
|
||||
@@ -31,7 +31,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Attachments:NoAttachment' => '没有附件. ',
|
||||
'Attachments:PreviewNotAvailable' => '该附件类型不支持预览.',
|
||||
'Attachments:Error:FileTooLarge' => '上传的文件过大. %1$s',
|
||||
'Attachments:Error:UploadedFileEmpty' => '收到的文件为空,无法添加. 可能是因为您发送的是空文件,或者咨询 iTop 管理员服务器磁盘是否已满. ',
|
||||
'Attachments:Error:UploadedFileEmpty' => '收到的文件为空,无法添加. 可能是因为您发送的是空文件,或者咨询 '.ITOP_APPLICATION_SHORT.' 管理员服务器磁盘是否已满. ',
|
||||
'Attachments:Render:Icons' => '显示为图标',
|
||||
'Attachments:Render:Table' => '显示为列表',
|
||||
'UI:Attachments:DropYourFileHint' => '将文件拖放到此区域的任意位置',
|
||||
|
||||
@@ -29,8 +29,8 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'bkp-status-title' => '定时备份',
|
||||
'bkp-status-checks' => '设置与检查',
|
||||
'bkp-mysqldump-ok' => '已找到 mysqldump : %1$s',
|
||||
'bkp-mysqldump-notfound' => 'mysqldump 找不到: %1$s - 请确认它安装在正确的路径, 或者调整iTop 配置文件的选项mysql_bindir.',
|
||||
'bkp-mysqldump-issue' => 'mysqldump 无法运行 (retcode=%1$d): 请确认它安装在正确的路径, 或者调整iTop 配置文件的选项mysql_bindir',
|
||||
'bkp-mysqldump-notfound' => 'mysqldump 找不到: %1$s - 请确认它安装在正确的路径, 或者调整'.ITOP_APPLICATION_SHORT.' 配置文件的选项mysql_bindir.',
|
||||
'bkp-mysqldump-issue' => 'mysqldump 无法运行 (retcode=%1$d): 请确认它安装在正确的路径, 或者调整'.ITOP_APPLICATION_SHORT.' 配置文件的选项mysql_bindir',
|
||||
'bkp-missing-dir' => '目标目录 <code>%1$s</code> 找不到',
|
||||
'bkp-free-disk-space' => '<b>%1$s 空闲</b> 在 <code>%2$s</code>',
|
||||
'bkp-dir-not-writeable' => '%1$s 没有写入权限',
|
||||
|
||||
@@ -11,7 +11,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
|
||||
'Menu:ConfigEditor' => 'Konfigurace',
|
||||
'config-edit-title' => 'Editor konfiguračního souboru',
|
||||
'config-edit-intro' => 'Při úpravách konfiguračního souboru buďte velice opatrní. Nesprávné nastavení může vést k nedostupnosti iTop',
|
||||
'config-edit-intro' => 'Při úpravách konfiguračního souboru buďte velice opatrní. Nesprávné nastavení může vést k nedostupnosti '.ITOP_APPLICATION_SHORT,
|
||||
'config-apply' => 'Použít',
|
||||
'config-apply-title' => 'Použít (Ctrl+S)',
|
||||
'config-cancel' => 'Zrušit',
|
||||
|
||||
@@ -9,7 +9,7 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
|
||||
'Menu:ConfigEditor' => 'Configuration Générale',
|
||||
'config-edit-title' => 'Editeur du Fichier de Configuration',
|
||||
'config-edit-intro' => 'Attention: une configuration incorrecte peut rendre iTop inopérant pour tous les utilisateurs!',
|
||||
'config-edit-intro' => 'Attention: une configuration incorrecte peut rendre '.ITOP_APPLICATION_SHORT.' inopérant pour tous les utilisateurs!',
|
||||
'config-apply' => 'Enregistrer',
|
||||
'config-apply-title' => 'Enregistrer (Ctrl+S)',
|
||||
'config-cancel' => 'Annuler (restaurer)',
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopUpdate:UI:PageTitle' => 'Anwendungsupgrade',
|
||||
'itop-core-update:UI:SelectUpdateFile' => 'Upgrade-Datei hochladen',
|
||||
'itop-core-update:UI:ConfirmUpdate' => 'Upgrade bestätigen',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Upgrade der iTop-Core-Dateien',
|
||||
'itop-core-update:UI:UpdateCoreFiles' => 'Upgrade der '.ITOP_APPLICATION_SHORT.'-Core-Dateien',
|
||||
'iTopUpdate:UI:MaintenanceModeActive' => 'Die Anwendung läuft im Wartungsmodus, Benutzerzugriffe sind nicht möglich. Führen Sie erneut ein Setup oder Restore der Anwendung aus, um in den normalen Betriebsmodus zurückzukehren.',
|
||||
'itop-core-update:UI:UpdateDone' => 'Upgrade abgeschlossen',
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Wegen geringem verbleibenden Speicherplatz sollte kein Backup mehr erzeugt werden.',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Freier Speicherplatz',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop Speicherplatz',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' Speicherplatz',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Datenbankgröße',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'Maximale Dateigröße für Uploads',
|
||||
|
||||
@@ -94,8 +94,8 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopUpdate:Error:MissingFile' => 'Fehlende Datei: %1$s',
|
||||
'iTopUpdate:Error:CorruptedFile' => 'Datei %1$s ist beschädigt',
|
||||
'iTopUpdate:Error:BadFileFormat' => 'Die Upgradedatei ist keine ZIP-Datei',
|
||||
'iTopUpdate:Error:BadFileContent' => 'Die Upgradedatei ist kein iTop-Paket',
|
||||
'iTopUpdate:Error:BadItopProduct' => 'Die Upgradedatei ist nicht mit dieser iTop-Version kompatibel.',
|
||||
'iTopUpdate:Error:BadFileContent' => 'Die Upgradedatei ist kein '.ITOP_APPLICATION_SHORT.'-Paket',
|
||||
'iTopUpdate:Error:BadItopProduct' => 'Die Upgradedatei ist nicht mit dieser '.ITOP_APPLICATION_SHORT.'-Version kompatibel.',
|
||||
'iTopUpdate:Error:Copy' => 'Fehler, kopieren von \'%1$s\' nach \'%2$s\' nicht möglich',
|
||||
'iTopUpdate:Error:FileNotFound' => 'Datei nicht gefunden',
|
||||
'iTopUpdate:Error:NoFile' => 'Keine Datei angegeben',
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'El respaldo no está recomendado por el limitado espacio en el dispositivo',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Espaciolibre en el dispositivo',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'Espacio en diso de iTop',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'Espacio en diso de '.ITOP_APPLICATION_SHORT,
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Espacio en diso de base de datos',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'Máximo tamaño de subida de archivos',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -63,7 +63,7 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Een backup maken wordt afgeraden doordat er weinig schijfruimte is',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Vrije schijfruimte',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop schijfgebruik',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' schijfgebruik',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database schijfgebruik',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'Maximale bestandsgrootte (upload)',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup não recomendado devido ao espaço em disco limitado',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Espaço em disco disponível',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'Espaço em disco do iTop',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'Espaço em disco do '.ITOP_APPLICATION_SHORT,
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Espaço em disco da base de dados',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'Tamanho máximo de envio de arquivos',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => 'Backup is not recommended due to limited available disk space~~',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => 'Disk free space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop disk space~~',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' disk space~~',
|
||||
'iTopUpdate:UI:DBDiskSpace' => 'Database disk space~~',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => 'File upload max size~~',
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'iTopUpdate:UI:DoBackup:Warning' => '由于磁盘空间不足, 不建议备份',
|
||||
|
||||
'iTopUpdate:UI:DiskFreeSpace' => '磁盘剩余空间',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => 'iTop 的磁盘空间',
|
||||
'iTopUpdate:UI:ItopDiskSpace' => ITOP_APPLICATION_SHORT.' 的磁盘空间',
|
||||
'iTopUpdate:UI:DBDiskSpace' => '数据库的磁盘空间',
|
||||
'iTopUpdate:UI:FileUploadMaxSize' => '文件上传大小上限',
|
||||
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('DA DA', 'Danish', 'Dansk', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('DA DA', 'Danish', 'Dansk', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:iTopHub' => 'iTop Hub',
|
||||
'Menu:iTopHub:Register' => 'Mit dem iTop Hub verbinden',
|
||||
'Menu:iTopHub:Register+' => 'iTop-Instanzen über den iTop Hub updaten',
|
||||
'Menu:iTopHub:Register:Description' => '<p>Zugriff auf die Community-Plattform iTop Hub!</br>Hier finden sie Informationen zu ihren iTop Instanzen, können diese mit personalisierten Tools verwalten und sich Erweiterungen installieren.</br><br/>Durch die Verbindung mit dem iTop Hub, werden Informationen zu Ihrer iTop Instanz zum iTop Hub übertragen.</p>',
|
||||
'Menu:iTopHub:Register+' => ITOP_APPLICATION_SHORT.'-Instanzen über den iTop Hub updaten',
|
||||
'Menu:iTopHub:Register:Description' => '<p>Zugriff auf die Community-Plattform iTop Hub!</br>Hier finden sie Informationen zu ihren '.ITOP_APPLICATION_SHORT.' Instanzen, können diese mit personalisierten Tools verwalten und sich Erweiterungen installieren.</br><br/>Durch die Verbindung mit dem iTop Hub, werden Informationen zu Ihrer '.ITOP_APPLICATION_SHORT.' Instanz zum iTop Hub übertragen.</p>',
|
||||
'Menu:iTopHub:MyExtensions' => 'Installierte Erweiterungen',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Liste der auf ihrer iTop Instanz installierten Erweiterungen',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Liste der auf ihrer '.ITOP_APPLICATION_SHORT.' Instanz installierten Erweiterungen',
|
||||
'Menu:iTopHub:BrowseExtensions' => 'Erweiterungen vom iTop Hub beziehen',
|
||||
'Menu:iTopHub:BrowseExtensions+' => 'Mehr Erweiterungen auf dem iTop Hub entdecken',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Zugriff auf die Community-Plattform iTop Hub!</br>Hier finden sie Informationen zu ihren iTop Instanzen, können diese mit personalisierten Tools verwalten und sich Erweiterungen installieren.</br><br/>Durch die Verbindung mit dem iTop Hub, werden Informationen zu Ihrer iTop Instanz zum iTop Hub übertragen.</p>',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Zugriff auf die Community-Plattform iTop Hub!</br>Hier finden sie Informationen zu ihren '.ITOP_APPLICATION_SHORT.' Instanzen, können diese mit personalisierten Tools verwalten und sich Erweiterungen installieren.</br><br/>Durch die Verbindung mit dem iTop Hub, werden Informationen zu Ihrer '.ITOP_APPLICATION_SHORT.' Instanz zum iTop Hub übertragen.</p>',
|
||||
'iTopHub:GoBtn' => 'Gehe zum iTop Hub',
|
||||
'iTopHub:CloseBtn' => 'Schließen',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Gehe zu www.itophub.io',
|
||||
@@ -46,7 +46,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopHub:Landing:Status' => 'Installationsstatus',
|
||||
'iTopHub:Landing:Install' => 'Erweiterungen werden installiert...',
|
||||
'iTopHub:CompiledOK' => 'Installation erfolgreich',
|
||||
'iTopHub:ConfigurationSafelyReverted' => 'Fehler während der Installation!<br/>iTop Konfiguration wurde NICHT angepasst.',
|
||||
'iTopHub:ConfigurationSafelyReverted' => 'Fehler während der Installation!<br/>'.ITOP_APPLICATION_SHORT.' Konfiguration wurde NICHT angepasst.',
|
||||
'iTopHub:FailAuthent' => 'Die Authentifizierung für diese Aktion ist fehlgeschlagen.',
|
||||
|
||||
'iTopHub:InstalledExtensions' => 'Erweiterungen, die auf dieser Instanz installiert sind',
|
||||
@@ -55,16 +55,16 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Erweiterungen vom iTop Hub',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'Die folgenden Erweiterungen wurden über den iTop Hub installiert:',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'Es gibt keine Erweiterungen dieser Kategorie',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Besuchen Sie den iTop Hub, um Erweiterungen zu finden, die Ihnen helfen, Ihr iTop so zu erweitern, dass es besser zu Ihren Bedürfnissen passt!',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Besuchen Sie den iTop Hub, um Erweiterungen zu finden, die Ihnen helfen, Ihr '.ITOP_APPLICATION_SHORT.' so zu erweitern, dass es besser zu Ihren Bedürfnissen passt!',
|
||||
'iTopHub:ExtensionNotInstalled' => 'Nicht installiert',
|
||||
'iTopHub:GetMoreExtensions' => 'Erweiterungen vom iTop Hub beziehen ...',
|
||||
|
||||
'iTopHub:LandingWelcome' => 'Herzlichen Glückwunsch! Die folgenden Erweiterungen wurden vom iTop Hub heruntergeladen und installiert:',
|
||||
'iTopHub:GoBackToITopBtn' => 'Gehe zurück zu iTop',
|
||||
'iTopHub:GoBackToITopBtn' => 'Gehe zurück zu '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:Uncompressing' => 'Erweiterungen entpacken...',
|
||||
'iTopHub:InstallationWelcome' => 'Installation der Erweiterungen, die vom iTop Hub heruntergeladen wurden.',
|
||||
'iTopHub:DBBackupLabel' => 'Backup der iTop-Instanz',
|
||||
'iTopHub:DBBackupSentence' => 'Vor dem Update ein Backup der iTop Datenbank und der iTop Konfiguration durchführen.',
|
||||
'iTopHub:DBBackupLabel' => 'Backup der '.ITOP_APPLICATION_SHORT.'-Instanz',
|
||||
'iTopHub:DBBackupSentence' => 'Vor dem Update ein Backup der iTop Datenbank und der '.ITOP_APPLICATION_SHORT.' Konfiguration durchführen.',
|
||||
'iTopHub:DeployBtn' => 'Installieren!',
|
||||
'iTopHub:DatabaseBackupProgress' => 'Backup durchführen...',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s ist bereits installiert. Es wird keine Änderung durchgeführt.',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Aktualisierung von Version %1$s auf Version %2$s.',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'DOWNGRADE von Version %1$s auf Version %2$s.',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'Backup der iTop-Instanz...',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'Backup der '.ITOP_APPLICATION_SHORT.'-Instanz...',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation der Erweiterungen',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'Diese Erweiterung kann nicht installiert werden, da Abhängigkeiten nicht erfüllt werden.',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The Erweiterung benötigt folgende(s) Modul(e): %1$s',
|
||||
|
||||
@@ -25,13 +25,13 @@ Dict::Add('EN US', 'English', 'English', 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',
|
||||
'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',
|
||||
@@ -47,21 +47,21 @@ Dict::Add('EN US', 'English', 'English', 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',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup',
|
||||
@@ -73,7 +73,7 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:iTopHub' => 'iTop Hub',
|
||||
'Menu:iTopHub:Register' => 'Conectar a iTop Hub',
|
||||
'Menu:iTopHub:Register+' => 'Ir a iTop Hub para actualizar su instancia de iTop',
|
||||
'Menu:iTopHub:Register:Description' => '<p>Obtenga acceso a la plataforma comunitaria iTop Hub!</br>Encuentre todo el contenido e información que necesite, adminitre sus instancias a través de herramientas personalizadas e instale más extensiones.</br><br/>Mediante la conexión al Hub desde esta página, usted compartirá información acerca de esta instancia de iTop en el Hub.</p>',
|
||||
'Menu:iTopHub:Register+' => 'Ir a iTop Hub para actualizar su instancia de '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:Register:Description' => '<p>Obtenga acceso a la plataforma comunitaria iTop Hub!</br>Encuentre todo el contenido e información que necesite, adminitre sus instancias a través de herramientas personalizadas e instale más extensiones.</br><br/>Mediante la conexión al Hub desde esta página, usted compartirá información acerca de esta instancia de '.ITOP_APPLICATION_SHORT.' en el Hub.</p>',
|
||||
'Menu:iTopHub:MyExtensions' => 'Extensiones instaladas',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Vea la lista de extensiones instalada en esta instancia de iTop',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Vea la lista de extensiones instalada en esta instancia de '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:BrowseExtensions' => 'Obtener extensiones de iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions+' => 'Navegue por más extensiones en iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Vea en "iTop Hub’s store", su único lugar para encontrar extensiones de iTop.</br>Encuentre aquellas que le ayuden a personalizar y adaptar iTop a sus procesos.</br><br/>Mediante la conexión al Hub desde esta página, usted compartirá información acerca de esta instancia de iTop en el Hub.</p>',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Vea en "iTop Hub’s store", su único lugar para encontrar extensiones de '.ITOP_APPLICATION_SHORT.'.</br>Encuentre aquellas que le ayuden a personalizar y adaptar '.ITOP_APPLICATION_SHORT.' a sus procesos.</br><br/>Mediante la conexión al Hub desde esta página, usted compartirá información acerca de esta instancia de '.ITOP_APPLICATION_SHORT.' en el Hub.</p>',
|
||||
'iTopHub:GoBtn' => 'Ir a iTop Hub',
|
||||
'iTopHub:CloseBtn' => 'Cerrar',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Ir a www.itophub.io',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'iTopHub:Landing:Status' => 'Estatus de Instalación',
|
||||
'iTopHub:Landing:Install' => 'Instalando extensiones...',
|
||||
'iTopHub:CompiledOK' => 'Compilación éxitosa.',
|
||||
'iTopHub:ConfigurationSafelyReverted' => 'Error detectado durante la instalación!<br/>La configuración de iTop NO fue modificada.',
|
||||
'iTopHub:ConfigurationSafelyReverted' => 'Error detectado durante la instalación!<br/>La configuración de '.ITOP_APPLICATION_SHORT.' NO fue modificada.',
|
||||
'iTopHub:FailAuthent' => 'Authentication failed for this action.~~',
|
||||
|
||||
'iTopHub:InstalledExtensions' => 'Extensiones instaladas en esta instancia',
|
||||
'iTopHub:ExtensionCategory:Manual' => 'Extensiones instaladas manualmente',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'Las siguientes extensiones fueron instaladas copiandolas manualmente en el directorio %1$s de iTop:',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'Las siguientes extensiones fueron instaladas copiandolas manualmente en el directorio %1$s de '.ITOP_APPLICATION_SHORT.':',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensiones instaladas desde iTop Hub',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'Las siguientes extensiones fueron instaladas de iTop Hub:',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'No hay extensiones en está categoría',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Navegue en iTop Hub para encontrar aquellas que le ayuden a personalizar y adaptar iTop a sus procesos !',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Navegue en iTop Hub para encontrar aquellas que le ayuden a personalizar y adaptar '.ITOP_APPLICATION_SHORT.' a sus procesos !',
|
||||
'iTopHub:ExtensionNotInstalled' => 'No instalada',
|
||||
'iTopHub:GetMoreExtensions' => 'Obtener extensiones de iTop Hub...',
|
||||
|
||||
'iTopHub:LandingWelcome' => '¡Felicidades! Las siguientes extensiones fueron descargadas de iTop Hub e instaladas en su iTop.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Regresar a iTop',
|
||||
'iTopHub:LandingWelcome' => '¡Felicidades! Las siguientes extensiones fueron descargadas de iTop Hub e instaladas en su '.ITOP_APPLICATION_SHORT.'.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Regresar a '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:Uncompressing' => 'Descomprimiendo extensiones...',
|
||||
'iTopHub:InstallationWelcome' => 'Instalación de las extensiones descargadas de iTop Hub',
|
||||
'iTopHub:DBBackupLabel' => 'Respaldo de Instancia',
|
||||
'iTopHub:DBBackupSentence' => 'Realice un respaldo de la base de datos y configuración de iTop antes de actualizar.',
|
||||
'iTopHub:DBBackupSentence' => 'Realice un respaldo de la base de datos y configuración de '.ITOP_APPLICATION_SHORT.' antes de actualizar.',
|
||||
'iTopHub:DeployBtn' => 'Instalar !',
|
||||
'iTopHub:DatabaseBackupProgress' => 'Respaldo de Instancia...',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s ya está instalada. Nada por cambiar.',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Se <b>actualizará</b> de la versión %1$s a la versión %2$s.',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Se <b>DEGRADARÄ</b> de la versión %1$s a la versión %2$s.',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'Respaldo de Instancia de iTop...',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'Respaldo de Instancia de '.ITOP_APPLICATION_SHORT.'...',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Instalación de extensiones',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'Esta extensión no puede ser instalad porque no cumple con las dependencias.',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'La extensión require el/los módulo(s): %1$s',
|
||||
|
||||
@@ -9,7 +9,7 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:iTopHub' => 'iTop Hub',
|
||||
'Menu:iTopHub:Register' => 'Se connecter à iTop Hub',
|
||||
'Menu:iTopHub:Register+' => 'Connectez-vous à iTop Hub pour enregistrer cette instance d\'iTop',
|
||||
'Menu:iTopHub:Register+' => 'Connectez-vous à iTop Hub pour enregistrer cette instance d\''.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:Register:Description' => '<p>Connectez-vous à la communauté iTop Hub!</br>Trouvez tout le contenu dont vous avez besoin, gérer vos instances d\'iTop depuis un tableau de bord centralisé et déployez de nouvelles extensions.</br><br/>En vous connectant au Hub depuis cette page, vous transmettez au Hub des informations relatives à cette instance d\'iTop.</p>',
|
||||
'Menu:iTopHub:MyExtensions' => 'Extensions déployées',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Voir la liste des extensions déployes sur cette instance',
|
||||
@@ -45,11 +45,11 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'iTopHub:GetMoreExtensions' => 'Obtenir des extensions depuis iTop Hub...',
|
||||
|
||||
'iTopHub:LandingWelcome' => 'Félicitations! Les extensions ci-dessous ont été téléchargées depuis iTop Hub et installées sur cette instance d\'iTop.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Retourner dans iTop',
|
||||
'iTopHub:GoBackToITopBtn' => 'Retourner dans '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:Uncompressing' => 'Décompression des extensions...',
|
||||
'iTopHub:InstallationWelcome' => 'Installation des extensions téléchargées depuis iTop Hub',
|
||||
'iTopHub:DBBackupLabel' => 'Sauvegarde de l\'instance iTop',
|
||||
'iTopHub:DBBackupSentence' => 'Faire une sauvegarde de la base de données et des paramétrages d\'iTop',
|
||||
'iTopHub:DBBackupLabel' => 'Sauvegarde de l\'instance '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:DBBackupSentence' => 'Faire une sauvegarde de la base de données et des paramétrages d\''.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:DeployBtn' => 'Déployer !',
|
||||
'iTopHub:DatabaseBackupProgress' => 'Sauvegarde de l\'instance...',
|
||||
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('IT IT', 'Italian', 'Italiano', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('IT IT', 'Italian', 'Italiano', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -27,7 +27,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'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:MyExtensions' => 'Deployed extensions~~',
|
||||
'Menu:iTopHub:MyExtensions+' => 'See the list of extensions deployed on this instance of iTop~~',
|
||||
'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>~~',
|
||||
@@ -60,7 +60,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'iTopHub:GetMoreExtensions' => 'Get extensions from iTop Hub...~~',
|
||||
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your iTop.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
@@ -72,7 +72,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -61,7 +61,7 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'iTopHub:GetMoreExtensions' => 'Extensies zoeken op iTop Hub...',
|
||||
|
||||
'iTopHub:LandingWelcome' => 'Gefeliciteerd! Deze extensies werden gedownload via iTop Hub en op deze iTop geïnstalleerd.',
|
||||
'iTopHub:GoBackToITopBtn' => 'Terug naar iTop',
|
||||
'iTopHub:GoBackToITopBtn' => 'Terug naar '.ITOP_APPLICATION_SHORT,
|
||||
'iTopHub:Uncompressing' => 'Extensies aan het uitpakken...',
|
||||
'iTopHub:InstallationWelcome' => 'Installatie van extensies via iTop Hub',
|
||||
'iTopHub:DBBackupLabel' => 'Backup van deze omgeving',
|
||||
|
||||
@@ -26,12 +26,12 @@ Dict::Add('PL PL', 'Polish', 'Polski', array(
|
||||
'Menu:iTopHub' => 'iTop Hub',
|
||||
'Menu:iTopHub:Register' => 'Połącz się z iTop Hub',
|
||||
'Menu:iTopHub:Register+' => 'Przejdź do iTop Hub, aby zaktualizować swoją instancję '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:Register:Description' => '<p>Uzyskaj dostęp do swojej platformy społecznościowej iTop Hub!</br>Znajdź wszystkie potrzebne treści i informacje, zarządzaj swoimi instancjami za pomocą spersonalizowanych narzędzi i zainstaluj więcej rozszerzeń.</br><br/>Łącząc się z Centrum z tej strony, będziesz przesyłać informacje o tej instancji iTop do Centrum.</p>',
|
||||
'Menu:iTopHub:Register:Description' => '<p>Uzyskaj dostęp do swojej platformy społecznościowej iTop Hub!</br>Znajdź wszystkie potrzebne treści i informacje, zarządzaj swoimi instancjami za pomocą spersonalizowanych narzędzi i zainstaluj więcej rozszerzeń.</br><br/>Łącząc się z Centrum z tej strony, będziesz przesyłać informacje o tej instancji '.ITOP_APPLICATION_SHORT.' do Centrum.</p>',
|
||||
'Menu:iTopHub:MyExtensions' => 'Wdrożone rozszerzenia',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Zobacz listę rozszerzeń wdrożonych w tej instancji '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:iTopHub:BrowseExtensions' => 'Pobierz rozszerzenia z iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions+' => 'Wyszukaj więcej rozszerzeń w iTop Hub',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Zajrzyj do sklepu iTop Hub, jedynego miejsca, w którym można znaleźć wspaniałe rozszerzenia iTop!</br>Znajdź te, które pomogą Ci dostosować i dostosować iTop do Twoich procesów.</br><br/>Łącząc się z Centrum z tej strony, będziesz przesyłać informacje o tej instancji iTop do Centrum.</p>',
|
||||
'Menu:iTopHub:BrowseExtensions:Description' => '<p>Zajrzyj do sklepu iTop Hub, jedynego miejsca, w którym można znaleźć wspaniałe rozszerzenia '.ITOP_APPLICATION_SHORT.'!</br>Znajdź te, które pomogą Ci dostosować i dostosować '.ITOP_APPLICATION_SHORT.' do Twoich procesów.</br><br/>Łącząc się z Centrum z tej strony, będziesz przesyłać informacje o tej instancji '.ITOP_APPLICATION_SHORT.' do Centrum.</p>',
|
||||
'iTopHub:GoBtn' => 'Przejdź do iTop Hub',
|
||||
'iTopHub:CloseBtn' => 'Zamknij',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Idź do www.itophub.io',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -12,13 +12,13 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
// Dictionary entries go here
|
||||
'Menu:iTopHub' => 'iTop Hub',
|
||||
'Menu:iTopHub:Register' => 'Подключение к iTop Hub',
|
||||
'Menu:iTopHub:Register+' => 'Перейдите в iTop Hub, чтобы обновить ваш экземпляр iTop',
|
||||
'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+' => 'Перейдите в iTop Hub, чтобы обновить ваш экземпляр '.ITOP_APPLICATION_SHORT,
|
||||
'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' => 'Установленные расширения',
|
||||
'Menu:iTopHub:MyExtensions+' => 'Расширения, развернутые на данном экземпляре iTop',
|
||||
'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 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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -34,25 +34,25 @@ Dict::Add('RU RU', 'Russian', 'Русский', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -60,7 +60,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -24,13 +24,13 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', 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~~',
|
||||
'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_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>~~',
|
||||
'iTopHub:GoBtn' => 'Go To iTop Hub~~',
|
||||
'iTopHub:CloseBtn' => 'Close~~',
|
||||
'iTopHub:GoBtn:Tooltip' => 'Jump to www.itophub.io~~',
|
||||
@@ -46,25 +46,25 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', 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~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of iTop:~~',
|
||||
'iTopHub:ExtensionCategory:Manual+' => 'The following extensions have been deployed by copying them manually in the %1$s directory of '.ITOP_APPLICATION_SHORT.':~~',
|
||||
'iTopHub:ExtensionCategory:Remote' => 'Extensions deployed from iTop Hub~~',
|
||||
'iTopHub:ExtensionCategory:Remote+' => 'The following extensions have been deployed from iTop Hub:~~',
|
||||
'iTopHub:NoExtensionInThisCategory' => 'There is no extension in this category~~',
|
||||
'iTopHub:NoExtensionInThisCategory+' => 'Browse iTop Hub to find the extensions that will help you customize and adapt iTop 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.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to iTop~~',
|
||||
'iTopHub:LandingWelcome' => 'Congratulations! The following extensions were downloaded from iTop Hub and deployed into your '.ITOP_APPLICATION_SHORT.'.~~',
|
||||
'iTopHub:GoBackToITopBtn' => 'Go Back to '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'iTopHub:Uncompressing' => 'Uncompressing extensions...~~',
|
||||
'iTopHub:InstallationWelcome' => 'Installation of the extensions downloaded from iTop Hub~~',
|
||||
'iTopHub:DBBackupLabel' => 'Instance backup~~',
|
||||
'iTopHub:DBBackupSentence' => 'Do a backup of the database and iTop 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...~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s already installed. Nothing will change.~~',
|
||||
'iTopHub:InstallationEffect:Upgrade' => 'Will be <b>upgraded</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationEffect:Downgrade' => 'Will be <b>DOWNGRADED</b> from version %1$s to version %2$s.~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' Instance backup...~~',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => 'Installation of the extensions~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => 'This extension cannot be installed because of unmet dependencies.~~',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => 'The extension requires the module(s): %1$s~~',
|
||||
|
||||
@@ -72,7 +72,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'iTopHub:InstallationEffect:NoChange' => 'Version: %1$s 已安装. 保持不变.',
|
||||
'iTopHub:InstallationEffect:Upgrade' => '将从 version %1$s <b>升级</b> 到 version %2$s.',
|
||||
'iTopHub:InstallationEffect:Downgrade' => '将从 version %1$s <b>降级</b> 到 version %2$s.',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => 'iTop 本机备份...',
|
||||
'iTopHub:InstallationProgress:DatabaseBackup' => ITOP_APPLICATION_SHORT.' 本机备份...',
|
||||
'iTopHub:InstallationProgress:ExtensionsInstallation' => '安装扩展',
|
||||
'iTopHub:InstallationEffect:MissingDependencies' => '扩展无法安装,因为未知的依赖.',
|
||||
'iTopHub:InstallationEffect:MissingDependencies_Details' => '该扩展依赖模块: %1$s',
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Page:DefaultTitle' => 'Portal do usuário iTop',
|
||||
'Page:DefaultTitle' => 'Portal do usuário '.ITOP_APPLICATION_SHORT,
|
||||
'Page:PleaseWait' => 'Aguarde...',
|
||||
'Page:Home' => 'Home',
|
||||
'Page:GoPortalHome' => 'Página Inicial',
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
// Portal
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Page:DefaultTitle' => 'iTop 用户门户',
|
||||
'Page:DefaultTitle' => ITOP_APPLICATION_SHORT.' 用户门户',
|
||||
'Page:PleaseWait' => '请稍后...',
|
||||
'Page:Home' => '主页',
|
||||
'Page:GoPortalHome' => '主页面',
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
//
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'portal:itop-portal' => 'Standard portal~~', // This is the portal name that will be displayed in portal dispatcher (eg. URL in menus)
|
||||
'Page:DefaultTitle' => 'iTop - Portal do Usuário',
|
||||
'Page:DefaultTitle' => ITOP_APPLICATION_SHORT.' - Portal do Usuário',
|
||||
'Brick:Portal:UserProfile:Title' => 'Meu Perfil',
|
||||
'Brick:Portal:NewRequest:Title' => 'Nova Solicitação',
|
||||
'Brick:Portal:NewRequest:Title+' => '<p>Precisa de ajuda?</p><p>Escolha no Catálogo de Serviços e envie sua solicitação para nossas equipes de suporte.</p>',
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
//
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'portal:itop-portal' => '标准门户', // This is the portal name that will be displayed in portal dispatcher (eg. URL in menus)
|
||||
'Page:DefaultTitle' => 'iTop - 用户门户',
|
||||
'Page:DefaultTitle' => ITOP_APPLICATION_SHORT.' - 用户门户',
|
||||
'Brick:Portal:UserProfile:Title' => '我的资料',
|
||||
'Brick:Portal:NewRequest:Title' => '新建工单',
|
||||
'Brick:Portal:NewRequest:Title+' => '<p>需要帮助?</p><p>选择子服务,然后提交工单给我们的支持团队.</p>',
|
||||
|
||||
@@ -115,8 +115,8 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => '监控',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => '电话',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => '电话',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'iTop',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'iTop',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => ITOP_APPLICATION_SHORT,
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => ITOP_APPLICATION_SHORT,
|
||||
'Class:UserRequest/Attribute:approver_id' => '批准人',
|
||||
'Class:UserRequest/Attribute:approver_id+' => '',
|
||||
'Class:UserRequest/Attribute:approver_email' => '邮箱',
|
||||
|
||||
@@ -121,8 +121,8 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||
'Class:UserRequest/Attribute:origin/Value:monitoring+' => '监控',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone' => '电话',
|
||||
'Class:UserRequest/Attribute:origin/Value:phone+' => '电话',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => 'iTop',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => 'iTop',
|
||||
'Class:UserRequest/Attribute:origin/Value:portal' => ITOP_APPLICATION_SHORT,
|
||||
'Class:UserRequest/Attribute:origin/Value:portal+' => ITOP_APPLICATION_SHORT,
|
||||
'Class:UserRequest/Attribute:approver_id' => '审核人',
|
||||
'Class:UserRequest/Attribute:approver_id+' => '',
|
||||
'Class:UserRequest/Attribute:approver_email' => '邮箱',
|
||||
|
||||
@@ -64,7 +64,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -54,7 +54,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -63,7 +63,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Class:Organization/Attribute:overview' => 'Überblick',
|
||||
'Organization:Overview:FunctionalCIs' => 'CIs dieser Organisation',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'nach Typ',
|
||||
'Organization:Overview:Users' => 'iTop Benutzer innerhalb dieser Organisation',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Benutzer innerhalb dieser Organisation',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -76,7 +76,7 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -58,7 +58,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -85,7 +85,7 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Class:Organization/Attribute:overview' => 'Tableau de bord',
|
||||
'Organization:Overview:FunctionalCIs' => 'Infrastructure de cette organisation',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'par type',
|
||||
'Organization:Overview:Users' => 'Utilisateurs iTop dans cette organisation',
|
||||
'Organization:Overview:Users' => 'Utilisateurs '.ITOP_APPLICATION_SHORT.' dans cette organisation',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -56,7 +56,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -56,7 +56,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -56,7 +56,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -63,7 +63,7 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overzicht',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuratie-items van deze organisatie',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'per type',
|
||||
'Organization:Overview:Users' => 'iTop-gebruikers in deze organisatie',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.'-gebruikers in deze organisatie',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -57,7 +57,7 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||
'Class:Organization/Attribute:overview' => 'Visão geral',
|
||||
'Organization:Overview:FunctionalCIs' => 'Itens de configuração desta organização',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'por tipo',
|
||||
'Organization:Overview:Users' => 'Usuários iTop dentro desta organização',
|
||||
'Organization:Overview:Users' => 'Usuários '.ITOP_APPLICATION_SHORT.' dentro desta organização',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -44,7 +44,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||
'Class:Organization/Attribute:overview' => 'Обзор',
|
||||
'Organization:Overview:FunctionalCIs' => 'Конфигурационные единицы этой организации',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'по типу',
|
||||
'Organization:Overview:Users' => 'Пользователи iTop этой организации',
|
||||
'Organization:Overview:Users' => 'Пользователи '.ITOP_APPLICATION_SHORT.' этой организации',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -56,7 +56,7 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -58,7 +58,7 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||
'Class:Organization/Attribute:overview' => 'Overview~~',
|
||||
'Organization:Overview:FunctionalCIs' => 'Configuration items of this organization~~',
|
||||
'Organization:Overview:FunctionalCIs:subtitle' => 'by type~~',
|
||||
'Organization:Overview:Users' => 'iTop Users within this organization~~',
|
||||
'Organization:Overview:Users' => ITOP_APPLICATION_SHORT.' Users within this organization~~',
|
||||
));
|
||||
|
||||
//
|
||||
|
||||
@@ -706,9 +706,9 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Kontakt k upozornění',
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id+' => '',
|
||||
'Class:SynchroDataSource/Attribute:url_icon' => 'Ikona',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Hypertextový odkaz na ikonu reprezentující aplikaci, se kterou je iTop synchronizovnán',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Hypertextový odkaz na ikonu reprezentující aplikaci, se kterou je '.ITOP_APPLICATION_SHORT.' synchronizovnán',
|
||||
'Class:SynchroDataSource/Attribute:url_application' => 'Aplikace',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hypertextový odkaz na iTop objekt v externí aplikaci, se kterou je iTop synchronizován (pokud je to relevantní). Možné zástupné symboly: $this->attribute$ a $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hypertextový odkaz na '.ITOP_APPLICATION_SHORT.' objekt v externí aplikaci, se kterou je '.ITOP_APPLICATION_SHORT.' synchronizován (pokud je to relevantní). Možné zástupné symboly: $this->attribute$ a $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Způsob párování',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Interval mezi dvěma kompletními načteními',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'Kompletní načtení všech dat musí proběhnout nejméně tak často, jak je uvedeno zde',
|
||||
|
||||
@@ -126,7 +126,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'Interní uživatel',
|
||||
'Class:UserInternal+' => 'Uživatel definovaný v iTop',
|
||||
'Class:UserInternal+' => 'Uživatel definovaný v '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
//
|
||||
@@ -331,14 +331,14 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'BooleanLabel:yes' => 'ano',
|
||||
'BooleanLabel:no' => 'ne',
|
||||
'UI:Login:Title' => 'iTop login~~',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||
'Menu:WelcomeMenu' => 'Vítejte', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Vítejte v iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Vítejte v '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Vítejte', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => 'Vítejte v iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Vítejte v iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Vítejte v '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Vítejte v '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop je komplexní „opensource” provozní IT portál.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' je komplexní „opensource” provozní IT portál.</p>
|
||||
<ul>Obsahuje:
|
||||
<li>Kompletní CMDB (databázi pro správu konfigurací) sloužící pro dokumentování a správu evidovaného IT.</li>
|
||||
<li>Modul pro řízení rizik umožňující sledovat veškeré problémy, které se vyskytly v souvislosti s provozem IT.</li>
|
||||
@@ -349,7 +349,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
</ul>
|
||||
<p>Každý modul může být nastaven "krok za krokem" nezávisle na ostatních modulech.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop je servisně orientovaný produkt, který umožňuje správcům IT velmi jednoduše spravovat více zákazníků nebo organizací.
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' je servisně orientovaný produkt, který umožňuje správcům IT velmi jednoduše spravovat více zákazníků nebo organizací.
|
||||
<ul>iTop přináší mnoho dalších výhod umožňujících "optimální" nastavení podnikových procesů které:
|
||||
<li>Zvyšují účinnost řízení IT.</li>
|
||||
<li>Efektivně řídí operace prováděné nad IT infrastrukturou.</li>
|
||||
@@ -518,14 +518,14 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:SearchValue:CheckAll' => 'Vybrat vše',
|
||||
'UI:SearchValue:UncheckAll' => 'Zrušit výběr',
|
||||
'UI:SelectOne' => '-- zvolte jednu z možností --',
|
||||
'UI:Login:Welcome' => 'Vítejte v iTop!',
|
||||
'UI:Login:Welcome' => 'Vítejte v '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Nesprávné uživatelské jméno nebo heslo. Zkuste to prosím znovu.',
|
||||
'UI:Login:IdentifyYourself' => 'Před pokračováním se prosím identifikujte.',
|
||||
'UI:Login:UserNamePrompt' => 'Uživatelské jméno',
|
||||
'UI:Login:PasswordPrompt' => 'Heslo',
|
||||
'UI:Login:ForgotPwd' => 'Zapomněli jste své heslo?',
|
||||
'UI:Login:ForgotPwdForm' => 'Zapomenuté heslo',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop vám může zaslat instrukce pro obnovení vašeho hesla.',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' vám může zaslat instrukce pro obnovení vašeho hesla.',
|
||||
'UI:Login:ResetPassword' => 'Zaslat nyní!',
|
||||
'UI:Login:ResetPwdFailed' => 'Chyba při odesílání emailu: %1$s',
|
||||
'UI:Login:SeparatorOr' => 'Or~~',
|
||||
@@ -538,8 +538,8 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'chybí emailová adresa. Kontaktujte administrátora.',
|
||||
'UI:ResetPwd-Error-Send' => 'technický problém při odesílání emailu. Kontaktujte administrátora.',
|
||||
'UI:ResetPwd-EmailSent' => 'Please check your email box and follow the instructions. If you receive no email, please check the login you typed.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Obnovení hesla pro iTop',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Vyžádali jste obovení hesla pro iTop.</p><p>Pokračujte kliknutím na následující <a href="%1$s">jednorázový odkaz</a> a zadejte nové heslo.</p>',
|
||||
'UI:ResetPwd-EmailSubject' => 'Obnovení hesla pro '.ITOP_APPLICATION_SHORT,
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Vyžádali jste obovení hesla pro '.ITOP_APPLICATION_SHORT.'.</p><p>Pokračujte kliknutím na následující <a href="%1$s">jednorázový odkaz</a> a zadejte nové heslo.</p>',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Obnovení hesla',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Omlouváme se, ale heslo již bylo obnoveno nebo jste obdrželi více emailů. Ujistěte se, že používate odkaz z posledního emailu který jste obdrželi.',
|
||||
@@ -554,12 +554,12 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Znovu nové heslo',
|
||||
'UI:Login:IncorrectOldPassword' => 'Chyba: původní heslo je nesprávné',
|
||||
'UI:LogOffMenu' => 'Odhlásit',
|
||||
'UI:LogOff:ThankYou' => 'Děkujeme za užívání iTop',
|
||||
'UI:LogOff:ThankYou' => 'Děkujeme za užívání '.ITOP_APPLICATION_SHORT,
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Klikněte zde pro nové přihlášení...',
|
||||
'UI:ChangePwdMenu' => 'Změnit heslo',
|
||||
'UI:Login:PasswordChanged' => 'Heslo nastaveno úspěšně!',
|
||||
'UI:AccessRO-All' => 'iTop je pouze ke čtení',
|
||||
'UI:AccessRO-Users' => 'iTop je pouze ke čtení pro koncové uživatele',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' je pouze ke čtení',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' je pouze ke čtení pro koncové uživatele',
|
||||
'UI:ApplicationEnvironment' => 'Aplikační prostředí: %1$s',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Nová hesla se neshodují!',
|
||||
'UI:Button:Login' => 'Přihlásit',
|
||||
@@ -577,7 +577,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:CSVImport:DataLine1' => '1. řádek dat',
|
||||
'UI:CSVImport:DataLine2' => '2. řádek dat',
|
||||
'UI:CSVImport:idField' => 'id (primární klíč)',
|
||||
'UI:Title:BulkImport' => 'iTop - hromadný import',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - hromadný import',
|
||||
'UI:Title:BulkImport+' => 'Průvodce importem CSV',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Synchronizace %1$d objektů třídy %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- zvolte jednu z možností --',
|
||||
@@ -626,7 +626,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Ujistěte se prosím, že cílové pole je mapováno pouze jednou.',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Vyberte prosím alespoň jedno vyhledávací kritérium.',
|
||||
'UI:CSVImport:Encoding' => 'Kódování znaků',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Univerzální hledání',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Univerzální hledání',
|
||||
'UI:UniversalSearch:Error' => 'Chyba: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Vyberte třídu pro hledání: ',
|
||||
|
||||
@@ -674,9 +674,9 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:CSVExport:AdvancedMode' => 'Pokročilý režim',
|
||||
'UI:CSVExport:AdvancedMode+' => 'V pokročilém režimu jsou vyexportovány další sloupce: id objektu, id externích klíčů a jejich slaďovacích atributů.',
|
||||
'UI:CSVExport:LostChars' => 'Problém s kódováním',
|
||||
'UI:CSVExport:LostChars+' => 'CSV soubor bude kódován v %1$s. iTop zjistil, že některé charaktery nejsou s tímto kódováním kompatibilní. Tyto znaky budou nahrazeny zástupným znakem, nebo budou vynechány. Kontaktujte administrátora pro změnu kódování (parametr \'csv_file_default_charset\').',
|
||||
'UI:CSVExport:LostChars+' => 'CSV soubor bude kódován v %1$s. '.ITOP_APPLICATION_SHORT.' zjistil, že některé charaktery nejsou s tímto kódováním kompatibilní. Tyto znaky budou nahrazeny zástupným znakem, nebo budou vynechány. Kontaktujte administrátora pro změnu kódování (parametr \'csv_file_default_charset\').',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB Audit',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB Audit',
|
||||
'UI:Audit:InteractiveAudit' => 'Interaktivní Audit',
|
||||
'UI:Audit:HeaderAuditRule' => 'Pravidlo auditu',
|
||||
'UI:Audit:HeaderNbObjects' => 'Počet objektů',
|
||||
@@ -695,7 +695,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - Vyhodnocení OQL dotazu',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - Vyhodnocení OQL dotazu',
|
||||
'UI:RunQuery:QueryExamples' => 'Příklady dotazů',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Účel',
|
||||
@@ -713,7 +713,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:RunQuery:Error' => 'Nastala chyba při provádění dotazu',
|
||||
'UI:Query:UrlForExcel' => 'URL pro MS-Excel web queries',
|
||||
'UI:Query:UrlV1' => 'Nebyl specifikován seznam sloupců k exportu. Bez této informace nemůže stránka <em>export-V2.php</em> provést export. Pro export všech polí použijte stránku <em>export.php</em>. Pokud však chcete udržet konzistenci v delším časovém horzontu, použijte stávající stránku a specifikujte paramter "fields".',
|
||||
'UI:Schema:Title' => 'iTop schéma objektů',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' schéma objektů',
|
||||
'UI:Schema:CategoryMenuItem' => 'Kategorie <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Vztahy',
|
||||
'UI:Schema:AbstractClass' => 'Abstraktní třída: instance objektu této třídy nemůže být vytvořena.',
|
||||
@@ -829,9 +829,9 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Před odstraněním tohoto objektu nejdříve proveďte výše uvedené manuální operace.',
|
||||
'UI:Delect:Confirm_Object' => 'Potvrďte, že chcete odstranit objekt %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Potvrďte, že chcete odstranit tyto objekty (%1$d) třídy %2$s.',
|
||||
'UI:WelcomeToITop' => 'Vítejte v iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s detaily',
|
||||
'UI:ErrorPageTitle' => 'iTop - Chyba',
|
||||
'UI:WelcomeToITop' => 'Vítejte v '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s detaily',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Chyba',
|
||||
'UI:ObjectDoesNotExist' => 'Tento objekt neexistuje (nebo nemáte oprávnění k jeho zobrazení).',
|
||||
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
|
||||
'Tag:Archived' => 'Archived~~',
|
||||
@@ -841,7 +841,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Tag:Synchronized' => 'Synchronized~~',
|
||||
'ObjectRef:Archived' => 'Archived~~',
|
||||
'ObjectRef:Obsolete' => 'Obsolete~~',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Výsledky hledání',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Výsledky hledání',
|
||||
'UI:SearchResultsTitle' => 'Výsledky hledání',
|
||||
'UI:SearchResultsTitle+' => 'Výsledky fulltextového hledání',
|
||||
'UI:Search:NoSearch' => 'Nic k hledání',
|
||||
@@ -851,27 +851,27 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:FullTextSearchTitle_Text' => 'Výsledky pro "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d objekt(ů) třídy %2$s nalezeno.',
|
||||
'UI:Search:NoObjectFound' => 'Nenalezen žádný objekt.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - úprava - %1$s - %2$s',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - úprava - %1$s - %2$s',
|
||||
'UI:ModificationTitle_Class_Object' => 'Úprava %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Klonování %1$s - %2$s',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Klonování %1$s - %2$s',
|
||||
'UI:CloneTitle_Class_Object' => 'Klonování %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Vytváření nového objektu (%1$s) ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Vytváření nového objektu (%1$s) ',
|
||||
'UI:CreationTitle_Class' => 'Vytváření nového objektu (%1$s)',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Vyberte typ objektu "%1$s" k vytvoření:',
|
||||
'UI:Class_Object_NotUpdated' => 'Nenalezeny žádné změny, objekt %1$s (%2$s) <strong>nebude</strong> upraven.',
|
||||
'UI:Class_Object_Updated' => 'Objekt %1$s (%2$s) byl aktualizován.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Hromadné odstranění',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Hromadné odstranění',
|
||||
'UI:BulkDeleteTitle' => 'Vyberte objekty, které chcete odstranit:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop Objekt vytvořen.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' Objekt vytvořen.',
|
||||
'UI:Title:Object_Of_Class_Created' => 'Objekt %1$s - %2$s vytvořen.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Aplikace %1$s na objekt: %2$s ve stavu %3$s do cílového stavu: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'Objekt nemohl být zapsán: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Závažná chyba',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Závažná chyba',
|
||||
'UI:SystemIntrusion' => 'Přístup odepřen. Vyžadujete operaci, která vám není povolena.',
|
||||
'UI:FatalErrorMessage' => 'Závažná chyba, iTop nemůže pokračovat.',
|
||||
'UI:FatalErrorMessage' => 'Závažná chyba, '.ITOP_APPLICATION_SHORT.' nemůže pokračovat.',
|
||||
'UI:Error_Details' => 'Chyba: %1$s',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop správa uživatelů - projekce profilů',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' správa uživatelů - projekce profilů',
|
||||
'UI:UserManagement:Class' => 'Třída',
|
||||
'UI:UserManagement:Class+' => 'Třída objektů',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objekt',
|
||||
@@ -967,8 +967,8 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Menu:NotificationsMenu+' => 'Konfigurace upozornění', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Konfigurace upozornění',
|
||||
'UI:NotificationsMenu:Help' => 'Nápověda',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>Upozornění v iTop jsou plně nastavitelné. Jsou založena na dvou druzích objektů: <i>triggery (spouštěče) a akce</i>.</p>
|
||||
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of iTop core, but others can be brought by extensions:
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>Upozornění v '.ITOP_APPLICATION_SHORT.' jsou plně nastavitelné. Jsou založena na dvou druzích objektů: <i>triggery (spouštěče) a akce</i>.</p>
|
||||
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of '.ITOP_APPLICATION_SHORT.' core, but others can be brought by extensions:
|
||||
<ol>
|
||||
<li>Some triggers are executed when an object of the specified class is <b>created</b>, <b>updated</b> or <b>deleted</b>.</li>
|
||||
<li>Some triggers are executed when an object of a given class <b>enter</b> or <b>leave</b> a specified </b>state</b>.</li>
|
||||
@@ -1075,8 +1075,8 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:RelationTooltip:Redundancy' => 'Redundance',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => 'Počet zasažených objektů: %1$d / %2$d',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Prahová hranice: %1$d / %2$d',
|
||||
'Portal:Title' => 'iTop uživatelský portál',
|
||||
'Portal:NoRequestMgmt' => 'Byli jste přesměrováni na tuto stránku, protože k vašemu účtu je přidělen profil \'Portal user\'. iTop však nebyl nainstalován s funkcí \'Request Management\'. Kontaktujte prosím vašeho administrátora.',
|
||||
'Portal:Title' => ITOP_APPLICATION_SHORT.' uživatelský portál',
|
||||
'Portal:NoRequestMgmt' => 'Byli jste přesměrováni na tuto stránku, protože k vašemu účtu je přidělen profil \'Portal user\'. '.ITOP_APPLICATION_SHORT.' však nebyl nainstalován s funkcí \'Request Management\'. Kontaktujte prosím vašeho administrátora.',
|
||||
'Portal:Refresh' => 'Obnovit',
|
||||
'Portal:Back' => 'Zpět',
|
||||
'Portal:WelcomeUserOrg' => 'Vítejte, %1$s (%2$s)',
|
||||
@@ -1160,7 +1160,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||
'UI:NavigateAwayConfirmationMessage' => 'Všechny úpravy budou zahozeny.',
|
||||
'UI:CancelConfirmationMessage' => 'Přijdete o všechny změny. Přejete si přesto pokračovat?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Některé změny nebyly dosud použity. Chcete aby je iTop zohlednil?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Některé změny nebyly dosud použity. Chcete aby je '.ITOP_APPLICATION_SHORT.' zohlednil?',
|
||||
'UI:Create_Class_InState' => 'Vytvořit %1$s ve stavu: ',
|
||||
'UI:OrderByHint_Values' => 'Řadit dle: %1$s',
|
||||
'UI:Menu:AddToDashboard' => 'Přidat na Dashboard...',
|
||||
@@ -1408,8 +1408,8 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'UI:AddAnExisting_Class' => 'Přidat objekty typu %1$s...',
|
||||
'UI:SelectionOf_Class' => 'Výběr objektů typu %1$s',
|
||||
|
||||
'UI:AboutBox' => 'O iTop...',
|
||||
'UI:About:Title' => 'O iTop',
|
||||
'UI:AboutBox' => 'O '.ITOP_APPLICATION_SHORT.'...',
|
||||
'UI:About:Title' => 'O '.ITOP_APPLICATION_SHORT,
|
||||
'UI:About:DataModel' => 'Datový model',
|
||||
'UI:About:Support' => 'Informace pro podporu',
|
||||
'UI:About:Licenses' => 'Licence',
|
||||
@@ -1434,7 +1434,7 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'ExcelExport:PreparingExport' => 'Připravuji export...',
|
||||
'ExcelExport:Statistics' => 'Statistiky',
|
||||
'portal:legacy_portal' => 'Uživatelský portál',
|
||||
'portal:backoffice' => 'iTop Back-Office',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Back-Office',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'Objekt je uzamčen, protože ho nyní upravuje %1$s.',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'Objekt právě upravuje %1$s. Vaše úpravy nemohou být odeslány, protože by byly přepsány.',
|
||||
@@ -1618,9 +1618,9 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
||||
'Menu:DataSources' => 'Zdroje dat pro synchronizaci',
|
||||
'Menu:DataSources+' => 'Všechny zdroje dat pro synchronizaci',
|
||||
'Menu:WelcomeMenu' => 'Vítejte',
|
||||
'Menu:WelcomeMenu+' => 'Vítejte v iTop',
|
||||
'Menu:WelcomeMenu+' => 'Vítejte v '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Vítejte',
|
||||
'Menu:WelcomeMenuPage+' => 'Vítejte v iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Vítejte v '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Administrace',
|
||||
'Menu:AdminTools+' => 'Nástroje pro administraci',
|
||||
'Menu:AdminTools?' => 'Nástroje přístupné pouze uživatelům, kteří mají potřbná oprávnění',
|
||||
|
||||
@@ -115,7 +115,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'User Internal~~',
|
||||
'Class:UserInternal+' => 'User defined within iTop~~',
|
||||
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT.'~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -320,14 +320,14 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'BooleanLabel:yes' => 'yes~~',
|
||||
'BooleanLabel:no' => 'no~~',
|
||||
'UI:Login:Title' => 'iTop login~~',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||
'Menu:WelcomeMenu' => 'Velkomen', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Velkommen til iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Velkomen', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => 'Velkommen til iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Velkommen til iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop er en komplet, OpenSource, webbaseret IT-Service-Management-Værktøj.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' er en komplet, OpenSource, webbaseret IT-Service-Management-Værktøj.</p>
|
||||
<ul>Den inkluderer:
|
||||
<li>En komplet CMDB (Configuration management database) til at dokumentere og styre IT-portfolioen.</li>
|
||||
<li>Et Incident management modul til brug for sporing og kommunikation omkring alle spørgsmål vedrørende IT.</li>
|
||||
@@ -338,14 +338,14 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
</ul>
|
||||
<p>Alle moduler kan installeres, step by step, uafhængigt af hinanden.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop er service udbyder orienteret, det tillader let IT teknikere at administrere flere kunder eller organisationer.
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' er service udbyder orienteret, det tillader let IT teknikere at administrere flere kunder eller organisationer.
|
||||
<ul>iTop, leverer et feature-rich sæt af forretnings processer som:
|
||||
<li>Forøger IT administrationens effektivitet</li>
|
||||
<li>Drives IT operations performance</li>
|
||||
<li>Improves customer satisfaction and provides executives with insights into business performance.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>iTop is completely open to be integrated within your current IT Management infrastructure.</p>
|
||||
<p>'.ITOP_APPLICATION_SHORT.' is completely open to be integrated within your current IT Management infrastructure.</p>
|
||||
<p>
|
||||
<ul>Adopting this new generation of IT Operational portal will help you to:
|
||||
<li>Better manage a more and more complex IT environment.</li>
|
||||
@@ -421,7 +421,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'Ukorrekt link definition: klassen af objekter, der skal styres: %1$s blev ikke fundet som fremmednøgle i klassen %2$s',
|
||||
'UI:Error:Object_Class_Id_NotFound' => 'Objekt: %1$s:%2$d ikke fundet.',
|
||||
'UI:Error:WizardCircularReferenceInDependencies' => 'Fejl: Circulær reference i afhængigheder mellem felterne, tjek datamodellen.',
|
||||
'UI:Error:UploadedFileTooBig' => 'Den uploadede fil er for stor. (Max tilladt størrelse er %1$s). Kontakt din iTop administrator for at få ændret denne grænse limit. (Tjek PHP konfigurationen for upload_max_filesize og post_max_size på serveren).',
|
||||
'UI:Error:UploadedFileTooBig' => 'Den uploadede fil er for stor. (Max tilladt størrelse er %1$s). Kontakt din '.ITOP_APPLICATION_SHORT.' administrator for at få ændret denne grænse limit. (Tjek PHP konfigurationen for upload_max_filesize og post_max_size på serveren).',
|
||||
'UI:Error:UploadedFileTruncated.' => 'Den uploadede fil er blevet afkortet !',
|
||||
'UI:Error:NoTmpDir' => 'Det midlertidige bibliotek er ikke defineret.',
|
||||
'UI:Error:CannotWriteToTmp_Dir' => 'Kan ikke skrive den midlertidige fil til disken: upload_tmp_dir = "%1$s".',
|
||||
@@ -507,14 +507,14 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:SearchValue:CheckAll' => 'Check All~~',
|
||||
'UI:SearchValue:UncheckAll' => 'Uncheck All~~',
|
||||
'UI:SelectOne' => '-- Vælg venligst --',
|
||||
'UI:Login:Welcome' => 'Velkommen til iTop!',
|
||||
'UI:Login:Welcome' => 'Velkommen til '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Ukorrekt login/adgangskode, venligst prøv igen.',
|
||||
'UI:Login:IdentifyYourself' => 'Identificer dig før du fortsætter',
|
||||
'UI:Login:UserNamePrompt' => 'Bruger Navn',
|
||||
'UI:Login:PasswordPrompt' => 'Adgangskode',
|
||||
'UI:Login:ForgotPwd' => 'Forgot your password?~~',
|
||||
'UI:Login:ForgotPwdForm' => 'Forgot your password~~',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ResetPassword' => 'Send now!~~',
|
||||
'UI:Login:ResetPwdFailed' => 'Failed to send an email: %1$s~~',
|
||||
'UI:Login:SeparatorOr' => 'Or~~',
|
||||
@@ -527,8 +527,8 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'missing an email address. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-Error-Send' => 'email transport technical issue. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-EmailSent' => 'Please check your email box and follow the instructions. If you receive no email, please check the login you typed.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your iTop password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your iTop password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your '.ITOP_APPLICATION_SHORT.' password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your '.ITOP_APPLICATION_SHORT.' password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Reset password~~',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Sorry, either the password has already been reset, or you have received several emails. Please make sure that you use the link provided in the very last email received.~~',
|
||||
@@ -543,17 +543,17 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Gentag ny adgangskode',
|
||||
'UI:Login:IncorrectOldPassword' => 'Fejl: den gamle adgangskode er forkert',
|
||||
'UI:LogOffMenu' => 'Log ud',
|
||||
'UI:LogOff:ThankYou' => 'Tak for at du brugte iTop',
|
||||
'UI:LogOff:ThankYou' => 'Tak for at du brugte '.ITOP_APPLICATION_SHORT,
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Klik her for at logge ind igen...',
|
||||
'UI:ChangePwdMenu' => 'Skift Adgangskode...',
|
||||
'UI:Login:PasswordChanged' => 'Adgangskode oprettet med success!',
|
||||
'UI:AccessRO-All' => 'iTop er skrivebeskyttet',
|
||||
'UI:AccessRO-Users' => 'iTop er skrivebeskyttet for slutbrugere',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' er skrivebeskyttet',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' er skrivebeskyttet for slutbrugere',
|
||||
'UI:ApplicationEnvironment' => 'Applikations miljø: %1$s',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Ny adgangskode og gentaget adgangskode passer ikke sammen!',
|
||||
'UI:Button:Login' => 'Enter iTop',
|
||||
'UI:Login:Error:AccessRestricted' => 'iTop adgang er begrænset. Venligst, kontakt en iTop administrator.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Adgang er begrænset til administratorer. Venligst, kontakt en iTop administrator.',
|
||||
'UI:Button:Login' => 'Enter '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Login:Error:AccessRestricted' => ITOP_APPLICATION_SHORT.' adgang er begrænset. Venligst, kontakt en '.ITOP_APPLICATION_SHORT.' administrator.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Adgang er begrænset til administratorer. Venligst, kontakt en '.ITOP_APPLICATION_SHORT.' administrator.',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Unknown organization~~',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Multiple contacts have the same e-mail~~',
|
||||
'UI:Login:Error:NoValidProfiles' => 'No valid profile provided~~',
|
||||
@@ -566,7 +566,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:CSVImport:DataLine1' => 'Data Linje 1',
|
||||
'UI:CSVImport:DataLine2' => 'Data Linje 2',
|
||||
'UI:CSVImport:idField' => 'id (Primær Nøgle)',
|
||||
'UI:Title:BulkImport' => 'iTop - Bulk import',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - Bulk import',
|
||||
'UI:Title:BulkImport+' => 'CSV-Import assistent',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Synchronisering af %1$d objekter af klasse %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- Vælg venligst --~~',
|
||||
@@ -615,7 +615,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Please make sure that a target field is mapped only once.~~',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Vælg venligst mindst et søgekriterie',
|
||||
'UI:CSVImport:Encoding' => 'Karakter encoding',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Universal Søgning',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Universal Søgning',
|
||||
'UI:UniversalSearch:Error' => 'Fejl: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Vælg klasse at søge efter: ',
|
||||
|
||||
@@ -665,7 +665,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:CSVExport:LostChars' => 'Encoding problem',
|
||||
'UI:CSVExport:LostChars+' => '',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB Audit',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB Audit',
|
||||
'UI:Audit:InteractiveAudit' => 'Interaktiv Audit',
|
||||
'UI:Audit:HeaderAuditRule' => 'Audit Regel',
|
||||
'UI:Audit:HeaderNbObjects' => '# Objekt(er)',
|
||||
@@ -684,7 +684,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - OQL Query Evaluering',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - OQL Query Evaluering',
|
||||
'UI:RunQuery:QueryExamples' => 'Query Eksempler',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Formål',
|
||||
@@ -701,8 +701,8 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:RunQuery:ResultSQL' => 'Resulting SQL~~',
|
||||
'UI:RunQuery:Error' => 'Der opstod en fejl under afviklingen af forespøgrslen',
|
||||
'UI:Query:UrlForExcel' => 'URL til brug for MS-Excel web forespøgrsler',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of iTop. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => 'iTop objekt skema',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of '.ITOP_APPLICATION_SHORT.'. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' objekt skema',
|
||||
'UI:Schema:CategoryMenuItem' => 'Kategori <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Relationer',
|
||||
'UI:Schema:AbstractClass' => 'Abstrakt klasse: intet objekt fra denne klasse kan instantieres.',
|
||||
@@ -818,9 +818,9 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Venligst foretag den manuelle opreration som er nævnt ovenfor, før sletning af objektet',
|
||||
'UI:Delect:Confirm_Object' => 'Venligst bekræft at du ønsker at slette %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Venligst bekræft at du ønsker at slette følgende %1$d objekter af klassen %2$s.',
|
||||
'UI:WelcomeToITop' => 'Velkommen til iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s detaljer',
|
||||
'UI:ErrorPageTitle' => 'iTop - Fejl',
|
||||
'UI:WelcomeToITop' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s detaljer',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Fejl',
|
||||
'UI:ObjectDoesNotExist' => 'Beklager, dette objekt eksisterer ikke (eller du har ikke tilladelse til at se det).',
|
||||
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
|
||||
'Tag:Archived' => 'Archived~~',
|
||||
@@ -830,7 +830,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Tag:Synchronized' => 'Synchronized~~',
|
||||
'ObjectRef:Archived' => 'Archived~~',
|
||||
'ObjectRef:Obsolete' => 'Obsolete~~',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Søge Resultater',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Søge Resultater',
|
||||
'UI:SearchResultsTitle' => 'Søge Resultater',
|
||||
'UI:SearchResultsTitle+' => 'Full-text search results~~',
|
||||
'UI:Search:NoSearch' => 'Intet at søge efter',
|
||||
@@ -840,27 +840,27 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'UI:FullTextSearchTitle_Text' => 'Resultater for "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d objekt(er) af klasse %2$s fundet.',
|
||||
'UI:Search:NoObjectFound' => 'Intet objekt fundet.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s ændring',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s ændring',
|
||||
'UI:ModificationTitle_Class_Object' => 'Ændring af %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Clone %1$s - %2$s ændring',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Clone %1$s - %2$s ændring',
|
||||
'UI:CloneTitle_Class_Object' => 'Clone af %1$s: <span class=\\"hilite\\">%2$s</span>~~',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Oprettelse af ny %1$s ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Oprettelse af ny %1$s ',
|
||||
'UI:CreationTitle_Class' => 'Oprettelse af ny %1$s',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Vælg type af %1$s for oprettelse:',
|
||||
'UI:Class_Object_NotUpdated' => 'Ingen ændring, %1$s (%2$s) er <strong>not</strong> ændret.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) opdateret.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Massesletning',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Massesletning',
|
||||
'UI:BulkDeleteTitle' => 'Vælg objekt som ønskes slettet:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop Objekt Oprettet.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' Objekt Oprettet.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s oprettet.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Anvender %1$s på objekt: %2$s i tilstand %3$s for sluttilstand: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'Objektet kunne ikke skrives: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Fatal Fejl',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Fatal Fejl',
|
||||
'UI:SystemIntrusion' => 'Adgang nægtet. Du prøver at udføre en handling som du ikke har tilladelse til.',
|
||||
'UI:FatalErrorMessage' => 'Fatal fejl, iTop kan ikke fortsætte.',
|
||||
'UI:FatalErrorMessage' => 'Fatal fejl, '.ITOP_APPLICATION_SHORT.' kan ikke fortsætte.',
|
||||
'UI:Error_Details' => 'Fejl: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop bruger styring - profil projection',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' bruger styring - profil projection',
|
||||
'UI:UserManagement:Class' => 'Klasse',
|
||||
'UI:UserManagement:Class+' => '',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objekt',
|
||||
@@ -956,8 +956,8 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Menu:NotificationsMenu+' => 'Configuration of the Notifications~~', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Konfiguration af Notifikationer~~',
|
||||
'UI:NotificationsMenu:Help' => 'Hjælp',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>I iTop er notifikationer fuldt modificerbare. De er baseret på to sæt af objekter: <i>triggers og handlinger</i>.</p>
|
||||
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of iTop core, but others can be brought by extensions:
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>I '.ITOP_APPLICATION_SHORT.' er notifikationer fuldt modificerbare. De er baseret på to sæt af objekter: <i>triggers og handlinger</i>.</p>
|
||||
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of '.ITOP_APPLICATION_SHORT.' core, but others can be brought by extensions:
|
||||
<ol>
|
||||
<li>Some triggers are executed when an object of the specified class is <b>created</b>, <b>updated</b> or <b>deleted</b>.</li>
|
||||
<li>Some triggers are executed when an object of a given class <b>enter</b> or <b>leave</b> a specified </b>state</b>.</li>
|
||||
@@ -1066,8 +1066,8 @@ Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge"
|
||||
'UI:RelationTooltip:Redundancy' => 'Redundancy~~',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => '# of impacted items: %1$d / %2$d~~',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Critical threshold: %1$d / %2$d~~',
|
||||
'Portal:Title' => 'iTop bruger portal',
|
||||
'Portal:NoRequestMgmt' => 'Kære %1$s, du er blevet omdirigeret til denne side, fordi din konto er konfigureret med profilen \'Portal user\'. Desværre er iTop ikke installeret med denne funktionalitet \'Request Management\'. Venligst kontakt din administrator.',
|
||||
'Portal:Title' => ITOP_APPLICATION_SHORT.' bruger portal',
|
||||
'Portal:NoRequestMgmt' => 'Kære %1$s, du er blevet omdirigeret til denne side, fordi din konto er konfigureret med profilen \'Portal user\'. Desværre er '.ITOP_APPLICATION_SHORT.' ikke installeret med denne funktionalitet \'Request Management\'. Venligst kontakt din administrator.',
|
||||
'Portal:Refresh' => 'Opdater',
|
||||
'Portal:Back' => 'Tilbage',
|
||||
'Portal:WelcomeUserOrg' => 'Velkommen %1$s, fra %2$s',
|
||||
@@ -1399,8 +1399,8 @@ Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge"
|
||||
'UI:AddAnExisting_Class' => 'Add objects of type %1$s...~~',
|
||||
'UI:SelectionOf_Class' => 'Selection of objects of type %1$s~~',
|
||||
|
||||
'UI:AboutBox' => 'About iTop...~~',
|
||||
'UI:About:Title' => 'About iTop~~',
|
||||
'UI:AboutBox' => 'About '.ITOP_APPLICATION_SHORT.'...~~',
|
||||
'UI:About:Title' => 'About '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'UI:About:DataModel' => 'Data model~~',
|
||||
'UI:About:Support' => 'Support information~~',
|
||||
'UI:About:Licenses' => 'Licenses~~',
|
||||
@@ -1425,7 +1425,7 @@ Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge"
|
||||
'ExcelExport:PreparingExport' => 'Preparing the export...~~',
|
||||
'ExcelExport:Statistics' => 'Statistics~~',
|
||||
'portal:legacy_portal' => 'End-User Portal~~',
|
||||
'portal:backoffice' => 'iTop Back-Office User Interface~~',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Back-Office User Interface~~',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'The object is locked since it is currently being modified by %1$s.~~',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'The object is currently being modified by %1$s. Your modifications cannot be submitted since they would be overwritten.~~',
|
||||
@@ -1609,9 +1609,9 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||
'Menu:DataSources' => 'Synkroniserings Data Kilder',
|
||||
'Menu:DataSources+' => 'All Synchronization Data Sources~~',
|
||||
'Menu:WelcomeMenu' => 'Velkomen',
|
||||
'Menu:WelcomeMenu+' => 'Velkommen til iTop',
|
||||
'Menu:WelcomeMenu+' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Velkomen',
|
||||
'Menu:WelcomeMenuPage+' => 'Velkommen til iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Admin værktøjer',
|
||||
'Menu:AdminTools+' => 'Administration tools~~',
|
||||
'Menu:AdminTools?' => 'Værktøjer kun tilgængelige for brugere med administrator profil',
|
||||
|
||||
@@ -703,9 +703,9 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Zu benachrichtigender Kontakt',
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Kontakt, der im Fehlerfall benachrichtigt werden muss',
|
||||
'Class:SynchroDataSource/Attribute:url_icon' => 'Hyperlink zum Icon',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Ein (kleines) Bild verlinken, das die Applikation repräsentiert, mit der iTop synchronisiert wird',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Ein (kleines) Bild verlinken, das die Applikation repräsentiert, mit der '.ITOP_APPLICATION_SHORT.' synchronisiert wird',
|
||||
'Class:SynchroDataSource/Attribute:url_application' => 'Hyperlink zur Applikation',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink zum iTop Objekt in der externen Applikation mit der iTop synchronisiert wird (falls anwendbar). Mögliche Platzhalter: $this->attribute$ und $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink zum '.ITOP_APPLICATION_SHORT.' Objekt in der externen Applikation mit der '.ITOP_APPLICATION_SHORT.' synchronisiert wird (falls anwendbar). Mögliche Platzhalter: $this->attribute$ und $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Abgleichsvorgehen',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Intervall zwischen zwei vollständigen Reloads',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'Ein vollständiger Reload des gesamten Datenbestands muss mindestens in diesem Intervall erfolgen',
|
||||
|
||||
@@ -115,7 +115,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'Das Benutzerkonto gehört nicht zu den für Sie freigegebenen Organisationen',
|
||||
'Class:User/Error:PersonIsMandatory' => 'Der Kontakt muss angegeben werden.',
|
||||
'Class:UserInternal' => 'Interner Benutzer',
|
||||
'Class:UserInternal+' => 'Benutzer, der innerhalb iTop definiert wird',
|
||||
'Class:UserInternal+' => 'Benutzer, der innerhalb '.ITOP_APPLICATION_SHORT.' definiert wird',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -320,14 +320,14 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'BooleanLabel:yes' => 'Ja',
|
||||
'BooleanLabel:no' => 'Nein',
|
||||
'UI:Login:Title' => 'iTop Login',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' Login',
|
||||
'Menu:WelcomeMenu' => 'Willkommen', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Willkommen bei iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Willkommen', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => 'Willkommen bei iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Willkommen bei iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop ist ein ein vollständiges, ITIL- und webbasiertes IT-Service-Management-Tool (ITSM)</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' ist ein ein vollständiges, ITIL- und webbasiertes IT-Service-Management-Tool (ITSM)</p>
|
||||
<ul>Es umfasst...
|
||||
<li>eine vollständige CMDB (Configuration Management Database), um das IT-Portfolio zu dokumentieren und zu managen,</li>
|
||||
<li>ein Incident Management-Modul, um alle Störfälle in der IT-Landschaft zu beobachten und diese zu kommunizieren,</li>
|
||||
@@ -338,14 +338,14 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
</ul>
|
||||
<p>Alle Module können nacheinander und vollständig unabhängig voneinander eingerichtet werden.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop ist mandantenfähig, es erlaubt IT-Technikern, auf einfache Art eine Vielzahl an Kunden und Firmen zu verwalten.
|
||||
<ul>iTop bietet ein umfangreiches Set an Business-Prozessen, die
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' ist mandantenfähig, es erlaubt IT-Technikern, auf einfache Art eine Vielzahl an Kunden und Firmen zu verwalten.
|
||||
<ul>'.ITOP_APPLICATION_SHORT.' bietet ein umfangreiches Set an Business-Prozessen, die
|
||||
<li>die Effizienz des IT-Managements steigern,</li>
|
||||
<li>die die Performance des IT-Betriebs steuern,</li>
|
||||
<li>die Kundenzufriedenheit verbessern und Führungskräften Einsicht in die Business Performance ermöglichen.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>iTop ist komplett offen, damit es sich bestmöglich in Ihre derzeitige IT-Management-Infrastruktur integriert.</p>
|
||||
<p>'.ITOP_APPLICATION_SHORT.' ist komplett offen, damit es sich bestmöglich in Ihre derzeitige IT-Management-Infrastruktur integriert.</p>
|
||||
<p>
|
||||
<ul>Die neue Generation des IT Operational Portals ermöglicht Ihnen
|
||||
<li>ein besseres Management in einer immer komplexeren IT-Landschaft,</li>
|
||||
@@ -353,7 +353,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
<li>und ein besseres Verwalten des wichtigsten Bestandteiles Ihrer IT: der Dokumentation.</li>
|
||||
</ul>
|
||||
</p>',
|
||||
'UI:WelcomeMenu:Text'=> 'Willkommen bei iTop',
|
||||
'UI:WelcomeMenu:Text'=> 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||
'UI:WelcomeMenu:AllOpenRequests' => 'Offene Requests: %1$d',
|
||||
'UI:WelcomeMenu:MyCalls' => 'An mich gestellte Benutzeranfragen',
|
||||
'UI:WelcomeMenu:OpenIncidents' => 'Offene Incidents: %1$d',
|
||||
@@ -507,14 +507,14 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:SearchValue:CheckAll' => 'Alle auswählen',
|
||||
'UI:SearchValue:UncheckAll' => 'Auswahl aufheben',
|
||||
'UI:SelectOne' => 'bitte wählen',
|
||||
'UI:Login:Welcome' => 'Willkommen bei iTop!',
|
||||
'UI:Login:Welcome' => 'Willkommen bei '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Ungültiges Passwort oder Login-Daten. Bitte versuchen Sie es erneut.',
|
||||
'UI:Login:IdentifyYourself' => 'Bitte identifizieren Sie sich, bevor Sie fortfahren.',
|
||||
'UI:Login:UserNamePrompt' => 'Benutzername',
|
||||
'UI:Login:PasswordPrompt' => 'Passwort',
|
||||
'UI:Login:ForgotPwd' => 'Neues Passwort zusenden',
|
||||
'UI:Login:ForgotPwdForm' => 'Neues Passwort zusenden',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop kann Ihnen eine Mail mit Anweisungen senden, wie Sie Ihren Account/Passwort zurücksetzen können',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' kann Ihnen eine Mail mit Anweisungen senden, wie Sie Ihren Account/Passwort zurücksetzen können',
|
||||
'UI:Login:ResetPassword' => 'Jetzt senden!',
|
||||
'UI:Login:ResetPwdFailed' => 'Konnte keine Email versenden: %1$s',
|
||||
'UI:Login:SeparatorOr' => 'oder',
|
||||
@@ -527,8 +527,8 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'die email Adresse dieses Accounts fehlt. Bitte kontaktieren Sie Ihren Administrator.',
|
||||
'UI:ResetPwd-Error-Send' => 'Beim Versenden der Email trat ein technisches Problem auf. Bitte kontaktieren Sie Ihren Administrator.',
|
||||
'UI:ResetPwd-EmailSent' => 'Bitte schauen Sie in Ihre Mailbox und folgen Sie den Anweisungen.',
|
||||
'UI:ResetPwd-EmailSubject' => 'Zurücksetzen Ihres iTop-Passworts',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Sie haben das Zurücksetzen Ihres iTop Passworts angefordert.</p><p>Bitte folgen Sie diesem Link (funktioniert nur einmalig) : <a href="%1$s">neues Passwort eingeben</a></p>.',
|
||||
'UI:ResetPwd-EmailSubject' => 'Zurücksetzen Ihres '.ITOP_APPLICATION_SHORT.'-Passworts',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Sie haben das Zurücksetzen Ihres '.ITOP_APPLICATION_SHORT.' Passworts angefordert.</p><p>Bitte folgen Sie diesem Link (funktioniert nur einmalig) : <a href="%1$s">neues Passwort eingeben</a></p>.',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Passwort zurücksetzen',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Entschuldigung, aber entweder das passwort wurde bereits zurückgesetzt, oder Sie haben mehrere eMails für das Zurücksetzen erhalten. Bitte nutzen Sie den link in der letzten Mail, die Sie erhalten haben.',
|
||||
@@ -543,17 +543,17 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Wiederholen Sie Ihr neues Passwort',
|
||||
'UI:Login:IncorrectOldPassword' => 'Fehler: das alte Passwort ist ungültig',
|
||||
'UI:LogOffMenu' => 'Abmelden',
|
||||
'UI:LogOff:ThankYou' => 'Vielen Dank dafür, dass Sie iTop benutzen!',
|
||||
'UI:LogOff:ThankYou' => 'Vielen Dank dafür, dass Sie '.ITOP_APPLICATION_SHORT.' benutzen!',
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Klicken Sie hier, um sich wieder anzumelden...',
|
||||
'UI:ChangePwdMenu' => 'Passwort ändern...',
|
||||
'UI:Login:PasswordChanged' => 'Passwort erfolgreich gesetzt!',
|
||||
'UI:AccessRO-All' => 'iTop ist nur lesbar',
|
||||
'UI:AccessRO-Users' => 'iTop ist nur lesbar für Endnutzer',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' ist nur lesbar',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' ist nur lesbar für Endnutzer',
|
||||
'UI:ApplicationEnvironment' => 'Applikationsumgebung: %1$s',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Neues Passwort und das wiederholte Passwort stimmen nicht überein!',
|
||||
'UI:Button:Login' => 'in iTop anmelden',
|
||||
'UI:Login:Error:AccessRestricted' => 'Der iTop-Zugang ist gesperrt. Bitte kontaktieren Sie Ihren iTop-Administrator.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Zugang nur für Personen mit Administratorrechten. Bitte kontaktieren Sie Ihren iTop-Administrator.',
|
||||
'UI:Button:Login' => 'in '.ITOP_APPLICATION_SHORT.' anmelden',
|
||||
'UI:Login:Error:AccessRestricted' => 'Der '.ITOP_APPLICATION_SHORT.'-Zugang ist gesperrt. Bitte kontaktieren Sie Ihren '.ITOP_APPLICATION_SHORT.'-Administrator.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Zugang nur für Personen mit Administratorrechten. Bitte kontaktieren Sie Ihren '.ITOP_APPLICATION_SHORT.'-Administrator.',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Unbekannte Organisation',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Mehrere Kontakte mit gleicher EMail-Adresse',
|
||||
'UI:Login:Error:NoValidProfiles' => 'Kein gültiges Profil ausgewählt',
|
||||
@@ -566,7 +566,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:CSVImport:DataLine1' => 'Daten-Zeile 1',
|
||||
'UI:CSVImport:DataLine2' => 'Daten-Zeile 2',
|
||||
'UI:CSVImport:idField' => 'ID (Primärer Schlüssel)',
|
||||
'UI:Title:BulkImport' => 'iTop - Massenimport',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - Massenimport',
|
||||
'UI:Title:BulkImport+' => 'CSV-Import-Assistent',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Synchronisation von %1$d Objekten der Klasse %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => 'Bitte wählen',
|
||||
@@ -615,7 +615,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Bitte stellen Sie sicher, dass jedes Zielfeld nur einmal gemapped wird. ',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Bitte wählen Sie mindestens ein Suchkriterium aus.',
|
||||
'UI:CSVImport:Encoding' => 'Buchstaben-Codierung',
|
||||
'UI:UniversalSearchTitle' => 'iTop - universelle Suche',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - universelle Suche',
|
||||
'UI:UniversalSearch:Error' => 'Fehler: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Wählen Sie für die Suche die Klasse aus: ',
|
||||
|
||||
@@ -665,7 +665,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:CSVExport:LostChars' => 'Kodierungsproblem',
|
||||
'UI:CSVExport:LostChars+' => '',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB-Audit',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB-Audit',
|
||||
'UI:Audit:InteractiveAudit' => 'Interaktives Audit',
|
||||
'UI:Audit:HeaderAuditRule' => 'Audit-Regel',
|
||||
'UI:Audit:HeaderNbObjects' => '# Objekte',
|
||||
@@ -684,7 +684,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s Fehler von ingesamt %2$s - %3$s%%',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - OQL-Abfrage-Auswertung',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - OQL-Abfrage-Auswertung',
|
||||
'UI:RunQuery:QueryExamples' => 'Abfragebeispiele',
|
||||
'UI:RunQuery:QueryResults' => 'Abfrageergebnisse',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Verwendungszweck',
|
||||
@@ -701,8 +701,8 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:RunQuery:ResultSQL' => 'Resultierendes SQL',
|
||||
'UI:RunQuery:Error' => 'Ein Fehler trat während der Abfrage auf',
|
||||
'UI:Query:UrlForExcel' => 'URL für MS Excel Web Queries',
|
||||
'UI:Query:UrlV1' => 'Die Liste der Felder wurde nicht spezifiziert. Die Seite <em>export-V2.php</em> kann ohne diese Angabe nicht verarbeitet werden. Deswegen, zeigt die nachstehende URL zu der Legacy-Page: <em>export.php</em>. Diese Legacy-Version des Exports hat folgende Limitierungen: Die Liste exportierter Felder kann, abhängig vom Output-Format und vom Datenmodell von iTop, variieren. Möchten Sie garantieren, dass die Liste aller exportierten Spalten stabil bleibt, müssen Sie einen Wert für das Attribut Feld angeben und die Seite <em>export-V2.php</em> nutzen.',
|
||||
'UI:Schema:Title' => 'iTop Objekte-Schema',
|
||||
'UI:Query:UrlV1' => 'Die Liste der Felder wurde nicht spezifiziert. Die Seite <em>export-V2.php</em> kann ohne diese Angabe nicht verarbeitet werden. Deswegen, zeigt die nachstehende URL zu der Legacy-Page: <em>export.php</em>. Diese Legacy-Version des Exports hat folgende Limitierungen: Die Liste exportierter Felder kann, abhängig vom Output-Format und vom Datenmodell von '.ITOP_APPLICATION_SHORT.', variieren. Möchten Sie garantieren, dass die Liste aller exportierten Spalten stabil bleibt, müssen Sie einen Wert für das Attribut Feld angeben und die Seite <em>export-V2.php</em> nutzen.',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' Objekte-Schema',
|
||||
'UI:Schema:CategoryMenuItem' => 'Kategorie <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Wechselseite Beziehungen',
|
||||
'UI:Schema:AbstractClass' => 'Abstrakte Klasse: ein Objekt dieser Klasse kann nicht instanziiert werden.',
|
||||
@@ -818,11 +818,11 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Bitte führen Sie die oben aufgelisteten manuellen Operationen zuerst durch, bevor Sie dieses Objekt löschen.',
|
||||
'UI:Delect:Confirm_Object' => 'Bitte bestätigen Sie, dass Sie %1$s löschen möchten.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Bitte bestätigen Sie, dasss Sie die folgenden %1$d Objekte der Klasse %2$s löschen möchten.',
|
||||
'UI:WelcomeToITop' => 'Willkommen bei iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s Details',
|
||||
'UI:ErrorPageTitle' => 'iTop - Fehler',
|
||||
'UI:WelcomeToITop' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s Details',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Fehler',
|
||||
'UI:ObjectDoesNotExist' => 'Leider existiert dieses Objekt nicht oder Sie sind nicht berechtigt es einzusehen.',
|
||||
'UI:ObjectArchived' => 'Dieses Objekt wurde archiviert. Bitte aktivieren Sie die Archiv-Modus oder kontaktieren Sie Ihren iTop-Administrator.',
|
||||
'UI:ObjectArchived' => 'Dieses Objekt wurde archiviert. Bitte aktivieren Sie die Archiv-Modus oder kontaktieren Sie Ihren '.ITOP_APPLICATION_SHORT.'-Administrator.',
|
||||
'Tag:Archived' => 'Archiviert',
|
||||
'Tag:Archived+' => 'Auf dieses Objekt kann nur im Archiv-Modus zugegriffen werden',
|
||||
'Tag:Obsolete' => 'Obsolet (Veraltet)',
|
||||
@@ -830,7 +830,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Tag:Synchronized' => 'Synchronisiert',
|
||||
'ObjectRef:Archived' => 'Archiviert',
|
||||
'ObjectRef:Obsolete' => 'Obsolet (Veraltet)',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Suchergebnisse',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Suchergebnisse',
|
||||
'UI:SearchResultsTitle' => 'Suchergebnisse',
|
||||
'UI:SearchResultsTitle+' => 'Volltext-Suchresultate',
|
||||
'UI:Search:NoSearch' => 'Kein Suchbegriff eingegeben',
|
||||
@@ -840,27 +840,27 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'UI:FullTextSearchTitle_Text' => 'Ergebnisse für "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d Objekt(e) der Klasse %2$s gefunden.',
|
||||
'UI:Search:NoObjectFound' => 'Kein Objekt gefunden',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s Änderungen',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s Änderungen',
|
||||
'UI:ModificationTitle_Class_Object' => 'Änderungen von %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Dupliziere %1$s - %2$s Änderung',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Dupliziere %1$s - %2$s Änderung',
|
||||
'UI:CloneTitle_Class_Object' => 'Duplizieren von %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Erstellung eines neuen Objekts vom Typ "%1$s" ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Erstellung eines neuen Objekts vom Typ "%1$s" ',
|
||||
'UI:CreationTitle_Class' => 'Erstellung eines neuen Objekts vom Typ "%1$s"',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Wählen Sie den Typ vom Objekt "%1$s" aus, den Sie erstellen möchten:',
|
||||
'UI:Class_Object_NotUpdated' => 'Keine Änderung festgestellt, %1$s (%2$s) wurde <strong>nicht</strong> modifiziert.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) aktualisiert.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Massenlöschung von Objekten',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Massenlöschung von Objekten',
|
||||
'UI:BulkDeleteTitle' => 'Wählen Sie die Objekte aus, die Sie löschen möchten:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop-Objekt wurde erstellt.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.'-Objekt wurde erstellt.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s erstellt.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Anwenden von %1$s auf Objekt: %2$s in Status %3$s zu Zielstatus: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'Das Objekt konnte nicht geschrieben werden: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Fataler Fehler',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Fataler Fehler',
|
||||
'UI:SystemIntrusion' => 'Zugriff verweigert. Sie haben versucht, eine Aktion auszuführen, für die Sie keine ausreichende Berechtigungen besitzen.',
|
||||
'UI:FatalErrorMessage' => 'Fataler Fehler! iTop kann leider nicht fortfahren.',
|
||||
'UI:FatalErrorMessage' => 'Fataler Fehler! '.ITOP_APPLICATION_SHORT.' kann leider nicht fortfahren.',
|
||||
'UI:Error_Details' => 'Fehler: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop Benutzerverwaltung - Profilabbildung',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' Benutzerverwaltung - Profilabbildung',
|
||||
'UI:UserManagement:Class' => 'Klasse',
|
||||
'UI:UserManagement:Class+' => 'Klasse von Objekten',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objekt',
|
||||
@@ -956,7 +956,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Menu:NotificationsMenu+' => 'Einstellungen der Benachrichtigungen', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Einstellungen der Benachrichtigungen',
|
||||
'UI:NotificationsMenu:Help' => 'Hilfe',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>In iTop sind Benachrichtigungen vollständig anpassbar. Sie basieren auf zwei Gruppen an Objekten: <i>Trigger und Aktionen</i>.</p>
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>In '.ITOP_APPLICATION_SHORT.' sind Benachrichtigungen vollständig anpassbar. Sie basieren auf zwei Gruppen an Objekten: <i>Trigger und Aktionen</i>.</p>
|
||||
<p><i><b>Trigger</b></i> definieren, wann eine Benachrichtigung ausgeführt wird. Es gibt verschiedene Auslöser als Teil des iTop-Kerns, aber andere können durch Erweiterungen eingebracht werden:
|
||||
<ol>
|
||||
<li>Einige Trigger werden ausgeführt, wenn ein Objekt der angegebenen Klasse <b>angelegt</b>, <b>aktualisiert</b> oder <b>gelöscht wird</b>.</li>
|
||||
@@ -1065,8 +1065,8 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm
|
||||
'UI:RelationTooltip:Redundancy' => 'Redundanz',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => '# der betroffenen Items: %1$d / %2$d',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Kritischer Schwellwert: %1$d / %2$d',
|
||||
'Portal:Title' => 'iTop-Benutzerportal',
|
||||
'Portal:NoRequestMgmt' => 'Lieber %1$s, Sie wurden hierher umgeleitet, weil Ihr Account mit dem Profil \'Portal user\' konfiguriert wurde. Leider wurde in iTop aber das \'Request Management\'-Feature nicht installiert. Bitte kontaktieren Sie Ihren Administrator.',
|
||||
'Portal:Title' => ITOP_APPLICATION_SHORT.'-Benutzerportal',
|
||||
'Portal:NoRequestMgmt' => 'Lieber %1$s, Sie wurden hierher umgeleitet, weil Ihr Account mit dem Profil \'Portal user\' konfiguriert wurde. Leider wurde in '.ITOP_APPLICATION_SHORT.' aber das \'Request Management\'-Feature nicht installiert. Bitte kontaktieren Sie Ihren Administrator.',
|
||||
'Portal:Refresh' => 'Neu laden',
|
||||
'Portal:Back' => 'Zurück',
|
||||
'Portal:WelcomeUserOrg' => 'Wilkommen %1$s, von %2$s',
|
||||
@@ -1150,7 +1150,7 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm
|
||||
'UI:Favorites:ShowObsoleteData+' => 'Zeige obsolete (veraltete) Daten in Suchresultaten und Auswahllisten von Objekten',
|
||||
'UI:NavigateAwayConfirmationMessage' => 'Jedwede Veränderung wird verworfen.',
|
||||
'UI:CancelConfirmationMessage' => 'Sie werden Ihre Änderungen verlieren. Dennoch fortfahren?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Einige Änderungen wurden noch nicht angewandt. Möchten Sie, daß iTop diese berüchsichtigt?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Einige Änderungen wurden noch nicht angewandt. Möchten Sie, daß '.ITOP_APPLICATION_SHORT.' diese berüchsichtigt?',
|
||||
'UI:Create_Class_InState' => 'Erzeuge die/das %1$s in Status: ',
|
||||
'UI:OrderByHint_Values' => 'Sortierreihenfolge: %1$s',
|
||||
'UI:Menu:AddToDashboard' => 'Zu Dashboard hinzufügen...',
|
||||
@@ -1398,8 +1398,8 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm
|
||||
'UI:AddAnExisting_Class' => 'Objekte des Typs %1$s hinzufügen...',
|
||||
'UI:SelectionOf_Class' => 'Selection of objects of type %1$s',
|
||||
|
||||
'UI:AboutBox' => 'Über iTop...',
|
||||
'UI:About:Title' => 'Über iTop',
|
||||
'UI:AboutBox' => 'Über '.ITOP_APPLICATION_SHORT.'...',
|
||||
'UI:About:Title' => 'Über '.ITOP_APPLICATION_SHORT,
|
||||
'UI:About:DataModel' => 'Datenmodell',
|
||||
'UI:About:Support' => 'Support-Information',
|
||||
'UI:About:Licenses' => 'Lizenzen',
|
||||
@@ -1424,7 +1424,7 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm
|
||||
'ExcelExport:PreparingExport' => 'Bereite Export vor...',
|
||||
'ExcelExport:Statistics' => 'Statistik',
|
||||
'portal:legacy_portal' => 'Endbenutzer-Portal',
|
||||
'portal:backoffice' => 'iTop Backend',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Backend',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'Das Objekt ist gesperrt, da es derzeit durch %1$s bearbeitet wird.',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'Das Objekt wird derzeit durch %1$s bearbeitet. Ihre Änderungen können nicht gespeichert werden, da sie überschrieben würden.',
|
||||
@@ -1608,9 +1608,9 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||
'Menu:DataSources' => 'Datenquellen für die Synchronisation',
|
||||
'Menu:DataSources+' => 'Alle Datenquellen für die Synchronisation',
|
||||
'Menu:WelcomeMenu' => 'Willkommen',
|
||||
'Menu:WelcomeMenu+' => 'Willkommen bei iTop',
|
||||
'Menu:WelcomeMenu+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Willkommen',
|
||||
'Menu:WelcomeMenuPage+' => 'Willkommen bei iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Admin-Tools',
|
||||
'Menu:AdminTools+' => 'Administrationswerkzeuge',
|
||||
'Menu:AdminTools?' => 'Werkzeuge, die nur für Benutzer mit Adminstratorprofil zugänglich sind',
|
||||
|
||||
@@ -704,9 +704,9 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Contact to notify',
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact to notify in case of error',
|
||||
'Class:SynchroDataSource/Attribute:url_icon' => 'Icon\'s hyperlink',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which iTop is synchronized',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which '.ITOP_APPLICATION_SHORT.' is synchronized',
|
||||
'Class:SynchroDataSource/Attribute:url_application' => 'Application\'s hyperlink',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink to the iTop object in the external application with which iTop is synchronized (if applicable). Possible placeholders: $this->attribute$ and $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink to the '.ITOP_APPLICATION_SHORT.' object in the external application with which '.ITOP_APPLICATION_SHORT.' is synchronized (if applicable). Possible placeholders: $this->attribute$ and $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Reconciliation policy',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Full load interval',
|
||||
'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'A complete reload of all data must occur at least as often as specified here',
|
||||
|
||||
@@ -1640,9 +1640,9 @@ Dict::Add('EN US', 'English', 'English', array(
|
||||
'Menu:DataSources' => 'Synchronization Data Sources',
|
||||
'Menu:DataSources+' => 'All Synchronization Data Sources',
|
||||
'Menu:WelcomeMenu' => 'Welcome',
|
||||
'Menu:WelcomeMenu+' => 'Welcome to iTop',
|
||||
'Menu:WelcomeMenu+' => 'Welcome to '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Welcome',
|
||||
'Menu:WelcomeMenuPage+' => 'Welcome to iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Welcome to '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Administration',
|
||||
'Menu:AdminTools+' => 'Administration tools',
|
||||
'Menu:AdminTools?' => 'Tools accessible only to users having the administrator profile',
|
||||
|
||||
@@ -704,7 +704,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Contacto a Notificar',
|
||||
'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact a Notificar en Caso de Error',
|
||||
'Class:SynchroDataSource/Attribute:url_icon' => 'Icono de URL',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'URL a pequeña imagen representando la aplicación con la que iTop se sincronizará',
|
||||
'Class:SynchroDataSource/Attribute:url_icon+' => 'URL a pequeña imagen representando la aplicación con la que '.ITOP_APPLICATION_SHORT.' se sincronizará',
|
||||
'Class:SynchroDataSource/Attribute:url_application' => 'URL a la Aplicación',
|
||||
'Class:SynchroDataSource/Attribute:url_application+' => 'URL a la Aplicación (Si aplica). Posibles lugares: $this->attribute$ y $replica->primary_key$',
|
||||
'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Política de Reconciliación',
|
||||
|
||||
@@ -126,7 +126,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'El usuario no pertenece a las oganizaciones permitidas.',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'Usuario Interno',
|
||||
'Class:UserInternal+' => 'Usuario definido en iTop',
|
||||
'Class:UserInternal+' => 'Usuario definido en '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
//
|
||||
@@ -333,12 +333,12 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'BooleanLabel:no' => 'No',
|
||||
'UI:Login:Title' => 'Inicio de Sesión',
|
||||
'Menu:WelcomeMenu' => 'Bienvenido', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Bienvenido a iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Bienvenido', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenido a iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Bienvenido a iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop es un completo portal de administración de servicios de TI basado en código abierto.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' es un completo portal de administración de servicios de TI basado en código abierto.</p>
|
||||
<p>Incluye:</p>
|
||||
<ul><li>Una CMDB completa (Base de datos de Configuraciones) para documentar y manejar el inventario de TI.</li>
|
||||
<li>Un módulo de Administración de Incidentes, para llevar el seguimiento y comunicar los eventos que están afectando a los servicios TI.</li>
|
||||
@@ -349,14 +349,14 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
</ul>
|
||||
<p>Todos los módulos pueden ser configurados, paso a paso, individual e independientemente de los otros.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop está orientado a los proveedores de servicios, le permite al personal de TI administrar fácilmente múltiples Organizaciones.
|
||||
<p>iTop, provee un conjunto de funciones de procesos de negocio que: </p>
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' está orientado a los proveedores de servicios, le permite al personal de TI administrar fácilmente múltiples Organizaciones.
|
||||
<p>'.ITOP_APPLICATION_SHORT.', provee un conjunto de funciones de procesos de negocio que: </p>
|
||||
<ul><li>Mejora la efectividad de la adminitración de TI</li>
|
||||
<li>Dirige el desempeño de la operaciones de TI</li>
|
||||
<li>Incrementa la satisfacción del cliente y provee a los ejecutivos con detalles del desempeño del negocio.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>iTop es completamente abierto para ser integrado con su actual infraestructura de administración de TI.</p>
|
||||
<p>'.ITOP_APPLICATION_SHORT.' es completamente abierto para ser integrado con su actual infraestructura de administración de TI.</p>
|
||||
<p>
|
||||
<p>Adoptar esta nueva generación de portales de operaciones de TI le ayudará a:</p>
|
||||
<ul><li>Mejorar la administración de entornos de TI más y más complejos.</li>
|
||||
@@ -518,14 +518,14 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:SearchValue:CheckAll' => 'Seleccionar Todo',
|
||||
'UI:SearchValue:UncheckAll' => 'Deseleccionar Todo',
|
||||
'UI:SelectOne' => '-- Seleccione uno --',
|
||||
'UI:Login:Welcome' => 'Bienvenido a iTop',
|
||||
'UI:Login:Welcome' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Login:IncorrectLoginPassword' => 'Usuario/Contraseña incorrecto, por favor intente otra vez.',
|
||||
'UI:Login:IdentifyYourself' => 'Identifiquese antes de continuar',
|
||||
'UI:Login:UserNamePrompt' => 'Usuario ',
|
||||
'UI:Login:PasswordPrompt' => 'Contraseña',
|
||||
'UI:Login:ForgotPwd' => '¿Olvidó su contraseña?',
|
||||
'UI:Login:ForgotPwdForm' => 'Olvido de Contraseña',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop puede enviarle un correo en el cual encontrará las instrucciones a seguir para restablecer su contraseña.',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' puede enviarle un correo en el cual encontrará las instrucciones a seguir para restablecer su contraseña.',
|
||||
'UI:Login:ResetPassword' => 'Enviar Ahora',
|
||||
'UI:Login:ResetPwdFailed' => 'Error al enviar correo-e: %1$s',
|
||||
'UI:Login:SeparatorOr' => 'Or~~',
|
||||
@@ -538,8 +538,8 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'Falta dirección de correo electrónico. Por favor contacte al administrador.',
|
||||
'UI:ResetPwd-Error-Send' => 'Falla al envar un correo. Por favor contacte al administrador.',
|
||||
'UI:ResetPwd-EmailSent' => 'Please check your email box and follow the instructions. If you receive no email, please check the login you typed.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Restablecer contraseña de iTop',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Ha solicitado restablecer su contraseña en iTop.</p><p>Por favor de click en la siguiente liga: <a href="%1$s">proporcione una nueva contraseña</a></p>.',
|
||||
'UI:ResetPwd-EmailSubject' => 'Restablecer contraseña de '.ITOP_APPLICATION_SHORT,
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Ha solicitado restablecer su contraseña en '.ITOP_APPLICATION_SHORT.'.</p><p>Por favor de click en la siguiente liga: <a href="%1$s">proporcione una nueva contraseña</a></p>.',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Restablecer Contraseña',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Lo siento, tal vez su contraseña ya ha sido cambiada, o ha recibido varios correos electrónicos. Por favor asegurese de haber dado click a la liga del último correo recibido.',
|
||||
@@ -554,17 +554,17 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Confirme Contraseña Nueva',
|
||||
'UI:Login:IncorrectOldPassword' => 'Error: la Contraseña Anterior es Incorrecta',
|
||||
'UI:LogOffMenu' => 'Cerrar Sesión',
|
||||
'UI:LogOff:ThankYou' => 'Gracias por usar iTop',
|
||||
'UI:LogOff:ThankYou' => 'Gracias por usar '.ITOP_APPLICATION_SHORT,
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Click aquí para conectarse nuevamente',
|
||||
'UI:ChangePwdMenu' => 'Cambiar Contraseña',
|
||||
'UI:Login:PasswordChanged' => '¡Contraseña Exitosamente Cambiada!',
|
||||
'UI:AccessRO-All' => 'iTop está en modo de solo lectura',
|
||||
'UI:AccessRO-Users' => 'iTop está en modo de solo lectura para usuarios',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' está en modo de solo lectura',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' está en modo de solo lectura para usuarios',
|
||||
'UI:ApplicationEnvironment' => 'Ambiente: %1$s',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => '¡La Nueva Contraseña y su Confirmación No Coinciden!',
|
||||
'UI:Button:Login' => 'Entrar',
|
||||
'UI:Login:Error:AccessRestricted' => 'El acceso a iTop está restringido. Por favor contacte al Administrador de iTop.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Acceso restringido a usuarios con privilegio de administrador. Por favor contacte al Administrador de iTop.',
|
||||
'UI:Login:Error:AccessRestricted' => 'El acceso a '.ITOP_APPLICATION_SHORT.' está restringido. Por favor contacte al Administrador de '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Acceso restringido a usuarios con privilegio de administrador. Por favor contacte al Administrador de '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Unknown organization~~',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Multiple contacts have the same e-mail~~',
|
||||
'UI:Login:Error:NoValidProfiles' => 'No valid profile provided~~',
|
||||
@@ -577,7 +577,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:CSVImport:DataLine1' => 'Linea de datos 1',
|
||||
'UI:CSVImport:DataLine2' => 'Linea de datos 2',
|
||||
'UI:CSVImport:idField' => 'Id (Clave Primaria)',
|
||||
'UI:Title:BulkImport' => 'iTop - Importación por Lotes',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - Importación por Lotes',
|
||||
'UI:Title:BulkImport+' => 'Asistente de Importación Archivos CSV',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Sincronización de %1$d objetos de la clase %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- seleccione uno --',
|
||||
@@ -626,7 +626,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Por favor asegurese que el campo objetivo esté mapeado una sola vez',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Por favor seleccione al menos un criterio de busqueda',
|
||||
'UI:CSVImport:Encoding' => 'Código de Caracteres',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Busqueda Universal',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Busqueda Universal',
|
||||
'UI:UniversalSearch:Error' => 'Error: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Seleccione la clase a buscar: ',
|
||||
|
||||
@@ -674,9 +674,9 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:CSVExport:AdvancedMode' => 'Modo Avanzado',
|
||||
'UI:CSVExport:AdvancedMode+' => 'En el modo avanzado, varias columnas son agregadas a la exportación: ID del objeto, ID de las llaves externas y los atributos de reconciliación.',
|
||||
'UI:CSVExport:LostChars' => 'Errores de Código de Caracteres',
|
||||
'UI:CSVExport:LostChars+' => 'El archivo descargado será codificado a %1$s. iTop detectó alguos caracteres que no son compatibles con este formato. Esos caracteres serán reemplazados por un sustituto (ejem.: caracteres sin acento), o serán descartados. Puede copiar/pegar datos desde su navegador de internet. Alternativamente, puede contactar al administrador para cambiar el código de caracteres (Ver parámetro \'csv_file_default_charset\').',
|
||||
'UI:CSVExport:LostChars+' => 'El archivo descargado será codificado a %1$s. '.ITOP_APPLICATION_SHORT.' detectó alguos caracteres que no son compatibles con este formato. Esos caracteres serán reemplazados por un sustituto (ejem.: caracteres sin acento), o serán descartados. Puede copiar/pegar datos desde su navegador de internet. Alternativamente, puede contactar al administrador para cambiar el código de caracteres (Ver parámetro \'csv_file_default_charset\').',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - Auditoria a CMDB',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - Auditoria a CMDB',
|
||||
'UI:Audit:InteractiveAudit' => 'Auditoria Interactiva',
|
||||
'UI:Audit:HeaderAuditRule' => 'Reglas de Auditoria',
|
||||
'UI:Audit:HeaderNbObjects' => '# Objetos',
|
||||
@@ -695,7 +695,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - Evaluación de consultas OQL',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - Evaluación de consultas OQL',
|
||||
'UI:RunQuery:QueryExamples' => 'Explorador de Consultas',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Propósito',
|
||||
@@ -712,8 +712,8 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:RunQuery:ResultSQL' => 'Resulting SQL~~',
|
||||
'UI:RunQuery:Error' => 'Ha ocurrido un error al ejecutar la consulta',
|
||||
'UI:Query:UrlForExcel' => 'URL para usarse en consultas web de MS-Excel',
|
||||
'UI:Query:UrlV1' => 'La lista de campos se ha dejado sin especificación. La página <em>export-V2.php</em> no puede ser invocada sin está información. Por lo tanto, el URL sugerido abajo apunta a la página legada: <em>export.php</em>. Esta versión legada de exportación tiene la siguiente limitación: la lista de campos exportados puede variar, dependiendo del formato de salida y el modelo de datos de iTop. Desea garantizar que la lista de columnas exportadas permanenzcan estables durante la ejecución, entonces debe especificar un valor para el atributo "Campos" y utilice la página <em>export-V2.php</em>.',
|
||||
'UI:Schema:Title' => 'Esquema de Objetos en iTop',
|
||||
'UI:Query:UrlV1' => 'La lista de campos se ha dejado sin especificación. La página <em>export-V2.php</em> no puede ser invocada sin está información. Por lo tanto, el URL sugerido abajo apunta a la página legada: <em>export.php</em>. Esta versión legada de exportación tiene la siguiente limitación: la lista de campos exportados puede variar, dependiendo del formato de salida y el modelo de datos de '.ITOP_APPLICATION_SHORT.'. Desea garantizar que la lista de columnas exportadas permanenzcan estables durante la ejecución, entonces debe especificar un valor para el atributo "Campos" y utilice la página <em>export-V2.php</em>.',
|
||||
'UI:Schema:Title' => 'Esquema de Objetos en '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Schema:CategoryMenuItem' => 'Categoria <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Relaciones',
|
||||
'UI:Schema:AbstractClass' => 'Clase Abstracta: Ningún objeto de esta clase puede ser representado.',
|
||||
@@ -829,9 +829,9 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Por favor ejecute las operaciones manuales antes de eliminar este objeto',
|
||||
'UI:Delect:Confirm_Object' => 'Por favor confirme que quiere borrar %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Por favor confirme que quiere eliminar los siguientes %1$d objeto de la clase %2$s.',
|
||||
'UI:WelcomeToITop' => 'Bienvenido a iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - Detalles %2$s',
|
||||
'UI:ErrorPageTitle' => 'iTop - Error',
|
||||
'UI:WelcomeToITop' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - Detalles %2$s',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Error',
|
||||
'UI:ObjectDoesNotExist' => 'Disculpe, este objeto no existe (o no está autorizado para verlo).',
|
||||
'UI:ObjectArchived' => 'Este objeto ha sido archivado. Por favor habilité el modo Archivado o contacte al Administrador.',
|
||||
'Tag:Archived' => 'Archivado',
|
||||
@@ -841,7 +841,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Tag:Synchronized' => 'Sincronizado',
|
||||
'ObjectRef:Archived' => 'Archivado',
|
||||
'ObjectRef:Obsolete' => 'Obsoleto',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Resultados de la Búsqueda',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Resultados de la Búsqueda',
|
||||
'UI:SearchResultsTitle' => 'Resultados de la Búsqueda',
|
||||
'UI:SearchResultsTitle+' => 'Resultados de la Búsqueda',
|
||||
'UI:Search:NoSearch' => 'Nada para buscar',
|
||||
@@ -851,27 +851,27 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'UI:FullTextSearchTitle_Text' => 'Resultados para "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d objeto(s) de la clase %2$s encontrado(s).',
|
||||
'UI:Search:NoObjectFound' => 'No se encontraron objetos.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s modificación',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s modificación',
|
||||
'UI:ModificationTitle_Class_Object' => 'Modificación de %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Duplicar %1$s - %2$s modificación',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Duplicar %1$s - %2$s modificación',
|
||||
'UI:CloneTitle_Class_Object' => 'Duplicado de %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Creación de %1$s ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Creación de %1$s ',
|
||||
'UI:CreationTitle_Class' => 'Creación de %1$s',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Seleccione el tipo de %1$s a crear:',
|
||||
'UI:Class_Object_NotUpdated' => 'No se detectaron cambios, %1$s (%2$s) <strong>no</strong> fue modificado.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) actualizado.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Eliminar por lote',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Eliminar por lote',
|
||||
'UI:BulkDeleteTitle' => 'Seleccione los objetos que desea eliminar:',
|
||||
'UI:PageTitle:ObjectCreated' => 'Objeto de iTop creado.',
|
||||
'UI:PageTitle:ObjectCreated' => 'Objeto de '.ITOP_APPLICATION_SHORT.' creado.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s creado.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Aplicando %1$s en el objeto: %2$s en estado %3$s al estado deseado: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'el objeto no pudo ser escrito: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Error Fatal',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Error Fatal',
|
||||
'UI:SystemIntrusion' => 'Acceso denegado. Esta tratando de ejecutar una operación no permitida para usted.',
|
||||
'UI:FatalErrorMessage' => 'Error fatal, iTop no puede continuar.',
|
||||
'UI:FatalErrorMessage' => 'Error fatal, '.ITOP_APPLICATION_SHORT.' no puede continuar.',
|
||||
'UI:Error_Details' => 'Error: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'Administración de usuarios iTop - proyecciones de Perfil',
|
||||
'UI:PageTitle:ProfileProjections' => 'Administración de usuarios '.ITOP_APPLICATION_SHORT.' - proyecciones de Perfil',
|
||||
'UI:UserManagement:Class' => 'Clase',
|
||||
'UI:UserManagement:Class+' => 'Clase de objetos',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objeto',
|
||||
@@ -967,7 +967,7 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Menu:NotificationsMenu+' => 'Configuración de las Notificaciones', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Configuración de las Notificaciones',
|
||||
'UI:NotificationsMenu:Help' => 'Ayuda',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>En iTop las notificaciones son completamente personalizables. Están basadas en dos conjuntos de objetos: <i>Disparadores y Acciones</i>.</p>
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>En '.ITOP_APPLICATION_SHORT.' las notificaciones son completamente personalizables. Están basadas en dos conjuntos de objetos: <i>Disparadores y Acciones</i>.</p>
|
||||
<p>Los <i><b>disparadores</b></i> definen cuando una notificación debe ser ejecutada. Existen 3 tipos de disparadores para cubrir las 3 diferentes fases del ciclo de vida de un objeto:
|
||||
<ol>
|
||||
<li>Los disparadores "OnCreate" son ejecutados cuando un objeto de la clase especificada es creado</li>
|
||||
@@ -1080,7 +1080,7 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => '# de elementos impactados: %1$d / %2$d',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Umbral Crítico: %1$d / %2$d',
|
||||
'Portal:Title' => 'Portal de Usuario',
|
||||
'Portal:NoRequestMgmt' => 'Estimado(a) %1$s, ha sido redirigido a esta página porque su cuenta está configurada con el Perfil \'Portal user\'. Desafortunadamente, iTop no fue instalado con el módulo \'Request Management\'. Por favor contacte a su Administrador.',
|
||||
'Portal:NoRequestMgmt' => 'Estimado(a) %1$s, ha sido redirigido a esta página porque su cuenta está configurada con el Perfil \'Portal user\'. Desafortunadamente, '.ITOP_APPLICATION_SHORT.' no fue instalado con el módulo \'Request Management\'. Por favor contacte a su Administrador.',
|
||||
'Portal:Refresh' => 'Actualizar',
|
||||
'Portal:Back' => 'Atrás',
|
||||
'Portal:WelcomeUserOrg' => 'Bienvenido %1$s, de %2$s',
|
||||
@@ -1107,7 +1107,7 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
||||
'Portal:Button:CloseTicket' => 'Cerrar este Ticket',
|
||||
'Portal:Button:UpdateRequest' => 'Actualizar el Requerimiento',
|
||||
'Portal:EnterYourCommentsOnTicket' => 'Captura tus Comentarios acerca de la Solución de este Ticket:',
|
||||
'Portal:ErrorNoContactForThisUser' => 'Error: el Usuario no está asociado con un Contacto/Persona. Por favor contacte al Administrador de iTop',
|
||||
'Portal:ErrorNoContactForThisUser' => 'Error: el Usuario no está asociado con un Contacto/Persona. Por favor contacte al Administrador de '.ITOP_APPLICATION_SHORT,
|
||||
'Portal:Attachments' => 'Anexos',
|
||||
'Portal:AddAttachment' => 'Agregar Anexo',
|
||||
'Portal:RemoveAttachment' => 'Borrar Anexo',
|
||||
@@ -1164,7 +1164,7 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
||||
'UI:Favorites:ShowObsoleteData+' => 'Mostrar datos obsoletos en resultados de búsqueda y listas de elementos seleccionables',
|
||||
'UI:NavigateAwayConfirmationMessage' => 'Cualquier modificación será descartada.',
|
||||
'UI:CancelConfirmationMessage' => 'Perderá los cambios realizados. ¿Desea Continuar?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Algunos cambios no han sido aplicados todavía. ¿Quiere que iTop los tome en cuenta?',
|
||||
'UI:AutoApplyConfirmationMessage' => 'Algunos cambios no han sido aplicados todavía. ¿Quiere que '.ITOP_APPLICATION_SHORT.' los tome en cuenta?',
|
||||
'UI:Create_Class_InState' => 'Crear %1$s en el estado: ',
|
||||
'UI:OrderByHint_Values' => 'Ordenamiento: %1$s',
|
||||
'UI:Menu:AddToDashboard' => 'Agregar a Panel de Control',
|
||||
@@ -1412,8 +1412,8 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
||||
'UI:AddAnExisting_Class' => 'Agregar objetos del tipo %1$s...',
|
||||
'UI:SelectionOf_Class' => 'Selección de objetos del tipo %1$s',
|
||||
|
||||
'UI:AboutBox' => 'Acerca de iTop...',
|
||||
'UI:About:Title' => 'Acerca de iTop',
|
||||
'UI:AboutBox' => 'Acerca de '.ITOP_APPLICATION_SHORT.'...',
|
||||
'UI:About:Title' => 'Acerca de '.ITOP_APPLICATION_SHORT,
|
||||
'UI:About:DataModel' => 'Modelo de Datos',
|
||||
'UI:About:Support' => 'Información de Soporte',
|
||||
'UI:About:Licenses' => 'Licencias',
|
||||
@@ -1622,9 +1622,9 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellaño', array(
|
||||
'Menu:DataSources' => 'Fuentes de Datos Sincronizables',
|
||||
'Menu:DataSources+' => 'Fuentes de Datos Sincronizables',
|
||||
'Menu:WelcomeMenu' => 'Bienvenido',
|
||||
'Menu:WelcomeMenu+' => 'Bienvenido a iTop',
|
||||
'Menu:WelcomeMenu+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Bienvenido',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenido a iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Herramientas Administrativas',
|
||||
'Menu:AdminTools+' => 'Herramientas Administrativas',
|
||||
'Menu:AdminTools?' => 'Herramientas accesibles sólo a usuarios con Perfil de administrador',
|
||||
|
||||
@@ -127,13 +127,13 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Core:AttributeEnum+' => 'Valeur choisie parmi un liste de chaîne de caractères',
|
||||
|
||||
'Core:AttributeTemplateString' => 'Modèle de chaîne de caractères',
|
||||
'Core:AttributeTemplateString+' => 'Chaîne de caractères d\'une ligne, contenant des espaces réservés pour des données iTop',
|
||||
'Core:AttributeTemplateString+' => 'Chaîne de caractères d\'une ligne, contenant des espaces réservés pour des données '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'Core:AttributeTemplateText' => 'Modèle de texte',
|
||||
'Core:AttributeTemplateText+' => 'Texte contenant des espaces réservés pour des données iTop',
|
||||
'Core:AttributeTemplateText+' => 'Texte contenant des espaces réservés pour des données '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'Core:AttributeTemplateHTML' => 'Modèle HTML',
|
||||
'Core:AttributeTemplateHTML+' => 'HTML contenant des espaces réservés pour des données iTop',
|
||||
'Core:AttributeTemplateHTML+' => 'HTML contenant des espaces réservés pour des données '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'Core:AttributeDateTime' => 'Date/heure',
|
||||
'Core:AttributeDateTime+' => 'Date et heure (année-mois-jour hh:mm:ss)',
|
||||
|
||||
@@ -119,7 +119,7 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'L\'utilisateur n\'appartient pas à vos organisations.',
|
||||
'Class:User/Error:PersonIsMandatory' => 'Le Contact est obligatoire.',
|
||||
'Class:UserInternal' => 'Utilisateur interne',
|
||||
'Class:UserInternal+' => 'Utilisateur défini dans iTop',
|
||||
'Class:UserInternal+' => 'Utilisateur défini dans '.ITOP_APPLICATION_SHORT,
|
||||
));
|
||||
|
||||
//
|
||||
@@ -324,14 +324,14 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'BooleanLabel:yes' => 'oui',
|
||||
'BooleanLabel:no' => 'non',
|
||||
'UI:Login:Title' => 'iTop login',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login',
|
||||
'Menu:WelcomeMenu' => 'Bienvenue', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Bienvenue dans iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Bienvenue', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenue dans iTop', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Bienvenue dans iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop est un portail opérationnel complet et libre pour gérer votre SI.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' est un portail opérationnel complet et libre pour gérer votre SI.</p>
|
||||
<ul>il contient:
|
||||
<li>Une base de gestion des configurations (CMDB - Configuration management database) pour documenter et gérer votre parc informatique.</li>
|
||||
<li>Un module de gestion des incidents pour suivre les incidents d\'exploitation et gérer la communication à propos de ces incidents.</li>
|
||||
@@ -342,7 +342,7 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
</ul>
|
||||
<p>Tous ces modules peuvent être installés séparément, à votre rythme.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop a été conçu pour les fournisseurs de service, il permet à vos équipes IT de gérer facilement de multiples clients et organisations.
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' a été conçu pour les fournisseurs de service, il permet à vos équipes IT de gérer facilement de multiples clients et organisations.
|
||||
<ul>iTop fournit un riche ensemble de processus métier pour:
|
||||
<li>Augmenter l\'efficacité de la gestion de votre SI</li>
|
||||
<li>Accroitre la performance de vos équipes d\'exploitation</li>
|
||||
@@ -432,7 +432,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'la définition du lien est incorrecte: la classe d\'objets à gérer: %1$s n\'est référencée par aucune clef externe de la classe %2$s',
|
||||
'UI:Error:Object_Class_Id_NotFound' => 'L\'objet: %1$s:%2$d est introuvable.',
|
||||
'UI:Error:WizardCircularReferenceInDependencies' => 'Erreur: Référence circulaire entre les dépendences entre champs, vérifiez le modèle de données.',
|
||||
'UI:Error:UploadedFileTooBig' => 'Le fichier téléchargé est trop gros. (La taille maximale autorisée est %1$s). Pour modifier cette limite contactez votre administrateur iTop. (Réglages upload_max_filesize et post_max_size dans la configuration PHP sur le serveur)',
|
||||
'UI:Error:UploadedFileTooBig' => 'Le fichier téléchargé est trop gros. (La taille maximale autorisée est %1$s). Pour modifier cette limite contactez votre administrateur '.ITOP_APPLICATION_SHORT.'. (Réglages upload_max_filesize et post_max_size dans la configuration PHP sur le serveur)',
|
||||
'UI:Error:UploadedFileTruncated.' => 'Le fichier téléchargé a été tronqué !',
|
||||
'UI:Error:NoTmpDir' => 'Il n\'y a aucun répertoire temporaire de défini.',
|
||||
'UI:Error:CannotWriteToTmp_Dir' => 'Impossible d\'écrire le fichier temporaire sur disque. upload_tmp_dir = "%1$s".',
|
||||
@@ -518,7 +518,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:SearchValue:CheckAll' => 'Cocher',
|
||||
'UI:SearchValue:UncheckAll' => 'Décocher',
|
||||
'UI:SelectOne' => '-- choisir une valeur --',
|
||||
'UI:Login:Welcome' => 'Bienvenue dans iTop!',
|
||||
'UI:Login:Welcome' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Mot de passe ou identifiant incorrect.',
|
||||
'UI:Login:IdentifyYourself' => 'Merci de vous identifier',
|
||||
'UI:Login:UserNamePrompt' => 'Identifiant',
|
||||
@@ -531,15 +531,15 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:Login:SeparatorOr' => 'Ou',
|
||||
|
||||
'UI:ResetPwd-Error-WrongLogin' => 'le compte \'%1$s\' est inconnu.',
|
||||
'UI:ResetPwd-Error-NotPossible' => 'les comptes "externes" ne permettent pas la saisie d\'un mot de passe dans iTop.',
|
||||
'UI:ResetPwd-Error-NotPossible' => 'les comptes "externes" ne permettent pas la saisie d\'un mot de passe dans '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:ResetPwd-Error-FixedPwd' => 'ce mode de saisie du mot de passe n\'est pas autorisé pour ce compte.',
|
||||
'UI:ResetPwd-Error-NoContact' => 'le comte n\'est pas associé à une Personne.',
|
||||
'UI:ResetPwd-Error-NoEmailAtt' => 'il manque un attribut de type "email" sur la Personne associée à ce compte. Veuillez contacter l\'administrateur de l\'application.',
|
||||
'UI:ResetPwd-Error-NoEmail' => 'il manque une adresse email sur la Personne associée à ce compte. Veuillez contacter l\'administrateur de l\'application.',
|
||||
'UI:ResetPwd-Error-Send' => 'erreur technique lors de l\'envoi de l\'email. Veuillez contacter l\'administrateur de l\'application.',
|
||||
'UI:ResetPwd-EmailSent' => 'Veuillez vérifier votre boîte de réception. Ensuite, suivez les instructions données dans l\'email. Si vous ne recevez pas d\'email, merci de vérifier le login saisi',
|
||||
'UI:ResetPwd-EmailSubject' => 'Changer votre mot de passe iTop',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Vous avez demandé à changer votre mot de passe iTop sans connaître le mot de passe précédent.</p><p>Veuillez suivre le lien suivant (usage unique) afin de pouvoir <a href="%1$s">saisir un nouveau mot de passe</a></p>.',
|
||||
'UI:ResetPwd-EmailSubject' => 'Changer votre mot de passe '.ITOP_APPLICATION_SHORT,
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>Vous avez demandé à changer votre mot de passe '.ITOP_APPLICATION_SHORT.' sans connaître le mot de passe précédent.</p><p>Veuillez suivre le lien suivant (usage unique) afin de pouvoir <a href="%1$s">saisir un nouveau mot de passe</a></p>.',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Nouveau mot de passe',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Désolé, le mot de passe a déjà été modifié avec le lien que vous avez suivi, ou bien vous avez reçu plusieurs emails. Dans ce cas, veillez à utiliser le tout dernier lien reçu.',
|
||||
@@ -554,16 +554,16 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Resaisir le nouveau mot de passe',
|
||||
'UI:Login:IncorrectOldPassword' => 'Erreur: l\'ancien mot de passe est incorrect',
|
||||
'UI:LogOffMenu' => 'Déconnexion',
|
||||
'UI:LogOff:ThankYou' => 'Merci d\'avoir utilisé iTop',
|
||||
'UI:LogOff:ThankYou' => 'Merci d\'avoir utilisé '.ITOP_APPLICATION_SHORT,
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Cliquez ici pour vous reconnecter...',
|
||||
'UI:ChangePwdMenu' => 'Changer de mot de passe...',
|
||||
'UI:Login:PasswordChanged' => 'Mot de passe mis à jour !',
|
||||
'UI:AccessRO-All' => 'iTop est en lecture seule',
|
||||
'UI:AccessRO-Users' => 'iTop est en lecture seule pour les utilisateurs finaux',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' est en lecture seule',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' est en lecture seule pour les utilisateurs finaux',
|
||||
'UI:ApplicationEnvironment' => 'Environnement applicatif: %1$s',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Les deux saisies du nouveau mot de passe ne sont pas identiques !',
|
||||
'UI:Button:Login' => 'Entrer dans iTop',
|
||||
'UI:Login:Error:AccessRestricted' => 'L\'accès à iTop est soumis à autorisation. Merci de contacter votre administrateur iTop.',
|
||||
'UI:Button:Login' => 'Entrer dans '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Login:Error:AccessRestricted' => 'L\'accès à '.ITOP_APPLICATION_SHORT.' est soumis à autorisation. Merci de contacter votre administrateur '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Accès restreint aux utilisateurs possédant le profil Administrateur.',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Organisation inconnue',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Email partagé par plusieurs contacts',
|
||||
@@ -577,7 +577,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:CSVImport:DataLine1' => 'Données Ligne 1',
|
||||
'UI:CSVImport:DataLine2' => 'Données Ligne 2',
|
||||
'UI:CSVImport:idField' => 'id (Clef primaire)',
|
||||
'UI:Title:BulkImport' => 'iTop - Import massif',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - Import massif',
|
||||
'UI:Title:BulkImport+' => 'Assistant d\'import CSV',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Synchronisation de %1$d éléments de type %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- choisir une valeur --',
|
||||
@@ -626,7 +626,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Veuillez vous assurer que chaque champ cible est sélectionné une seule fois.',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Veuillez choisir au moins une clef de recherche.',
|
||||
'UI:CSVImport:Encoding' => 'Encodage des caractères',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Recherche Universelle',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Recherche Universelle',
|
||||
'UI:UniversalSearch:Error' => 'Erreur : %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Sélectionnez le type d\'objets à rechercher : ',
|
||||
|
||||
@@ -695,7 +695,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - Evaluation de requêtes OQL',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - Evaluation de requêtes OQL',
|
||||
'UI:RunQuery:QueryExamples' => 'Exemples de requêtes',
|
||||
'UI:RunQuery:QueryResults' => 'Résultats de la requête',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Objectif',
|
||||
@@ -713,7 +713,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:RunQuery:Error' => 'Une erreur s\'est produite durant l\'exécution de la requête',
|
||||
'UI:Query:UrlForExcel' => 'Lien à copier-coller dans Excel, pour déclarer une source de données à partir du web',
|
||||
'UI:Query:UrlV1' => 'La liste des champs à exporter n\'a pas été spécifiée. La page <em>export-V2.php</em> ne peut pas fonctionner sans cette information. Par conséquent, le lien fourni ci-dessous pointe sur l\'ancienne page: <em>export.php</em>. Cette ancienne version de l\'export présente la limitation suivante : la liste des champs exportés varie en fonction du format de l\'export et du modèle de données. <br/>Si vous devez garantir la stabilité du format de l\'export (liste des colonnes) sur le long terme, alors vous devrez renseigner l\'attribut "Champs" et utiliser la page <em>export-V2.php</em>.',
|
||||
'UI:Schema:Title' => 'Modèle de données iTop',
|
||||
'UI:Schema:Title' => 'Modèle de données '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Schema:CategoryMenuItem' => 'Catégorie <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Relations',
|
||||
'UI:Schema:AbstractClass' => 'Classe abstraite : les objets de cette classe ne peuvent pas être instanciés.',
|
||||
@@ -829,9 +829,9 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Vous devez effectuer les opération manuelles listées ci-dessus avant de pourvoir supprimer cet objet.',
|
||||
'UI:Delect:Confirm_Object' => 'Confirmez que vous voulez bien supprimer %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Confirmez que vous voulez bien supprimer les %1$d objets de type %2$s ci-dessous.',
|
||||
'UI:WelcomeToITop' => 'Bienvenue dans iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %2$s - Détails de %1$s',
|
||||
'UI:ErrorPageTitle' => 'iTop - Erreur',
|
||||
'UI:WelcomeToITop' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %2$s - Détails de %1$s',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Erreur',
|
||||
'UI:ObjectDoesNotExist' => 'Désolé cet objet n\'existe pas (ou vous n\'êtes pas autorisé à l\'afficher).',
|
||||
'UI:ObjectArchived' => 'Cet objet a été archivé. Veuillez activer le mode Archive, ou contactez votre administrateur.',
|
||||
'Tag:Archived' => 'Archivé',
|
||||
@@ -841,7 +841,7 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'Tag:Synchronized' => 'Synchronisé',
|
||||
'ObjectRef:Archived' => 'Archivé',
|
||||
'ObjectRef:Obsolete' => 'Obsolète',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Résultats de la recherche',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Résultats de la recherche',
|
||||
'UI:SearchResultsTitle' => 'Recherche globale',
|
||||
'UI:SearchResultsTitle+' => 'Résultat de recherche globale',
|
||||
'UI:Search:NoSearch' => 'Rien à rechercher',
|
||||
@@ -851,27 +851,27 @@ Nous espérons que vous aimerez cette version autant que nous avons eu du plaisi
|
||||
'UI:FullTextSearchTitle_Text' => 'Résultats pour "%1$s" :',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => 'Trouvé %1$d objet(s) de type %2$s.',
|
||||
'UI:Search:NoObjectFound' => 'Aucun objet trouvé.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %2$s - Modification de %1$s',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %2$s - Modification de %1$s',
|
||||
'UI:ModificationTitle_Class_Object' => '%1$s - Modification de <span class="hilite">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - %2$s - Duplication de %1$s',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %2$s - Duplication de %1$s',
|
||||
'UI:CloneTitle_Class_Object' => ' %1$s - Duplication de <span class="hilite">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Création d\'un objet de type %1$s ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Création d\'un objet de type %1$s ',
|
||||
'UI:CreationTitle_Class' => 'Création d\'un objet de type %1$s',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Sélectionnez le type de %1$s à créer :',
|
||||
'UI:Class_Object_NotUpdated' => 'Aucun changement détecté, %2$s (type : %2$s) n\'a <strong>pas</strong> été modifié.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) - informations mises à jour.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Suppression massive',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Suppression massive',
|
||||
'UI:BulkDeleteTitle' => 'Sélectionnez les objets à supprimer:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop objet créé.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' objet créé.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%2$s - %1$s créé(e).',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => '%1$s pour %2$s de l\'état %3$s vers l\'état %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'L\'objet ne peut pas être enregistré: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Erreur Fatale',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Erreur Fatale',
|
||||
'UI:SystemIntrusion' => 'Accès non autorisé. Vous êtes en train de d\'effectuer une opération qui ne vous est pas permise.',
|
||||
'UI:FatalErrorMessage' => 'Erreur fatale, iTop ne peut pas continuer.',
|
||||
'UI:Error_Details' => 'Erreur: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop gestion des utilisateurs - projections des profils',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' gestion des utilisateurs - projections des profils',
|
||||
'UI:UserManagement:Class' => 'Type',
|
||||
'UI:UserManagement:Class+' => 'Type des objets',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objet',
|
||||
@@ -1076,7 +1076,7 @@ Lors de l\'association à un déclencheur, on attribue à chaque action un numé
|
||||
'UI:RelationTooltip:Redundancy' => 'Redondance',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => 'Nb éléments impactés: %1$d / %2$d',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Seuil critique: %1$d / %2$d',
|
||||
'Portal:Title' => 'Portail utilisateur iTop',
|
||||
'Portal:Title' => 'Portail utilisateur '.ITOP_APPLICATION_SHORT,
|
||||
'Portal:NoRequestMgmt' => 'Chèr(e) %1$s, vous avez été redirigé(e) vers cette page car votre compte utilisateur est configuré avec le profil \'Utilisateur du Portail\'. Malheureusement, iTop n\'a pas été installé avec le module de \'Gestion des Demandes\'. Merci de contacter votre administrateur iTop.',
|
||||
'Portal:Refresh' => 'Rafraîchir',
|
||||
'Portal:Back' => 'Retour',
|
||||
@@ -1411,8 +1411,8 @@ Lors de l\'association à un déclencheur, on attribue à chaque action un numé
|
||||
'UI:AddAnExisting_Class' => 'Ajouter des objets de type %1$s...',
|
||||
'UI:SelectionOf_Class' => 'Sélection d\'objets de type %1$s',
|
||||
|
||||
'UI:AboutBox' => 'A propos d\'iTop...',
|
||||
'UI:About:Title' => 'A propos d\'iTop',
|
||||
'UI:AboutBox' => 'A propos d\''.ITOP_APPLICATION_SHORT.'...',
|
||||
'UI:About:Title' => 'A propos d\''.ITOP_APPLICATION_SHORT,
|
||||
'UI:About:DataModel' => 'Modèle de données',
|
||||
'UI:About:Support' => 'Informations pour le support',
|
||||
'UI:About:Licenses' => 'Licences',
|
||||
@@ -1437,7 +1437,7 @@ Lors de l\'association à un déclencheur, on attribue à chaque action un numé
|
||||
'ExcelExport:PreparingExport' => 'Préparation de l\'export...',
|
||||
'ExcelExport:Statistics' => 'Statistiques',
|
||||
'portal:legacy_portal' => 'Portail Utilisateurs',
|
||||
'portal:backoffice' => 'Console iTop',
|
||||
'portal:backoffice' => 'Console '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'L\'objet est verrouillé car il est en train d\'être modifié par %1$s.',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'L\'objet est en train d\'être modifié par %1$s. Vos modifications ne peuvent pas être acceptées car elles risquent d\'être écrasées.',
|
||||
@@ -1621,9 +1621,9 @@ Dict::Add('FR FR', 'French', 'Français', array(
|
||||
'Menu:DataSources' => 'Synchronisation',
|
||||
'Menu:DataSources+' => '',
|
||||
'Menu:WelcomeMenu' => 'Bienvenue',
|
||||
'Menu:WelcomeMenu+' => 'Bienvenue dans iTop',
|
||||
'Menu:WelcomeMenu+' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:WelcomeMenuPage' => 'Bienvenue',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenue dans iTop',
|
||||
'Menu:WelcomeMenuPage+' => 'Bienvenue dans '.ITOP_APPLICATION_SHORT,
|
||||
'Menu:AdminTools' => 'Administration',
|
||||
'Menu:AdminTools+' => 'Outils d\'administration',
|
||||
'Menu:AdminTools?' => 'Ces outils sont accessibles uniquement aux utilisateurs possédant le profil Administrateur.',
|
||||
|
||||
@@ -115,7 +115,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'User Internal~~',
|
||||
'Class:UserInternal+' => 'User defined within iTop~~',
|
||||
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT.'~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -320,14 +320,14 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'BooleanLabel:yes' => 'Igen',
|
||||
'BooleanLabel:no' => 'Nem',
|
||||
'UI:Login:Title' => 'iTop login~~',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||
'Menu:WelcomeMenu' => 'Üdvözlöm', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Üdvözlöm', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Üdvözli az iTop',
|
||||
'UI:WelcomeMenu:Title' => 'Üdvözli az '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop egy teljeskörű, OpenSource, IT üzemeltetés támogató portál.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' egy teljeskörű, OpenSource, IT üzemeltetés támogató portál.</p>
|
||||
<ul>A következőket tartalmazza:
|
||||
<li>Teljeskörű CMDB (Konfiguráció menedzsment adatbázis) az IT eszközök dokumentálására és verzió kezelésére.</li>
|
||||
<li>Incidens menedzsment modul az összes IT-hez kapcsolódó kérés életciklusának követésére.</li>
|
||||
@@ -338,7 +338,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
</ul>
|
||||
<p>Mindegyik modul önállóan telepíthető és használható.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop egy szolgáltatás orientált megoldás, amely segít az IT szakembereknek több ügyfél és szervezet egyidejű menedzselését.
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' egy szolgáltatás orientált megoldás, amely segít az IT szakembereknek több ügyfél és szervezet egyidejű menedzselését.
|
||||
<ul>az iTop az üzleti folyamatok javításához egy hatékony eszköz, mert:
|
||||
<li>javítja az IT menedzsment hatékonyságát</li>
|
||||
<li>növeli IT üzemeltetés teljesítményét</li>
|
||||
@@ -507,14 +507,14 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:SearchValue:CheckAll' => 'Check All~~',
|
||||
'UI:SearchValue:UncheckAll' => 'Uncheck All~~',
|
||||
'UI:SelectOne' => '-- válasszon ki egyet --',
|
||||
'UI:Login:Welcome' => 'Üdvözli az iTop!',
|
||||
'UI:Login:Welcome' => 'Üdvözli az '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Nem megfelelő bejelentkezési név/jelszó, kérjük próbálja újra.',
|
||||
'UI:Login:IdentifyYourself' => 'Folytatás előtt azonosítsa magát',
|
||||
'UI:Login:UserNamePrompt' => 'Felhasználó név',
|
||||
'UI:Login:PasswordPrompt' => 'Jelszó',
|
||||
'UI:Login:ForgotPwd' => 'Forgot your password?~~',
|
||||
'UI:Login:ForgotPwdForm' => 'Forgot your password~~',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ResetPassword' => 'Send now!~~',
|
||||
'UI:Login:ResetPwdFailed' => 'Failed to send an email: %1$s~~',
|
||||
'UI:Login:SeparatorOr' => 'Or~~',
|
||||
@@ -527,8 +527,8 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'missing an email address. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-Error-Send' => 'email transport technical issue. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-EmailSent' => 'Please check your email box and follow the instructions. If you receive no email, please check the login you typed.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your iTop password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your iTop password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your '.ITOP_APPLICATION_SHORT.' password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your '.ITOP_APPLICATION_SHORT.' password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Reset password~~',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Sorry, either the password has already been reset, or you have received several emails. Please make sure that you use the link provided in the very last email received.~~',
|
||||
@@ -543,17 +543,17 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Új jelszó ismét',
|
||||
'UI:Login:IncorrectOldPassword' => 'Hiba: a jelenlegi jelszó hibás',
|
||||
'UI:LogOffMenu' => 'Kilépés',
|
||||
'UI:LogOff:ThankYou' => 'Köszönjük, hogy az iTop-ot használja!',
|
||||
'UI:LogOff:ThankYou' => 'Köszönjük, hogy az '.ITOP_APPLICATION_SHORT.'-ot használja!',
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Ismételt bejelentkezéshez kattintson ide',
|
||||
'UI:ChangePwdMenu' => 'Jelszó módosítás...',
|
||||
'UI:Login:PasswordChanged' => 'Jelszó sikeresen beállítva!',
|
||||
'UI:AccessRO-All' => 'iTop csak olvasás módban',
|
||||
'UI:AccessRO-Users' => 'iTop csak olvasás módban a végfelhasználók számára',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' csak olvasás módban',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' csak olvasás módban a végfelhasználók számára',
|
||||
'UI:ApplicationEnvironment' => 'Application environment: %1$s~~',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Az új jelszó és ismételten beírt érték nem egyezik!',
|
||||
'UI:Button:Login' => 'Belépés az iTop alkalmazásba',
|
||||
'UI:Login:Error:AccessRestricted' => 'iTop hozzáférés korlátozva. Kérem forduljon az iTop adminisztrátorhoz!',
|
||||
'UI:Login:Error:AccessAdmin' => 'Adminisztrátori hozzáférés korlátozott. Kérem forduljon az iTop adminisztrátorhoz!',
|
||||
'UI:Button:Login' => 'Belépés az '.ITOP_APPLICATION_SHORT.' alkalmazásba',
|
||||
'UI:Login:Error:AccessRestricted' => ITOP_APPLICATION_SHORT.' hozzáférés korlátozva. Kérem forduljon az '.ITOP_APPLICATION_SHORT.' adminisztrátorhoz!',
|
||||
'UI:Login:Error:AccessAdmin' => 'Adminisztrátori hozzáférés korlátozott. Kérem forduljon az '.ITOP_APPLICATION_SHORT.' adminisztrátorhoz!',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Unknown organization~~',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Multiple contacts have the same e-mail~~',
|
||||
'UI:Login:Error:NoValidProfiles' => 'No valid profile provided~~',
|
||||
@@ -566,7 +566,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:CSVImport:DataLine1' => 'Adatsor 1',
|
||||
'UI:CSVImport:DataLine2' => 'Adatsor 2',
|
||||
'UI:CSVImport:idField' => 'id (elsődeges kulcs)',
|
||||
'UI:Title:BulkImport' => 'iTop - tömeges betöltés',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - tömeges betöltés',
|
||||
'UI:Title:BulkImport+' => '',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => '%2$s osztály %1$d objektumának szinkronizációja',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- válasszon ki egyet --',
|
||||
@@ -615,7 +615,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Please make sure that a target field is mapped only once.~~',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Kérem adjon eg legalább egy keresési kritériumot',
|
||||
'UI:CSVImport:Encoding' => 'Karakter kódolása',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Univerzális kereső',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Univerzális kereső',
|
||||
'UI:UniversalSearch:Error' => 'Hiba: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Keresendő osztály kiválasztása:',
|
||||
|
||||
@@ -663,9 +663,9 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:CSVExport:AdvancedMode' => 'Advanced mode~~',
|
||||
'UI:CSVExport:AdvancedMode+' => 'In advanced mode, several columns are added to the export: the id of the object, the id of external keys and their reconciliation attributes.~~',
|
||||
'UI:CSVExport:LostChars' => 'Encoding issue~~',
|
||||
'UI:CSVExport:LostChars+' => 'The downloaded file will be encoded into %1$s. iTop has detected some characters that are not compatible with this format. Those characters will either be replaced by a substitute (e.g. accentuated chars losing the accent), or they will be discarded. You can copy/paste the data from your web browser. Alternatively, you can contact your administrator to change the encoding (See parameter \'csv_file_default_charset\').~~',
|
||||
'UI:CSVExport:LostChars+' => 'The downloaded file will be encoded into %1$s. '.ITOP_APPLICATION_SHORT.' has detected some characters that are not compatible with this format. Those characters will either be replaced by a substitute (e.g. accentuated chars losing the accent), or they will be discarded. You can copy/paste the data from your web browser. Alternatively, you can contact your administrator to change the encoding (See parameter \'csv_file_default_charset\').~~',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB Audit',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB Audit',
|
||||
'UI:Audit:InteractiveAudit' => 'Interaktív Audit',
|
||||
'UI:Audit:HeaderAuditRule' => 'Audit szabály',
|
||||
'UI:Audit:HeaderNbObjects' => '# Objektumok',
|
||||
@@ -684,7 +684,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - OQL lekérdezés értékelés',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - OQL lekérdezés értékelés',
|
||||
'UI:RunQuery:QueryExamples' => 'Lekérdezés példák',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Cél',
|
||||
@@ -701,8 +701,8 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:RunQuery:ResultSQL' => 'Resulting SQL~~',
|
||||
'UI:RunQuery:Error' => 'A lekérdezés futtatása közben a következő hiba jelentkezett',
|
||||
'UI:Query:UrlForExcel' => 'URL to use for MS-Excel web queries~~',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of iTop. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => 'iTop objektum séma',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of '.ITOP_APPLICATION_SHORT.'. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' objektum séma',
|
||||
'UI:Schema:CategoryMenuItem' => '<b>%1$s</b> kategória',
|
||||
'UI:Schema:Relationships' => 'Kapcsolatok',
|
||||
'UI:Schema:AbstractClass' => 'Absztrakt osztály: nem példányosítható belőle objektum.',
|
||||
@@ -818,9 +818,9 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Kérem hajtsa végre a következő listában található műveleteket manuálisan az objektum törlésének kéréséhez',
|
||||
'UI:Delect:Confirm_Object' => 'Kérjük hagyja jóvá a %1$s törlését!',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Kérjük hagyja jóvá a %2$s ostály %1$d objektumának törlését!',
|
||||
'UI:WelcomeToITop' => 'Üdvözli az iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s részletek',
|
||||
'UI:ErrorPageTitle' => 'iTop - Hiba',
|
||||
'UI:WelcomeToITop' => 'Üdvözli az '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s részletek',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Hiba',
|
||||
'UI:ObjectDoesNotExist' => 'Sajnálom ez az objektum nem létezik (vagy a megtekintése nem engedélyezett a felhasználó számára).',
|
||||
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
|
||||
'Tag:Archived' => 'Archived~~',
|
||||
@@ -830,7 +830,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Tag:Synchronized' => 'Synchronized~~',
|
||||
'ObjectRef:Archived' => 'Archived~~',
|
||||
'ObjectRef:Obsolete' => 'Obsolete~~',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Keresés eredményei',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Keresés eredményei',
|
||||
'UI:SearchResultsTitle' => 'Keresés eredményei',
|
||||
'UI:SearchResultsTitle+' => 'Full-text search results~~',
|
||||
'UI:Search:NoSearch' => 'Nincs keresés',
|
||||
@@ -840,27 +840,27 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'UI:FullTextSearchTitle_Text' => '"%1$s" keresés eredményei:',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%2$s osztály %1$d objektuma',
|
||||
'UI:Search:NoObjectFound' => 'Objektum nem található',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s módosítása',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s módosítása',
|
||||
'UI:ModificationTitle_Class_Object' => '%1$s: <span class=\\"hilite\\">%2$s</span> módosítása',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - %1$s - %2$s klón módosítása',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s klón módosítása',
|
||||
'UI:CloneTitle_Class_Object' => '%1$s: <span class=\\"hilite\\">%2$s</span> klón',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - %1$s létrehozása',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - %1$s létrehozása',
|
||||
'UI:CreationTitle_Class' => '%1$s létrehozása',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Válassza ki a létrehozni kívánt %1$s osztály típusát:',
|
||||
'UI:Class_Object_NotUpdated' => 'Változás nem történt, %1$s (%2$s) <strong>NEM</strong> lett módosítva.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) frissítve.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Tömeges törlés',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Tömeges törlés',
|
||||
'UI:BulkDeleteTitle' => 'Válassza ki a törölni kívánt objektumokat:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop objektum létrehozva.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' objektum létrehozva.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s létrehozva.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Alkalmazva %1$s objektumon: %2$s.Kinduló állapot: %3$s cél állapot: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'Au objektum írása sikertlen: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Fatális hiba',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Fatális hiba',
|
||||
'UI:SystemIntrusion' => 'Hozzáférés megtagadva. A művelet végrehajtása nem engedélyezett.',
|
||||
'UI:FatalErrorMessage' => 'Fatális hiba, iTop nem tudja a működését folytatni',
|
||||
'UI:FatalErrorMessage' => 'Fatális hiba, '.ITOP_APPLICATION_SHORT.' nem tudja a működését folytatni',
|
||||
'UI:Error_Details' => 'Hiba: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop felhasználó menedzsmet - profil nézet',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' felhasználó menedzsmet - profil nézet',
|
||||
'UI:UserManagement:Class' => 'Osztály',
|
||||
'UI:UserManagement:Class+' => '',
|
||||
'UI:UserManagement:ProjectedObject' => 'Objektum',
|
||||
@@ -956,7 +956,7 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', array(
|
||||
'Menu:NotificationsMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Értesítések beállítása',
|
||||
'UI:NotificationsMenu:Help' => 'Segítség',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>Az iTop alkalmazásban az értesítések teljesen testreszabhatók. Értesítések az objektumok két csoportjára épülnek: <i>kiváltó okok és akciók</i>.</p>
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>Az '.ITOP_APPLICATION_SHORT.' alkalmazásban az értesítések teljesen testreszabhatók. Értesítések az objektumok két csoportjára épülnek: <i>kiváltó okok és akciók</i>.</p>
|
||||
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of iTop core, but others can be brought by extensions:
|
||||
<ol>
|
||||
<li>Some triggers are executed when an object of the specified class is <b>created</b>, <b>updated</b> or <b>deleted</b>.</li>
|
||||
@@ -1065,8 +1065,8 @@ Akció kiváltó okhoz rendelésekor kap egy sorszámot , amely meghatározza az
|
||||
'UI:RelationTooltip:Redundancy' => 'Redundancy~~',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => '# of impacted items: %1$d / %2$d~~',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Critical threshold: %1$d / %2$d~~',
|
||||
'Portal:Title' => 'iTop felhasználói portál',
|
||||
'Portal:NoRequestMgmt' => 'Dear %1$s, you have been redirected to this page because your account is configured with the profile \'Portal user\'. Unfortunately, iTop has not been installed with the feature \'Request Management\'. Please contact your administrator.~~',
|
||||
'Portal:Title' => ITOP_APPLICATION_SHORT.' felhasználói portál',
|
||||
'Portal:NoRequestMgmt' => 'Dear %1$s, you have been redirected to this page because your account is configured with the profile \'Portal user\'. Unfortunately, '.ITOP_APPLICATION_SHORT.' has not been installed with the feature \'Request Management\'. Please contact your administrator.~~',
|
||||
'Portal:Refresh' => 'Frissítés',
|
||||
'Portal:Back' => 'Vissza',
|
||||
'Portal:WelcomeUserOrg' => 'Welcome %1$s, from %2$s',
|
||||
@@ -1398,8 +1398,8 @@ Akció kiváltó okhoz rendelésekor kap egy sorszámot , amely meghatározza az
|
||||
'UI:AddAnExisting_Class' => 'Add objects of type %1$s...~~',
|
||||
'UI:SelectionOf_Class' => 'Selection of objects of type %1$s~~',
|
||||
|
||||
'UI:AboutBox' => 'About iTop...~~',
|
||||
'UI:About:Title' => 'About iTop~~',
|
||||
'UI:AboutBox' => 'About '.ITOP_APPLICATION_SHORT.'...~~',
|
||||
'UI:About:Title' => 'About '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'UI:About:DataModel' => 'Data model~~',
|
||||
'UI:About:Support' => 'Support information~~',
|
||||
'UI:About:Licenses' => 'Licenses~~',
|
||||
@@ -1424,7 +1424,7 @@ Akció kiváltó okhoz rendelésekor kap egy sorszámot , amely meghatározza az
|
||||
'ExcelExport:PreparingExport' => 'Preparing the export...~~',
|
||||
'ExcelExport:Statistics' => 'Statistics~~',
|
||||
'portal:legacy_portal' => 'End-User Portal~~',
|
||||
'portal:backoffice' => 'iTop Back-Office User Interface~~',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Back-Office User Interface~~',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'The object is locked since it is currently being modified by %1$s.~~',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'The object is currently being modified by %1$s. Your modifications cannot be submitted since they would be overwritten.~~',
|
||||
|
||||
@@ -126,7 +126,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'User Internal~~',
|
||||
'Class:UserInternal+' => 'User defined within iTop~~',
|
||||
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT.'~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -331,14 +331,14 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'BooleanLabel:yes' => 'si',
|
||||
'BooleanLabel:no' => 'no',
|
||||
'UI:Login:Title' => 'iTop login~~',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||
'Menu:WelcomeMenu' => 'Benveuto', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'Benvenuto', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:WelcomeMenu:Title' => 'Benveuto su iTop',
|
||||
'UI:WelcomeMenu:Title' => 'Benveuto su '.ITOP_APPLICATION_SHORT,
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop è un completo Portale Funzionale IT, Open Source.</p>
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' è un completo Portale Funzionale IT, Open Source.</p>
|
||||
<ul>Esso include:
|
||||
<li>Un completo CMDB (Configuration management database) per documentare e gestire l\'IT di inventario.</li>
|
||||
<li>Un modulo di gestione degli incidenti per monitorare e comunicare su tutte le problematiche che si verificano nel settore IT.</li>
|
||||
@@ -349,14 +349,14 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
</ul>
|
||||
<p>Tutti i moduli possono essere installati, passo dopo passo, indipendentemente l\'uno dall\'altro.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop è fornitore di servizi di orientamento, che consente ai progettisti di gestire più o organizzazioni o clienti con facilità.
|
||||
<ul>>iTop, offre un set ricco di funzionalità dei processi di business che:
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' è fornitore di servizi di orientamento, che consente ai progettisti di gestire più o organizzazioni o clienti con facilità.
|
||||
<ul>>'.ITOP_APPLICATION_SHORT.', offre un set ricco di funzionalità dei processi di business che:
|
||||
<li>Migliora l\'efficacia di gestione IT</li>
|
||||
<li>Guida le prestazione delle operazioni IT</li>
|
||||
<li>Migliora la soddisfazione del cliente e fornisce ai dirigenti un idea della performance del business.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>iTop è completamente aperto per essere integrato all\'interno della vostra infrastruttura di gestione dell\'IT.</p>
|
||||
<p>'.ITOP_APPLICATION_SHORT.' è completamente aperto per essere integrato all\'interno della vostra infrastruttura di gestione dell\'IT.</p>
|
||||
<p>
|
||||
<ul>L\'adozione di questa nuova generazione di portale funzionale IT vi aiuterà a:
|
||||
<li>Meglio gestire un ambiente IT sempre più complesso.</li>
|
||||
@@ -518,14 +518,14 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:SearchValue:CheckAll' => 'Check All~~',
|
||||
'UI:SearchValue:UncheckAll' => 'Uncheck All~~',
|
||||
'UI:SelectOne' => '-- selezionare uno --',
|
||||
'UI:Login:Welcome' => 'Benvenuti su iTop!',
|
||||
'UI:Login:Welcome' => 'Benvenuti su '.ITOP_APPLICATION_SHORT.'!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Errato login/password, si prega di riprovare.',
|
||||
'UI:Login:IdentifyYourself' => 'Identifica te stesso prima di continuare',
|
||||
'UI:Login:UserNamePrompt' => 'Nome Utente',
|
||||
'UI:Login:PasswordPrompt' => 'Password',
|
||||
'UI:Login:ForgotPwd' => 'Forgot your password?~~',
|
||||
'UI:Login:ForgotPwdForm' => 'Forgot your password~~',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ResetPassword' => 'Send now!~~',
|
||||
'UI:Login:ResetPwdFailed' => 'Failed to send an email: %1$s~~',
|
||||
'UI:Login:SeparatorOr' => 'O',
|
||||
@@ -538,8 +538,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:ResetPwd-Error-NoEmail' => 'missing an email address. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-Error-Send' => 'email transport technical issue. Please Contact your administrator.~~',
|
||||
'UI:ResetPwd-EmailSent' => 'Please check your email box and follow the instructions. If you receive no email, please check the login you typed.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your iTop password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your iTop password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
'UI:ResetPwd-EmailSubject' => 'Reset your '.ITOP_APPLICATION_SHORT.' password~~',
|
||||
'UI:ResetPwd-EmailBody' => '<body><p>You have requested to reset your '.ITOP_APPLICATION_SHORT.' password.</p><p>Please follow this link (single usage) to <a href="%1$s">enter a new password</a></p>.~~',
|
||||
|
||||
'UI:ResetPwd-Title' => 'Reset password~~',
|
||||
'UI:ResetPwd-Error-InvalidToken' => 'Sorry, either the password has already been reset, or you have received several emails. Please make sure that you use the link provided in the very last email received.~~',
|
||||
@@ -554,17 +554,17 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Riscrivi la nuova password',
|
||||
'UI:Login:IncorrectOldPassword' => 'Errore: la vecchia password non è corretta',
|
||||
'UI:LogOffMenu' => 'Log off',
|
||||
'UI:LogOff:ThankYou' => 'Grazie per aver scelto iTop',
|
||||
'UI:LogOff:ThankYou' => 'Grazie per aver scelto '.ITOP_APPLICATION_SHORT,
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Clicca qui per effettuare il login di nuovo...',
|
||||
'UI:ChangePwdMenu' => 'Cambia Password...',
|
||||
'UI:Login:PasswordChanged' => 'Password successfully set!~~',
|
||||
'UI:AccessRO-All' => 'iTop è di sola lettura',
|
||||
'UI:AccessRO-Users' => 'iTop è di sola lettura per gli utenti finali',
|
||||
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' è di sola lettura',
|
||||
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' è di sola lettura per gli utenti finali',
|
||||
'UI:ApplicationEnvironment' => 'Application environment: %1$s~~',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Nuova password e la nuova password digitata nuovamente non corrispondono !',
|
||||
'UI:Button:Login' => 'Entra in iTop',
|
||||
'UI:Login:Error:AccessRestricted' => 'L\'accesso a iTop è limitato. Si prega di contattare un amministratore iTop.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Accesso limitato alle persone che hanno privilegi di amministratore. Si prega di contattare un amministratore iTop.',
|
||||
'UI:Button:Login' => 'Entra in '.ITOP_APPLICATION_SHORT,
|
||||
'UI:Login:Error:AccessRestricted' => 'L\'accesso a '.ITOP_APPLICATION_SHORT.' è limitato. Si prega di contattare un amministratore '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Accesso limitato alle persone che hanno privilegi di amministratore. Si prega di contattare un amministratore '.ITOP_APPLICATION_SHORT.'.',
|
||||
'UI:Login:Error:WrongOrganizationName' => 'Organizzazione sconosciuta',
|
||||
'UI:Login:Error:MultipleContactsHaveSameEmail' => 'Più contatti hanno la stessa e-mail',
|
||||
'UI:Login:Error:NoValidProfiles' => 'Nessun profilo valido fornito',
|
||||
@@ -577,7 +577,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:CSVImport:DataLine1' => 'Dati Linea 1',
|
||||
'UI:CSVImport:DataLine2' => 'Dati Linea 2',
|
||||
'UI:CSVImport:idField' => 'id (Chiave Primaria)',
|
||||
'UI:Title:BulkImport' => 'iTop - importazione collettiva',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - importazione collettiva',
|
||||
'UI:Title:BulkImport+' => '',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Sincronizzazione di %1$d oggetti della classe %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- seleziona uno --',
|
||||
@@ -626,7 +626,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Please make sure that a target field is mapped only once.~~',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Per favore seleziona almeno un criterio di ricerca',
|
||||
'UI:CSVImport:Encoding' => 'Codifica dei caratteri',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Ricerca Universale',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Ricerca Universale',
|
||||
'UI:UniversalSearch:Error' => 'Errore: %1$s~~',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Seleziona la classe per la ricerca: ',
|
||||
|
||||
@@ -674,9 +674,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:CSVExport:AdvancedMode' => 'Advanced mode~~',
|
||||
'UI:CSVExport:AdvancedMode+' => 'In advanced mode, several columns are added to the export: the id of the object, the id of external keys and their reconciliation attributes.~~',
|
||||
'UI:CSVExport:LostChars' => 'Encoding issue~~',
|
||||
'UI:CSVExport:LostChars+' => 'The downloaded file will be encoded into %1$s. iTop has detected some characters that are not compatible with this format. Those characters will either be replaced by a substitute (e.g. accentuated chars losing the accent), or they will be discarded. You can copy/paste the data from your web browser. Alternatively, you can contact your administrator to change the encoding (See parameter \'csv_file_default_charset\').~~',
|
||||
'UI:CSVExport:LostChars+' => 'The downloaded file will be encoded into %1$s. '.ITOP_APPLICATION_SHORT.' has detected some characters that are not compatible with this format. Those characters will either be replaced by a substitute (e.g. accentuated chars losing the accent), or they will be discarded. You can copy/paste the data from your web browser. Alternatively, you can contact your administrator to change the encoding (See parameter \'csv_file_default_charset\').~~',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB Audit~~',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB Audit~~',
|
||||
'UI:Audit:InteractiveAudit' => 'Audit Interattivo',
|
||||
'UI:Audit:HeaderAuditRule' => 'Regole di Audit',
|
||||
'UI:Audit:HeaderNbObjects' => '# Oggetti',
|
||||
@@ -695,7 +695,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - Valutazione Query OQL',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - Valutazione Query OQL',
|
||||
'UI:RunQuery:QueryExamples' => 'Esempi di Query',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Scopo',
|
||||
@@ -712,8 +712,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:RunQuery:ResultSQL' => 'Resulting SQL~~',
|
||||
'UI:RunQuery:Error' => 'Si è verificato un errore durante l\'esecuzione della query',
|
||||
'UI:Query:UrlForExcel' => 'URL to use for MS-Excel web queries~~',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of iTop. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => 'iTop schema degli oggetti',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of '.ITOP_APPLICATION_SHORT.'. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' schema degli oggetti',
|
||||
'UI:Schema:CategoryMenuItem' => 'Categoria <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Relazioni',
|
||||
'UI:Schema:AbstractClass' => 'Classe astratta: nessun oggetto da questa classe può essere istanziato.',
|
||||
@@ -829,9 +829,9 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Si prega di eseguire le operazioni manuali di cui sopra prima di richiedere la cancellazione di questo oggetto',
|
||||
'UI:Delect:Confirm_Object' => 'Si prega di confermare che si desidera eliminare %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Si prega di confermare che si desidera eliminare i seguenti oggetti %1$d della classe %2$s.',
|
||||
'UI:WelcomeToITop' => 'Benvenuto su iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s dettagli',
|
||||
'UI:ErrorPageTitle' => 'iTop - Errore',
|
||||
'UI:WelcomeToITop' => 'Benvenuto su '.ITOP_APPLICATION_SHORT,
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s dettagli',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Errore',
|
||||
'UI:ObjectDoesNotExist' => 'Spiacenti, questo oggetto non esiste (o non si è autorizzati per vederlo).',
|
||||
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
|
||||
'Tag:Archived' => 'Archived~~',
|
||||
@@ -841,7 +841,7 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Tag:Synchronized' => 'Synchronized~~',
|
||||
'ObjectRef:Archived' => 'Archived~~',
|
||||
'ObjectRef:Obsolete' => 'Obsolete~~',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Risultati della ricerca',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Risultati della ricerca',
|
||||
'UI:SearchResultsTitle' => 'Risultati della ricerca',
|
||||
'UI:SearchResultsTitle+' => 'Full-text search results~~',
|
||||
'UI:Search:NoSearch' => 'Niente da ricercare',
|
||||
@@ -851,27 +851,27 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'UI:FullTextSearchTitle_Text' => 'Risultati per "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => 'Trovato l\'oggetto(i) %1$d della classe %2$s.',
|
||||
'UI:Search:NoObjectFound' => 'Nessun oggetto trovato.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s modifica',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s modifica',
|
||||
'UI:ModificationTitle_Class_Object' => 'Modifica di %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Clone %1$s - %2$s modifica',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Clone %1$s - %2$s modifica',
|
||||
'UI:CloneTitle_Class_Object' => 'Clone di %1$s: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Creazione di un nuovo %1$s ',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Creazione di un nuovo %1$s ',
|
||||
'UI:CreationTitle_Class' => 'Creazione di un nuovo %1$s',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Seleziona il tipo di %1$s da creare:',
|
||||
'UI:Class_Object_NotUpdated' => 'Nessun cambiamento rilevato, %1$s (%2$s) <strong>non</strong> è stato modificato.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) aggiornato.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Eliminazione collettiva',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Eliminazione collettiva',
|
||||
'UI:BulkDeleteTitle' => 'Seleziona gli oggetti che si desidera eliminare:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop Oggetto Creato.',
|
||||
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' Oggetto Creato.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s creato.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Applicazione %1$s all\'oggetto: %2$s nello stato %3$s allo stato target: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'L\'oggetto non può essere scritto: %1$s~~',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Fatal Error',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Fatal Error',
|
||||
'UI:SystemIntrusion' => 'Accesso negato. Hai cercato di eseguire un\'operazione che non ti è consentita.',
|
||||
'UI:FatalErrorMessage' => 'Fatal error, iTop non può continuare.',
|
||||
'UI:FatalErrorMessage' => 'Fatal error, '.ITOP_APPLICATION_SHORT.' non può continuare.',
|
||||
'UI:Error_Details' => 'Errore: %1$s.',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop gestione degli utenti - proiezioni profilo',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' gestione degli utenti - proiezioni profilo',
|
||||
'UI:UserManagement:Class' => 'Classe',
|
||||
'UI:UserManagement:Class+' => '',
|
||||
'UI:UserManagement:ProjectedObject' => 'Oggetto',
|
||||
@@ -967,8 +967,8 @@ Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:NotificationsMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'UI:NotificationsMenu:Title' => 'Configurazione delle Notifiche',
|
||||
'UI:NotificationsMenu:Help' => 'Aiuto',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>In iTop le notifiche sono completamente personalizzabili. Essi si basano su due serie di oggetti: <i>trigger e azioni</i>.</p>
|
||||
<p><i>I <b>trigger</b></i> definiscono quando verrà eseguita una notifica. Ci sono diversi trigger come parte del nucleo di iTop, ma altri possono essere portati da estensioni:
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>In '.ITOP_APPLICATION_SHORT.' le notifiche sono completamente personalizzabili. Essi si basano su due serie di oggetti: <i>trigger e azioni</i>.</p>
|
||||
<p><i>I <b>trigger</b></i> definiscono quando verrà eseguita una notifica. Ci sono diversi trigger come parte del nucleo di '.ITOP_APPLICATION_SHORT.', ma altri possono essere portati da estensioni:
|
||||
<ol>
|
||||
<li>Alcuni trigger sono eseguiti quando un oggetto della classe specificata viene <b>creato</b>, <b>aggiornato</b> o <b>cancellato</b>.</li>
|
||||
<li>Alcuni trigger sono eseguiti quando un oggetto di una data classe <b>entra</b> o <b>lascia</b> uno <b>stato specificato</b>.</li>
|
||||
@@ -1078,8 +1078,8 @@ Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine"
|
||||
'UI:RelationTooltip:Redundancy' => 'Redundancy~~',
|
||||
'UI:RelationTooltip:ImpactedItems_N_of_M' => '# of impacted items: %1$d / %2$d~~',
|
||||
'UI:RelationTooltip:CriticalThreshold_N_of_M' => 'Critical threshold: %1$d / %2$d~~',
|
||||
'Portal:Title' => 'Portale Utente iTop',
|
||||
'Portal:NoRequestMgmt' => 'Dear %1$s, you have been redirected to this page because your account is configured with the profile \'Portal user\'. Unfortunately, iTop has not been installed with the feature \'Request Management\'. Please contact your administrator.~~',
|
||||
'Portal:Title' => 'Portale Utente '.ITOP_APPLICATION_SHORT,
|
||||
'Portal:NoRequestMgmt' => 'Dear %1$s, you have been redirected to this page because your account is configured with the profile \'Portal user\'. Unfortunately, '.ITOP_APPLICATION_SHORT.' has not been installed with the feature \'Request Management\'. Please contact your administrator.~~',
|
||||
'Portal:Refresh' => 'Ricarica',
|
||||
'Portal:Back' => 'Indietro',
|
||||
'Portal:WelcomeUserOrg' => 'Welcome %1$s, from %2$s',
|
||||
@@ -1411,8 +1411,8 @@ Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine"
|
||||
'UI:AddAnExisting_Class' => 'Add objects of type %1$s...~~',
|
||||
'UI:SelectionOf_Class' => 'Selection of objects of type %1$s~~',
|
||||
|
||||
'UI:AboutBox' => 'About iTop...~~',
|
||||
'UI:About:Title' => 'About iTop~~',
|
||||
'UI:AboutBox' => 'About '.ITOP_APPLICATION_SHORT.'...~~',
|
||||
'UI:About:Title' => 'About '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'UI:About:DataModel' => 'Data model~~',
|
||||
'UI:About:Support' => 'Support information~~',
|
||||
'UI:About:Licenses' => 'Licenses~~',
|
||||
@@ -1437,7 +1437,7 @@ Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine"
|
||||
'ExcelExport:PreparingExport' => 'Preparing the export...~~',
|
||||
'ExcelExport:Statistics' => 'Statistics~~',
|
||||
'portal:legacy_portal' => 'End-User Portal~~',
|
||||
'portal:backoffice' => 'iTop Back-Office User Interface~~',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Back-Office User Interface~~',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'The object is locked since it is currently being modified by %1$s.~~',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'The object is currently being modified by %1$s. Your modifications cannot be submitted since they would be overwritten.~~',
|
||||
|
||||
@@ -115,7 +115,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
|
||||
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
|
||||
'Class:UserInternal' => 'User Internal~~',
|
||||
'Class:UserInternal+' => 'User defined within iTop~~',
|
||||
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT.'~~',
|
||||
));
|
||||
|
||||
//
|
||||
@@ -320,7 +320,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'BooleanLabel:yes' => 'はい',
|
||||
'BooleanLabel:no' => 'いいえ',
|
||||
'UI:Login:Title' => 'iTop login~~',
|
||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||
'Menu:WelcomeMenu' => 'ようこそ', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenu+' => 'ようこそ、iTopへ', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
'Menu:WelcomeMenuPage' => 'ようこそ', // Duplicated into itop-welcome-itil (will be removed from here...)
|
||||
@@ -514,7 +514,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:Login:PasswordPrompt' => 'パスワード',
|
||||
'UI:Login:ForgotPwd' => 'Forgot your password?~~',
|
||||
'UI:Login:ForgotPwdForm' => 'Forgot your password~~',
|
||||
'UI:Login:ForgotPwdForm+' => 'iTop can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ForgotPwdForm+' => ITOP_APPLICATION_SHORT.' can send you an email in which you will find instructions to follow to reset your account.~~',
|
||||
'UI:Login:ResetPassword' => 'Send now!~~',
|
||||
'UI:Login:ResetPwdFailed' => 'Failed to send an email: %1$s~~',
|
||||
'UI:Login:SeparatorOr' => 'Or~~',
|
||||
@@ -566,7 +566,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:CSVImport:DataLine1' => 'データ行 1',
|
||||
'UI:CSVImport:DataLine2' => 'データ行 2',
|
||||
'UI:CSVImport:idField' => 'ID (主キー)',
|
||||
'UI:Title:BulkImport' => 'iTop - バルクインポート',
|
||||
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - バルクインポート',
|
||||
'UI:Title:BulkImport+' => 'CSV インポートウィザード',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => '%2$s クラスの %1$d オブジェクトを同期',
|
||||
'UI:CSVImport:ClassesSelectOne' => '--選択してください --',
|
||||
@@ -615,7 +615,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:CSVImport:AlertMultipleMapping' => 'Please make sure that a target field is mapped only once.~~',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => '少なくとも1つ以上の検索条件を選択してください。',
|
||||
'UI:CSVImport:Encoding' => '文字エンコーディング',
|
||||
'UI:UniversalSearchTitle' => 'iTop - ユニバーサル検索',
|
||||
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - ユニバーサル検索',
|
||||
'UI:UniversalSearch:Error' => 'エラー:%1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => '検索するクラスを選択してください。',
|
||||
|
||||
@@ -665,7 +665,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:CSVExport:LostChars' => 'エンコーディングの課題',
|
||||
'UI:CSVExport:LostChars+' => 'ダウンロードファイルは %1$s でエンコードされます. iTop はこのフォーマットと整合性のない文字を検出しました。 これらの文字は代りの文字になります。(たとえばアクセント付き文字からはアクセント記号が無くなります。または、削除されます。 Webブラウザからコピー/ペーストが出来ます。 あるいは、システム管理者にエンコードの変更を問い合わせください。 (See parameter \'csv_file_default_charset\').',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB 監査',
|
||||
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB 監査',
|
||||
'UI:Audit:InteractiveAudit' => '対話型監査',
|
||||
'UI:Audit:HeaderAuditRule' => '監査ルール',
|
||||
'UI:Audit:HeaderNbObjects' => 'オブジェクト数',
|
||||
@@ -684,7 +684,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%%~~',
|
||||
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - OQLクエリ評価',
|
||||
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - OQLクエリ評価',
|
||||
'UI:RunQuery:QueryExamples' => 'クエリの例',
|
||||
'UI:RunQuery:QueryResults' => 'Query Results~~',
|
||||
'UI:RunQuery:HeaderPurpose' => '目的',
|
||||
@@ -702,7 +702,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:RunQuery:Error' => 'An error occured while running the query~~',
|
||||
'UI:Query:UrlForExcel' => 'MS-Excel Webクエリに使用するURL',
|
||||
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested herebelow points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of iTop. Should you want to garantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
|
||||
'UI:Schema:Title' => 'iTop オブジェクトスキーマ',
|
||||
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' オブジェクトスキーマ',
|
||||
'UI:Schema:CategoryMenuItem' => 'カテゴリ <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => '関係',
|
||||
'UI:Schema:AbstractClass' => '抽象クラス:このクラスのインスタンスを作成することはできません。',
|
||||
@@ -819,8 +819,8 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:Delect:Confirm_Object' => '%1$sを削除しようとしています。確認ください。',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => '以下の%2$sクラスの%1$dオブジェクトを削除しようとしています。確認ください。',
|
||||
'UI:WelcomeToITop' => 'iTopへようこそ',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$sの詳細',
|
||||
'UI:ErrorPageTitle' => 'iTop - エラー',
|
||||
'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$sの詳細',
|
||||
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - エラー',
|
||||
'UI:ObjectDoesNotExist' => '申し訳ございません。このオブジェクトは既に存在しません。(あるいは参照する権限がありません。)',
|
||||
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
|
||||
'Tag:Archived' => 'Archived~~',
|
||||
@@ -830,7 +830,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'Tag:Synchronized' => 'Synchronized~~',
|
||||
'ObjectRef:Archived' => 'Archived~~',
|
||||
'ObjectRef:Obsolete' => 'Obsolete~~',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - 検索結果',
|
||||
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - 検索結果',
|
||||
'UI:SearchResultsTitle' => '検索結果',
|
||||
'UI:SearchResultsTitle+' => 'Full-text search results~~',
|
||||
'UI:Search:NoSearch' => '検索するものがありません。',
|
||||
@@ -840,27 +840,27 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:FullTextSearchTitle_Text' => '"%1$s"の結果:',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => '%2$sクラスの%1$dオブジェクトが見つかりました。',
|
||||
'UI:Search:NoObjectFound' => 'オブジェクトが見つかりませんでした。',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s 修正',
|
||||
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s 修正',
|
||||
'UI:ModificationTitle_Class_Object' => '%1$sの修正: <span class=\\"hilite\\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - クローン%1$s - %2$s 修正',
|
||||
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - クローン%1$s - %2$s 修正',
|
||||
'UI:CloneTitle_Class_Object' => '%1$sのクローン:<span class=\\"hilite">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - 新規%1$sを作成',
|
||||
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - 新規%1$sを作成',
|
||||
'UI:CreationTitle_Class' => '新規%1$sの作成',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => '作成する%1$sのタイプを選択:',
|
||||
'UI:Class_Object_NotUpdated' => '変更は検出されませんでした。%1$s(%2$s)は修正されて<strong>いません</strong>',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) は更新されました。',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - バルク削除',
|
||||
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - バルク削除',
|
||||
'UI:BulkDeleteTitle' => '削除するオブジェクトを選択してください。',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTopオブジェクトが作成されました。',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s が作成されました。',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => '状態%3$sにあるオブジェクト:%2$sに、ターゲット状態:%4$sで、%1$sを適用します。',
|
||||
'UI:ObjectCouldNotBeWritten' => 'そのオブジェクトへは書き込みできません: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - 致命的なエラー',
|
||||
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - 致命的なエラー',
|
||||
'UI:SystemIntrusion' => 'アクセスが拒否されました。あなたが許可されていない操作を実行しようとしています。',
|
||||
'UI:FatalErrorMessage' => '致命的なエラー、ITOPを続行することはできません。',
|
||||
'UI:Error_Details' => 'エラー:%1$s',
|
||||
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop ユーザ管理 - プロフィールプロジェクション',
|
||||
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' ユーザ管理 - プロフィールプロジェクション',
|
||||
'UI:UserManagement:Class' => 'クラス',
|
||||
'UI:UserManagement:Class+' => 'オブジェクトのクラス',
|
||||
'UI:UserManagement:ProjectedObject' => 'オブジェクト',
|
||||
@@ -1400,7 +1400,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'UI:SelectionOf_Class' => 'Selection of objects of type %1$s~~',
|
||||
|
||||
'UI:AboutBox' => 'About iTop...~~',
|
||||
'UI:About:Title' => 'About iTop~~',
|
||||
'UI:About:Title' => 'About '.ITOP_APPLICATION_SHORT.'~~',
|
||||
'UI:About:DataModel' => 'Data model~~',
|
||||
'UI:About:Support' => 'Support information~~',
|
||||
'UI:About:Licenses' => 'Licenses~~',
|
||||
@@ -1425,7 +1425,7 @@ Dict::Add('JA JP', 'Japanese', '日本語', array(
|
||||
'ExcelExport:PreparingExport' => 'Preparing the export...~~',
|
||||
'ExcelExport:Statistics' => 'Statistics~~',
|
||||
'portal:legacy_portal' => 'End-User Portal~~',
|
||||
'portal:backoffice' => 'iTop Back-Office User Interface~~',
|
||||
'portal:backoffice' => ITOP_APPLICATION_SHORT.' Back-Office User Interface~~',
|
||||
|
||||
'UI:CurrentObjectIsLockedBy_User' => 'The object is locked since it is currently being modified by %1$s.~~',
|
||||
'UI:CurrentObjectIsLockedBy_User_Explanation' => 'The object is currently being modified by %1$s. Your modifications cannot be submitted since they would be overwritten.~~',
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user