From 530ec111ef4b2f2bfed893efc84b68a821289b97 Mon Sep 17 00:00:00 2001 From: Molkobain Date: Mon, 12 Apr 2021 10:15:08 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B03921=20-=20Attribute=20file:=20Simplify?= =?UTF-8?q?=20open=20and=20download=20links=20text=20in=20the=20backoffice?= =?UTF-8?q?=20(similar=20to=20the=20portal)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/cmdbabstract.class.inc.php | 18 +++++++++++++----- core/cmdbchangeop.class.inc.php | 16 ++++++++++++---- dictionaries/cs.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/da.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/de.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/en.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/es_cr.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/fr.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/hu.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/it.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/ja.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/nl.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/pl.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/pt_br.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/ru.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/sk.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/tr.dictionary.itop.ui.php | 16 ++++++++++------ dictionaries/zh_cn.dictionary.itop.ui.php | 16 ++++++++++------ 18 files changed, 185 insertions(+), 105 deletions(-) diff --git a/application/cmdbabstract.class.inc.php b/application/cmdbabstract.class.inc.php index dcb76aa32..6a112386b 100644 --- a/application/cmdbabstract.class.inc.php +++ b/application/cmdbabstract.class.inc.php @@ -3228,13 +3228,21 @@ HTML; // Then prepare the value // - The field is visible in the current state of the object if ($oAttDef->GetEditClass() == 'Document') { + /** @var \ormDocument $oDocument */ $oDocument = $this->Get($sAttCode); if (!$oDocument->IsEmpty()) { - $sDisplayValue = $this->GetAsHTML($sAttCode); - $sDisplayValue .= "
".Dict::Format('UI:OpenDocumentInNewWindow_', - $oDocument->GetDisplayLink(get_class($this), $this->GetKey(), $sAttCode)).", \n"; - $sDisplayValue .= "
".Dict::Format('UI:DownloadDocument_', - $oDocument->GetDownloadLink(get_class($this), $this->GetKey(), $sAttCode)).", \n"; + $sFieldAsHtml = $this->GetAsHTML($sAttCode); + + $sDisplayLabel = Dict::S('UI:OpenDocumentInNewWindow_'); + $sDisplayUrl = $oDocument->GetDisplayURL(get_class($this), $this->GetKey(), $sAttCode); + + $sDownloadLabel = Dict::Format('UI:DownloadDocument_'); + $sDownloadUrl = $oDocument->GetDownloadURL(get_class($this), $this->GetKey(), $sAttCode); + + $sDisplayValue = << +{$sDisplayLabel} / {$sDownloadLabel} +HTML; } else { $sDisplayValue = ''; } diff --git a/core/cmdbchangeop.class.inc.php b/core/cmdbchangeop.class.inc.php index ba147dcbe..d9021c061 100644 --- a/core/cmdbchangeop.class.inc.php +++ b/core/cmdbchangeop.class.inc.php @@ -454,10 +454,18 @@ class CMDBChangeOpSetAttributeBlob extends CMDBChangeOpSetAttribute } else { - $sDocView = $oPrevDoc->GetAsHtml(); - $sDocView .= "
".Dict::Format('UI:OpenDocumentInNewWindow_', $oPrevDoc->GetDisplayLink(get_class($this), $this->GetKey(), 'prevdata')).", \n"; - $sDocView .= Dict::Format('UI:DownloadDocument_', $oPrevDoc->GetDownloadLink(get_class($this), $this->GetKey(), 'prevdata'))."\n"; - //$sDocView = $oPrevDoc->GetDisplayInline(get_class($this), $this->GetKey(), 'prevdata'); + $sFieldAsHtml = $oPrevDoc->GetAsHTML(); + + $sDisplayLabel = Dict::S('UI:OpenDocumentInNewWindow_'); + $sDisplayUrl = $oPrevDoc->GetDisplayURL(get_class($this), $this->GetKey(), 'prevdata'); + + $sDownloadLabel = Dict::Format('UI:DownloadDocument_'); + $sDownloadUrl = $oPrevDoc->GetDownloadURL(get_class($this), $this->GetKey(), 'prevdata'); + + $sDocView = << +{$sDisplayLabel} / {$sDownloadLabel} +HTML; $sResult = Dict::Format('Change:AttName_Changed_PreviousValue_OldValue', $sAttName, $sDocView); } } diff --git a/dictionaries/cs.dictionary.itop.ui.php b/dictionaries/cs.dictionary.itop.ui.php index 76cc9d156..5319cb7cc 100755 --- a/dictionaries/cs.dictionary.itop.ui.php +++ b/dictionaries/cs.dictionary.itop.ui.php @@ -1034,18 +1034,22 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array( 'Menu:ProfilesMenu' => 'Profily (Role)', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profily (Role)', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profily (Role)', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profily (Role)', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Uživatelské účty', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Uživatelské účty', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Uživatelské účty', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Uživatelské účty', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Uživatelské účty', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Uživatelské účty', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s verze %2$s', 'UI:iTopVersion:Long' => '%1$s verze %2$s-%3$s ze dne %4$s', 'UI:PropertiesTab' => 'Vlastnosti', - 'UI:OpenDocumentInNewWindow_' => 'Otevřít tento dokument v novém okně: %1$s', - 'UI:DownloadDocument_' => 'Stáhnout tento dokument: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Otevřít~~', + 'UI:DownloadDocument_' => 'Stáhnout~~', 'UI:Document:NoPreview' => 'Pro tento typ dokumentu není k dispozici žádný náhled', 'UI:Download-CSV' => 'Stáhnout %1$s', diff --git a/dictionaries/da.dictionary.itop.ui.php b/dictionaries/da.dictionary.itop.ui.php index e49829f20..68906f75e 100644 --- a/dictionaries/da.dictionary.itop.ui.php +++ b/dictionaries/da.dictionary.itop.ui.php @@ -1023,18 +1023,22 @@ Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge" 'Menu:ProfilesMenu' => 'Profiler', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profiles~~', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profiler', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profiler', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Bruger konti', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'User Accounts~~', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Bruger konti', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Bruger konti', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'User Accounts~~', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Bruger konti', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s version %2$s', 'UI:iTopVersion:Long' => '%1$s version %2$s-%3$s built on %4$s', 'UI:PropertiesTab' => 'Egenskaber', - 'UI:OpenDocumentInNewWindow_' => 'Åbn dette dokument i et nyt vindue: %1$s', - 'UI:DownloadDocument_' => 'Hent dette dokument: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Åben~~', + 'UI:DownloadDocument_' => 'Hent~~', 'UI:Document:NoPreview' => 'Forhåndsvisning er ikke tilgængelig for denne dokumenttype', 'UI:Download-CSV' => 'Download %1$s', diff --git a/dictionaries/de.dictionary.itop.ui.php b/dictionaries/de.dictionary.itop.ui.php index 5cce42041..77d8a1040 100644 --- a/dictionaries/de.dictionary.itop.ui.php +++ b/dictionaries/de.dictionary.itop.ui.php @@ -1021,18 +1021,22 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm 'Menu:ProfilesMenu' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profile', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Benutzerkonten', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Benutzerkonten', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Benutzerkonten', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Benutzerkonten', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Benutzerkonten', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Benutzerkonten', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s Version %2$s', 'UI:iTopVersion:Long' => '%1$s Version %2$s-%3$s compiliert am %4$s', 'UI:PropertiesTab' => 'Eigenschaften', - 'UI:OpenDocumentInNewWindow_' => 'Dieses Dokument in einem neuen Fenster öffnen: %1$s', - 'UI:DownloadDocument_' => 'Dieses Dokument herunterladen: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Öffnen~~', + 'UI:DownloadDocument_' => 'Herunterladen~~', 'UI:Document:NoPreview' => 'Für diesen Typ Dokument ist keine Vorschau vorhanden', 'UI:Download-CSV' => '%1$s herunterladen', diff --git a/dictionaries/en.dictionary.itop.ui.php b/dictionaries/en.dictionary.itop.ui.php index 5d00d4c9c..407e106cc 100644 --- a/dictionaries/en.dictionary.itop.ui.php +++ b/dictionaries/en.dictionary.itop.ui.php @@ -1029,18 +1029,22 @@ When associated with a trigger, each action is given an "order" number, specifyi 'Menu:ProfilesMenu' => 'Profiles', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profiles', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profiles', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profiles', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'User Accounts', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'User Accounts', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'User Accounts', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'User Accounts', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'User Accounts', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'User Accounts', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s version %2$s', 'UI:iTopVersion:Long' => '%1$s version %2$s-%3$s built on %4$s', 'UI:PropertiesTab' => 'Properties', - 'UI:OpenDocumentInNewWindow_' => 'Open this document in a new window: %1$s', - 'UI:DownloadDocument_' => 'Download this document: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Open', + 'UI:DownloadDocument_' => 'Download', 'UI:Document:NoPreview' => 'No preview is available for this type of document', 'UI:Download-CSV' => 'Download %1$s', diff --git a/dictionaries/es_cr.dictionary.itop.ui.php b/dictionaries/es_cr.dictionary.itop.ui.php index 2642e41c7..2b6db0b6f 100644 --- a/dictionaries/es_cr.dictionary.itop.ui.php +++ b/dictionaries/es_cr.dictionary.itop.ui.php @@ -1036,18 +1036,22 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden", 'Menu:ProfilesMenu' => 'Perfiles', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Perfiles', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Perfiles', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Perfiles', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Cuentas de Usuario', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Cuentas de Usuario', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Cuentas de Usuario', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Cuentas de Usuario', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Cuentas de Usuario', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Cuentas de Usuario', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s versión %2$s', 'UI:iTopVersion:Long' => '%1$s versión %2$s-%3$s compilada en %4$s', 'UI:PropertiesTab' => 'Propiedades', - 'UI:OpenDocumentInNewWindow_' => 'Abra este documento en una ventana nueva: %1$s', - 'UI:DownloadDocument_' => 'Descargue este documento: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Abrir~~', + 'UI:DownloadDocument_' => 'Descargar~~', 'UI:Document:NoPreview' => 'No hay prevista disponible para este tipo de archivo', 'UI:Download-CSV' => 'Descargar %1$s', diff --git a/dictionaries/fr.dictionary.itop.ui.php b/dictionaries/fr.dictionary.itop.ui.php index 4ca93674d..013ba683d 100644 --- a/dictionaries/fr.dictionary.itop.ui.php +++ b/dictionaries/fr.dictionary.itop.ui.php @@ -1027,18 +1027,22 @@ Lors de l\'association à un déclencheur, on attribue à chaque action un numé 'Menu:ProfilesMenu' => 'Profils', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profils', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profils', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profils', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Comptes Utilisateurs', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Comptes Utilisateurs', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Comptes Utilisateurs', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Comptes Utilisateurs', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Comptes Utilisateurs', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Comptes Utilisateurs', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s version %2$s', 'UI:iTopVersion:Long' => '%1$s version %2$s-%3$s du %4$s', 'UI:PropertiesTab' => 'Propriétés', - 'UI:OpenDocumentInNewWindow_' => 'Ouvrir ce document dans une autre fenêtre: %1$s', - 'UI:DownloadDocument_' => 'Télécharger ce document: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Ouvrir', + 'UI:DownloadDocument_' => 'Télécharger', 'UI:Document:NoPreview' => 'L\'aperçu n\'est pas disponible pour ce type de documents', 'UI:Download-CSV' => 'Télécharger %1$s', diff --git a/dictionaries/hu.dictionary.itop.ui.php b/dictionaries/hu.dictionary.itop.ui.php index e7001c879..480194568 100755 --- a/dictionaries/hu.dictionary.itop.ui.php +++ b/dictionaries/hu.dictionary.itop.ui.php @@ -1020,18 +1020,22 @@ Akció kiváltó okhoz rendelésekor kap egy sorszámot , amely meghatározza az 'Menu:ProfilesMenu' => 'Profilok', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profilok', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profilok', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Felhasználói fiókok', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Felhasználói fiókok', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Felhasználói fiókok', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => '', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Felhasználói fiókok', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s verzió: %2$s', 'UI:iTopVersion:Long' => '%1$s verzió: %2$s-%3$s %4$s', 'UI:PropertiesTab' => 'Tulajdonságok', - 'UI:OpenDocumentInNewWindow_' => 'A követekező dokumentum megnyitása új ablakban: %1$s', - 'UI:DownloadDocument_' => 'A következő dokuemntum letöltése: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Megnyitásához~~', + 'UI:DownloadDocument_' => 'Letöltés~~', 'UI:Document:NoPreview' => 'Nem elérhető előnézet ehhez a dokuemntumhoz', 'UI:Download-CSV' => 'Download %1$s~~', diff --git a/dictionaries/it.dictionary.itop.ui.php b/dictionaries/it.dictionary.itop.ui.php index 2eef2dee4..1f571dfa2 100644 --- a/dictionaries/it.dictionary.itop.ui.php +++ b/dictionaries/it.dictionary.itop.ui.php @@ -1035,18 +1035,22 @@ Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine" 'Menu:ProfilesMenu' => 'Profili', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profili', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profili', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Account utente', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Account utente', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Account utente', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => '', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Account utente', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => 'Versione %1$s %2$s', 'UI:iTopVersion:Long' => 'Versione %1$s %2$s-%3$s costruita il %4$s', 'UI:PropertiesTab' => 'Proprietà', - 'UI:OpenDocumentInNewWindow_' => 'Apri questo documento in una nuova finestra: %1$s', - 'UI:DownloadDocument_' => 'Scarica questo documento: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Aprire~~', + 'UI:DownloadDocument_' => 'Scaricare~~', 'UI:Document:NoPreview' => 'Non è disponibile un\'anteprima per questo tipo di documento', 'UI:Download-CSV' => 'Download %1$s~~', diff --git a/dictionaries/ja.dictionary.itop.ui.php b/dictionaries/ja.dictionary.itop.ui.php index 54f5a2b8c..5d47dc468 100644 --- a/dictionaries/ja.dictionary.itop.ui.php +++ b/dictionaries/ja.dictionary.itop.ui.php @@ -1021,18 +1021,22 @@ Dict::Add('JA JP', 'Japanese', '日本語', array( 'Menu:ProfilesMenu' => 'プロフィール', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'プロフィール', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'プロフィール', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'プロフィール', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'ユーザアカウント', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'ユーザアカウント', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'ユーザアカウント', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'ユーザアカウント', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'ユーザアカウント', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'ユーザアカウント', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$sバージョン%2$s', 'UI:iTopVersion:Long' => '%1$sバージョン%2$s-%3$s ビルド%4$s', 'UI:PropertiesTab' => 'プロパティ', - 'UI:OpenDocumentInNewWindow_' => '新規ウィンドウでこ文章を開く: %1$s', - 'UI:DownloadDocument_' => 'この文書をダウンロードする: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Open~~', + 'UI:DownloadDocument_' => 'Download~~', 'UI:Document:NoPreview' => 'このタイプの文書はプレビューできません。', 'UI:Download-CSV' => 'ダウンロード-CSV %1$s', diff --git a/dictionaries/nl.dictionary.itop.ui.php b/dictionaries/nl.dictionary.itop.ui.php index b1f2273d3..331686b15 100644 --- a/dictionaries/nl.dictionary.itop.ui.php +++ b/dictionaries/nl.dictionary.itop.ui.php @@ -1020,18 +1020,22 @@ Bij die koppeling wordt aan elke actie een volgorde-nummer gegeven. Dit bepaalt 'Menu:ProfilesMenu' => 'Profielen', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profielen', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profielen', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profielen', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Gebruikersaccounts', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Gebruikersaccounts', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Gebruikersaccounts', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Gebruikersaccounts', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Gebruikersaccounts', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Gebruikersaccounts', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s versie %2$s', 'UI:iTopVersion:Long' => '%1$s versie %2$s-%3$s uitgegeven op %4$s', 'UI:PropertiesTab' => 'Eigenschappen', - 'UI:OpenDocumentInNewWindow_' => 'Open dit document in een nieuw venster: %1$s', - 'UI:DownloadDocument_' => 'Download dit document: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Open~~', + 'UI:DownloadDocument_' => 'Download~~', 'UI:Document:NoPreview' => 'Er is geen voorbeeld beschikbaar voor dit soort document', 'UI:Download-CSV' => 'Download %1$s', diff --git a/dictionaries/pl.dictionary.itop.ui.php b/dictionaries/pl.dictionary.itop.ui.php index 9e06ae225..226c3babf 100644 --- a/dictionaries/pl.dictionary.itop.ui.php +++ b/dictionaries/pl.dictionary.itop.ui.php @@ -1018,18 +1018,22 @@ W przypadku powiązania z wyzwalaczem, każde działanie otrzymuje numer "porzą 'Menu:ProfilesMenu' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profile', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profile', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Konta użytkowników', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Konta użytkowników', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Konta użytkowników', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Konta użytkowników', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Konta użytkowników', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Konta użytkowników', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s wersja %2$s', 'UI:iTopVersion:Long' => '%1$s wersja %2$s-%3$s zbudowana na %4$s', 'UI:PropertiesTab' => 'Właściwości', - 'UI:OpenDocumentInNewWindow_' => 'Otwórz dokument w nowym oknie: %1$s', - 'UI:DownloadDocument_' => 'Pobierz dokument: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Otwórz~~', + 'UI:DownloadDocument_' => 'Pobierz~~', 'UI:Document:NoPreview' => 'Brak podglądu tego typu dokumentu', 'UI:Download-CSV' => 'Pobierz %1$s', diff --git a/dictionaries/pt_br.dictionary.itop.ui.php b/dictionaries/pt_br.dictionary.itop.ui.php index 6649ac1cd..9ad830789 100644 --- a/dictionaries/pt_br.dictionary.itop.ui.php +++ b/dictionaries/pt_br.dictionary.itop.ui.php @@ -1034,18 +1034,22 @@ When associated with a trigger, each action is given an "order" number, specifyi 'Menu:ProfilesMenu' => 'Perfis', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Perfis', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Perfis', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Perfis', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Contas usuários', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Contas usuários', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Contas usuários', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Contas usuários', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Contas usuários', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Contas usuários', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s versão %2$s', 'UI:iTopVersion:Long' => '%1$s versão %2$s-%3$s construído %4$s', 'UI:PropertiesTab' => 'Propriedades', - 'UI:OpenDocumentInNewWindow_' => 'Abrir este documento em uma nova janela: %1$s', - 'UI:DownloadDocument_' => 'Baixar este documento: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Abrir~~', + 'UI:DownloadDocument_' => 'Baixar~~', 'UI:Document:NoPreview' => 'Nenhuma visualização está disponível para este documento', 'UI:Download-CSV' => 'Download %1$s', diff --git a/dictionaries/ru.dictionary.itop.ui.php b/dictionaries/ru.dictionary.itop.ui.php index 35a211970..0570469eb 100644 --- a/dictionaries/ru.dictionary.itop.ui.php +++ b/dictionaries/ru.dictionary.itop.ui.php @@ -1012,18 +1012,22 @@ Dict::Add('RU RU', 'Russian', 'Русский', array( 'Menu:ProfilesMenu' => 'Профили', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Профили пользователей', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Профили пользователей', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Профили пользователей', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Учетные записи', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Учетные записи пользователей', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Учетные записи пользователей', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Учетные записи', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Учетные записи пользователей', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Учетные записи пользователей', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s версия %2$s', 'UI:iTopVersion:Long' => '%1$s версия %2$s-%3$s основан на %4$s', 'UI:PropertiesTab' => 'Свойства', - 'UI:OpenDocumentInNewWindow_' => 'Открыть этот документ в новом окне: %1$s', - 'UI:DownloadDocument_' => 'Скачать этот документ: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Открыть~~', + 'UI:DownloadDocument_' => 'Скачать~~', 'UI:Document:NoPreview' => 'Предварительный просмотр недоступен для документов данного типа', 'UI:Download-CSV' => 'Загрузка %1$s~~', diff --git a/dictionaries/sk.dictionary.itop.ui.php b/dictionaries/sk.dictionary.itop.ui.php index 62e2cb2ec..7884055e6 100644 --- a/dictionaries/sk.dictionary.itop.ui.php +++ b/dictionaries/sk.dictionary.itop.ui.php @@ -1023,18 +1023,22 @@ Keď sú priradené spúštačom, každej akcii je dané číslo "príkazu", šp 'Menu:ProfilesMenu' => 'Profily', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profily', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profily', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Užívateľské účty', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => '', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Užívateľské účty', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Užívateľské účty', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => '', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Užívateľské účty', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => 'iTop verzia %1$s', 'UI:iTopVersion:Long' => 'iTop verzia %1$s-%2$s postavená na %3$s', 'UI:PropertiesTab' => 'Vlastnosti', - 'UI:OpenDocumentInNewWindow_' => 'Otvoriť tento dokument v novom okne: %1$s', - 'UI:DownloadDocument_' => 'Stiahnuť tento dokument: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Otvoriť~~', + 'UI:DownloadDocument_' => 'Stiahnuť~~', 'UI:Document:NoPreview' => 'Žiadny náhľad nie je dostupný pre tento typ dokumentu', 'UI:Download-CSV' => 'Stiahnuť %1$s', diff --git a/dictionaries/tr.dictionary.itop.ui.php b/dictionaries/tr.dictionary.itop.ui.php index 6442d61e4..2a0524dbc 100644 --- a/dictionaries/tr.dictionary.itop.ui.php +++ b/dictionaries/tr.dictionary.itop.ui.php @@ -1035,18 +1035,22 @@ Tetikleme gerçekleştiriğinde işlemler tanımlanan sıra numarası ile gerçe 'Menu:ProfilesMenu' => 'Profiller', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => 'Profiller', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => 'Profiller', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => 'Profiller', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => 'Kullanıcı Hesapları', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => 'Kullanıcı Hesapları', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => 'Kullanıcı Hesapları', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => 'Kullanıcı Hesapları', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => 'Kullanıcı Hesapları', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => 'Kullanıcı Hesapları', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s versiyonu %2$s', 'UI:iTopVersion:Long' => '%1$s %4$s tarihli versiyonu %2$s-%3$s', 'UI:PropertiesTab' => 'Özellikler', - 'UI:OpenDocumentInNewWindow_' => 'Dokümanı yeni pencerede aç: %1$s', - 'UI:DownloadDocument_' => 'Dokümanı indir: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Açmak~~', + 'UI:DownloadDocument_' => 'Indirmek~~', 'UI:Document:NoPreview' => 'Bu tip doküman için öngösterim mevcut değil', 'UI:Download-CSV' => 'Download %1$s~~', diff --git a/dictionaries/zh_cn.dictionary.itop.ui.php b/dictionaries/zh_cn.dictionary.itop.ui.php index d9ed1cbf8..d5fe5e5db 100644 --- a/dictionaries/zh_cn.dictionary.itop.ui.php +++ b/dictionaries/zh_cn.dictionary.itop.ui.php @@ -1034,18 +1034,22 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array( 'Menu:ProfilesMenu' => '角色', // Duplicated into itop-welcome-itil (will be removed from here...) 'Menu:ProfilesMenu+' => '角色', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:ProfilesMenu:Title' => '角色', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:ProfilesMenu:Title' => '角色', + // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu' => '用户帐户', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu+' => '用户帐户', // Duplicated into itop-welcome-itil (will be removed from here...) - 'Menu:UserAccountsMenu:Title' => '用户帐户', // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu' => '用户帐户', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu+' => '用户帐户', + // Duplicated into itop-welcome-itil (will be removed from here...) + 'Menu:UserAccountsMenu:Title' => '用户帐户', + // Duplicated into itop-welcome-itil (will be removed from here...) 'UI:iTopVersion:Short' => '%1$s version %2$s', 'UI:iTopVersion:Long' => '%1$s version %2$s-%3$s built on %4$s', 'UI:PropertiesTab' => '属性', - 'UI:OpenDocumentInNewWindow_' => '在新窗口打开文档: %1$s', - 'UI:DownloadDocument_' => '下载该文档: %1$s', + 'UI:OpenDocumentInNewWindow_' => 'Open~~', + 'UI:DownloadDocument_' => 'Download~~', 'UI:Document:NoPreview' => '该类文档无法预览', 'UI:Download-CSV' => '下载 %1$s',