mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
N°3921 - Attribute file: Simplify open and download links text in the backoffice (similar to the portal)
This commit is contained in:
@@ -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 .= "<br/>".Dict::Format('UI:OpenDocumentInNewWindow_',
|
||||
$oDocument->GetDisplayLink(get_class($this), $this->GetKey(), $sAttCode)).", \n";
|
||||
$sDisplayValue .= "<br/>".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 = <<<HTML
|
||||
{$sFieldAsHtml}<br>
|
||||
<a href="{$sDisplayUrl}" target="_blank">{$sDisplayLabel}</a> / <a href="{$sDownloadUrl}">{$sDownloadLabel}</a>
|
||||
HTML;
|
||||
} else {
|
||||
$sDisplayValue = '';
|
||||
}
|
||||
|
||||
@@ -454,10 +454,18 @@ class CMDBChangeOpSetAttributeBlob extends CMDBChangeOpSetAttribute
|
||||
}
|
||||
else
|
||||
{
|
||||
$sDocView = $oPrevDoc->GetAsHtml();
|
||||
$sDocView .= "<br/>".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 = <<<HTML
|
||||
{$sFieldAsHtml}<br>
|
||||
<a href="{$sDisplayUrl}" target="_blank">{$sDisplayLabel}</a> / <a href="{$sDownloadUrl}">{$sDownloadLabel}</a>
|
||||
HTML;
|
||||
$sResult = Dict::Format('Change:AttName_Changed_PreviousValue_OldValue', $sAttName, $sDocView);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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~~',
|
||||
|
||||
|
||||
@@ -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~~',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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~~',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
@@ -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~~',
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
|
||||
Reference in New Issue
Block a user