mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
Compare commits
7 Commits
3.2.1
...
feature/13
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e76db8c93 | ||
|
|
49cf6f5fe2 | ||
|
|
b852e72088 | ||
|
|
9ebcbf2459 | ||
|
|
1df7c3d8f3 | ||
|
|
f4545615cb | ||
|
|
d4e64bc479 |
@@ -1102,43 +1102,42 @@ abstract class DBObject implements iDisplay
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @api
|
* @api
|
||||||
*
|
*
|
||||||
|
* @see \Combodo\iTop\Form\Field\Field for rendering in portal forms
|
||||||
|
*
|
||||||
|
* @param bool $bLocalize
|
||||||
|
* @param bool $bInBasket since3.1.1
|
||||||
|
*
|
||||||
* @param string $sAttCode
|
* @param string $sAttCode
|
||||||
* @param bool $bLocalize
|
|
||||||
*
|
*
|
||||||
* @return string $sAttCode formatted as HTML for the console details forms (when viewing, not when editing !)
|
* @return string $sAttCode formatted as HTML for the console details forms (when viewing, not when editing !)
|
||||||
* The returned string is already escaped, and as such is protected against XSS
|
* The returned string is already escaped, and as such is protected against XSS
|
||||||
* The markup relies on a few assumptions (CSS) that could change without notice
|
* The markup relies on a few assumptions (CSS) that could change without notice
|
||||||
*
|
*
|
||||||
* @throws ArchivedObjectException
|
|
||||||
* @throws CoreException
|
* @throws CoreException
|
||||||
* @throws DictExceptionMissingString
|
* @throws DictExceptionMissingString
|
||||||
*
|
*
|
||||||
* @see \Combodo\iTop\Form\Field\Field for rendering in portal forms
|
* @throws ArchivedObjectException
|
||||||
*/
|
*/
|
||||||
public function GetAsHTML($sAttCode, $bLocalize = true)
|
public function GetAsHTML($sAttCode, $bLocalize = true, $bInBasket = false)
|
||||||
{
|
{
|
||||||
$sClass = get_class($this);
|
$sClass = get_class($this);
|
||||||
$oAtt = MetaModel::GetAttributeDef($sClass, $sAttCode);
|
$oAtt = MetaModel::GetAttributeDef($sClass, $sAttCode);
|
||||||
|
|
||||||
if ($oAtt->IsExternalKey(EXTKEY_ABSOLUTE))
|
if ($oAtt->IsExternalKey(EXTKEY_ABSOLUTE)) {
|
||||||
{
|
|
||||||
//return $this->Get($sAttCode.'_friendlyname');
|
//return $this->Get($sAttCode.'_friendlyname');
|
||||||
/** @var \AttributeExternalKey $oAtt */
|
/** @var \AttributeExternalKey $oAtt */
|
||||||
$sTargetClass = $oAtt->GetTargetClass(EXTKEY_ABSOLUTE);
|
$sTargetClass = $oAtt->GetTargetClass(EXTKEY_ABSOLUTE);
|
||||||
$iTargetKey = $this->Get($sAttCode);
|
$iTargetKey = $this->Get($sAttCode);
|
||||||
if ($iTargetKey < 0)
|
if ($iTargetKey < 0) {
|
||||||
{
|
|
||||||
// the key points to an object that exists only in memory... no hyperlink points to it yet
|
// the key points to an object that exists only in memory... no hyperlink points to it yet
|
||||||
return '';
|
return '';
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
$sHtmlLabel = utils::EscapeHtml($this->Get($sAttCode.'_friendlyname'));
|
$sHtmlLabel = utils::EscapeHtml($this->Get($sAttCode.'_friendlyname'));
|
||||||
$bArchived = $this->IsArchived($sAttCode);
|
$bArchived = $this->IsArchived($sAttCode);
|
||||||
$bObsolete = $this->IsObsolete($sAttCode);
|
$bObsolete = $this->IsObsolete($sAttCode);
|
||||||
|
|
||||||
return $this->MakeHyperLink($sTargetClass, $iTargetKey, $sHtmlLabel, null, true, $bArchived, $bObsolete);
|
return $this->MakeHyperLink($sTargetClass, $iTargetKey, $sHtmlLabel, null, true, $bArchived, $bObsolete, false, $bInBasket);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1315,14 +1314,15 @@ abstract class DBObject implements iDisplay
|
|||||||
* @throws \CoreException
|
* @throws \CoreException
|
||||||
* @throws \DictExceptionMissingString
|
* @throws \DictExceptionMissingString
|
||||||
*/
|
*/
|
||||||
public static function MakeHyperLink($sObjClass, $sObjKey, $sHtmlLabel = '', $sUrlMakerClass = null, $bWithNavigationContext = true, $bArchived = false, $bObsolete = false, $bIgnorePreview = false)
|
public static function MakeHyperLink($sObjClass, $sObjKey, $sHtmlLabel = '', $sUrlMakerClass = null, $bWithNavigationContext = true, $bArchived = false, $bObsolete = false, $bIgnorePreview = false, $bInBasket = false)
|
||||||
{
|
{
|
||||||
if ($sObjKey <= 0) return '<em>'.Dict::S('UI:UndefinedObject').'</em>'; // Objects built in memory have negative IDs
|
if ($sObjKey <= 0) {
|
||||||
|
return '<em>'.Dict::S('UI:UndefinedObject').'</em>';
|
||||||
|
} // Objects built in memory have negative IDs
|
||||||
|
|
||||||
// Safety net
|
// Safety net
|
||||||
//
|
//
|
||||||
if (empty($sHtmlLabel))
|
if (empty($sHtmlLabel)) {
|
||||||
{
|
|
||||||
// If the object if not issued from a query but constructed programmatically
|
// If the object if not issued from a query but constructed programmatically
|
||||||
// the label may be empty. In this case run a query to get the object's friendly name
|
// the label may be empty. In this case run a query to get the object's friendly name
|
||||||
$sObjOql = 'SELECT '.$sObjClass.' WHERE id='.$sObjKey;
|
$sObjOql = 'SELECT '.$sObjClass.' WHERE id='.$sObjKey;
|
||||||
@@ -1367,9 +1367,7 @@ abstract class DBObject implements iDisplay
|
|||||||
if ($sFA == '')
|
if ($sFA == '')
|
||||||
{
|
{
|
||||||
$sIcon = '';
|
$sIcon = '';
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
if ($bClickable) {
|
if ($bClickable) {
|
||||||
$sIcon = "<span class=\"object-ref-icon text_decoration\"><span class=\"fas $sFA fa-1x fa-fw\"></span></span>";
|
$sIcon = "<span class=\"object-ref-icon text_decoration\"><span class=\"fas $sFA fa-1x fa-fw\"></span></span>";
|
||||||
} else {
|
} else {
|
||||||
@@ -1377,19 +1375,21 @@ abstract class DBObject implements iDisplay
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($bClickable && (strlen($sUrl) > 0))
|
if ($bClickable && (strlen($sUrl) > 0)) {
|
||||||
{
|
if ($bInBasket) {
|
||||||
$sHLink = "<a class=\"object-ref-link\" href=\"$sUrl\">$sIcon$sHtmlLabel</a>";
|
$sHLink = "<a class=\"object-ref-link object-in-basket\" href=\"$sUrl\">$sIcon$sHtmlLabel</a>";
|
||||||
}
|
} else {
|
||||||
else
|
$sHLink = "<a class=\"object-ref-link\" href=\"$sUrl\" >$sIcon$sHtmlLabel</a>";
|
||||||
{
|
}
|
||||||
|
} else {
|
||||||
$sHLink = $sIcon.$sHtmlLabel;
|
$sHLink = $sIcon.$sHtmlLabel;
|
||||||
}
|
}
|
||||||
$sPreview = '';
|
$sPreview = '';
|
||||||
if(SummaryCardService::IsAllowedForClass($sObjClass) && $bIgnorePreview === false){
|
if (SummaryCardService::IsAllowedForClass($sObjClass) && $bIgnorePreview === false) {
|
||||||
$sPreview = SummaryCardService::GetHyperlinkMarkup($sObjClass, $sObjKey);
|
$sPreview = SummaryCardService::GetHyperlinkMarkup($sObjClass, $sObjKey);
|
||||||
}
|
}
|
||||||
$sRet = "<span class=\"object-ref $sSpanClass\" $sPreview title=\"$sHint\">$sHLink</span>";
|
$sRet = "<span class=\"object-ref $sSpanClass\" $sPreview title=\"$sHint\">$sHLink</span>";
|
||||||
|
|
||||||
return $sRet;
|
return $sRet;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1408,15 +1408,15 @@ abstract class DBObject implements iDisplay
|
|||||||
* @throws CoreException
|
* @throws CoreException
|
||||||
* @throws DictExceptionMissingString
|
* @throws DictExceptionMissingString
|
||||||
*/
|
*/
|
||||||
public function GetHyperlink($sUrlMakerClass = null, $bWithNavigationContext = true, $sLabel = null, $bIgnorePreview = false)
|
public function GetHyperlink($sUrlMakerClass = null, $bWithNavigationContext = true, $sLabel = null, $bIgnorePreview = false, $bInBasket = false)
|
||||||
{
|
{
|
||||||
if($sLabel === null)
|
if ($sLabel === null) {
|
||||||
{
|
$sLabel = $this->GetName();
|
||||||
$sLabel = $this->GetName();
|
}
|
||||||
}
|
|
||||||
$bArchived = $this->IsArchived();
|
$bArchived = $this->IsArchived();
|
||||||
$bObsolete = $this->IsObsolete();
|
$bObsolete = $this->IsObsolete();
|
||||||
return self::MakeHyperLink(get_class($this), $this->GetKey(), $sLabel, $sUrlMakerClass, $bWithNavigationContext, $bArchived, $bObsolete, $bIgnorePreview);
|
|
||||||
|
return self::MakeHyperLink(get_class($this), $this->GetKey(), $sLabel, $sUrlMakerClass, $bWithNavigationContext, $bArchived, $bObsolete, $bIgnorePreview, $bInBasket);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -32,4 +32,5 @@
|
|||||||
@import "search-form";
|
@import "search-form";
|
||||||
@import "field-badge";
|
@import "field-badge";
|
||||||
@import "file-select";
|
@import "file-select";
|
||||||
@import "medallion-icon";
|
@import "medallion-icon";
|
||||||
|
@import "basket";
|
||||||
40
css/backoffice/components/_basket.scss
Normal file
40
css/backoffice/components/_basket.scss
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
* @copyright Copyright (C) 2010-2021 Combodo SARL
|
||||||
|
* @license http://opensource.org/licenses/AGPL-3.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
.ibo-basket {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.ibo-basket-form {
|
||||||
|
display: flex;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 3;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, 0);
|
||||||
|
font-size: $ibo-font-size-150;
|
||||||
|
|
||||||
|
.ibo-form-basket--total {
|
||||||
|
text-align: center;
|
||||||
|
margin-left: 10px;
|
||||||
|
margin-right: 10px;
|
||||||
|
|
||||||
|
.ibo-form-basket--total--link {
|
||||||
|
cursor: pointer;
|
||||||
|
color: var(--ibo-hyperlink-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.ibo-form-basket--total--link:hover {
|
||||||
|
color: var(--ibo-hyperlink-color--on-hover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ibo-form-basket--nav {
|
||||||
|
cursor: pointer;
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-right: 10px;
|
||||||
|
padding-top: 3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -337,9 +337,9 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', array(
|
|||||||
'BooleanLabel:no' => 'ne',
|
'BooleanLabel:no' => 'ne',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' 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',// 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: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',// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage+' => 'Vítejte v '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
'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:Title' => 'Vítejte v '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' je komplexní „opensource” provozní IT portál.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' je komplexní „opensource” provozní IT portál.</p>
|
||||||
@@ -1140,51 +1140,58 @@ We hope you’ll enjoy this version as much as we enjoyed imagining and creating
|
|||||||
'UI:Button:PreviewModifications' => 'Náhled úprav >>',
|
'UI:Button:PreviewModifications' => 'Náhled úprav >>',
|
||||||
'UI:ModifiedObject' => 'Objekt upraven',
|
'UI:ModifiedObject' => 'Objekt upraven',
|
||||||
'UI:BulkModifyStatus' => 'Stav',
|
'UI:BulkModifyStatus' => 'Stav',
|
||||||
'UI:BulkModifyStatus+' => 'Stav operace',
|
'UI:BulkModifyStatus+' => 'Stav operace',
|
||||||
'UI:BulkModifyErrors' => 'Chyby',
|
'UI:BulkModifyErrors' => 'Chyby',
|
||||||
'UI:BulkModifyErrors+' => 'Chyby zabraňující úpravám',
|
'UI:BulkModifyErrors+' => 'Chyby zabraňující úpravám',
|
||||||
'UI:BulkModifyStatusOk' => 'OK',
|
'UI:BulkModifyStatusOk' => 'OK',
|
||||||
'UI:BulkModifyStatusError' => 'Chyba',
|
'UI:BulkModifyStatusError' => 'Chyba',
|
||||||
'UI:BulkModifyStatusModified' => 'Upraveno',
|
'UI:BulkModifyStatusModified' => 'Upraveno',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Vynecháno',
|
'UI:BulkModifyStatusSkipped' => 'Vynecháno',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d odlišných hodnot:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d odlišných hodnot:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s existuje %2$dx',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s existuje %2$dx',
|
||||||
'UI:BulkModify:N_MoreValues' => 'o %1$d více hodnot...',
|
'UI:BulkModify:N_MoreValues' => 'o %1$d více hodnot...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Pokoušíte se upravit pole jen pro čtení: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Pokoušíte se upravit pole jen pro čtení: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'Akce se nezdařila.',
|
'UI:FailedToApplyStimuli' => 'Akce se nezdařila.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Upravuji %2$d objekt(ů) třídy %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Upravuji %2$d objekt(ů) třídy %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Zadejte text zde:',
|
'UI:CaseLogTypeYourTextHere' => 'Zadejte text zde:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Počáteční hodnota:',
|
'UI:CaseLog:InitialValue' => 'Počáteční hodnota:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s není zapisovatelné, protože je spravováno synchronizací dat.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s není zapisovatelné, protože je spravováno synchronizací dat.',
|
||||||
'UI:ActionNotAllowed' => 'Nemáte oprávnění provádět tuto akci na těchto objektech.',
|
'UI:ActionNotAllowed' => 'Nemáte oprávnění provádět tuto akci na těchto objektech.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Vyberte prosím alespoň jeden objekt',
|
'UI:BulkAction:NoObjectSelected' => 'Vyberte prosím alespoň jeden objekt',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s není zapisovatelné, protože je spravováno synchronizací dat.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s není zapisovatelné, protože je spravováno synchronizací dat.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Celkem: %1$s objektů (%2$s objektů vybráno).',
|
'UI:Pagination:HeaderSelection' => 'Celkem: %1$s objektů (%2$s objektů vybráno).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Celkem objektů: %1$s',
|
'UI:Pagination:HeaderNoSelection' => 'Celkem objektů: %1$s',
|
||||||
'UI:Pagination:PageSize' => '%1$s objektů na stránku',
|
'UI:Pagination:PageSize' => '%1$s objektů na stránku',
|
||||||
'UI:Pagination:PagesLabel' => 'Stránek:',
|
'UI:Pagination:PagesLabel' => 'Stránek:',
|
||||||
'UI:Pagination:All' => 'Vše',
|
'UI:Pagination:All' => 'Vše',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchie %1$s',
|
|
||||||
'UI:Preferences' => 'Předvolby',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Oblíbené organizace',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Zaškrtněte, které organizace chcete vidět v rozbalovacím menu pro rychlý přístup. Mějte na paměti, že toto není bezpečnostní opatření. Objekty všech organizací jsou pořád viditelné a přístupné vybráním "Všechny organizace" z rozbalovacího menu.',
|
'UI:HierarchyOf_Class' => 'Hierarchie %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Jazyk uživatelského rozhraní~~',
|
'UI:Preferences' => 'Předvolby',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Preferovaný jazyk:',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => 'Další nastavení',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'Oblíbené organizace',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Zaškrtněte, které organizace chcete vidět v rozbalovacím menu pro rychlý přístup. Mějte na paměti, že toto není bezpečnostní opatření. Objekty všech organizací jsou pořád viditelné a přístupné vybráním "Všechny organizace" z rozbalovacího menu.',
|
||||||
|
'UI:FavoriteLanguage' => 'Jazyk uživatelského rozhraní~~',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Preferovaný jazyk:',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Další nastavení',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Výchozí délka seznamů: %1$s položek na stránku~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Výchozí délka seznamů: %1$s položek na stránku~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Všechny úpravy budou zahozeny.',
|
'UI:NavigateAwayConfirmationMessage' => 'Všechny úpravy budou zahozeny.',
|
||||||
'UI:CancelConfirmationMessage' => 'Přijdete o všechny změny. Přejete si přesto pokračovat?',
|
'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_APPLICATION_SHORT.' 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:Create_Class_InState' => 'Vytvořit %1$s ve stavu: ',
|
||||||
'UI:OrderByHint_Values' => 'Řadit dle: %1$s',
|
'UI:OrderByHint_Values' => 'Řadit dle: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Přidat na Dashboard...',
|
'UI:Menu:AddToDashboard' => 'Přidat na Dashboard...',
|
||||||
'UI:Button:Refresh' => 'Obnovit',
|
'UI:Button:Refresh' => 'Obnovit',
|
||||||
'UI:Button:GoPrint' => 'Tisknout',
|
'UI:Button:GoPrint' => 'Tisknout',
|
||||||
'UI:ExplainPrintable' => 'Klikněte na ikonu %1$s pro skrytí položek v tisku.<br/>Tato hlavička a ostatní nastavení nebudou vytištěny.',
|
'UI:ExplainPrintable' => 'Klikněte na ikonu %1$s pro skrytí položek v tisku.<br/>Tato hlavička a ostatní nastavení nebudou vytištěny.',
|
||||||
|
|||||||
@@ -322,14 +322,18 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
||||||
'BooleanLabel:yes' => 'yes~~',
|
'BooleanLabel:yes' => 'yes~~',
|
||||||
'BooleanLabel:no' => 'no~~',
|
'BooleanLabel:no' => 'no~~',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||||
'Menu:WelcomeMenu' => 'Velkomen',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Velkomen',
|
||||||
'Menu:WelcomeMenu+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Velkomen',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Velkommen til '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Velkomen',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'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_APPLICATION_SHORT.' 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:
|
<ul>Den inkluderer:
|
||||||
@@ -342,7 +346,7 @@ Dict::Add('DA DA', 'Danish', 'Dansk', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>Alle moduler kan installeres, step by step, uafhængigt af hinanden.</p>',
|
<p>Alle moduler kan installeres, step by step, uafhængigt af hinanden.</p>',
|
||||||
|
|
||||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' 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:
|
<ul>iTop, leverer et feature-rich sæt af forretnings processer som:
|
||||||
<li>Forøger IT administrationens effektivitet</li>
|
<li>Forøger IT administrationens effektivitet</li>
|
||||||
<li>Drives IT operations performance</li>
|
<li>Drives IT operations performance</li>
|
||||||
@@ -1116,65 +1120,72 @@ Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge"
|
|||||||
'Portal:Button:UpdateRequest' => 'Opdater denne anmodning',
|
'Portal:Button:UpdateRequest' => 'Opdater denne anmodning',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Indtast din kommentar til løsningen af denne:',
|
'Portal:EnterYourCommentsOnTicket' => 'Indtast din kommentar til løsningen af denne:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Fejl: nuværnede bruger er ikke tilknyttet en Kontact/Person. Kontakt venligst din administrator.',
|
'Portal:ErrorNoContactForThisUser' => 'Fejl: nuværnede bruger er ikke tilknyttet en Kontact/Person. Kontakt venligst din administrator.',
|
||||||
'Portal:Attachments' => 'Vedhæftninger',
|
'Portal:Attachments' => 'Vedhæftninger',
|
||||||
'Portal:AddAttachment' => ' Vedhæft fil ',
|
'Portal:AddAttachment' => ' Vedhæft fil ',
|
||||||
'Portal:RemoveAttachment' => ' Fjern vedhæftning ',
|
'Portal:RemoveAttachment' => ' Fjern vedhæftning ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Vedhæftning #%1$d til %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Vedhæftning #%1$d til %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Vælg en skabelon for %1$s',
|
'Portal:SelectRequestTemplate' => 'Vælg en skabelon for %1$s',
|
||||||
'Enum:Undefined' => 'Udefineret',
|
'Enum:Undefined' => 'Udefineret',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Dage %2$s Timer %3$s Minutter %4$s Sekunder',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Dage %2$s Timer %3$s Minutter %4$s Sekunder',
|
||||||
'UI:ModifyAllPageTitle' => 'Modificer Alle',
|
'UI:ModifyAllPageTitle' => 'Modificer Alle',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Ændrer %1$d objekter af klasse %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Ændrer %1$d objekter af klasse %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Ændrer %1$d objekter af klasse %2$s ud af %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Ændrer %1$d objekter af klasse %2$s ud af %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Modificer...',
|
'UI:Menu:ModifyAll' => 'Modificer...',
|
||||||
'UI:Button:ModifyAll' => 'Modificer Alle',
|
'UI:Button:ModifyAll' => 'Modificer Alle',
|
||||||
'UI:Button:PreviewModifications' => 'Preview Ændringer >>',
|
'UI:Button:PreviewModifications' => 'Preview Ændringer >>',
|
||||||
'UI:ModifiedObject' => 'Objekt Ændret',
|
'UI:ModifiedObject' => 'Objekt Ændret',
|
||||||
'UI:BulkModifyStatus' => 'Operation',
|
'UI:BulkModifyStatus' => 'Operation',
|
||||||
'UI:BulkModifyStatus+' => '',
|
'UI:BulkModifyStatus+' => '',
|
||||||
'UI:BulkModifyErrors' => 'Fejl (hvis nogen)',
|
'UI:BulkModifyErrors' => 'Fejl (hvis nogen)',
|
||||||
'UI:BulkModifyErrors+' => '',
|
'UI:BulkModifyErrors+' => '',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Fejl',
|
'UI:BulkModifyStatusError' => 'Fejl',
|
||||||
'UI:BulkModifyStatusModified' => 'Ændret',
|
'UI:BulkModifyStatusModified' => 'Ændret',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Sprunget over',
|
'UI:BulkModifyStatusSkipped' => 'Sprunget over',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d distinkte værdier:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d distinkte værdier:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d gang(e)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d gang(e)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d flere værdier...',
|
'UI:BulkModify:N_MoreValues' => '%1$d flere værdier...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Forsøger at skrivebeskytte feltet: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Forsøger at skrivebeskytte feltet: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'Handlingen fejlede.',
|
'UI:FailedToApplyStimuli' => 'Handlingen fejlede.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Ændrer %2$d objekter af klasse %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Ændrer %2$d objekter af klasse %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Skriv din tekst her:',
|
'UI:CaseLogTypeYourTextHere' => 'Skriv din tekst her:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Begyndelses værdi:',
|
'UI:CaseLog:InitialValue' => 'Begyndelses værdi:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Feltet %1$s er skrivebeskyttet, fordi det administreres af data synchronization. Værdien er ikke sat.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Feltet %1$s er skrivebeskyttet, fordi det administreres af data synchronization. Værdien er ikke sat.',
|
||||||
'UI:ActionNotAllowed' => 'Du har ikke tilladelse til at foretage denne handling op disse objekter.',
|
'UI:ActionNotAllowed' => 'Du har ikke tilladelse til at foretage denne handling op disse objekter.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Vælg venligst mindst et objekt for at foretage denne handling',
|
'UI:BulkAction:NoObjectSelected' => 'Vælg venligst mindst et objekt for at foretage denne handling',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Feltet %1$s er skrivebeskyttet, fordi det administreres af data synchronization. Værdien forbliver uændret.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Feltet %1$s er skrivebeskyttet, fordi det administreres af data synchronization. Værdien forbliver uændret.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s objekter (%2$s objekter valgt).',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s objekter (%2$s objekter valgt).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objekter.',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objekter.',
|
||||||
'UI:Pagination:PageSize' => '%1$s objekter per side',
|
'UI:Pagination:PageSize' => '%1$s objekter per side',
|
||||||
'UI:Pagination:PagesLabel' => 'Sider:',
|
'UI:Pagination:PagesLabel' => 'Sider:',
|
||||||
'UI:Pagination:All' => 'Alle',
|
'UI:Pagination:All' => 'Alle',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchy af %1$s',
|
|
||||||
'UI:Preferences' => 'Indstillinger...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Favorit Organisationer',
|
|
||||||
'UI:FavoriteOrganizations+' => '',
|
'UI:HierarchyOf_Class' => 'Hierarchy af %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Sprog i brugergrænseflade~~',
|
'UI:Preferences' => 'Indstillinger...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Vælg dit foretrukne sprog',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => 'Andre indstillinger',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'Favorit Organisationer',
|
||||||
|
'UI:FavoriteOrganizations+' => '',
|
||||||
|
'UI:FavoriteLanguage' => 'Sprog i brugergrænseflade~~',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Vælg dit foretrukne sprog',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Andre indstillinger',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Default længde for lister: %1$s emner per side~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Default længde for lister: %1$s emner per side~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Enhver ændring vil blive kasseret.',
|
'UI:NavigateAwayConfirmationMessage' => 'Enhver ændring vil blive kasseret.',
|
||||||
'UI:CancelConfirmationMessage' => 'Du vil miste dine ændringer. Fortsæt alligevel?',
|
'UI:CancelConfirmationMessage' => 'Du vil miste dine ændringer. Fortsæt alligevel?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Nogle ændringer er ikke gemt endnu. Ønsker du at itop skal tage hensyn til dem?',
|
'UI:AutoApplyConfirmationMessage' => 'Nogle ændringer er ikke gemt endnu. Ønsker du at itop skal tage hensyn til dem?',
|
||||||
'UI:Create_Class_InState' => 'Opret %1$s i tilstand: ',
|
'UI:Create_Class_InState' => 'Opret %1$s i tilstand: ',
|
||||||
'UI:OrderByHint_Values' => 'Sorterings orden: %1$s',
|
'UI:OrderByHint_Values' => 'Sorterings orden: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Tilføj til Dashboard...',
|
'UI:Menu:AddToDashboard' => 'Tilføj til Dashboard...',
|
||||||
'UI:Button:Refresh' => 'Opdater',
|
'UI:Button:Refresh' => 'Opdater',
|
||||||
'UI:Button:GoPrint' => 'Print...~~',
|
'UI:Button:GoPrint' => 'Print...~~',
|
||||||
|
|||||||
@@ -362,14 +362,18 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
Dict::Add('DE DE', 'German', 'Deutsch', array(
|
||||||
'BooleanLabel:yes' => 'Ja',
|
'BooleanLabel:yes' => 'Ja',
|
||||||
'BooleanLabel:no' => 'Nein',
|
'BooleanLabel:no' => 'Nein',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' Login',
|
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' Login',
|
||||||
'Menu:WelcomeMenu' => 'Willkommen',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Willkommen',
|
||||||
'Menu:WelcomeMenu+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Willkommen',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Willkommen bei '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Willkommen bei '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Willkommen',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'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_APPLICATION_SHORT.' 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...
|
<ul>Es umfasst...
|
||||||
@@ -382,7 +386,7 @@ Dict::Add('DE DE', 'German', 'Deutsch', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>Alle Module können nacheinander und vollständig unabhängig voneinander eingerichtet werden.</p>',
|
<p>Alle Module können nacheinander und vollständig unabhängig voneinander eingerichtet werden.</p>',
|
||||||
|
|
||||||
'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.
|
'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
|
<ul>'.ITOP_APPLICATION_SHORT.' bietet ein umfangreiches Set an Business-Prozessen, die
|
||||||
<li>die Effizienz des IT-Managements steigern,</li>
|
<li>die Effizienz des IT-Managements steigern,</li>
|
||||||
<li>die die Performance des IT-Betriebs steuern,</li>
|
<li>die die Performance des IT-Betriebs steuern,</li>
|
||||||
@@ -1155,65 +1159,72 @@ Wenn Aktionen mit Trigger verknüpft sind, bekommt jede Aktion eine Auftragsnumm
|
|||||||
'Portal:Button:UpdateRequest' => 'Request aktualisieren',
|
'Portal:Button:UpdateRequest' => 'Request aktualisieren',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Geben Sie einen Kommentar zur Lösung dieses Tickets ein:',
|
'Portal:EnterYourCommentsOnTicket' => 'Geben Sie einen Kommentar zur Lösung dieses Tickets ein:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Fehler: der derzeitige Benutzer wurde nicht einem Kontakt oder einer Person zugewiesen. Bitte kontaktieren Sie Ihren Administrator.',
|
'Portal:ErrorNoContactForThisUser' => 'Fehler: der derzeitige Benutzer wurde nicht einem Kontakt oder einer Person zugewiesen. Bitte kontaktieren Sie Ihren Administrator.',
|
||||||
'Portal:Attachments' => 'Attachments',
|
'Portal:Attachments' => 'Attachments',
|
||||||
'Portal:AddAttachment' => ' Attachment hinzufügen',
|
'Portal:AddAttachment' => ' Attachment hinzufügen',
|
||||||
'Portal:RemoveAttachment' => 'Attachment entfernen',
|
'Portal:RemoveAttachment' => 'Attachment entfernen',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Attachment #%1$d an %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Attachment #%1$d an %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Wählen Sie eine Template für %1$s',
|
'Portal:SelectRequestTemplate' => 'Wählen Sie eine Template für %1$s',
|
||||||
'Enum:Undefined' => 'Nicht definiert',
|
'Enum:Undefined' => 'Nicht definiert',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Tage %2$s Stunden %3$s Minuten %4$s Sekunden',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Tage %2$s Stunden %3$s Minuten %4$s Sekunden',
|
||||||
'UI:ModifyAllPageTitle' => 'Alle modifizieren',
|
'UI:ModifyAllPageTitle' => 'Alle modifizieren',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modifiziere %1$d Objekte der Klasse %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modifiziere %1$d Objekte der Klasse %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifiziere %1$d Objekte der Klasse %2$s von insgesamt %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifiziere %1$d Objekte der Klasse %2$s von insgesamt %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Modifizieren...',
|
'UI:Menu:ModifyAll' => 'Modifizieren...',
|
||||||
'UI:Button:ModifyAll' => 'Alle modifizieren',
|
'UI:Button:ModifyAll' => 'Alle modifizieren',
|
||||||
'UI:Button:PreviewModifications' => 'Vorschau auf Modifikationen >>',
|
'UI:Button:PreviewModifications' => 'Vorschau auf Modifikationen >>',
|
||||||
'UI:ModifiedObject' => 'Objekt modifiziert',
|
'UI:ModifiedObject' => 'Objekt modifiziert',
|
||||||
'UI:BulkModifyStatus' => 'Operation',
|
'UI:BulkModifyStatus' => 'Operation',
|
||||||
'UI:BulkModifyStatus+' => '',
|
'UI:BulkModifyStatus+' => '',
|
||||||
'UI:BulkModifyErrors' => 'Fehler (falls vorhanden)',
|
'UI:BulkModifyErrors' => 'Fehler (falls vorhanden)',
|
||||||
'UI:BulkModifyErrors+' => '',
|
'UI:BulkModifyErrors+' => '',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Fehler',
|
'UI:BulkModifyStatusError' => 'Fehler',
|
||||||
'UI:BulkModifyStatusModified' => 'Modifiziert',
|
'UI:BulkModifyStatusModified' => 'Modifiziert',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Übersprungen',
|
'UI:BulkModifyStatusSkipped' => 'Übersprungen',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d unterschiedliche Werte:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d unterschiedliche Werte:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d mal',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d mal',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d weitere Werte...',
|
'UI:BulkModify:N_MoreValues' => '%1$d weitere Werte...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Versuche, Read-Only-Feld zu setzen: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Versuche, Read-Only-Feld zu setzen: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'Der Vorgang ist fehlgeschlagen.',
|
'UI:FailedToApplyStimuli' => 'Der Vorgang ist fehlgeschlagen.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifiziere %2$d Objekte der Klasse %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifiziere %2$d Objekte der Klasse %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Geben Sie Ihren Text hier ein:',
|
'UI:CaseLogTypeYourTextHere' => 'Geben Sie Ihren Text hier ein:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Anfangswert:',
|
'UI:CaseLog:InitialValue' => 'Anfangswert:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Das Feld %1$s ist nicht beschreibbar, weil es durch die Datensynchronisation geführt wird. Wert nicht gesetzt.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Das Feld %1$s ist nicht beschreibbar, weil es durch die Datensynchronisation geführt wird. Wert nicht gesetzt.',
|
||||||
'UI:ActionNotAllowed' => 'Sie haben nicht die Berechtigung, diese Aktion auf diesen Objekten auszuführen.',
|
'UI:ActionNotAllowed' => 'Sie haben nicht die Berechtigung, diese Aktion auf diesen Objekten auszuführen.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Bitte wählen Sie mindestens ein Objekt, um diese Aktion auszuführen.',
|
'UI:BulkAction:NoObjectSelected' => 'Bitte wählen Sie mindestens ein Objekt, um diese Aktion auszuführen.',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Das Feld %1$s ist nicht beschreibbar, weil es durch die Datensynchronisation geführt wird. Wert bleibt unverändert.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Das Feld %1$s ist nicht beschreibbar, weil es durch die Datensynchronisation geführt wird. Wert bleibt unverändert.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Gesamt: %1$s Objekte (%2$s Objekte ausgewählt).',
|
'UI:Pagination:HeaderSelection' => 'Gesamt: %1$s Objekte (%2$s Objekte ausgewählt).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Gesamt: %1$s Objekte.',
|
'UI:Pagination:HeaderNoSelection' => 'Gesamt: %1$s Objekte.',
|
||||||
'UI:Pagination:PageSize' => '%1$s Objekte pro Seite',
|
'UI:Pagination:PageSize' => '%1$s Objekte pro Seite',
|
||||||
'UI:Pagination:PagesLabel' => 'Seiten:',
|
'UI:Pagination:PagesLabel' => 'Seiten:',
|
||||||
'UI:Pagination:All' => 'Alles',
|
'UI:Pagination:All' => 'Alles',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchie von %1$s',
|
|
||||||
'UI:Preferences' => 'Einstellungen...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Archivmodus aktivieren',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Archivmodus deaktivieren',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archivmodus',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archivierte Objekte sind sichtbar, aber Veränderung ist nicht erlaubt',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Bevorzugte Organisationen',
|
|
||||||
'UI:FavoriteOrganizations+' => '',
|
'UI:HierarchyOf_Class' => 'Hierarchie von %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Sprache des Benutzerinterfaces',
|
'UI:Preferences' => 'Einstellungen...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Wählen Sie Ihre bevorzugte Sprache aus',
|
'UI:ArchiveModeOn' => 'Archivmodus aktivieren',
|
||||||
'UI:FavoriteOtherSettings' => 'Andere Einstellungen',
|
'UI:ArchiveModeOff' => 'Archivmodus deaktivieren',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archivmodus',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archivierte Objekte sind sichtbar, aber Veränderung ist nicht erlaubt',
|
||||||
|
'UI:FavoriteOrganizations' => 'Bevorzugte Organisationen',
|
||||||
|
'UI:FavoriteOrganizations+' => '',
|
||||||
|
'UI:FavoriteLanguage' => 'Sprache des Benutzerinterfaces',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Wählen Sie Ihre bevorzugte Sprache aus',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Andere Einstellungen',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Default-Länge für Listen: %1$s Elemente pro Seite',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Default-Länge für Listen: %1$s Elemente pro Seite',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Zeige obsolete (veraltete) Daten',
|
'UI:Favorites:ShowObsoleteData' => 'Zeige obsolete (veraltete) Daten',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Zeige obsolete (veraltete) Daten in Suchresultaten und Auswahllisten von Objekten',
|
'UI:Favorites:ShowObsoleteData+' => 'Zeige obsolete (veraltete) Daten in Suchresultaten und Auswahllisten von Objekten',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Jedwede Veränderung wird verworfen.',
|
'UI:NavigateAwayConfirmationMessage' => 'Jedwede Veränderung wird verworfen.',
|
||||||
'UI:CancelConfirmationMessage' => 'Sie werden Ihre Änderungen verlieren. Dennoch fortfahren?',
|
'UI:CancelConfirmationMessage' => 'Sie werden Ihre Änderungen verlieren. Dennoch fortfahren?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Einige Änderungen wurden noch nicht angewandt. Möchten Sie, dass '.ITOP_APPLICATION_SHORT.' diese berücksichtigt?',
|
'UI:AutoApplyConfirmationMessage' => 'Einige Änderungen wurden noch nicht angewandt. Möchten Sie, dass '.ITOP_APPLICATION_SHORT.' diese berücksichtigt?',
|
||||||
'UI:Create_Class_InState' => 'Erzeuge die/das %1$s in Status: ',
|
'UI:Create_Class_InState' => 'Erzeuge die/das %1$s in Status: ',
|
||||||
'UI:OrderByHint_Values' => 'Sortierreihenfolge: %1$s',
|
'UI:OrderByHint_Values' => 'Sortierreihenfolge: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Zu Dashboard hinzufügen...',
|
'UI:Menu:AddToDashboard' => 'Zu Dashboard hinzufügen...',
|
||||||
'UI:Button:Refresh' => 'Neu laden',
|
'UI:Button:Refresh' => 'Neu laden',
|
||||||
'UI:Button:GoPrint' => 'Drucken...',
|
'UI:Button:GoPrint' => 'Drucken...',
|
||||||
|
|||||||
@@ -1210,79 +1210,86 @@ When associated with a trigger, each action is given an "order" number, specifyi
|
|||||||
'Portal:Button:CloseTicket' => 'Close this ticket',
|
'Portal:Button:CloseTicket' => 'Close this ticket',
|
||||||
'Portal:Button:UpdateRequest' => 'Update the request',
|
'Portal:Button:UpdateRequest' => 'Update the request',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Enter your comments about the resolution of this ticket:',
|
'Portal:EnterYourCommentsOnTicket' => 'Enter your comments about the resolution of this ticket:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Error: the current user is not associated with a Contact/Person. Please contact your administrator.',
|
'Portal:ErrorNoContactForThisUser' => 'Error: the current user is not associated with a Contact/Person. Please contact your administrator.',
|
||||||
'Portal:Attachments' => 'Attachments',
|
'Portal:Attachments' => 'Attachments',
|
||||||
'Portal:AddAttachment' => ' Add Attachment ',
|
'Portal:AddAttachment' => ' Add Attachment ',
|
||||||
'Portal:RemoveAttachment' => ' Remove Attachment ',
|
'Portal:RemoveAttachment' => ' Remove Attachment ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Attachment #%1$d to %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Attachment #%1$d to %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Select a template for %1$s',
|
'Portal:SelectRequestTemplate' => 'Select a template for %1$s',
|
||||||
'Enum:Undefined' => 'Undefined',
|
'Enum:Undefined' => 'Undefined',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s d %2$s h %3$s min %4$s s',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s d %2$s h %3$s min %4$s s',
|
||||||
'UI:ModifyAllPageTitle' => 'Modify All',
|
'UI:ModifyAllPageTitle' => 'Modify All',
|
||||||
'UI:Modify_ObjectsOf_Class' => 'Modifying objects of class %1$s',
|
'UI:Modify_ObjectsOf_Class' => 'Modifying objects of class %1$s',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modifying %1$d objects of class %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modifying %1$d objects of class %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifying %1$d objects of class %2$s out of %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifying %1$d objects of class %2$s out of %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Modify...',
|
'UI:Menu:ModifyAll' => 'Modify...',
|
||||||
'UI:Menu:ModifyAll_Class' => 'Modify %1$s objects...',
|
'UI:Menu:ModifyAll_Class' => 'Modify %1$s objects...',
|
||||||
'UI:Menu:ModifyAll_Link' => 'Modify %1$s...',
|
'UI:Menu:ModifyAll_Link' => 'Modify %1$s...',
|
||||||
'UI:Menu:ModifyAll_Remote' => 'Modify %1$s...',
|
'UI:Menu:ModifyAll_Remote' => 'Modify %1$s...',
|
||||||
'UI:Button:ModifyAll' => 'Modify All',
|
'UI:Button:ModifyAll' => 'Modify All',
|
||||||
'UI:Button:PreviewModifications' => 'Preview Modifications >>',
|
'UI:Button:PreviewModifications' => 'Preview Modifications >>',
|
||||||
'UI:ModifiedObject' => 'Object Modified',
|
'UI:ModifiedObject' => 'Object Modified',
|
||||||
'UI:BulkModifyStatus' => 'Operation',
|
'UI:BulkModifyStatus' => 'Operation',
|
||||||
'UI:BulkModifyStatus+' => 'Status of the operation',
|
'UI:BulkModifyStatus+' => 'Status of the operation',
|
||||||
'UI:BulkModifyErrors' => 'Errors (if any)',
|
'UI:BulkModifyErrors' => 'Errors (if any)',
|
||||||
'UI:BulkModifyErrors+' => 'Errors preventing the modification',
|
'UI:BulkModifyErrors+' => 'Errors preventing the modification',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Error',
|
'UI:BulkModifyStatusError' => 'Error',
|
||||||
'UI:BulkModifyStatusModified' => 'Modified',
|
'UI:BulkModifyStatusModified' => 'Modified',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Skipped',
|
'UI:BulkModifyStatusSkipped' => 'Skipped',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d distinct values:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d distinct values:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d time(s)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d time(s)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d more values...',
|
'UI:BulkModify:N_MoreValues' => '%1$d more values...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Attempting to set the read-only field: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Attempting to set the read-only field: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'The action has failed.',
|
'UI:FailedToApplyStimuli' => 'The action has failed.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifying %2$d objects of class %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifying %2$d objects of class %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Type your text here...',
|
'UI:CaseLogTypeYourTextHere' => 'Type your text here...',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Initial value:',
|
'UI:CaseLog:InitialValue' => 'Initial value:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'The field %1$s (%2$s) is not writable because it is mastered by the data synchronization. Value not set.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'The field %1$s (%2$s) is not writable because it is mastered by the data synchronization. Value not set.',
|
||||||
'UI:ActionNotAllowed' => 'You are not allowed to perform this action on these objects.',
|
'UI:ActionNotAllowed' => 'You are not allowed to perform this action on these objects.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Please select at least one object to perform this operation',
|
'UI:BulkAction:NoObjectSelected' => 'Please select at least one object to perform this operation',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s objects (%2$s objects selected).',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s objects (%2$s objects selected).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objects.',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objects.',
|
||||||
'UI:Pagination:PageSize' => '%1$s objects per page',
|
'UI:Pagination:PageSize' => '%1$s objects per page',
|
||||||
'UI:Pagination:PagesLabel' => 'Pages:',
|
'UI:Pagination:PagesLabel' => 'Pages:',
|
||||||
'UI:Pagination:All' => 'All',
|
'UI:Pagination:All' => 'All',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchy of %1$s',
|
|
||||||
'UI:Preferences' => 'Preferences...',
|
'UI:Basket:Back' => 'Back',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode',
|
'UI:Basket:First' => 'First',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode',
|
'UI:Basket:Previous' => 'Previous',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode',
|
'UI:Basket:Next' => 'Next',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed',
|
'UI:Basket:Last' => 'Last',
|
||||||
'UI:FavoriteOrganizations' => 'Favorite Organizations',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Check in the list below the organizations that you want to see in the drop-down menu for a quick access. '.
|
'UI:HierarchyOf_Class' => 'Hierarchy of %1$s',
|
||||||
|
'UI:Preferences' => 'Preferences...',
|
||||||
|
'UI:ArchiveModeOn' => 'Activate archive mode',
|
||||||
|
'UI:ArchiveModeOff' => 'Deactivate archive mode',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed',
|
||||||
|
'UI:FavoriteOrganizations' => 'Favorite Organizations',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Check in the list below the organizations that you want to see in the drop-down menu for a quick access. '.
|
||||||
'Note that this is not a security setting, objects from any organization are still visible and can be accessed by selecting "All Organizations" in the drop-down list.',
|
'Note that this is not a security setting, objects from any organization are still visible and can be accessed by selecting "All Organizations" in the drop-down list.',
|
||||||
'UI:FavoriteLanguage' => 'Favorite language',
|
'UI:FavoriteLanguage' => 'Favorite language',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Select your preferred language',
|
'UI:Favorites:SelectYourLanguage' => 'Select your preferred language',
|
||||||
'UI:FavoriteOtherSettings' => 'Other Settings',
|
'UI:FavoriteOtherSettings' => 'Other Settings',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Default length: %1$s items per page',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Default length: %1$s items per page',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Any modification will be discarded.',
|
'UI:NavigateAwayConfirmationMessage' => 'Any modification will be discarded.',
|
||||||
'UI:CancelConfirmationMessage' => 'You will loose your changes. Continue anyway?',
|
'UI:CancelConfirmationMessage' => 'You will loose your changes. Continue anyway?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Some changes have not been applied yet. Do you want '.ITOP_APPLICATION_SHORT.' to take them into account?',
|
'UI:AutoApplyConfirmationMessage' => 'Some changes have not been applied yet. Do you want '.ITOP_APPLICATION_SHORT.' to take them into account?',
|
||||||
'UI:Create_Class_InState' => 'Create the %1$s in state: ',
|
'UI:Create_Class_InState' => 'Create the %1$s in state: ',
|
||||||
'UI:OrderByHint_Values' => 'Sort order: %1$s',
|
'UI:OrderByHint_Values' => 'Sort order: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Add To Dashboard...',
|
'UI:Menu:AddToDashboard' => 'Add To Dashboard...',
|
||||||
'UI:Button:Refresh' => 'Refresh',
|
'UI:Button:Refresh' => 'Refresh',
|
||||||
'UI:Button:GoPrint' => 'Print...',
|
'UI:Button:GoPrint' => 'Print...',
|
||||||
'UI:ExplainPrintable' => 'Click onto the %1$s icon to hide items from the print.<br/>Use the "print preview" feature of your browser to preview before printing.<br/>Note: this header and the other tuning controls will not be printed.',
|
'UI:ExplainPrintable' => 'Click onto the %1$s icon to hide items from the print.<br/>Use the "print preview" feature of your browser to preview before printing.<br/>Note: this header and the other tuning controls will not be printed.',
|
||||||
'UI:PrintResolution:FullSize' => 'Full size',
|
'UI:PrintResolution:FullSize' => 'Full size',
|
||||||
'UI:PrintResolution:A4Portrait' => 'A4 Portrait',
|
'UI:PrintResolution:A4Portrait' => 'A4 Portrait',
|
||||||
'UI:PrintResolution:A4Landscape' => 'A4 Landscape',
|
'UI:PrintResolution:A4Landscape' => 'A4 Landscape',
|
||||||
'UI:PrintResolution:LetterPortrait' => 'Letter Portrait',
|
'UI:PrintResolution:LetterPortrait' => 'Letter Portrait',
|
||||||
'UI:PrintResolution:LetterLandscape' => 'Letter Landscape',
|
'UI:PrintResolution:LetterLandscape' => 'Letter Landscape',
|
||||||
'UI:Toggle:SwitchToStandardDashboard' => 'Switch to standard dashboard',
|
'UI:Toggle:SwitchToStandardDashboard' => 'Switch to standard dashboard',
|
||||||
'UI:Toggle:SwitchToCustomDashboard' => 'Switch to custom dashboard',
|
'UI:Toggle:SwitchToCustomDashboard' => 'Switch to custom dashboard',
|
||||||
|
|||||||
@@ -334,14 +334,18 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', array(
|
||||||
'BooleanLabel:yes' => 'Si',
|
'BooleanLabel:yes' => 'Si',
|
||||||
'BooleanLabel:no' => 'No',
|
'BooleanLabel:no' => 'No',
|
||||||
'UI:Login:Title' => 'Inicio de Sesión',
|
'UI:Login:Title' => 'Inicio de Sesión',
|
||||||
'Menu:WelcomeMenu' => 'Bienvenido',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Bienvenido',
|
||||||
'Menu:WelcomeMenu+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Bienvenido',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Bienvenido a '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Bienvenido a '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Bienvenido',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'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_APPLICATION_SHORT.' 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>
|
<p>Incluye:</p>
|
||||||
@@ -961,31 +965,39 @@ Esperamos distrute de esta versión tanto como nosotros la imaginamos y creamos.
|
|||||||
'UI-ChangeManagementOverview-ChangeUnassigned' => 'Cambios No Asignados a un Analista',
|
'UI-ChangeManagementOverview-ChangeUnassigned' => 'Cambios No Asignados a un Analista',
|
||||||
'UI-ChangeManagementOverview-ChangeWithOutage' => 'Interrupciones de Servicios debida a Cambios',
|
'UI-ChangeManagementOverview-ChangeWithOutage' => 'Interrupciones de Servicios debida a Cambios',
|
||||||
|
|
||||||
'UI:ServiceMgmtMenuOverview:Title' => 'Panel de Control para Administración de Servicios',
|
'UI:ServiceMgmtMenuOverview:Title' => 'Panel de Control para Administración de Servicios',
|
||||||
'UI-ServiceManagementOverview-CustomerContractToRenew' => 'Acuerdos con Clientes a ser Renovados en 30 días',
|
'UI-ServiceManagementOverview-CustomerContractToRenew' => 'Acuerdos con Clientes a ser Renovados en 30 días',
|
||||||
'UI-ServiceManagementOverview-ProviderContractToRenew' => 'Contratos de Proveedores a ser Renovados en 30 días',
|
'UI-ServiceManagementOverview-ProviderContractToRenew' => 'Contratos de Proveedores a ser Renovados en 30 días',
|
||||||
|
|
||||||
'UI:ContactsMenu' => 'Contactos',
|
'UI:ContactsMenu' => 'Contactos',
|
||||||
'UI:ContactsMenu+' => 'Contactos',
|
'UI:ContactsMenu+' => 'Contactos',
|
||||||
'UI:ContactsMenu:Title' => 'Resumen de Contactos',
|
'UI:ContactsMenu:Title' => 'Resumen de Contactos',
|
||||||
'UI-ContactsMenu-ContactsByLocation' => 'Contactos por Localidad',
|
'UI-ContactsMenu-ContactsByLocation' => 'Contactos por Localidad',
|
||||||
'UI-ContactsMenu-ContactsByType' => 'Contactos por Tipo',
|
'UI-ContactsMenu-ContactsByType' => 'Contactos por Tipo',
|
||||||
'UI-ContactsMenu-ContactsByStatus' => 'Contactos por Estatus',
|
'UI-ContactsMenu-ContactsByStatus' => 'Contactos por Estatus',
|
||||||
|
|
||||||
'Menu:CSVImportMenu' => 'Importar CSV', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:CSVImportMenu' => 'Importar CSV',
|
||||||
'Menu:CSVImportMenu+' => 'Creación o Actualización Másiva', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:CSVImportMenu+' => 'Creación o Actualización Másiva',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:DataModelMenu' => 'Modelo de datos', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:DataModelMenu' => 'Modelo de datos',
|
||||||
'Menu:DataModelMenu+' => 'Resumen del modelo de datos', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:DataModelMenu+' => 'Resumen del modelo de datos',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:ExportMenu' => 'Exportar', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:ExportMenu' => 'Exportar',
|
||||||
'Menu:ExportMenu+' => 'Exportar los Resultados de Cualquier Consulta en HTML, CSV o XML', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:ExportMenu+' => 'Exportar los Resultados de Cualquier Consulta en HTML, CSV o XML',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:NotificationsMenu' => 'Notificaciones', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:NotificationsMenu' => 'Notificaciones',
|
||||||
'Menu:NotificationsMenu+' => 'Configuración de las Notificaciones', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:NotificationsMenu:Title' => 'Configuración de las Notificaciones',
|
'Menu:NotificationsMenu+' => 'Configuración de las Notificaciones',
|
||||||
'UI:NotificationsMenu:Help' => 'Ayuda',
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'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>
|
'UI:NotificationsMenu:Title' => 'Configuración de las Notificaciones',
|
||||||
|
'UI:NotificationsMenu:Help' => 'Ayuda',
|
||||||
|
'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:
|
<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>
|
<ol>
|
||||||
<li>Los disparadores "OnCreate" son ejecutados cuando un objeto de la clase especificada es creado</li>
|
<li>Los disparadores "OnCreate" son ejecutados cuando un objeto de la clase especificada es creado</li>
|
||||||
@@ -1005,68 +1017,87 @@ Esperamos distrute de esta versión tanto como nosotros la imaginamos y creamos.
|
|||||||
</p>
|
</p>
|
||||||
<p>Para ser ejecutadas, las acciones deben estar asociadas con los disparadores.
|
<p>Para ser ejecutadas, las acciones deben estar asociadas con los disparadores.
|
||||||
Cuando se asocien con un disparador, cada acción recibe un número de "orden", esto especifica en que orden se ejecutaran las acciones.</p>',
|
Cuando se asocien con un disparador, cada acción recibe un número de "orden", esto especifica en que orden se ejecutaran las acciones.</p>',
|
||||||
'UI:NotificationsMenu:Triggers' => 'Disparadores',
|
'UI:NotificationsMenu:Triggers' => 'Disparadores',
|
||||||
'UI:NotificationsMenu:AvailableTriggers' => 'Disparadores disponibles',
|
'UI:NotificationsMenu:AvailableTriggers' => 'Disparadores disponibles',
|
||||||
'UI:NotificationsMenu:OnCreate' => 'Cuando un objeto es creado',
|
'UI:NotificationsMenu:OnCreate' => 'Cuando un objeto es creado',
|
||||||
'UI:NotificationsMenu:OnStateEnter' => 'Cuando un objeto entra a un estado específico',
|
'UI:NotificationsMenu:OnStateEnter' => 'Cuando un objeto entra a un estado específico',
|
||||||
'UI:NotificationsMenu:OnStateLeave' => 'Cuando un objeto sale de un estado específico',
|
'UI:NotificationsMenu:OnStateLeave' => 'Cuando un objeto sale de un estado específico',
|
||||||
'UI:NotificationsMenu:Actions' => 'Acciones',
|
'UI:NotificationsMenu:Actions' => 'Acciones',
|
||||||
'UI:NotificationsMenu:Actions:ActionEmail' => 'Acciones correo electrónico',
|
'UI:NotificationsMenu:Actions:ActionEmail' => 'Acciones correo electrónico',
|
||||||
'UI:NotificationsMenu:Actions:ActionWebhook' => 'Acciones Webhook (Integraciones salientes)',
|
'UI:NotificationsMenu:Actions:ActionWebhook' => 'Acciones Webhook (Integraciones salientes)',
|
||||||
'UI:NotificationsMenu:Actions:Action' => 'Otras acciones',
|
'UI:NotificationsMenu:Actions:Action' => 'Otras acciones',
|
||||||
'UI:NotificationsMenu:AvailableActions' => 'Acciones Disponibles',
|
'UI:NotificationsMenu:AvailableActions' => 'Acciones Disponibles',
|
||||||
|
|
||||||
'Menu:TagAdminMenu' => 'Configuración de Etiquetas',
|
'Menu:TagAdminMenu' => 'Configuración de Etiquetas',
|
||||||
'Menu:TagAdminMenu+' => 'Administración de valores de Etiquetas',
|
'Menu:TagAdminMenu+' => 'Administración de valores de Etiquetas',
|
||||||
'UI:TagAdminMenu:Title' => 'Configuración de Etiquetas',
|
'UI:TagAdminMenu:Title' => 'Configuración de Etiquetas',
|
||||||
'UI:TagAdminMenu:NoTags' => 'No hay campos Etiquetas configurados',
|
'UI:TagAdminMenu:NoTags' => 'No hay campos Etiquetas configurados',
|
||||||
'UI:TagSetFieldData:Error' => 'Error: %1$s',
|
'UI:TagSetFieldData:Error' => 'Error: %1$s',
|
||||||
|
|
||||||
'Menu:AuditCategories' => 'Auditar Categorías', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories' => 'Auditar Categorías',
|
||||||
'Menu:AuditCategories+' => 'Auditar Categorías', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:Notifications:Title' => 'Auditar Categorías', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories+' => 'Auditar Categorías',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:Notifications:Title' => 'Auditar Categorías',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:RunQueriesMenu' => 'Ejecutar Consultas', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:RunQueriesMenu' => 'Ejecutar Consultas',
|
||||||
'Menu:RunQueriesMenu+' => 'Ejecutar Cualquier Consulta', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:RunQueriesMenu+' => 'Ejecutar Cualquier Consulta',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:QueryMenu' => 'Libreta de Consultas', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:QueryMenu' => 'Libreta de Consultas',
|
||||||
'Menu:QueryMenu+' => 'Libreta de Consultas', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:QueryMenu+' => 'Libreta de Consultas',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:DataAdministration' => 'Administración de Datos', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:DataAdministration' => 'Administración de Datos',
|
||||||
'Menu:DataAdministration+' => 'Administración de Datos', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:DataAdministration+' => 'Administración de Datos',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UniversalSearchMenu' => 'Búsqueda Universal', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UniversalSearchMenu' => 'Búsqueda Universal',
|
||||||
'Menu:UniversalSearchMenu+' => 'Buscar cualquier cosa', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UniversalSearchMenu+' => 'Buscar cualquier cosa',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UserManagementMenu' => 'Administración de Usuarios', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UserManagementMenu' => 'Administración de Usuarios',
|
||||||
'Menu:UserManagementMenu+' => 'Administración de Usuarios', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UserManagementMenu+' => 'Administración de Usuarios',
|
||||||
|
// 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' => 'Perfiles',
|
||||||
'Menu:ProfilesMenu+' => 'Perfiles', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// 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+' => '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',
|
||||||
'Menu:UserAccountsMenu+' => 'Cuentas de Usuario', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// 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: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:Short' => '%1$s versión %2$s',
|
||||||
'UI:iTopVersion:Long' => '%1$s versión %2$s-%3$s compilada en %4$s',
|
'UI:iTopVersion:Long' => '%1$s versión %2$s-%3$s compilada en %4$s',
|
||||||
'UI:PropertiesTab' => 'Propiedades',
|
'UI:PropertiesTab' => 'Propiedades',
|
||||||
|
|
||||||
'UI:OpenDocumentInNewWindow_' => 'Abrir~~',
|
'UI:OpenDocumentInNewWindow_' => 'Abrir~~',
|
||||||
'UI:DownloadDocument_' => 'Descargar~~',
|
'UI:DownloadDocument_' => 'Descargar~~',
|
||||||
'UI:Document:NoPreview' => 'No hay prevista disponible para este tipo de archivo',
|
'UI:Document:NoPreview' => 'No hay prevista disponible para este tipo de archivo',
|
||||||
'UI:Download-CSV' => 'Descargar %1$s',
|
'UI:Download-CSV' => 'Descargar %1$s',
|
||||||
|
|
||||||
'UI:DeadlineMissedBy_duration' => 'No se cumplió por %1$s',
|
'UI:DeadlineMissedBy_duration' => 'No se cumplió por %1$s',
|
||||||
'UI:Deadline_LessThan1Min' => '< 1 min',
|
'UI:Deadline_LessThan1Min' => '< 1 min',
|
||||||
'UI:Deadline_Minutes' => '%1$d min',
|
'UI:Deadline_Minutes' => '%1$d min',
|
||||||
'UI:Deadline_Hours_Minutes' => '%1$dh %2$dmin',
|
'UI:Deadline_Hours_Minutes' => '%1$dh %2$dmin',
|
||||||
'UI:Deadline_Days_Hours_Minutes' => '%1$dd %2$dh %3$dmin',
|
'UI:Deadline_Days_Hours_Minutes' => '%1$dd %2$dh %3$dmin',
|
||||||
'UI:Help' => 'Ayuda',
|
'UI:Help' => 'Ayuda',
|
||||||
'UI:PasswordConfirm' => 'Confirmar',
|
'UI:PasswordConfirm' => 'Confirmar',
|
||||||
'UI:BeforeAdding_Class_ObjectsSaveThisObject' => 'Antes de Agregar un(a) %1$s, Guarde los Cambios Realizados.',
|
'UI:BeforeAdding_Class_ObjectsSaveThisObject' => 'Antes de Agregar un(a) %1$s, Guarde los Cambios Realizados.',
|
||||||
'UI:DisplayThisMessageAtStartup' => 'Desplegar este Mensaje al Inicio',
|
'UI:DisplayThisMessageAtStartup' => 'Desplegar este Mensaje al Inicio',
|
||||||
'UI:RelationshipGraph' => 'Vista Gráfica',
|
'UI:RelationshipGraph' => 'Vista Gráfica',
|
||||||
'UI:RelationshipList' => 'Lista',
|
'UI:RelationshipList' => 'Lista',
|
||||||
'UI:RelationGroups' => 'Grupos',
|
'UI:RelationGroups' => 'Grupos',
|
||||||
@@ -1128,74 +1159,81 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
|||||||
'Portal:Button:UpdateRequest' => 'Actualizar el Requerimiento',
|
'Portal:Button:UpdateRequest' => 'Actualizar el Requerimiento',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Captura tus Comentarios acerca de la Solución de este Ticket:',
|
'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_APPLICATION_SHORT,
|
'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:Attachments' => 'Anexos',
|
||||||
'Portal:AddAttachment' => 'Agregar Anexo',
|
'Portal:AddAttachment' => 'Agregar Anexo',
|
||||||
'Portal:RemoveAttachment' => 'Borrar Anexo',
|
'Portal:RemoveAttachment' => 'Borrar Anexo',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Anexo #%1$d to %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Anexo #%1$d to %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Seleccione una Plantilla para %1$s',
|
'Portal:SelectRequestTemplate' => 'Seleccione una Plantilla para %1$s',
|
||||||
'Enum:Undefined' => 'No Definido',
|
'Enum:Undefined' => 'No Definido',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Días %2$s Hrs. %3$s Mins. %4$s Segs.',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Días %2$s Hrs. %3$s Mins. %4$s Segs.',
|
||||||
'UI:ModifyAllPageTitle' => 'Modificar Todos',
|
'UI:ModifyAllPageTitle' => 'Modificar Todos',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modificando %1$d objetos de la clase %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modificando %1$d objetos de la clase %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modificando %1$d objetos de la clase %2$s de un total de %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modificando %1$d objetos de la clase %2$s de un total de %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Modificar',
|
'UI:Menu:ModifyAll' => 'Modificar',
|
||||||
'UI:Button:ModifyAll' => 'Modificar Todos',
|
'UI:Button:ModifyAll' => 'Modificar Todos',
|
||||||
'UI:Button:PreviewModifications' => 'Previsualizar Modificaciones >>',
|
'UI:Button:PreviewModifications' => 'Previsualizar Modificaciones >>',
|
||||||
'UI:ModifiedObject' => 'Objecto Modificado',
|
'UI:ModifiedObject' => 'Objecto Modificado',
|
||||||
'UI:BulkModifyStatus' => 'Operación',
|
'UI:BulkModifyStatus' => 'Operación',
|
||||||
'UI:BulkModifyStatus+' => 'Estatus de la operación',
|
'UI:BulkModifyStatus+' => 'Estatus de la operación',
|
||||||
'UI:BulkModifyErrors' => 'Errores (si los hubiera)',
|
'UI:BulkModifyErrors' => 'Errores (si los hubiera)',
|
||||||
'UI:BulkModifyErrors+' => 'Errores que evitan la modificación',
|
'UI:BulkModifyErrors+' => 'Errores que evitan la modificación',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Error',
|
'UI:BulkModifyStatusError' => 'Error',
|
||||||
'UI:BulkModifyStatusModified' => 'Modificado',
|
'UI:BulkModifyStatusModified' => 'Modificado',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Saltado',
|
'UI:BulkModifyStatusSkipped' => 'Saltado',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d diferentes valores:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d diferentes valores:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d tiempo(s)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d tiempo(s)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d más valores',
|
'UI:BulkModify:N_MoreValues' => '%1$d más valores',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Intentando configurar campo de solo lectura: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Intentando configurar campo de solo lectura: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'La acción ha fallado.',
|
'UI:FailedToApplyStimuli' => 'La acción ha fallado.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modificando %2$d objetos de la clase %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modificando %2$d objetos de la clase %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Escriba su texto aquí:',
|
'UI:CaseLogTypeYourTextHere' => 'Escriba su texto aquí:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Valor inicial:',
|
'UI:CaseLog:InitialValue' => 'Valor inicial:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'El campo %1$s no es escribible porque es manejado por el sincronizador de datos. Valor no cambiado.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'El campo %1$s no es escribible porque es manejado por el sincronizador de datos. Valor no cambiado.',
|
||||||
'UI:ActionNotAllowed' => 'No tiene permitodo realizar esta acción sobre estos objetos.',
|
'UI:ActionNotAllowed' => 'No tiene permitodo realizar esta acción sobre estos objetos.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Por favor seleccione al menos un objeto para realizar esta operación',
|
'UI:BulkAction:NoObjectSelected' => 'Por favor seleccione al menos un objeto para realizar esta operación',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'El campo %1$s no es escribible porque es manejado por el sincronizador de datos. Valor se mantiene sin cambios.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'El campo %1$s no es escribible porque es manejado por el sincronizador de datos. Valor se mantiene sin cambios.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s Elementos (%2$s Elementos Seleccionados).',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s Elementos (%2$s Elementos Seleccionados).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s Elemento(s)',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s Elemento(s)',
|
||||||
'UI:Pagination:PageSize' => '%1$s Elementos por Página',
|
'UI:Pagination:PageSize' => '%1$s Elementos por Página',
|
||||||
'UI:Pagination:PagesLabel' => 'Páginas:',
|
'UI:Pagination:PagesLabel' => 'Páginas:',
|
||||||
'UI:Pagination:All' => 'Todos',
|
'UI:Pagination:All' => 'Todos',
|
||||||
'UI:HierarchyOf_Class' => 'Jerarquía de %1$s',
|
|
||||||
'UI:Preferences' => 'Preferencias',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activar modo Archivado',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivar modo Archivado',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Modo Archivado',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Objetos archivados son visibles, y ninguna modificación es permitida',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Mi Organización Favorita',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Verifique en la siguiente lista de Organizaciones, la que necesite ver en los menues para un rápido acceso. Nota, esto no es una configuración de seguridad, elementos de cualquier Organización son visibles y pueden ser accesados mediante la selección de "Todas las Organizaciones" en la lista del menú.',
|
'UI:HierarchyOf_Class' => 'Jerarquía de %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Idioma de la Interfaz de Usuario',
|
'UI:Preferences' => 'Preferencias',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Seleccione su Idioma Predeterminado',
|
'UI:ArchiveModeOn' => 'Activar modo Archivado',
|
||||||
'UI:FavoriteOtherSettings' => 'Otras Configuraciones',
|
'UI:ArchiveModeOff' => 'Deactivar modo Archivado',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Modo Archivado',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Objetos archivados son visibles, y ninguna modificación es permitida',
|
||||||
|
'UI:FavoriteOrganizations' => 'Mi Organización Favorita',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Verifique en la siguiente lista de Organizaciones, la que necesite ver en los menues para un rápido acceso. Nota, esto no es una configuración de seguridad, elementos de cualquier Organización son visibles y pueden ser accesados mediante la selección de "Todas las Organizaciones" en la lista del menú.',
|
||||||
|
'UI:FavoriteLanguage' => 'Idioma de la Interfaz de Usuario',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Seleccione su Idioma Predeterminado',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Otras Configuraciones',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Tamaño Predeterminado de Listas: %1$s elementos por página',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Tamaño Predeterminado de Listas: %1$s elementos por página',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Mostrar datos Obsoletos',
|
'UI:Favorites:ShowObsoleteData' => 'Mostrar datos Obsoletos',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Mostrar datos obsoletos en resultados de búsqueda y listas de elementos seleccionables',
|
'UI:Favorites:ShowObsoleteData+' => 'Mostrar datos obsoletos en resultados de búsqueda y listas de elementos seleccionables',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Cualquier modificación será descartada.',
|
'UI:NavigateAwayConfirmationMessage' => 'Cualquier modificación será descartada.',
|
||||||
'UI:CancelConfirmationMessage' => 'Perderá los cambios realizados. ¿Desea Continuar?',
|
'UI:CancelConfirmationMessage' => 'Perderá los cambios realizados. ¿Desea Continuar?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Algunos cambios no han sido aplicados todavía. ¿Quiere que '.ITOP_APPLICATION_SHORT.' 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:Create_Class_InState' => 'Crear %1$s en el estado: ',
|
||||||
'UI:OrderByHint_Values' => 'Ordenamiento: %1$s',
|
'UI:OrderByHint_Values' => 'Ordenamiento: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Agregar a Panel de Control',
|
'UI:Menu:AddToDashboard' => 'Agregar a Panel de Control',
|
||||||
'UI:Button:Refresh' => 'Refrescar',
|
'UI:Button:Refresh' => 'Refrescar',
|
||||||
'UI:Button:GoPrint' => 'Imprimir...',
|
'UI:Button:GoPrint' => 'Imprimir...',
|
||||||
'UI:ExplainPrintable' => 'Click en el icono %1$s para ocultar elementos de la impresión.<br/>Use la funcionalidad "vista preliminar" de su navegador para visualizar antes de imprimir.<br/>Nota: Este encabezado y controles de ajuste no serán impresos.',
|
'UI:ExplainPrintable' => 'Click en el icono %1$s para ocultar elementos de la impresión.<br/>Use la funcionalidad "vista preliminar" de su navegador para visualizar antes de imprimir.<br/>Nota: Este encabezado y controles de ajuste no serán impresos.',
|
||||||
'UI:PrintResolution:FullSize' => 'Tamaño Completo',
|
'UI:PrintResolution:FullSize' => 'Tamaño Completo',
|
||||||
'UI:PrintResolution:A4Portrait' => 'A4 Vertical',
|
'UI:PrintResolution:A4Portrait' => 'A4 Vertical',
|
||||||
'UI:PrintResolution:A4Landscape' => 'A4 Horizontal',
|
'UI:PrintResolution:A4Landscape' => 'A4 Horizontal',
|
||||||
'UI:PrintResolution:LetterPortrait' => 'Carta Vertical',
|
'UI:PrintResolution:LetterPortrait' => 'Carta Vertical',
|
||||||
'UI:PrintResolution:LetterLandscape' => 'Carta Horizontal',
|
'UI:PrintResolution:LetterLandscape' => 'Carta Horizontal',
|
||||||
'UI:Toggle:SwitchToStandardDashboard' => 'Estandar',
|
'UI:Toggle:SwitchToStandardDashboard' => 'Estandar',
|
||||||
'UI:Toggle:SwitchToCustomDashboard' => 'Personalizado',
|
'UI:Toggle:SwitchToCustomDashboard' => 'Personalizado',
|
||||||
|
|
||||||
@@ -1359,42 +1397,44 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
|||||||
'Month-12' => 'Diciembre',
|
'Month-12' => 'Diciembre',
|
||||||
|
|
||||||
// Short version for the DatePicker
|
// Short version for the DatePicker
|
||||||
'DayOfWeek-Sunday-Min' => 'Do',
|
'DayOfWeek-Sunday-Min' => 'Do',
|
||||||
'DayOfWeek-Monday-Min' => 'Lu',
|
'DayOfWeek-Monday-Min' => 'Lu',
|
||||||
'DayOfWeek-Tuesday-Min' => 'Ma',
|
'DayOfWeek-Tuesday-Min' => 'Ma',
|
||||||
'DayOfWeek-Wednesday-Min' => 'Mi',
|
'DayOfWeek-Wednesday-Min' => 'Mi',
|
||||||
'DayOfWeek-Thursday-Min' => 'Ju',
|
'DayOfWeek-Thursday-Min' => 'Ju',
|
||||||
'DayOfWeek-Friday-Min' => 'Vi',
|
'DayOfWeek-Friday-Min' => 'Vi',
|
||||||
'DayOfWeek-Saturday-Min' => 'Sa',
|
'DayOfWeek-Saturday-Min' => 'Sa',
|
||||||
'Month-01-Short' => 'Ene',
|
'Month-01-Short' => 'Ene',
|
||||||
'Month-02-Short' => 'Feb',
|
'Month-02-Short' => 'Feb',
|
||||||
'Month-03-Short' => 'Mar',
|
'Month-03-Short' => 'Mar',
|
||||||
'Month-04-Short' => 'Abr',
|
'Month-04-Short' => 'Abr',
|
||||||
'Month-05-Short' => 'May',
|
'Month-05-Short' => 'May',
|
||||||
'Month-06-Short' => 'Jun',
|
'Month-06-Short' => 'Jun',
|
||||||
'Month-07-Short' => 'Jul',
|
'Month-07-Short' => 'Jul',
|
||||||
'Month-08-Short' => 'Ago',
|
'Month-08-Short' => 'Ago',
|
||||||
'Month-09-Short' => 'Sep',
|
'Month-09-Short' => 'Sep',
|
||||||
'Month-10-Short' => 'Oct',
|
'Month-10-Short' => 'Oct',
|
||||||
'Month-11-Short' => 'Nov',
|
'Month-11-Short' => 'Nov',
|
||||||
'Month-12-Short' => 'Dic',
|
'Month-12-Short' => 'Dic',
|
||||||
'Calendar-FirstDayOfWeek' => '0', // 0 = Sunday, 1 = Monday, etc...
|
'Calendar-FirstDayOfWeek' => '0',
|
||||||
|
// 0 = Sunday, 1 = Monday, etc...
|
||||||
|
|
||||||
'UI:Menu:ShortcutList' => 'Crear Acceso Rápido',
|
'UI:Menu:ShortcutList' => 'Crear Acceso Rápido',
|
||||||
'UI:ShortcutRenameDlg:Title' => 'Renombrar Acceso Rápido',
|
'UI:ShortcutRenameDlg:Title' => 'Renombrar Acceso Rápido',
|
||||||
'UI:ShortcutListDlg:Title' => 'Crear Acceso Rápido para la Lista',
|
'UI:ShortcutListDlg:Title' => 'Crear Acceso Rápido para la Lista',
|
||||||
'UI:ShortcutDelete:Confirm' => 'Por favor conforme que desea Eliminar el/los Acceso(s) Rápido(s)',
|
'UI:ShortcutDelete:Confirm' => 'Por favor conforme que desea Eliminar el/los Acceso(s) Rápido(s)',
|
||||||
'Menu:MyShortcuts' => 'Mis Accesos Rápidos', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:MyShortcuts' => 'Mis Accesos Rápidos',
|
||||||
'Class:Shortcut' => 'Acceso Rápido',
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Class:Shortcut+' => 'Acceso Rápido',
|
'Class:Shortcut' => 'Acceso Rápido',
|
||||||
'Class:Shortcut/Attribute:name' => 'Nombre',
|
'Class:Shortcut+' => 'Acceso Rápido',
|
||||||
'Class:Shortcut/Attribute:name+' => 'Etiqueta usada en el Menú y Título de Página',
|
'Class:Shortcut/Attribute:name' => 'Nombre',
|
||||||
'Class:ShortcutOQL' => 'Resultado de Búsqueda de Acceso Rápido',
|
'Class:Shortcut/Attribute:name+' => 'Etiqueta usada en el Menú y Título de Página',
|
||||||
'Class:ShortcutOQL+' => 'Resultado de Búsqueda de Acceso Rápido',
|
'Class:ShortcutOQL' => 'Resultado de Búsqueda de Acceso Rápido',
|
||||||
'Class:ShortcutOQL/Attribute:oql' => 'Consulta',
|
'Class:ShortcutOQL+' => 'Resultado de Búsqueda de Acceso Rápido',
|
||||||
'Class:ShortcutOQL/Attribute:oql+' => 'OQL definiendo la lista de objetos a buscar',
|
'Class:ShortcutOQL/Attribute:oql' => 'Consulta',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload' => 'Actualización Automática',
|
'Class:ShortcutOQL/Attribute:oql+' => 'OQL definiendo la lista de objetos a buscar',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload/Value:none' => 'Deshabilitado',
|
'Class:ShortcutOQL/Attribute:auto_reload' => 'Actualización Automática',
|
||||||
|
'Class:ShortcutOQL/Attribute:auto_reload/Value:none' => 'Deshabilitado',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload/Value:custom' => 'Frecuencia configurable',
|
'Class:ShortcutOQL/Attribute:auto_reload/Value:custom' => 'Frecuencia configurable',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload_sec' => 'Interválo de Actualización Automática (segundos)',
|
'Class:ShortcutOQL/Attribute:auto_reload_sec' => 'Interválo de Actualización Automática (segundos)',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload_sec/tip' => 'El interválo mínimo es de %1$d segundos',
|
'Class:ShortcutOQL/Attribute:auto_reload_sec/tip' => 'El interválo mínimo es de %1$d segundos',
|
||||||
@@ -1404,7 +1444,7 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
|||||||
'UI:ValueMustBeChanged' => 'Por favor cambie el valor',
|
'UI:ValueMustBeChanged' => 'Por favor cambie el valor',
|
||||||
'UI:ValueInvalidFormat' => 'Formato inválido',
|
'UI:ValueInvalidFormat' => 'Formato inválido',
|
||||||
|
|
||||||
'UI:CSVImportConfirmTitle' => 'Por favor confirme la operación',
|
'UI:CSVImportConfirmTitle' => 'Por favor confirme la operación',
|
||||||
'UI:CSVImportConfirmMessage' => '¿Está seguro?',
|
'UI:CSVImportConfirmMessage' => '¿Está seguro?',
|
||||||
'UI:CSVImportError_items' => 'Errores: %1$d',
|
'UI:CSVImportError_items' => 'Errores: %1$d',
|
||||||
'UI:CSVImportCreated_items' => 'Creados: %1$d',
|
'UI:CSVImportCreated_items' => 'Creados: %1$d',
|
||||||
@@ -1546,51 +1586,57 @@ Cuando se asocien con un disparador, cada acción recibe un número de "orden",
|
|||||||
'UI:Search:Criteria:Title:ExternalKey:In:Many' => '%1$s: %2$s y %3$s otros',
|
'UI:Search:Criteria:Title:ExternalKey:In:Many' => '%1$s: %2$s y %3$s otros',
|
||||||
'UI:Search:Criteria:Title:ExternalKey:In:All' => '%1$s: Cualquier',
|
'UI:Search:Criteria:Title:ExternalKey:In:All' => '%1$s: Cualquier',
|
||||||
// - Hierarchical key widget
|
// - Hierarchical key widget
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:Empty' => '%1$s está definido',
|
'UI:Search:Criteria:Title:HierarchicalKey:Empty' => '%1$s está definido',
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:NotEmpty' => '%1$s no está definido',
|
'UI:Search:Criteria:Title:HierarchicalKey:NotEmpty' => '%1$s no está definido',
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:Equals' => '%1$s %2$s',
|
'UI:Search:Criteria:Title:HierarchicalKey:Equals' => '%1$s %2$s',
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:In' => '%1$s: %2$s',
|
'UI:Search:Criteria:Title:HierarchicalKey:In' => '%1$s: %2$s',
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:In:Many' => '%1$s: %2$s y %3$s otros',
|
'UI:Search:Criteria:Title:HierarchicalKey:In:Many' => '%1$s: %2$s y %3$s otros',
|
||||||
'UI:Search:Criteria:Title:HierarchicalKey:In:All' => '%1$s: Cualquier',
|
'UI:Search:Criteria:Title:HierarchicalKey:In:All' => '%1$s: Cualquier',
|
||||||
|
|
||||||
// - Criteria operators
|
// - Criteria operators
|
||||||
// - Default widget
|
// - Default widget
|
||||||
'UI:Search:Criteria:Operator:Default:Empty' => 'Está vacío',
|
'UI:Search:Criteria:Operator:Default:Empty' => 'Está vacío',
|
||||||
'UI:Search:Criteria:Operator:Default:NotEmpty' => 'No está vacío',
|
'UI:Search:Criteria:Operator:Default:NotEmpty' => 'No está vacío',
|
||||||
'UI:Search:Criteria:Operator:Default:Equals' => 'Igual',
|
'UI:Search:Criteria:Operator:Default:Equals' => 'Igual',
|
||||||
'UI:Search:Criteria:Operator:Default:Between' => 'Entre',
|
'UI:Search:Criteria:Operator:Default:Between' => 'Entre',
|
||||||
// - String widget
|
// - String widget
|
||||||
'UI:Search:Criteria:Operator:String:Contains' => 'Contiene',
|
'UI:Search:Criteria:Operator:String:Contains' => 'Contiene',
|
||||||
'UI:Search:Criteria:Operator:String:StartsWith' => 'Comienza con',
|
'UI:Search:Criteria:Operator:String:StartsWith' => 'Comienza con',
|
||||||
'UI:Search:Criteria:Operator:String:EndsWith' => 'Termina con',
|
'UI:Search:Criteria:Operator:String:EndsWith' => 'Termina con',
|
||||||
'UI:Search:Criteria:Operator:String:RegExp' => 'Exp. Regular',
|
'UI:Search:Criteria:Operator:String:RegExp' => 'Exp. Regular',
|
||||||
// - Numeric widget
|
// - Numeric widget
|
||||||
'UI:Search:Criteria:Operator:Numeric:Equals' => 'Igual', // => '=',
|
'UI:Search:Criteria:Operator:Numeric:Equals' => 'Igual',
|
||||||
'UI:Search:Criteria:Operator:Numeric:GreaterThan' => 'Mayor', // => '>',
|
// => '=',
|
||||||
'UI:Search:Criteria:Operator:Numeric:GreaterThanOrEquals' => 'Mayor / igual', // > '>=',
|
'UI:Search:Criteria:Operator:Numeric:GreaterThan' => 'Mayor',
|
||||||
'UI:Search:Criteria:Operator:Numeric:LessThan' => 'Menor', // => '<',
|
// => '>',
|
||||||
'UI:Search:Criteria:Operator:Numeric:LessThanOrEquals' => 'Menor / igual', // > '<=',
|
'UI:Search:Criteria:Operator:Numeric:GreaterThanOrEquals' => 'Mayor / igual',
|
||||||
'UI:Search:Criteria:Operator:Numeric:Different' => 'Diferente', // => '≠',
|
// > '>=',
|
||||||
|
'UI:Search:Criteria:Operator:Numeric:LessThan' => 'Menor',
|
||||||
|
// => '<',
|
||||||
|
'UI:Search:Criteria:Operator:Numeric:LessThanOrEquals' => 'Menor / igual',
|
||||||
|
// > '<=',
|
||||||
|
'UI:Search:Criteria:Operator:Numeric:Different' => 'Diferente',
|
||||||
|
// => '≠',
|
||||||
// - Tag Set Widget
|
// - Tag Set Widget
|
||||||
'UI:Search:Criteria:Operator:TagSet:Matches' => 'Coincidencias',
|
'UI:Search:Criteria:Operator:TagSet:Matches' => 'Coincidencias',
|
||||||
|
|
||||||
// - Other translations
|
// - Other translations
|
||||||
'UI:Search:Value:Filter:Placeholder' => 'Filtro...',
|
'UI:Search:Value:Filter:Placeholder' => 'Filtro...',
|
||||||
'UI:Search:Value:Search:Placeholder' => 'Búsqueda...',
|
'UI:Search:Value:Search:Placeholder' => 'Búsqueda...',
|
||||||
'UI:Search:Value:Autocomplete:StartTyping' => 'Inicie escribiento posibles valores.',
|
'UI:Search:Value:Autocomplete:StartTyping' => 'Inicie escribiento posibles valores.',
|
||||||
'UI:Search:Value:Autocomplete:Wait' => 'Por favor espere...',
|
'UI:Search:Value:Autocomplete:Wait' => 'Por favor espere...',
|
||||||
'UI:Search:Value:Autocomplete:NoResult' => 'Sin Resultados.',
|
'UI:Search:Value:Autocomplete:NoResult' => 'Sin Resultados.',
|
||||||
'UI:Search:Value:Toggler:CheckAllNone' => 'Marcar todos / ninguno',
|
'UI:Search:Value:Toggler:CheckAllNone' => 'Marcar todos / ninguno',
|
||||||
'UI:Search:Value:Toggler:CheckAllNoneFiltered' => 'Marcar todos / ninguno visible',
|
'UI:Search:Value:Toggler:CheckAllNoneFiltered' => 'Marcar todos / ninguno visible',
|
||||||
|
|
||||||
// - Widget other translations
|
// - Widget other translations
|
||||||
'UI:Search:Criteria:Numeric:From' => 'De',
|
'UI:Search:Criteria:Numeric:From' => 'De',
|
||||||
'UI:Search:Criteria:Numeric:Until' => 'Para',
|
'UI:Search:Criteria:Numeric:Until' => 'Para',
|
||||||
'UI:Search:Criteria:Numeric:PlaceholderFrom' => 'Cualquier',
|
'UI:Search:Criteria:Numeric:PlaceholderFrom' => 'Cualquier',
|
||||||
'UI:Search:Criteria:Numeric:PlaceholderUntil' => 'Cualquier',
|
'UI:Search:Criteria:Numeric:PlaceholderUntil' => 'Cualquier',
|
||||||
'UI:Search:Criteria:DateTime:From' => 'De',
|
'UI:Search:Criteria:DateTime:From' => 'De',
|
||||||
'UI:Search:Criteria:DateTime:FromTime' => 'De',
|
'UI:Search:Criteria:DateTime:FromTime' => 'De',
|
||||||
'UI:Search:Criteria:DateTime:Until' => 'hasta',
|
'UI:Search:Criteria:DateTime:Until' => 'hasta',
|
||||||
'UI:Search:Criteria:DateTime:UntilTime' => 'hasta',
|
'UI:Search:Criteria:DateTime:UntilTime' => 'hasta',
|
||||||
'UI:Search:Criteria:DateTime:PlaceholderFrom' => 'Cualquier fecha',
|
'UI:Search:Criteria:DateTime:PlaceholderFrom' => 'Cualquier fecha',
|
||||||
'UI:Search:Criteria:DateTime:PlaceholderFromTime' => 'Cualquier fecha',
|
'UI:Search:Criteria:DateTime:PlaceholderFromTime' => 'Cualquier fecha',
|
||||||
|
|||||||
@@ -1130,96 +1130,103 @@ Lors de l\'association à un déclencheur, on attribue à chaque action un numé
|
|||||||
'Portal:CreateNewIncidentItil' => 'Indiquer une panne',
|
'Portal:CreateNewIncidentItil' => 'Indiquer une panne',
|
||||||
'Portal:ChangeMyPassword' => 'Changer mon mot de passe',
|
'Portal:ChangeMyPassword' => 'Changer mon mot de passe',
|
||||||
'Portal:Disconnect' => 'Déconnexion',
|
'Portal:Disconnect' => 'Déconnexion',
|
||||||
'Portal:OpenRequests' => 'Mes requêtes en cours',
|
'Portal:OpenRequests' => 'Mes requêtes en cours',
|
||||||
'Portal:ClosedRequests' => 'Mes requêtes fermées',
|
'Portal:ClosedRequests' => 'Mes requêtes fermées',
|
||||||
'Portal:ResolvedRequests' => 'Mes requêtes résolues',
|
'Portal:ResolvedRequests' => 'Mes requêtes résolues',
|
||||||
'Portal:SelectService' => 'Choisissez un service dans le catalogue:',
|
'Portal:SelectService' => 'Choisissez un service dans le catalogue:',
|
||||||
'Portal:PleaseSelectOneService' => 'Veuillez choisir un service',
|
'Portal:PleaseSelectOneService' => 'Veuillez choisir un service',
|
||||||
'Portal:SelectSubcategoryFrom_Service' => 'Choisissez une sous-catégorie du service %1$s:',
|
'Portal:SelectSubcategoryFrom_Service' => 'Choisissez une sous-catégorie du service %1$s:',
|
||||||
'Portal:PleaseSelectAServiceSubCategory' => 'Veuillez choisir une sous-catégorie',
|
'Portal:PleaseSelectAServiceSubCategory' => 'Veuillez choisir une sous-catégorie',
|
||||||
'Portal:DescriptionOfTheRequest' => 'Entrez la description de votre requête:',
|
'Portal:DescriptionOfTheRequest' => 'Entrez la description de votre requête:',
|
||||||
'Portal:TitleRequestDetailsFor_Request' => 'Détails de votre requête %1$s:',
|
'Portal:TitleRequestDetailsFor_Request' => 'Détails de votre requête %1$s:',
|
||||||
'Portal:NoOpenRequest' => 'Aucune requête.',
|
'Portal:NoOpenRequest' => 'Aucune requête.',
|
||||||
'Portal:NoClosedRequest' => 'Aucune requête.',
|
'Portal:NoClosedRequest' => 'Aucune requête.',
|
||||||
'Portal:Button:ReopenTicket' => 'Réouvrir cette requête',
|
'Portal:Button:ReopenTicket' => 'Réouvrir cette requête',
|
||||||
'Portal:Button:CloseTicket' => 'Clôre cette requête',
|
'Portal:Button:CloseTicket' => 'Clôre cette requête',
|
||||||
'Portal:Button:UpdateRequest' => 'Mettre à jour la requête',
|
'Portal:Button:UpdateRequest' => 'Mettre à jour la requête',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Vos commentaires à propos du traitement de cette requête:',
|
'Portal:EnterYourCommentsOnTicket' => 'Vos commentaires à propos du traitement de cette requête:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Erreur: l\'utilisateur courant n\'est pas associé à une Personne/Contact. Contactez votre administrateur.',
|
'Portal:ErrorNoContactForThisUser' => 'Erreur: l\'utilisateur courant n\'est pas associé à une Personne/Contact. Contactez votre administrateur.',
|
||||||
'Portal:Attachments' => 'Pièces jointes',
|
'Portal:Attachments' => 'Pièces jointes',
|
||||||
'Portal:AddAttachment' => ' Ajouter une pièce jointe ',
|
'Portal:AddAttachment' => ' Ajouter une pièce jointe ',
|
||||||
'Portal:RemoveAttachment' => ' Enlever la pièce jointe ',
|
'Portal:RemoveAttachment' => ' Enlever la pièce jointe ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Pièce jointe #%1$d à %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Pièce jointe #%1$d à %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Sélectionnez un modèle de requête pour %1$s',
|
'Portal:SelectRequestTemplate' => 'Sélectionnez un modèle de requête pour %1$s',
|
||||||
'Enum:Undefined' => 'Non défini',
|
'Enum:Undefined' => 'Non défini',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s J %2$s H %3$s min %4$s s',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s J %2$s H %3$s min %4$s s',
|
||||||
'UI:ModifyAllPageTitle' => 'Modification par lots',
|
'UI:ModifyAllPageTitle' => 'Modification par lots',
|
||||||
'UI:Modify_ObjectsOf_Class' => 'Modification d\'objet(s) de type %1$s',
|
'UI:Modify_ObjectsOf_Class' => 'Modification d\'objet(s) de type %1$s',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modification de %1$d objet(s) de type %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modification de %1$d objet(s) de type %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modification de %1$d (sur %3$d) objets de type %2$s',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modification de %1$d (sur %3$d) objets de type %2$s',
|
||||||
'UI:Menu:ModifyAll' => 'Modifier...',
|
'UI:Menu:ModifyAll' => 'Modifier...',
|
||||||
'UI:Menu:ModifyAll_Class' => 'Modifier ces %1$s...',
|
'UI:Menu:ModifyAll_Class' => 'Modifier ces %1$s...',
|
||||||
'UI:Menu:ModifyAll_Link' => 'Modifier ces %1$s...',
|
'UI:Menu:ModifyAll_Link' => 'Modifier ces %1$s...',
|
||||||
'UI:Menu:ModifyAll_Remote' => 'Modifier ces %1$s...',
|
'UI:Menu:ModifyAll_Remote' => 'Modifier ces %1$s...',
|
||||||
'UI:Button:ModifyAll' => 'Modifier',
|
'UI:Button:ModifyAll' => 'Modifier',
|
||||||
'UI:Button:PreviewModifications' => 'Aperçu des modifications >>',
|
'UI:Button:PreviewModifications' => 'Aperçu des modifications >>',
|
||||||
'UI:ModifiedObject' => 'Objet Modifié',
|
'UI:ModifiedObject' => 'Objet Modifié',
|
||||||
'UI:BulkModifyStatus' => 'Opération',
|
'UI:BulkModifyStatus' => 'Opération',
|
||||||
'UI:BulkModifyStatus+' => '',
|
'UI:BulkModifyStatus+' => '',
|
||||||
'UI:BulkModifyErrors' => 'Erreur',
|
'UI:BulkModifyErrors' => 'Erreur',
|
||||||
'UI:BulkModifyErrors+' => '',
|
'UI:BulkModifyErrors+' => '',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Erreur',
|
'UI:BulkModifyStatusError' => 'Erreur',
|
||||||
'UI:BulkModifyStatusModified' => 'Modifié',
|
'UI:BulkModifyStatusModified' => 'Modifié',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Ignoré',
|
'UI:BulkModifyStatusSkipped' => 'Ignoré',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d valeurs distinctes:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d valeurs distinctes:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d fois',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d fois',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d valeurs supplémentaires...',
|
'UI:BulkModify:N_MoreValues' => '%1$d valeurs supplémentaires...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentative de modification du champ en lecture seule: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentative de modification du champ en lecture seule: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'L\'action a échoué',
|
'UI:FailedToApplyStimuli' => 'L\'action a échoué',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modification de %2$d objet(s) de type %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modification de %2$d objet(s) de type %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Nouvelle entrée ici...',
|
'UI:CaseLogTypeYourTextHere' => 'Nouvelle entrée ici...',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Valeur initiale:',
|
'UI:CaseLog:InitialValue' => 'Valeur initiale:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Le champ %1$s ne peut pas être modifié car il est géré par une synchronisation avec une source de données. Valeur ignorée.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Le champ %1$s ne peut pas être modifié car il est géré par une synchronisation avec une source de données. Valeur ignorée.',
|
||||||
'UI:ActionNotAllowed' => 'Vous n\'êtes pas autorisé à exécuter cette opération sur ces objets.',
|
'UI:ActionNotAllowed' => 'Vous n\'êtes pas autorisé à exécuter cette opération sur ces objets.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Veuillez s\\électionner au moins un objet pour cette opération.',
|
'UI:BulkAction:NoObjectSelected' => 'Veuillez s\\électionner au moins un objet pour cette opération.',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Le champ %1$s ne peut pas être modifié car il est géré par une synchronisation avec une source de données. Valeur inchangée.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Le champ %1$s ne peut pas être modifié car il est géré par une synchronisation avec une source de données. Valeur inchangée.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s éléments / %2$s éléments sélectionné(s).',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s éléments / %2$s éléments sélectionné(s).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s éléments.',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s éléments.',
|
||||||
'UI:Pagination:PageSize' => '%1$s éléments par page',
|
'UI:Pagination:PageSize' => '%1$s éléments par page',
|
||||||
'UI:Pagination:PagesLabel' => 'Pages:',
|
'UI:Pagination:PagesLabel' => 'Pages:',
|
||||||
'UI:Pagination:All' => 'Tous',
|
'UI:Pagination:All' => 'Tous',
|
||||||
'UI:HierarchyOf_Class' => 'Hiérarchie de type %1$s',
|
|
||||||
'UI:Preferences' => 'Préférences...',
|
'UI:Basket:Back' => 'Retour',
|
||||||
'UI:ArchiveModeOn' => 'Activer le mode Archive',
|
'UI:Basket:First' => 'Premier',
|
||||||
'UI:ArchiveModeOff' => 'Désactiver le mode Archive',
|
'UI:Basket:Previous' => 'Précédent',
|
||||||
'UI:ArchiveMode:Banner' => 'Mode Archive',
|
'UI:Basket:Next' => 'Suivant',
|
||||||
'UI:ArchiveMode:Banner+' => 'Les objets archivés sont visibles, et aucune modification n\'est possible',
|
'UI:Basket:Last' => 'Dernier',
|
||||||
'UI:FavoriteOrganizations' => 'Organisations Favorites',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Cochez dans la liste ci-dessous les organisations que vous voulez voir listées dans le menu principal. Ceci n\'est pas un réglage de sécurité. Les objets de toutes les organisations sont toujours visibles en choisissant "Toutes les Organisations" dans le menu.',
|
'UI:HierarchyOf_Class' => 'Hiérarchie de type %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Langue préférée',
|
'UI:Preferences' => 'Préférences...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Choisissez votre langue préférée',
|
'UI:ArchiveModeOn' => 'Activer le mode Archive',
|
||||||
'UI:FavoriteOtherSettings' => 'Autres réglages',
|
'UI:ArchiveModeOff' => 'Désactiver le mode Archive',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Mode Archive',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Les objets archivés sont visibles, et aucune modification n\'est possible',
|
||||||
|
'UI:FavoriteOrganizations' => 'Organisations Favorites',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Cochez dans la liste ci-dessous les organisations que vous voulez voir listées dans le menu principal. Ceci n\'est pas un réglage de sécurité. Les objets de toutes les organisations sont toujours visibles en choisissant "Toutes les Organisations" dans le menu.',
|
||||||
|
'UI:FavoriteLanguage' => 'Langue préférée',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Choisissez votre langue préférée',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Autres réglages',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Longueur par défaut : %1$s éléments par page',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Longueur par défaut : %1$s éléments par page',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Voir les données obsolètes',
|
'UI:Favorites:ShowObsoleteData' => 'Voir les données obsolètes',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Voir les données obsolètes dans les résultats de recherche et dans les listes de choix',
|
'UI:Favorites:ShowObsoleteData+' => 'Voir les données obsolètes dans les résultats de recherche et dans les listes de choix',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Toute modification sera perdue.',
|
'UI:NavigateAwayConfirmationMessage' => 'Toute modification sera perdue.',
|
||||||
'UI:CancelConfirmationMessage' => 'Vous allez perdre vos modifications. Voulez-vous continuer ?',
|
'UI:CancelConfirmationMessage' => 'Vous allez perdre vos modifications. Voulez-vous continuer ?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Des modifications n\'ont pas encore été prises en compte. Voulez-vous qu\'elles soient prises en compte automatiquement ?',
|
'UI:AutoApplyConfirmationMessage' => 'Des modifications n\'ont pas encore été prises en compte. Voulez-vous qu\'elles soient prises en compte automatiquement ?',
|
||||||
'UI:Create_Class_InState' => 'Créer l\'objet %1$s dans l\'état: ',
|
'UI:Create_Class_InState' => 'Créer l\'objet %1$s dans l\'état: ',
|
||||||
'UI:OrderByHint_Values' => 'Ordre de tri: %1$s',
|
'UI:OrderByHint_Values' => 'Ordre de tri: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Ajouter au Tableau de Bord...',
|
'UI:Menu:AddToDashboard' => 'Ajouter au Tableau de Bord...',
|
||||||
'UI:Button:Refresh' => 'Rafraîchir',
|
'UI:Button:Refresh' => 'Rafraîchir',
|
||||||
'UI:Button:GoPrint' => 'Imprimer...',
|
'UI:Button:GoPrint' => 'Imprimer...',
|
||||||
'UI:ExplainPrintable' => 'Cliquez sur les icones %1$s pour cacher des éléments lors de l\'impression.<br/>Utilisez la fonction "Aperçu avant impression" de votre navigateur pour prévisualiser avant d\'imprimer.<br/>Note: cet en-tête ainsi que les icones %1$s ne seront pas imprimés.',
|
'UI:ExplainPrintable' => 'Cliquez sur les icones %1$s pour cacher des éléments lors de l\'impression.<br/>Utilisez la fonction "Aperçu avant impression" de votre navigateur pour prévisualiser avant d\'imprimer.<br/>Note: cet en-tête ainsi que les icones %1$s ne seront pas imprimés.',
|
||||||
'UI:PrintResolution:FullSize' => 'Pleine largeur',
|
'UI:PrintResolution:FullSize' => 'Pleine largeur',
|
||||||
'UI:PrintResolution:A4Portrait' => 'A4 Portrait',
|
'UI:PrintResolution:A4Portrait' => 'A4 Portrait',
|
||||||
'UI:PrintResolution:A4Landscape' => 'A4 Paysage',
|
'UI:PrintResolution:A4Landscape' => 'A4 Paysage',
|
||||||
'UI:PrintResolution:LetterPortrait' => 'US Letter Portrait',
|
'UI:PrintResolution:LetterPortrait' => 'US Letter Portrait',
|
||||||
'UI:PrintResolution:LetterLandscape' => 'US Letter Paysage',
|
'UI:PrintResolution:LetterLandscape' => 'US Letter Paysage',
|
||||||
'UI:Toggle:SwitchToStandardDashboard' => 'Basculer sur le tableau de bord standard',
|
'UI:Toggle:SwitchToStandardDashboard' => 'Basculer sur le tableau de bord standard',
|
||||||
'UI:Toggle:SwitchToCustomDashboard' => 'Basculer sur le tableau de bord modifié',
|
'UI:Toggle:SwitchToCustomDashboard' => 'Basculer sur le tableau de bord modifié',
|
||||||
|
|
||||||
'UI:ConfigureThisList' => 'Configurer Cette Liste...',
|
'UI:ConfigureThisList' => 'Configurer Cette Liste...',
|
||||||
'UI:ListConfigurationTitle' => 'Configuration de la liste',
|
'UI:ListConfigurationTitle' => 'Configuration de la liste',
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1127,65 +1127,72 @@ Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine"
|
|||||||
'Portal:Button:UpdateRequest' => 'Update the request',
|
'Portal:Button:UpdateRequest' => 'Update the request',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Inserisci il tuo commento sulla risoluzione di questo ticket:',
|
'Portal:EnterYourCommentsOnTicket' => 'Inserisci il tuo commento sulla risoluzione di questo ticket:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Errore: l\'utente corrente non è associato ad un Contatto/Persona. Si prega di contattare l\'amministratore.',
|
'Portal:ErrorNoContactForThisUser' => 'Errore: l\'utente corrente non è associato ad un Contatto/Persona. Si prega di contattare l\'amministratore.',
|
||||||
'Portal:Attachments' => 'Allegati',
|
'Portal:Attachments' => 'Allegati',
|
||||||
'Portal:AddAttachment' => ' Aggiungi allegati ',
|
'Portal:AddAttachment' => ' Aggiungi allegati ',
|
||||||
'Portal:RemoveAttachment' => ' Rimuovi allegati ',
|
'Portal:RemoveAttachment' => ' Rimuovi allegati ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Allegato #%1$d a %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Allegato #%1$d a %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Select a template for %1$s~~',
|
'Portal:SelectRequestTemplate' => 'Select a template for %1$s~~',
|
||||||
'Enum:Undefined' => 'Non definito',
|
'Enum:Undefined' => 'Non definito',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Giorni %2$s Ore %3$s Minuti %4$s Secondi',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Giorni %2$s Ore %3$s Minuti %4$s Secondi',
|
||||||
'UI:ModifyAllPageTitle' => 'Modifica Tutto',
|
'UI:ModifyAllPageTitle' => 'Modifica Tutto',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modifica %1$d oggetto della classe %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modifica %1$d oggetto della classe %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifica %1$d oggetto della classe %2$s fuori da %3$d~~',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Modifica %1$d oggetto della classe %2$s fuori da %3$d~~',
|
||||||
'UI:Menu:ModifyAll' => 'Modifica...',
|
'UI:Menu:ModifyAll' => 'Modifica...',
|
||||||
'UI:Button:ModifyAll' => 'Modifica tutto',
|
'UI:Button:ModifyAll' => 'Modifica tutto',
|
||||||
'UI:Button:PreviewModifications' => 'Anteprima Modifiche >>~~',
|
'UI:Button:PreviewModifications' => 'Anteprima Modifiche >>~~',
|
||||||
'UI:ModifiedObject' => 'Oggetto Modificato',
|
'UI:ModifiedObject' => 'Oggetto Modificato',
|
||||||
'UI:BulkModifyStatus' => 'Operazioni',
|
'UI:BulkModifyStatus' => 'Operazioni',
|
||||||
'UI:BulkModifyStatus+' => '',
|
'UI:BulkModifyStatus+' => '',
|
||||||
'UI:BulkModifyErrors' => 'Errori (eventuali)',
|
'UI:BulkModifyErrors' => 'Errori (eventuali)',
|
||||||
'UI:BulkModifyErrors+' => '',
|
'UI:BulkModifyErrors+' => '',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Errore',
|
'UI:BulkModifyStatusError' => 'Errore',
|
||||||
'UI:BulkModifyStatusModified' => 'Modificato',
|
'UI:BulkModifyStatusModified' => 'Modificato',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Saltato',
|
'UI:BulkModifyStatusSkipped' => 'Saltato',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d valori distinti:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d valori distinti:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d volta(e)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d volta(e)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d più valori...~~',
|
'UI:BulkModify:N_MoreValues' => '%1$d più valori...~~',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentativo di impostare il campo di sola lettura: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentativo di impostare il campo di sola lettura: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'L\'azione non è riuscita.',
|
'UI:FailedToApplyStimuli' => 'L\'azione non è riuscita.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifica %2$d oggetti della classe %3$s~~',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifica %2$d oggetti della classe %3$s~~',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Digitare il tuo testo qui:',
|
'UI:CaseLogTypeYourTextHere' => 'Digitare il tuo testo qui:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:~~',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:~~',
|
||||||
'UI:CaseLog:InitialValue' => 'Valore iniziale:',
|
'UI:CaseLog:InitialValue' => 'Valore iniziale:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Il campo %1$s on è scrivibile, perché è comandato dalla sincronizzazione dei dati. Valore non impostato.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Il campo %1$s on è scrivibile, perché è comandato dalla sincronizzazione dei dati. Valore non impostato.',
|
||||||
'UI:ActionNotAllowed' => 'Non hai i permessi per eseguire questa azione su questi oggetti.',
|
'UI:ActionNotAllowed' => 'Non hai i permessi per eseguire questa azione su questi oggetti.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Si prega di selezionare almeno un oggetto per eseguire questa operazione',
|
'UI:BulkAction:NoObjectSelected' => 'Si prega di selezionare almeno un oggetto per eseguire questa operazione',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Il campo %1$s on è scrivibile, perché è comandato dalla sincronizzazione dei dati. Valore rimane invariato.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Il campo %1$s on è scrivibile, perché è comandato dalla sincronizzazione dei dati. Valore rimane invariato.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s objects (%2$s objects selected).~~',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s objects (%2$s objects selected).~~',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objects.~~',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objects.~~',
|
||||||
'UI:Pagination:PageSize' => '%1$s objects per page~~',
|
'UI:Pagination:PageSize' => '%1$s objects per page~~',
|
||||||
'UI:Pagination:PagesLabel' => 'Pages:~~',
|
'UI:Pagination:PagesLabel' => 'Pages:~~',
|
||||||
'UI:Pagination:All' => 'All~~',
|
'UI:Pagination:All' => 'All~~',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchy of %1$s~~',
|
|
||||||
'UI:Preferences' => 'Preferences...~~',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Favorite Organizations~~',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Check in the list below the organizations that you want to see in the drop-down menu for a quick access. Note that this is not a security setting, objects from any organization are still visible and can be accessed by selecting \\"All Organizations\\" in the drop-down list.~~',
|
'UI:HierarchyOf_Class' => 'Hierarchy of %1$s~~',
|
||||||
'UI:FavoriteLanguage' => 'Language of the User Interface~~',
|
'UI:Preferences' => 'Preferences...~~',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Select your preferred language~~',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => 'Other Settings~~',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'Favorite Organizations~~',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Check in the list below the organizations that you want to see in the drop-down menu for a quick access. Note that this is not a security setting, objects from any organization are still visible and can be accessed by selecting \\"All Organizations\\" in the drop-down list.~~',
|
||||||
|
'UI:FavoriteLanguage' => 'Language of the User Interface~~',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Select your preferred language~~',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Other Settings~~',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Default length: %1$s items per page~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Default length: %1$s items per page~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Any modification will be discarded.~~',
|
'UI:NavigateAwayConfirmationMessage' => 'Any modification will be discarded.~~',
|
||||||
'UI:CancelConfirmationMessage' => 'You will loose your changes. Continue anyway?~~',
|
'UI:CancelConfirmationMessage' => 'You will loose your changes. Continue anyway?~~',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Some changes have not been applied yet. Do you want itop to take them into account?~~',
|
'UI:AutoApplyConfirmationMessage' => 'Some changes have not been applied yet. Do you want itop to take them into account?~~',
|
||||||
'UI:Create_Class_InState' => 'Create the %1$s in state: ~~',
|
'UI:Create_Class_InState' => 'Create the %1$s in state: ~~',
|
||||||
'UI:OrderByHint_Values' => 'Sort order: %1$s~~',
|
'UI:OrderByHint_Values' => 'Sort order: %1$s~~',
|
||||||
'UI:Menu:AddToDashboard' => 'Add To Dashboard...~~',
|
'UI:Menu:AddToDashboard' => 'Add To Dashboard...~~',
|
||||||
'UI:Button:Refresh' => 'Ricarica',
|
'UI:Button:Refresh' => 'Ricarica',
|
||||||
'UI:Button:GoPrint' => 'Print...~~',
|
'UI:Button:GoPrint' => 'Print...~~',
|
||||||
|
|||||||
@@ -1116,65 +1116,72 @@ We hope you’ll enjoy this version as much as we enjoyed imagining and creating
|
|||||||
'Portal:Button:UpdateRequest' => '要求を更新',
|
'Portal:Button:UpdateRequest' => '要求を更新',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'このチケットの解決について、コメントを入力してください。',
|
'Portal:EnterYourCommentsOnTicket' => 'このチケットの解決について、コメントを入力してください。',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'エラー:現在のユーザは連絡先/人物に関連づけられていません。管理者に問い合わせてください。',
|
'Portal:ErrorNoContactForThisUser' => 'エラー:現在のユーザは連絡先/人物に関連づけられていません。管理者に問い合わせてください。',
|
||||||
'Portal:Attachments' => '添付',
|
'Portal:Attachments' => '添付',
|
||||||
'Portal:AddAttachment' => ' 添付を追加 ',
|
'Portal:AddAttachment' => ' 添付を追加 ',
|
||||||
'Portal:RemoveAttachment' => ' 添付を削除 ',
|
'Portal:RemoveAttachment' => ' 添付を削除 ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => '$2$s ($3$s)への添付 #%1$d',
|
'Portal:Attachment_No_To_Ticket_Name' => '$2$s ($3$s)への添付 #%1$d',
|
||||||
'Portal:SelectRequestTemplate' => 'Select a template for %1$s のテンプレートを選択',
|
'Portal:SelectRequestTemplate' => 'Select a template for %1$s のテンプレートを選択',
|
||||||
'Enum:Undefined' => '未定義',
|
'Enum:Undefined' => '未定義',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s 日 %2$s 時 %3$s 分 %4$s 秒',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s 日 %2$s 時 %3$s 分 %4$s 秒',
|
||||||
'UI:ModifyAllPageTitle' => '全てを修正',
|
'UI:ModifyAllPageTitle' => '全てを修正',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'クラス%2$Sの%1$dオブジェクトを修正',
|
'UI:Modify_N_ObjectsOf_Class' => 'クラス%2$Sの%1$dオブジェクトを修正',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'クラス%2$sの%3$d中%1$dを修正',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'クラス%2$sの%3$d中%1$dを修正',
|
||||||
'UI:Menu:ModifyAll' => '修正...',
|
'UI:Menu:ModifyAll' => '修正...',
|
||||||
'UI:Button:ModifyAll' => '全て修正',
|
'UI:Button:ModifyAll' => '全て修正',
|
||||||
'UI:Button:PreviewModifications' => '修正をプレビュー >>',
|
'UI:Button:PreviewModifications' => '修正をプレビュー >>',
|
||||||
'UI:ModifiedObject' => '修正されたオブジェクト',
|
'UI:ModifiedObject' => '修正されたオブジェクト',
|
||||||
'UI:BulkModifyStatus' => '操作',
|
'UI:BulkModifyStatus' => '操作',
|
||||||
'UI:BulkModifyStatus+' => '操作の状態',
|
'UI:BulkModifyStatus+' => '操作の状態',
|
||||||
'UI:BulkModifyErrors' => 'エラー (もしあれば)',
|
'UI:BulkModifyErrors' => 'エラー (もしあれば)',
|
||||||
'UI:BulkModifyErrors+' => '修正を出来ないようにしているエラー',
|
'UI:BulkModifyErrors+' => '修正を出来ないようにしているエラー',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'エラー',
|
'UI:BulkModifyStatusError' => 'エラー',
|
||||||
'UI:BulkModifyStatusModified' => '修正',
|
'UI:BulkModifyStatusModified' => '修正',
|
||||||
'UI:BulkModifyStatusSkipped' => 'スキップ',
|
'UI:BulkModifyStatusSkipped' => 'スキップ',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d 個の個別の値:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d 個の個別の値:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d 回存在',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d 回存在',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d 個以上の値...',
|
'UI:BulkModify:N_MoreValues' => '%1$d 個以上の値...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => '読み込み専用フィールド %1$にセットしょうとしています。',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => '読み込み専用フィールド %1$にセットしょうとしています。',
|
||||||
'UI:FailedToApplyStimuli' => 'アクションは失敗しました。',
|
'UI:FailedToApplyStimuli' => 'アクションは失敗しました。',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: クラス%3$sの%2$dオブジェクトを修正',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: クラス%3$sの%2$dオブジェクトを修正',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'テキストを入力ください:',
|
'UI:CaseLogTypeYourTextHere' => 'テキストを入力ください:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => '初期値:',
|
'UI:CaseLog:InitialValue' => '初期値:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'フィールド %1$s は、データの同期によってマスターリングされているため書き込み可能ではありません。値は設定されません。',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'フィールド %1$s は、データの同期によってマスターリングされているため書き込み可能ではありません。値は設定されません。',
|
||||||
'UI:ActionNotAllowed' => 'あなたは、これらのオブジェクトへのこのアクションを許可されていません。',
|
'UI:ActionNotAllowed' => 'あなたは、これらのオブジェクトへのこのアクションを許可されていません。',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'この操作を実行するには、少なくとも1つのオブジェクトを選択してください。',
|
'UI:BulkAction:NoObjectSelected' => 'この操作を実行するには、少なくとも1つのオブジェクトを選択してください。',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'フィールド %1$s はデータの同期によってマスターリングされているため、書き込み可能ではありません。値は変更されません。',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'フィールド %1$s はデータの同期によってマスターリングされているため、書き込み可能ではありません。値は変更されません。',
|
||||||
'UI:Pagination:HeaderSelection' => '全: %1$s オブジェクト (%2$s オブジェクト選択)。',
|
'UI:Pagination:HeaderSelection' => '全: %1$s オブジェクト (%2$s オブジェクト選択)。',
|
||||||
'UI:Pagination:HeaderNoSelection' => '全: %1$s オブジェクト。',
|
'UI:Pagination:HeaderNoSelection' => '全: %1$s オブジェクト。',
|
||||||
'UI:Pagination:PageSize' => '%1$s オブジェクト/ページ',
|
'UI:Pagination:PageSize' => '%1$s オブジェクト/ページ',
|
||||||
'UI:Pagination:PagesLabel' => 'ページ:',
|
'UI:Pagination:PagesLabel' => 'ページ:',
|
||||||
'UI:Pagination:All' => '全',
|
'UI:Pagination:All' => '全',
|
||||||
'UI:HierarchyOf_Class' => '%1$s の階層',
|
|
||||||
'UI:Preferences' => 'プリファレンス...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'クイックアクセス組織',
|
|
||||||
'UI:FavoriteOrganizations+' => '迅速なアクセスのためのドロップダウンメニューに表示したい組織は、以下のリストで確認してください。セキュリティ設定ではないことに注意してください。全ての組織のオブジェクトは、表示可能です。ドロップダウンリストで「すべての組織(All Organizations)」を選択することでアクセスすることができます。',
|
'UI:HierarchyOf_Class' => '%1$s の階層',
|
||||||
'UI:FavoriteLanguage' => 'ユーザインターフェースの言語~~',
|
'UI:Preferences' => 'プリファレンス...',
|
||||||
'UI:Favorites:SelectYourLanguage' => '希望する言語を選択ください。',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => '他のセッティング',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'クイックアクセス組織',
|
||||||
|
'UI:FavoriteOrganizations+' => '迅速なアクセスのためのドロップダウンメニューに表示したい組織は、以下のリストで確認してください。セキュリティ設定ではないことに注意してください。全ての組織のオブジェクトは、表示可能です。ドロップダウンリストで「すべての組織(All Organizations)」を選択することでアクセスすることができます。',
|
||||||
|
'UI:FavoriteLanguage' => 'ユーザインターフェースの言語~~',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => '希望する言語を選択ください。',
|
||||||
|
'UI:FavoriteOtherSettings' => '他のセッティング',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'リストの規定の長さ: %1$s items 毎ページ~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'リストの規定の長さ: %1$s items 毎ページ~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||||
'UI:NavigateAwayConfirmationMessage' => '全ての変更を破棄します。',
|
'UI:NavigateAwayConfirmationMessage' => '全ての変更を破棄します。',
|
||||||
'UI:CancelConfirmationMessage' => '変更内容が失われます。 続けますか?',
|
'UI:CancelConfirmationMessage' => '変更内容が失われます。 続けますか?',
|
||||||
'UI:AutoApplyConfirmationMessage' => '幾つかの変更は、まだ反映されていません。 それらの変更を反映させますか?。',
|
'UI:AutoApplyConfirmationMessage' => '幾つかの変更は、まだ反映されていません。 それらの変更を反映させますか?。',
|
||||||
'UI:Create_Class_InState' => '%1$sを作成、ステート:',
|
'UI:Create_Class_InState' => '%1$sを作成、ステート:',
|
||||||
'UI:OrderByHint_Values' => '並び順: %1$s',
|
'UI:OrderByHint_Values' => '並び順: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'ダッシュボードに追加...',
|
'UI:Menu:AddToDashboard' => 'ダッシュボードに追加...',
|
||||||
'UI:Button:Refresh' => '再表示',
|
'UI:Button:Refresh' => '再表示',
|
||||||
'UI:Button:GoPrint' => 'Print...~~',
|
'UI:Button:GoPrint' => 'Print...~~',
|
||||||
|
|||||||
@@ -333,14 +333,18 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
||||||
'BooleanLabel:yes' => 'Ja',
|
'BooleanLabel:yes' => 'Ja',
|
||||||
'BooleanLabel:no' => 'Nee',
|
'BooleanLabel:no' => 'Nee',
|
||||||
'UI:Login:Title' => 'Aanmelden in '.ITOP_APPLICATION_SHORT,
|
'UI:Login:Title' => 'Aanmelden in '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenu' => 'Welkom',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Welkom',
|
||||||
'Menu:WelcomeMenu+' => 'Welkom in '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Welkom',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Welkom in '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Welkom in '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Welkom in '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Welkom',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => 'Welkom in '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => 'Welkom in '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' is een compleet en open source portaal voor IT-operaties.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' is een compleet en open source portaal voor IT-operaties.</p>
|
||||||
<ul>Op maat van jouw IT-omgeving:
|
<ul>Op maat van jouw IT-omgeving:
|
||||||
@@ -353,7 +357,7 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>Alle modules kunnen volledig onafhankelijk van elkaar worden opgezet, stap voor stap.</p>',
|
<p>Alle modules kunnen volledig onafhankelijk van elkaar worden opgezet, stap voor stap.</p>',
|
||||||
|
|
||||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' is gericht op serviceproviders. Het zorgt ervoor dat IT-engineers gemakkelijk meerdere klanten of organisaties kunnen beheren.
|
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' is gericht op serviceproviders. Het zorgt ervoor dat IT-engineers gemakkelijk meerdere klanten of organisaties kunnen beheren.
|
||||||
<ul>'.ITOP_APPLICATION_SHORT.' zorgt dankzij een uitgebreide set van bedrijfsprocessen voor een reeks voordelen:
|
<ul>'.ITOP_APPLICATION_SHORT.' zorgt dankzij een uitgebreide set van bedrijfsprocessen voor een reeks voordelen:
|
||||||
<li>De efficientië van het IT-management versterkt.</li>
|
<li>De efficientië van het IT-management versterkt.</li>
|
||||||
<li>De prestaties van IT-operaties verbetert.</li>
|
<li>De prestaties van IT-operaties verbetert.</li>
|
||||||
@@ -1130,65 +1134,72 @@ Bij die koppeling wordt aan elke actie een volgorde-nummer gegeven. Dit bepaalt
|
|||||||
'Portal:Button:UpdateRequest' => 'Update de aanvraag',
|
'Portal:Button:UpdateRequest' => 'Update de aanvraag',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Voeg opmerkingen over het oplossen van deze ticket toe:',
|
'Portal:EnterYourCommentsOnTicket' => 'Voeg opmerkingen over het oplossen van deze ticket toe:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Fout: de huidige gebruiker is niet gelinkt aan een persoon/contact. Neem contact op met jouw beheerder.',
|
'Portal:ErrorNoContactForThisUser' => 'Fout: de huidige gebruiker is niet gelinkt aan een persoon/contact. Neem contact op met jouw beheerder.',
|
||||||
'Portal:Attachments' => 'Bijlagen',
|
'Portal:Attachments' => 'Bijlagen',
|
||||||
'Portal:AddAttachment' => ' Voeg bijlage toe ',
|
'Portal:AddAttachment' => ' Voeg bijlage toe ',
|
||||||
'Portal:RemoveAttachment' => ' Verwijder bijlage ',
|
'Portal:RemoveAttachment' => ' Verwijder bijlage ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Bijlage #%1$d to %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Bijlage #%1$d to %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Selecteer een sjabloon voor %1$s',
|
'Portal:SelectRequestTemplate' => 'Selecteer een sjabloon voor %1$s',
|
||||||
'Enum:Undefined' => 'Ongedefinieerd',
|
'Enum:Undefined' => 'Ongedefinieerd',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s dagen %2$s uren %3$s minuten %4$s seconden',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s dagen %2$s uren %3$s minuten %4$s seconden',
|
||||||
'UI:ModifyAllPageTitle' => 'Bewerk alles',
|
'UI:ModifyAllPageTitle' => 'Bewerk alles',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Bezig met het aanpassen van %1$d objecten van klasse %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Bezig met het aanpassen van %1$d objecten van klasse %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Bezig met het aanpassen van %1$d objecten van klasse %2$s van de %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Bezig met het aanpassen van %1$d objecten van klasse %2$s van de %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Bewerk...',
|
'UI:Menu:ModifyAll' => 'Bewerk...',
|
||||||
'UI:Button:ModifyAll' => 'Bewerk alles',
|
'UI:Button:ModifyAll' => 'Bewerk alles',
|
||||||
'UI:Button:PreviewModifications' => 'Voorbeeld van de bewerkingen >>',
|
'UI:Button:PreviewModifications' => 'Voorbeeld van de bewerkingen >>',
|
||||||
'UI:ModifiedObject' => 'Object is aangepast',
|
'UI:ModifiedObject' => 'Object is aangepast',
|
||||||
'UI:BulkModifyStatus' => 'Operatie',
|
'UI:BulkModifyStatus' => 'Operatie',
|
||||||
'UI:BulkModifyStatus+' => 'Status van de operatie',
|
'UI:BulkModifyStatus+' => 'Status van de operatie',
|
||||||
'UI:BulkModifyErrors' => 'Fouten (indien van toepassing)',
|
'UI:BulkModifyErrors' => 'Fouten (indien van toepassing)',
|
||||||
'UI:BulkModifyErrors+' => 'Fouten die de bewerking verhinderen',
|
'UI:BulkModifyErrors+' => 'Fouten die de bewerking verhinderen',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Fout',
|
'UI:BulkModifyStatusError' => 'Fout',
|
||||||
'UI:BulkModifyStatusModified' => 'Aangepast',
|
'UI:BulkModifyStatusModified' => 'Aangepast',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Overgeslagen',
|
'UI:BulkModifyStatusSkipped' => 'Overgeslagen',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d unieke waarden:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d unieke waarden:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d keer',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d keer',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d meer waarden...',
|
'UI:BulkModify:N_MoreValues' => '%1$d meer waarden...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Bezig met het instellen van het alleen-lezen veld: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Bezig met het instellen van het alleen-lezen veld: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'De actie is mislukt.',
|
'UI:FailedToApplyStimuli' => 'De actie is mislukt.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Bezig met het bewerken van %2$d objecten van klasse %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Bezig met het bewerken van %2$d objecten van klasse %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Typ jouw tekst hier:',
|
'UI:CaseLogTypeYourTextHere' => 'Typ jouw tekst hier:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Beginwaarde:',
|
'UI:CaseLog:InitialValue' => 'Beginwaarde:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Het veld %1$s is niet aanpasbaar omdat het onderdeel is van een datasynchronisatie. Waarde niet opgegeven',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Het veld %1$s is niet aanpasbaar omdat het onderdeel is van een datasynchronisatie. Waarde niet opgegeven',
|
||||||
'UI:ActionNotAllowed' => 'Je hebt geen toestemming om deze actie op deze objecten uit te voeren.',
|
'UI:ActionNotAllowed' => 'Je hebt geen toestemming om deze actie op deze objecten uit te voeren.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Selecteer tenminste een object om deze actie uit te voeren',
|
'UI:BulkAction:NoObjectSelected' => 'Selecteer tenminste een object om deze actie uit te voeren',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Het veld %1$s is niet aanpasbaar omdat het onderdeel is van een datasynchronisatie. Waarde blijft onveranderd',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Het veld %1$s is niet aanpasbaar omdat het onderdeel is van een datasynchronisatie. Waarde blijft onveranderd',
|
||||||
'UI:Pagination:HeaderSelection' => 'Totaal: %1$s objecten (%2$s objecten geselecteerd).',
|
'UI:Pagination:HeaderSelection' => 'Totaal: %1$s objecten (%2$s objecten geselecteerd).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Totaal: %1$s objecten.',
|
'UI:Pagination:HeaderNoSelection' => 'Totaal: %1$s objecten.',
|
||||||
'UI:Pagination:PageSize' => '%1$s objecten per pagina',
|
'UI:Pagination:PageSize' => '%1$s objecten per pagina',
|
||||||
'UI:Pagination:PagesLabel' => 'Paginas:',
|
'UI:Pagination:PagesLabel' => 'Paginas:',
|
||||||
'UI:Pagination:All' => 'Alles',
|
'UI:Pagination:All' => 'Alles',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchie van %1$s',
|
|
||||||
'UI:Preferences' => 'Voorkeuren...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Schakel Archief-mode in',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Schakel Archief-mode uit',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archief-mode',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Gearchiveerde objecten zijn zichtbaar, maar kunnen niet worden aangepast',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Favoriete organisaties',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Duid in onderstaande lijst de organisaties aan die je wilt zien in de keuzelijst voor een snelle toegang. Dit is geen beveiligingsinstelling; objecten van elke organisatie zijn nog steed zichtbaar en toegankelijk door "Alle Organisaties" te selecteren in de keuzelijst.',
|
'UI:HierarchyOf_Class' => 'Hierarchie van %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Taal van de gebruikersinterface',
|
'UI:Preferences' => 'Voorkeuren...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Selecteer jouw taal',
|
'UI:ArchiveModeOn' => 'Schakel Archief-mode in',
|
||||||
'UI:FavoriteOtherSettings' => 'Overige instellingen',
|
'UI:ArchiveModeOff' => 'Schakel Archief-mode uit',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archief-mode',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Gearchiveerde objecten zijn zichtbaar, maar kunnen niet worden aangepast',
|
||||||
|
'UI:FavoriteOrganizations' => 'Favoriete organisaties',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Duid in onderstaande lijst de organisaties aan die je wilt zien in de keuzelijst voor een snelle toegang. Dit is geen beveiligingsinstelling; objecten van elke organisatie zijn nog steed zichtbaar en toegankelijk door "Alle Organisaties" te selecteren in de keuzelijst.',
|
||||||
|
'UI:FavoriteLanguage' => 'Taal van de gebruikersinterface',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Selecteer jouw taal',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Overige instellingen',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Standaardlengte: %1$s items per pagina',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Standaardlengte: %1$s items per pagina',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Toon "Buiten dienst"-data',
|
'UI:Favorites:ShowObsoleteData' => 'Toon "Buiten dienst"-data',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Toon "Buiten dienst"-data in zoekresultaten en in keuzelijsten.',
|
'UI:Favorites:ShowObsoleteData+' => 'Toon "Buiten dienst"-data in zoekresultaten en in keuzelijsten.',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Bewerkingen zullen worden genegeerd.',
|
'UI:NavigateAwayConfirmationMessage' => 'Bewerkingen zullen worden genegeerd.',
|
||||||
'UI:CancelConfirmationMessage' => 'Je zult jouw aanpassingen verliezen. Wil je toch doorgaan?',
|
'UI:CancelConfirmationMessage' => 'Je zult jouw aanpassingen verliezen. Wil je toch doorgaan?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Sommige veranderingen zijn nog niet doorgevoerd. Wil je dat '.ITOP_APPLICATION_SHORT.' deze meeneemt?',
|
'UI:AutoApplyConfirmationMessage' => 'Sommige veranderingen zijn nog niet doorgevoerd. Wil je dat '.ITOP_APPLICATION_SHORT.' deze meeneemt?',
|
||||||
'UI:Create_Class_InState' => 'Maak %1$s aan in deze fase: ',
|
'UI:Create_Class_InState' => 'Maak %1$s aan in deze fase: ',
|
||||||
'UI:OrderByHint_Values' => 'Sorteervolgorde: %1$s',
|
'UI:OrderByHint_Values' => 'Sorteervolgorde: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Voeg toe aan dashboard...',
|
'UI:Menu:AddToDashboard' => 'Voeg toe aan dashboard...',
|
||||||
'UI:Button:Refresh' => 'Herlaad',
|
'UI:Button:Refresh' => 'Herlaad',
|
||||||
'UI:Button:GoPrint' => 'Afdrukken...',
|
'UI:Button:GoPrint' => 'Afdrukken...',
|
||||||
|
|||||||
@@ -334,14 +334,18 @@ Dict::Add('PL PL', 'Polish', 'Polski', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('PL PL', 'Polish', 'Polski', array(
|
Dict::Add('PL PL', 'Polish', 'Polski', array(
|
||||||
'BooleanLabel:yes' => 'tak',
|
'BooleanLabel:yes' => 'tak',
|
||||||
'BooleanLabel:no' => 'nie',
|
'BooleanLabel:no' => 'nie',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login',
|
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login',
|
||||||
'Menu:WelcomeMenu' => 'Witaj',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Witaj',
|
||||||
'Menu:WelcomeMenu+' => 'Witaj w '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Witaj',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Witaj w '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Witaj w '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Witaj w '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Witaj',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => 'Witaj w '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => 'Witaj w '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' to kompletny portal operacyjny OpenSource IT.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' to kompletny portal operacyjny OpenSource IT.</p>
|
||||||
<ul>Obejmuje:
|
<ul>Obejmuje:
|
||||||
@@ -1010,39 +1014,54 @@ W przypadku powiązania z wyzwalaczem, każde działanie otrzymuje numer "porzą
|
|||||||
'UI:NotificationsMenu:Actions:Action' => 'Inne działania',
|
'UI:NotificationsMenu:Actions:Action' => 'Inne działania',
|
||||||
'UI:NotificationsMenu:AvailableActions' => 'Dostępne działania',
|
'UI:NotificationsMenu:AvailableActions' => 'Dostępne działania',
|
||||||
|
|
||||||
'Menu:TagAdminMenu' => 'Konfiguracja tagów',
|
'Menu:TagAdminMenu' => 'Konfiguracja tagów',
|
||||||
'Menu:TagAdminMenu+' => 'Zarządzanie wartościami tagów',
|
'Menu:TagAdminMenu+' => 'Zarządzanie wartościami tagów',
|
||||||
'UI:TagAdminMenu:Title' => 'Konfiguracja tagów',
|
'UI:TagAdminMenu:Title' => 'Konfiguracja tagów',
|
||||||
'UI:TagAdminMenu:NoTags' => 'Nie skonfigurowano pola tagu',
|
'UI:TagAdminMenu:NoTags' => 'Nie skonfigurowano pola tagu',
|
||||||
'UI:TagSetFieldData:Error' => 'Błąd: %1$s',
|
'UI:TagSetFieldData:Error' => 'Błąd: %1$s',
|
||||||
|
|
||||||
'Menu:AuditCategories' => 'Kategorie audytu',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories' => 'Kategorie audytu',
|
||||||
'Menu:AuditCategories+' => 'Kategorie audytu',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:Notifications:Title' => 'Kategorie audytu',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories+' => 'Kategorie audytu',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:Notifications:Title' => 'Kategorie audytu',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:RunQueriesMenu' => 'Uruchom zapytania', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:RunQueriesMenu' => 'Uruchom zapytania',
|
||||||
'Menu:RunQueriesMenu+' => 'Uruchom dowolne zapytanie',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:RunQueriesMenu+' => 'Uruchom dowolne zapytanie',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:QueryMenu' => 'Słownik zapytań',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:QueryMenu' => 'Słownik zapytań',
|
||||||
'Menu:QueryMenu+' => 'Słownik zapytań',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:QueryMenu+' => 'Słownik zapytań',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:DataAdministration' => 'Administracja danymi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:DataAdministration' => 'Administracja danymi',
|
||||||
'Menu:DataAdministration+' => 'Administracja danymi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:DataAdministration+' => 'Administracja danymi',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UniversalSearchMenu' => 'Wyszukiwanie uniwersalne',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UniversalSearchMenu' => 'Wyszukiwanie uniwersalne',
|
||||||
'Menu:UniversalSearchMenu+' => 'Szukaj wszystkiego...', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UniversalSearchMenu+' => 'Szukaj wszystkiego...',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UserManagementMenu' => 'Zarządzanie użytkownikami',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UserManagementMenu' => 'Zarządzanie użytkownikami',
|
||||||
'Menu:UserManagementMenu+' => 'Zarządzanie użytkownikami', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UserManagementMenu+' => 'Zarządzanie użytkownikami',
|
||||||
|
// 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' => 'Profile',
|
||||||
'Menu:ProfilesMenu+' => 'Profile',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// 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',
|
'Menu:ProfilesMenu:Title' => 'Profile',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UserAccountsMenu' => 'Konta użytkowników',
|
'Menu:UserAccountsMenu' => 'Konta użytkowników',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:UserAccountsMenu+' => 'Konta użytkowników',
|
'Menu:UserAccountsMenu+' => 'Konta użytkowników',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:UserAccountsMenu:Title' => 'Konta użytkowników',
|
'Menu:UserAccountsMenu:Title' => 'Konta użytkowników',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
@@ -1051,9 +1070,9 @@ W przypadku powiązania z wyzwalaczem, każde działanie otrzymuje numer "porzą
|
|||||||
'UI:iTopVersion:Long' => '%1$s wersja %2$s-%3$s zbudowana na %4$s',
|
'UI:iTopVersion:Long' => '%1$s wersja %2$s-%3$s zbudowana na %4$s',
|
||||||
'UI:PropertiesTab' => 'Właściwości',
|
'UI:PropertiesTab' => 'Właściwości',
|
||||||
|
|
||||||
'UI:OpenDocumentInNewWindow_' => 'Otwórz',
|
'UI:OpenDocumentInNewWindow_' => 'Otwórz',
|
||||||
'UI:DownloadDocument_' => 'Pobierz',
|
'UI:DownloadDocument_' => 'Pobierz',
|
||||||
'UI:Document:NoPreview' => 'Brak podglądu tego typu dokumentu',
|
'UI:Document:NoPreview' => 'Brak podglądu tego typu dokumentu',
|
||||||
'UI:Download-CSV' => 'Pobierz %1$s',
|
'UI:Download-CSV' => 'Pobierz %1$s',
|
||||||
|
|
||||||
'UI:DeadlineMissedBy_duration' => 'Nieodebrane przez %1$s',
|
'UI:DeadlineMissedBy_duration' => 'Nieodebrane przez %1$s',
|
||||||
@@ -1126,65 +1145,72 @@ W przypadku powiązania z wyzwalaczem, każde działanie otrzymuje numer "porzą
|
|||||||
'Portal:Button:UpdateRequest' => 'Zaktualizuj zgłoszenie',
|
'Portal:Button:UpdateRequest' => 'Zaktualizuj zgłoszenie',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Wpisz swoje uwagi dotyczące rozwiązania tego zgłoszenia:',
|
'Portal:EnterYourCommentsOnTicket' => 'Wpisz swoje uwagi dotyczące rozwiązania tego zgłoszenia:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Błąd: bieżący użytkownik nie jest powiązany z kontaktem / osobą. Skontaktuj się z administratorem.',
|
'Portal:ErrorNoContactForThisUser' => 'Błąd: bieżący użytkownik nie jest powiązany z kontaktem / osobą. Skontaktuj się z administratorem.',
|
||||||
'Portal:Attachments' => 'Załączniki',
|
'Portal:Attachments' => 'Załączniki',
|
||||||
'Portal:AddAttachment' => ' Dodaj załącznik ',
|
'Portal:AddAttachment' => ' Dodaj załącznik ',
|
||||||
'Portal:RemoveAttachment' => ' Usuń załącznik ',
|
'Portal:RemoveAttachment' => ' Usuń załącznik ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Załącznik #%1$d do %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Załącznik #%1$d do %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Wybierz szablon dla %1$s',
|
'Portal:SelectRequestTemplate' => 'Wybierz szablon dla %1$s',
|
||||||
'Enum:Undefined' => 'Nieokreślony',
|
'Enum:Undefined' => 'Nieokreślony',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s d %2$s g %3$s min %4$s s',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s d %2$s g %3$s min %4$s s',
|
||||||
'UI:ModifyAllPageTitle' => 'Zmień wszystko',
|
'UI:ModifyAllPageTitle' => 'Zmień wszystko',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Zmiana obiektów %1$d klasy %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Zmiana obiektów %1$d klasy %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Zmiana obiektów %1$d klasy %2$s poza %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Zmiana obiektów %1$d klasy %2$s poza %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Zmień...',
|
'UI:Menu:ModifyAll' => 'Zmień...',
|
||||||
'UI:Button:ModifyAll' => 'Zmień wszystko',
|
'UI:Button:ModifyAll' => 'Zmień wszystko',
|
||||||
'UI:Button:PreviewModifications' => 'Podgląd zmian >>',
|
'UI:Button:PreviewModifications' => 'Podgląd zmian >>',
|
||||||
'UI:ModifiedObject' => 'Obiekt zmieniony',
|
'UI:ModifiedObject' => 'Obiekt zmieniony',
|
||||||
'UI:BulkModifyStatus' => 'Operacja',
|
'UI:BulkModifyStatus' => 'Operacja',
|
||||||
'UI:BulkModifyStatus+' => 'Status operacji',
|
'UI:BulkModifyStatus+' => 'Status operacji',
|
||||||
'UI:BulkModifyErrors' => 'Błędy (jeśli występują)',
|
'UI:BulkModifyErrors' => 'Błędy (jeśli występują)',
|
||||||
'UI:BulkModifyErrors+' => 'Błędy uniemożliwiające zmianę',
|
'UI:BulkModifyErrors+' => 'Błędy uniemożliwiające zmianę',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Błąd',
|
'UI:BulkModifyStatusError' => 'Błąd',
|
||||||
'UI:BulkModifyStatusModified' => 'Zmieniono',
|
'UI:BulkModifyStatusModified' => 'Zmieniono',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Pominięto',
|
'UI:BulkModifyStatusSkipped' => 'Pominięto',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d odrębne wartości:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d odrębne wartości:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d czas',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d czas',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d więcej wartości...',
|
'UI:BulkModify:N_MoreValues' => '%1$d więcej wartości...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Próba ustawienia pola tylko do odczytu: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Próba ustawienia pola tylko do odczytu: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'Działanie nie powiodło się.',
|
'UI:FailedToApplyStimuli' => 'Działanie nie powiodło się.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Zmiana obiektów %2$d klasy %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Zmiana obiektów %2$d klasy %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Tutaj wpisz swój tekst...',
|
'UI:CaseLogTypeYourTextHere' => 'Tutaj wpisz swój tekst...',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Wartość początkowa:',
|
'UI:CaseLog:InitialValue' => 'Wartość początkowa:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s nie jest zapisywalne, ponieważ jest kontrolowane przez synchronizację danych. Wartość nie została ustawiona.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s nie jest zapisywalne, ponieważ jest kontrolowane przez synchronizację danych. Wartość nie została ustawiona.',
|
||||||
'UI:ActionNotAllowed' => 'Nie możesz wykonać działania na tych obiektach.',
|
'UI:ActionNotAllowed' => 'Nie możesz wykonać działania na tych obiektach.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Wybierz co najmniej jeden obiekt do wykonania tej operacji',
|
'UI:BulkAction:NoObjectSelected' => 'Wybierz co najmniej jeden obiekt do wykonania tej operacji',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s nie jest zapisywalne, ponieważ jest kontrolowane przez synchronizację danych. Wartość pozostaje niezmieniona.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s nie jest zapisywalne, ponieważ jest kontrolowane przez synchronizację danych. Wartość pozostaje niezmieniona.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Łącznie: %1$s obiektów (%2$s obiektów wybranych).',
|
'UI:Pagination:HeaderSelection' => 'Łącznie: %1$s obiektów (%2$s obiektów wybranych).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Łącznie: %1$s obiektów.',
|
'UI:Pagination:HeaderNoSelection' => 'Łącznie: %1$s obiektów.',
|
||||||
'UI:Pagination:PageSize' => '%1$s obiektów na stronę',
|
'UI:Pagination:PageSize' => '%1$s obiektów na stronę',
|
||||||
'UI:Pagination:PagesLabel' => 'Strony:',
|
'UI:Pagination:PagesLabel' => 'Strony:',
|
||||||
'UI:Pagination:All' => 'Wszystkie',
|
'UI:Pagination:All' => 'Wszystkie',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchia %1$s',
|
|
||||||
'UI:Preferences' => 'Preferencje...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Aktywuj tryb archiwizacji',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Dezaktywuj tryb archiwizacji',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Tryb archiwizacji',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Zarchiwizowane obiekty są widoczne i nie można ich modyfikować',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Ulubione organizacje',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Sprawdź na liście poniżej organizacje, które chcesz zobaczyć w menu rozwijanym, aby uzyskać szybki dostęp. Pamiętaj, że to nie jest ustawienie zabezpieczeń, obiekty z dowolnej organizacji są nadal widoczne i można uzyskać do nich dostęp, wybierając z listy rozwijanej opcję "Wszystkie organizacje".',
|
'UI:HierarchyOf_Class' => 'Hierarchia %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Język interfejsu użytkownika',
|
'UI:Preferences' => 'Preferencje...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Wybierz preferowany język',
|
'UI:ArchiveModeOn' => 'Aktywuj tryb archiwizacji',
|
||||||
'UI:FavoriteOtherSettings' => 'Inne ustawienia',
|
'UI:ArchiveModeOff' => 'Dezaktywuj tryb archiwizacji',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Tryb archiwizacji',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Zarchiwizowane obiekty są widoczne i nie można ich modyfikować',
|
||||||
|
'UI:FavoriteOrganizations' => 'Ulubione organizacje',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Sprawdź na liście poniżej organizacje, które chcesz zobaczyć w menu rozwijanym, aby uzyskać szybki dostęp. Pamiętaj, że to nie jest ustawienie zabezpieczeń, obiekty z dowolnej organizacji są nadal widoczne i można uzyskać do nich dostęp, wybierając z listy rozwijanej opcję "Wszystkie organizacje".',
|
||||||
|
'UI:FavoriteLanguage' => 'Język interfejsu użytkownika',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Wybierz preferowany język',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Inne ustawienia',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Domyślna długość: %1$s pozycji na stronę',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Domyślna długość: %1$s pozycji na stronę',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Pokaż wycofane dane',
|
'UI:Favorites:ShowObsoleteData' => 'Pokaż wycofane dane',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Pokaż wycofane dane w wynikach wyszukiwania i listach elementów do wybrania',
|
'UI:Favorites:ShowObsoleteData+' => 'Pokaż wycofane dane w wynikach wyszukiwania i listach elementów do wybrania',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Wszelkie modyfikacje zostaną odrzucone.',
|
'UI:NavigateAwayConfirmationMessage' => 'Wszelkie modyfikacje zostaną odrzucone.',
|
||||||
'UI:CancelConfirmationMessage' => 'Utracisz wprowadzone zmiany. Kontynuować mimo to?',
|
'UI:CancelConfirmationMessage' => 'Utracisz wprowadzone zmiany. Kontynuować mimo to?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Niektóre zmiany nie zostały jeszcze zastosowane. Czy chcesz aby '.ITOP_APPLICATION_SHORT.' wziął je pod uwagę?',
|
'UI:AutoApplyConfirmationMessage' => 'Niektóre zmiany nie zostały jeszcze zastosowane. Czy chcesz aby '.ITOP_APPLICATION_SHORT.' wziął je pod uwagę?',
|
||||||
'UI:Create_Class_InState' => 'Utwórz %1$s w stanie: ',
|
'UI:Create_Class_InState' => 'Utwórz %1$s w stanie: ',
|
||||||
'UI:OrderByHint_Values' => 'Porządek sortowania: %1$s',
|
'UI:OrderByHint_Values' => 'Porządek sortowania: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Dodaj do pulpitu...',
|
'UI:Menu:AddToDashboard' => 'Dodaj do pulpitu...',
|
||||||
'UI:Button:Refresh' => 'Odśwież',
|
'UI:Button:Refresh' => 'Odśwież',
|
||||||
'UI:Button:GoPrint' => 'Drukuj...',
|
'UI:Button:GoPrint' => 'Drukuj...',
|
||||||
|
|||||||
@@ -333,14 +333,18 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
||||||
'BooleanLabel:yes' => 'Sim',
|
'BooleanLabel:yes' => 'Sim',
|
||||||
'BooleanLabel:no' => 'Não',
|
'BooleanLabel:no' => 'Não',
|
||||||
'UI:Login:Title' => 'Login no '.ITOP_APPLICATION_SHORT,
|
'UI:Login:Title' => 'Login no '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenu' => 'Página inicial do '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Página inicial do '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenu+' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => 'Bem-vindo ao '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>O '.ITOP_APPLICATION_SHORT.' é um Portal Operacional de TI de código aberto completo.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>O '.ITOP_APPLICATION_SHORT.' é um Portal Operacional de TI de código aberto completo.</p>
|
||||||
<ul>Ele inclui:
|
<ul>Ele inclui:
|
||||||
@@ -353,7 +357,7 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>Todos os módulos podem ser configurados, passo a passo, independentemente uns dos outros.</p>',
|
<p>Todos os módulos podem ser configurados, passo a passo, independentemente uns dos outros.</p>',
|
||||||
|
|
||||||
'UI:WelcomeMenu:RightBlock' => '<p>O '.ITOP_APPLICATION_SHORT.' é orientado para o provedor de serviços, ele permite que os especialistas de TI gerenciem facilmente vários clientes ou organizações.
|
'UI:WelcomeMenu:RightBlock' => '<p>O '.ITOP_APPLICATION_SHORT.' é orientado para o provedor de serviços, ele permite que os especialistas de TI gerenciem facilmente vários clientes ou organizações.
|
||||||
<ul>O '.ITOP_APPLICATION_SHORT.' oferece um conjunto rico em recursos de processos de negócios que:
|
<ul>O '.ITOP_APPLICATION_SHORT.' oferece um conjunto rico em recursos de processos de negócios que:
|
||||||
<li>Melhora a eficácia do gerenciamento de TI</li>
|
<li>Melhora a eficácia do gerenciamento de TI</li>
|
||||||
<li>Impulsiona o desempenho das operações de TI</li>
|
<li>Impulsiona o desempenho das operações de TI</li>
|
||||||
@@ -1127,65 +1131,72 @@ Quando associada a um gatilho, cada ação recebe um número de "ordem", especif
|
|||||||
'Portal:Button:UpdateRequest' => 'Atualizar a solicitação',
|
'Portal:Button:UpdateRequest' => 'Atualizar a solicitação',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Digite seu comentário referente a solução da sua solicitação:',
|
'Portal:EnterYourCommentsOnTicket' => 'Digite seu comentário referente a solução da sua solicitação:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Erro: o usuário atual não esta associado com um contato/pessoa. Por favor, contacte o administrador.',
|
'Portal:ErrorNoContactForThisUser' => 'Erro: o usuário atual não esta associado com um contato/pessoa. Por favor, contacte o administrador.',
|
||||||
'Portal:Attachments' => 'Anexos',
|
'Portal:Attachments' => 'Anexos',
|
||||||
'Portal:AddAttachment' => ' Adicionar anexo ',
|
'Portal:AddAttachment' => ' Adicionar anexo ',
|
||||||
'Portal:RemoveAttachment' => ' Remover anexo ',
|
'Portal:RemoveAttachment' => ' Remover anexo ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Anexo #%1$d para %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Anexo #%1$d para %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Selecione um modelo para %1$s',
|
'Portal:SelectRequestTemplate' => 'Selecione um modelo para %1$s',
|
||||||
'Enum:Undefined' => '(n/a)',
|
'Enum:Undefined' => '(n/a)',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s dias %2$s horas %3$s minutos %4$s segundos',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s dias %2$s horas %3$s minutos %4$s segundos',
|
||||||
'UI:ModifyAllPageTitle' => 'Modificar todos',
|
'UI:ModifyAllPageTitle' => 'Modificar todos',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Editando objeto %1$d da classe %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Editando objeto %1$d da classe %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Editando objeto %1$d da classe %2$s de %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Editando objeto %1$d da classe %2$s de %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Edição em massa...',
|
'UI:Menu:ModifyAll' => 'Edição em massa...',
|
||||||
'UI:Button:ModifyAll' => 'Modificar todos',
|
'UI:Button:ModifyAll' => 'Modificar todos',
|
||||||
'UI:Button:PreviewModifications' => 'Visualizar modificações >>',
|
'UI:Button:PreviewModifications' => 'Visualizar modificações >>',
|
||||||
'UI:ModifiedObject' => 'Objeto modificado',
|
'UI:ModifiedObject' => 'Objeto modificado',
|
||||||
'UI:BulkModifyStatus' => 'Operação',
|
'UI:BulkModifyStatus' => 'Operação',
|
||||||
'UI:BulkModifyStatus+' => 'Status da operação',
|
'UI:BulkModifyStatus+' => 'Status da operação',
|
||||||
'UI:BulkModifyErrors' => 'Erros (se houver)',
|
'UI:BulkModifyErrors' => 'Erros (se houver)',
|
||||||
'UI:BulkModifyErrors+' => 'Erros que impedem a modificação',
|
'UI:BulkModifyErrors+' => 'Erros que impedem a modificação',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Erro',
|
'UI:BulkModifyStatusError' => 'Erro',
|
||||||
'UI:BulkModifyStatusModified' => 'Modificado',
|
'UI:BulkModifyStatusModified' => 'Modificado',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Skipped',
|
'UI:BulkModifyStatusSkipped' => 'Skipped',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d valores distintos:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d valores distintos:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d tempo(s)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d tempo(s)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d mais valores...',
|
'UI:BulkModify:N_MoreValues' => '%1$d mais valores...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentativa de definir o campo como somente-leitura: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Tentativa de definir o campo como somente-leitura: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'A ação falhou',
|
'UI:FailedToApplyStimuli' => 'A ação falhou',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: modificando %2$d objetos da classe %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: modificando %2$d objetos da classe %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Digite seu texto aqui:',
|
'UI:CaseLogTypeYourTextHere' => 'Digite seu texto aqui:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Valor inicial:',
|
'UI:CaseLog:InitialValue' => 'Valor inicial:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'O campo %1$s não é editável, porque é originado pela sincronização de dados. Valor não definido',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'O campo %1$s não é editável, porque é originado pela sincronização de dados. Valor não definido',
|
||||||
'UI:ActionNotAllowed' => 'Você não tem permissão para executar esta ação nesses objetos',
|
'UI:ActionNotAllowed' => 'Você não tem permissão para executar esta ação nesses objetos',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Por favor, selecione pelo menos um objeto para realizar esta operação',
|
'UI:BulkAction:NoObjectSelected' => 'Por favor, selecione pelo menos um objeto para realizar esta operação',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'O campo %1$s não é editável, porque é originado pela sincronização de dados. Valor não definido',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'O campo %1$s não é editável, porque é originado pela sincronização de dados. Valor não definido',
|
||||||
'UI:Pagination:HeaderSelection' => 'Total: %1$s objeto(s) (%2$s objeto(s) selecionado(s))',
|
'UI:Pagination:HeaderSelection' => 'Total: %1$s objeto(s) (%2$s objeto(s) selecionado(s))',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objeto(s)',
|
'UI:Pagination:HeaderNoSelection' => 'Total: %1$s objeto(s)',
|
||||||
'UI:Pagination:PageSize' => '%1$s objeto(s) por página',
|
'UI:Pagination:PageSize' => '%1$s objeto(s) por página',
|
||||||
'UI:Pagination:PagesLabel' => 'Páginas:',
|
'UI:Pagination:PagesLabel' => 'Páginas:',
|
||||||
'UI:Pagination:All' => 'Tudo',
|
'UI:Pagination:All' => 'Tudo',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarquia de %1$s',
|
|
||||||
'UI:Preferences' => 'Preferências...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Ativar o modo de arquivamento',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Desativar modo de arquivamento',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Modo de arquivamento',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Objetos arquivados são visíveis e nenhuma modificação é permitida',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Organizações favoritas',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Confira na lista abaixo as organizações que você deseja ver no menu suspenso para acesso rápido. Note que esta não é uma configuração de segurança, objetos de qualquer organização ainda são visíveis e podem ser acessados ao selecionar "Todas as Organizações" no menu suspenso.',
|
'UI:HierarchyOf_Class' => 'Hierarquia de %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Idioma do painel do usuário',
|
'UI:Preferences' => 'Preferências...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Selecione seu idioma preferido',
|
'UI:ArchiveModeOn' => 'Ativar o modo de arquivamento',
|
||||||
'UI:FavoriteOtherSettings' => 'Outras configurações',
|
'UI:ArchiveModeOff' => 'Desativar modo de arquivamento',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Modo de arquivamento',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Objetos arquivados são visíveis e nenhuma modificação é permitida',
|
||||||
|
'UI:FavoriteOrganizations' => 'Organizações favoritas',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Confira na lista abaixo as organizações que você deseja ver no menu suspenso para acesso rápido. Note que esta não é uma configuração de segurança, objetos de qualquer organização ainda são visíveis e podem ser acessados ao selecionar "Todas as Organizações" no menu suspenso.',
|
||||||
|
'UI:FavoriteLanguage' => 'Idioma do painel do usuário',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Selecione seu idioma preferido',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Outras configurações',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Quantidade padrão para listas %1$s item(ns) por página',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Quantidade padrão para listas %1$s item(ns) por página',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Exibir dados obsoletos',
|
'UI:Favorites:ShowObsoleteData' => 'Exibir dados obsoletos',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Exibir dados obsoletos nos resultados de pesquisa e listas de itens para selecionar',
|
'UI:Favorites:ShowObsoleteData+' => 'Exibir dados obsoletos nos resultados de pesquisa e listas de itens para selecionar',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Quaisquer modificações serão descartadas',
|
'UI:NavigateAwayConfirmationMessage' => 'Quaisquer modificações serão descartadas',
|
||||||
'UI:CancelConfirmationMessage' => 'Você irá perder as suas alterações. Continuar mesmo assim?',
|
'UI:CancelConfirmationMessage' => 'Você irá perder as suas alterações. Continuar mesmo assim?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Algumas alterações ainda não foram aplicadas. Você quer que o '.ITOP_APPLICATION_SHORT.' os leve em consideração?',
|
'UI:AutoApplyConfirmationMessage' => 'Algumas alterações ainda não foram aplicadas. Você quer que o '.ITOP_APPLICATION_SHORT.' os leve em consideração?',
|
||||||
'UI:Create_Class_InState' => 'Criar o status %1$s: ',
|
'UI:Create_Class_InState' => 'Criar o status %1$s: ',
|
||||||
'UI:OrderByHint_Values' => 'Classificar por: %1$s',
|
'UI:OrderByHint_Values' => 'Classificar por: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Adicionar ao painel...',
|
'UI:Menu:AddToDashboard' => 'Adicionar ao painel...',
|
||||||
'UI:Button:Refresh' => 'Atualizar',
|
'UI:Button:Refresh' => 'Atualizar',
|
||||||
'UI:Button:GoPrint' => 'Imprimir ...',
|
'UI:Button:GoPrint' => 'Imprimir ...',
|
||||||
|
|||||||
@@ -334,14 +334,18 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
Dict::Add('RU RU', 'Russian', 'Русский', array(
|
||||||
'BooleanLabel:yes' => 'да',
|
'BooleanLabel:yes' => 'да',
|
||||||
'BooleanLabel:no' => 'нет',
|
'BooleanLabel:no' => 'нет',
|
||||||
'UI:Login:Title' => 'Вход в '.ITOP_APPLICATION_SHORT,
|
'UI:Login:Title' => 'Вход в '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenu' => 'Добро пожаловать',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Добро пожаловать',
|
||||||
'Menu:WelcomeMenu+' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Добро пожаловать',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => 'Добро пожаловать',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => 'Добро пожаловать в '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' является порталом оперативного централизованного управления IT инфраструктурой с открытым исходным кодом.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' является порталом оперативного централизованного управления IT инфраструктурой с открытым исходным кодом.</p>
|
||||||
<ul>Он включает:
|
<ul>Он включает:
|
||||||
@@ -354,7 +358,7 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>Все модули могут быть настроены, шаг за шагом, независмо друг от друга.</p>',
|
<p>Все модули могут быть настроены, шаг за шагом, независмо друг от друга.</p>',
|
||||||
|
|
||||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' ориентирован на предоставления сервисов, он позволяет IT специалистам легко управляться с несколькими заказчиками или организациями.
|
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' ориентирован на предоставления сервисов, он позволяет IT специалистам легко управляться с несколькими заказчиками или организациями.
|
||||||
<ul>'.ITOP_APPLICATION_SHORT.' обеспечивает многофункциональный набор бизнес-процессов, которые:
|
<ul>'.ITOP_APPLICATION_SHORT.' обеспечивает многофункциональный набор бизнес-процессов, которые:
|
||||||
<li>Повышают эффективность управления IT</li>
|
<li>Повышают эффективность управления IT</li>
|
||||||
<li>Повышают производительность IT-операций</li>
|
<li>Повышают производительность IT-операций</li>
|
||||||
@@ -1127,65 +1131,72 @@ Dict::Add('RU RU', 'Russian', 'Русский', array(
|
|||||||
'Portal:Button:UpdateRequest' => 'Обновить запрос',
|
'Portal:Button:UpdateRequest' => 'Обновить запрос',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Введите ваши комментарии по решению этого запроса:',
|
'Portal:EnterYourCommentsOnTicket' => 'Введите ваши комментарии по решению этого запроса:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Ошибка: текущий пользователь не ассоциирован с Контактом/Персоной. Пожалуйста, свяжитесь с вашим администратором.',
|
'Portal:ErrorNoContactForThisUser' => 'Ошибка: текущий пользователь не ассоциирован с Контактом/Персоной. Пожалуйста, свяжитесь с вашим администратором.',
|
||||||
'Portal:Attachments' => 'Вложения',
|
'Portal:Attachments' => 'Вложения',
|
||||||
'Portal:AddAttachment' => 'Добавить вложения',
|
'Portal:AddAttachment' => 'Добавить вложения',
|
||||||
'Portal:RemoveAttachment' => ' Удалить вложения',
|
'Portal:RemoveAttachment' => ' Удалить вложения',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Вложение #%1$d to %2$s (%3$s)~~',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Вложение #%1$d to %2$s (%3$s)~~',
|
||||||
'Portal:SelectRequestTemplate' => 'Select a template for %1$s~~',
|
'Portal:SelectRequestTemplate' => 'Select a template for %1$s~~',
|
||||||
'Enum:Undefined' => 'Не определён',
|
'Enum:Undefined' => 'Не определён',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s д %2$s ч %3$s мин %4$s с',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s д %2$s ч %3$s мин %4$s с',
|
||||||
'UI:ModifyAllPageTitle' => 'Пакетное редактирование',
|
'UI:ModifyAllPageTitle' => 'Пакетное редактирование',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Редактирование %1$d объектов класса %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => 'Редактирование %1$d объектов класса %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Редактирование %1$d объектов класса %2$s из %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Редактирование %1$d объектов класса %2$s из %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Редактировать...',
|
'UI:Menu:ModifyAll' => 'Редактировать...',
|
||||||
'UI:Button:ModifyAll' => 'Редактировать все',
|
'UI:Button:ModifyAll' => 'Редактировать все',
|
||||||
'UI:Button:PreviewModifications' => 'Предпросмотр изменений >>',
|
'UI:Button:PreviewModifications' => 'Предпросмотр изменений >>',
|
||||||
'UI:ModifiedObject' => 'Объект изменен',
|
'UI:ModifiedObject' => 'Объект изменен',
|
||||||
'UI:BulkModifyStatus' => 'Операция',
|
'UI:BulkModifyStatus' => 'Операция',
|
||||||
'UI:BulkModifyStatus+' => 'Статус операции',
|
'UI:BulkModifyStatus+' => 'Статус операции',
|
||||||
'UI:BulkModifyErrors' => 'Ошибки (если есть)',
|
'UI:BulkModifyErrors' => 'Ошибки (если есть)',
|
||||||
'UI:BulkModifyErrors+' => 'Ошибки, препятствующие изменению',
|
'UI:BulkModifyErrors+' => 'Ошибки, препятствующие изменению',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => 'Ошибка',
|
'UI:BulkModifyStatusError' => 'Ошибка',
|
||||||
'UI:BulkModifyStatusModified' => 'Изменен',
|
'UI:BulkModifyStatusModified' => 'Изменен',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Пропущен',
|
'UI:BulkModifyStatusSkipped' => 'Пропущен',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d различных значения:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d различных значения:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d раз(а)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d раз(а)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d дополнительных значения...~~',
|
'UI:BulkModify:N_MoreValues' => '%1$d дополнительных значения...~~',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Attempting to set the read-only field: %1$s~~',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Attempting to set the read-only field: %1$s~~',
|
||||||
'UI:FailedToApplyStimuli' => 'Операция не может быть выполнена.',
|
'UI:FailedToApplyStimuli' => 'Операция не может быть выполнена.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifying %2$d objects of class %3$s~~',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Modifying %2$d objects of class %3$s~~',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Введите свой текст:',
|
'UI:CaseLogTypeYourTextHere' => 'Введите свой текст:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:~~',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:~~',
|
||||||
'UI:CaseLog:InitialValue' => 'Initial value:~~',
|
'UI:CaseLog:InitialValue' => 'Initial value:~~',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value not set.~~',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value not set.~~',
|
||||||
'UI:ActionNotAllowed' => 'You are not allowed to perform this action on these objects.~~',
|
'UI:ActionNotAllowed' => 'You are not allowed to perform this action on these objects.~~',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Please select at least one object to perform this operation~~',
|
'UI:BulkAction:NoObjectSelected' => 'Please select at least one object to perform this operation~~',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.~~',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.~~',
|
||||||
'UI:Pagination:HeaderSelection' => 'Всего: %1$s элементов (%2$s элементов выделено).',
|
'UI:Pagination:HeaderSelection' => 'Всего: %1$s элементов (%2$s элементов выделено).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Всего: %1$s элементов',
|
'UI:Pagination:HeaderNoSelection' => 'Всего: %1$s элементов',
|
||||||
'UI:Pagination:PageSize' => '%1$s объектов на страницу',
|
'UI:Pagination:PageSize' => '%1$s объектов на страницу',
|
||||||
'UI:Pagination:PagesLabel' => 'Страницы:~~',
|
'UI:Pagination:PagesLabel' => 'Страницы:~~',
|
||||||
'UI:Pagination:All' => 'Все',
|
'UI:Pagination:All' => 'Все',
|
||||||
'UI:HierarchyOf_Class' => 'Иерархия по: %1$s~~',
|
|
||||||
'UI:Preferences' => 'Предпочтения',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Избранные организации',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Отметьте в списке ниже организации, которые вы хотите видеть в раскрывающемся списке бокового меню для быстрого доступа. Обратите внимание, что это не параметр безопасности, объекты из любой организации по-прежнему видны и могут быть доступны, выбрав "Все организации" в раскрывающемся списке.',
|
'UI:HierarchyOf_Class' => 'Иерархия по: %1$s~~',
|
||||||
'UI:FavoriteLanguage' => 'Язык',
|
'UI:Preferences' => 'Предпочтения',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Выберите Ваш язык',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => 'Другие настройки',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'Избранные организации',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Отметьте в списке ниже организации, которые вы хотите видеть в раскрывающемся списке бокового меню для быстрого доступа. Обратите внимание, что это не параметр безопасности, объекты из любой организации по-прежнему видны и могут быть доступны, выбрав "Все организации" в раскрывающемся списке.',
|
||||||
|
'UI:FavoriteLanguage' => 'Язык',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Выберите Ваш язык',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Другие настройки',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Длина списков по умолчанию: %1$s элементов на страницу',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Длина списков по умолчанию: %1$s элементов на страницу',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Показывать устаревшие данные',
|
'UI:Favorites:ShowObsoleteData' => 'Показывать устаревшие данные',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Отображение устаревших данных в результатах поиска и списках элементов для выбора',
|
'UI:Favorites:ShowObsoleteData+' => 'Отображение устаревших данных в результатах поиска и списках элементов для выбора',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Все изменения будут отменены.',
|
'UI:NavigateAwayConfirmationMessage' => 'Все изменения будут отменены.',
|
||||||
'UI:CancelConfirmationMessage' => 'Настройки НЕ будут сохранены. Продолжить?',
|
'UI:CancelConfirmationMessage' => 'Настройки НЕ будут сохранены. Продолжить?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Некоторые изменения не вступили в силу. Применить их немедленно?',
|
'UI:AutoApplyConfirmationMessage' => 'Некоторые изменения не вступили в силу. Применить их немедленно?',
|
||||||
'UI:Create_Class_InState' => 'Create the %1$s in state: ~~',
|
'UI:Create_Class_InState' => 'Create the %1$s in state: ~~',
|
||||||
'UI:OrderByHint_Values' => 'Sort order: %1$s~~',
|
'UI:OrderByHint_Values' => 'Sort order: %1$s~~',
|
||||||
'UI:Menu:AddToDashboard' => 'Добавить на дашборд...',
|
'UI:Menu:AddToDashboard' => 'Добавить на дашборд...',
|
||||||
'UI:Button:Refresh' => 'Обновить',
|
'UI:Button:Refresh' => 'Обновить',
|
||||||
'UI:Button:GoPrint' => 'Печать...',
|
'UI:Button:GoPrint' => 'Печать...',
|
||||||
|
|||||||
@@ -1119,65 +1119,72 @@ Keď sú priradené spúštačom, každej akcii je dané číslo "príkazu", šp
|
|||||||
'Portal:Button:UpdateRequest' => 'Aktualizovať žiadosť',
|
'Portal:Button:UpdateRequest' => 'Aktualizovať žiadosť',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'Vložte Vaše komentáre o riešení tohto lístku:',
|
'Portal:EnterYourCommentsOnTicket' => 'Vložte Vaše komentáre o riešení tohto lístku:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Chyba: súčasný užívateľ nemá priradený kontakt/osobu. Prosím kontaktujte Vášho administrátora.',
|
'Portal:ErrorNoContactForThisUser' => 'Chyba: súčasný užívateľ nemá priradený kontakt/osobu. Prosím kontaktujte Vášho administrátora.',
|
||||||
'Portal:Attachments' => 'Prílohy',
|
'Portal:Attachments' => 'Prílohy',
|
||||||
'Portal:AddAttachment' => ' Pridať prílohu ',
|
'Portal:AddAttachment' => ' Pridať prílohu ',
|
||||||
'Portal:RemoveAttachment' => ' Odstrániť prílohu ',
|
'Portal:RemoveAttachment' => ' Odstrániť prílohu ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Príloha #%1$d do %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Príloha #%1$d do %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => 'Zvoľ predlohu pre %1$s',
|
'Portal:SelectRequestTemplate' => 'Zvoľ predlohu pre %1$s',
|
||||||
'Enum:Undefined' => 'Nedefinovaný',
|
'Enum:Undefined' => 'Nedefinovaný',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Dní %2$s Hodín %3$s Minút %4$s Sekúnd',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Dní %2$s Hodín %3$s Minút %4$s Sekúnd',
|
||||||
'UI:ModifyAllPageTitle' => 'Upraviť všetko',
|
'UI:ModifyAllPageTitle' => 'Upraviť všetko',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => 'Modifying %1$d objects of class %2$s~~',
|
'UI:Modify_N_ObjectsOf_Class' => 'Modifying %1$d objects of class %2$s~~',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Upravovanie %1$d objektov triedy %2$s z %3$d',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => 'Upravovanie %1$d objektov triedy %2$s z %3$d',
|
||||||
'UI:Menu:ModifyAll' => 'Upraviť...',
|
'UI:Menu:ModifyAll' => 'Upraviť...',
|
||||||
'UI:Button:ModifyAll' => 'Upraviť všetko',
|
'UI:Button:ModifyAll' => 'Upraviť všetko',
|
||||||
'UI:Button:PreviewModifications' => 'Náhľad úpravy >>',
|
'UI:Button:PreviewModifications' => 'Náhľad úpravy >>',
|
||||||
'UI:ModifiedObject' => 'Objekt Upravený',
|
'UI:ModifiedObject' => 'Objekt Upravený',
|
||||||
'UI:BulkModifyStatus' => 'Operácie',
|
'UI:BulkModifyStatus' => 'Operácie',
|
||||||
'UI:BulkModifyStatus+' => '',
|
'UI:BulkModifyStatus+' => '',
|
||||||
'UI:BulkModifyErrors' => 'Chyby (ak nejaké)',
|
'UI:BulkModifyErrors' => 'Chyby (ak nejaké)',
|
||||||
'UI:BulkModifyErrors+' => '',
|
'UI:BulkModifyErrors+' => '',
|
||||||
'UI:BulkModifyStatusOk' => 'OK',
|
'UI:BulkModifyStatusOk' => 'OK',
|
||||||
'UI:BulkModifyStatusError' => 'Chyba',
|
'UI:BulkModifyStatusError' => 'Chyba',
|
||||||
'UI:BulkModifyStatusModified' => 'Upravený',
|
'UI:BulkModifyStatusModified' => 'Upravený',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Preskočené',
|
'UI:BulkModifyStatusSkipped' => 'Preskočené',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d rozdielne hodnoty:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d rozdielne hodnoty:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d krát',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d krát',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d viac hodnôt...',
|
'UI:BulkModify:N_MoreValues' => '%1$d viac hodnôt...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Pokúšanie sa nastaviť "iba na čítanie" políčko: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Pokúšanie sa nastaviť "iba na čítanie" políčko: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => 'Akcia zlyhala.',
|
'UI:FailedToApplyStimuli' => 'Akcia zlyhala.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Upravovanie %2$d objektov triedy %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: Upravovanie %2$d objektov triedy %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Napíšte Váš text tu:',
|
'UI:CaseLogTypeYourTextHere' => 'Napíšte Váš text tu:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'Počiatočná hodnota:',
|
'UI:CaseLog:InitialValue' => 'Počiatočná hodnota:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s nie je upravovateľné pretože je spravované dátovou synchronizáciou. Hodnota nenastavená.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => 'Pole %1$s nie je upravovateľné pretože je spravované dátovou synchronizáciou. Hodnota nenastavená.',
|
||||||
'UI:ActionNotAllowed' => 'Nemáte povolenie vykonať túto akciu na týchto objektoch.',
|
'UI:ActionNotAllowed' => 'Nemáte povolenie vykonať túto akciu na týchto objektoch.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Prosím zvoľte aspoň jeden objekt na vykonanie tejto operácie',
|
'UI:BulkAction:NoObjectSelected' => 'Prosím zvoľte aspoň jeden objekt na vykonanie tejto operácie',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s nie je upravovateľné pretože je spravované dátovou synchronizáciou. Hodnota zostala nezmená.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'Pole %1$s nie je upravovateľné pretože je spravované dátovou synchronizáciou. Hodnota zostala nezmená.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Celkom: %1$s objektov (%2$s objektov zvolených).',
|
'UI:Pagination:HeaderSelection' => 'Celkom: %1$s objektov (%2$s objektov zvolených).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Celkom: %1$s objektov.',
|
'UI:Pagination:HeaderNoSelection' => 'Celkom: %1$s objektov.',
|
||||||
'UI:Pagination:PageSize' => '%1$s objektov na stránku',
|
'UI:Pagination:PageSize' => '%1$s objektov na stránku',
|
||||||
'UI:Pagination:PagesLabel' => 'Stránky:',
|
'UI:Pagination:PagesLabel' => 'Stránky:',
|
||||||
'UI:Pagination:All' => 'Všetko',
|
'UI:Pagination:All' => 'Všetko',
|
||||||
'UI:HierarchyOf_Class' => 'Hierarchia of %1$s',
|
|
||||||
'UI:Preferences' => 'Preferencie...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Obľúbené organizácie',
|
|
||||||
'UI:FavoriteOrganizations+' => '',
|
'UI:HierarchyOf_Class' => 'Hierarchia of %1$s',
|
||||||
'UI:FavoriteLanguage' => 'Jazyk užívateľského rozhrania~~',
|
'UI:Preferences' => 'Preferencie...',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Vyberte si svoj preferovaný jazyk',
|
'UI:ArchiveModeOn' => 'Activate archive mode~~',
|
||||||
'UI:FavoriteOtherSettings' => 'Iné nastavenia',
|
'UI:ArchiveModeOff' => 'Deactivate archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Archive mode~~',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Archived objects are visible, and no modification is allowed~~',
|
||||||
|
'UI:FavoriteOrganizations' => 'Obľúbené organizácie',
|
||||||
|
'UI:FavoriteOrganizations+' => '',
|
||||||
|
'UI:FavoriteLanguage' => 'Jazyk užívateľského rozhrania~~',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Vyberte si svoj preferovaný jazyk',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Iné nastavenia',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Štandardná dĺžka pre zoznamy: %1$s položiek na stránku~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Štandardná dĺžka pre zoznamy: %1$s položiek na stránku~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
'UI:Favorites:ShowObsoleteData' => 'Show obsolete data~~',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
'UI:Favorites:ShowObsoleteData+' => 'Show obsolete data in search results and lists of items to select~~',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Akákoľvek úprava bude zahodená.',
|
'UI:NavigateAwayConfirmationMessage' => 'Akákoľvek úprava bude zahodená.',
|
||||||
'UI:CancelConfirmationMessage' => 'Prídete o všetky svoje zmeny. Chcete pokračovať?',
|
'UI:CancelConfirmationMessage' => 'Prídete o všetky svoje zmeny. Chcete pokračovať?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Niektoré zmeny neboli použité zatiaľ. Chcete aby ich '.ITOP_APPLICATION_SHORT.' vzal do úvahy?',
|
'UI:AutoApplyConfirmationMessage' => 'Niektoré zmeny neboli použité zatiaľ. Chcete aby ich '.ITOP_APPLICATION_SHORT.' vzal do úvahy?',
|
||||||
'UI:Create_Class_InState' => 'Vytvoriť %1$s v stave: ',
|
'UI:Create_Class_InState' => 'Vytvoriť %1$s v stave: ',
|
||||||
'UI:OrderByHint_Values' => 'Triediaci príkaz: %1$s',
|
'UI:OrderByHint_Values' => 'Triediaci príkaz: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Pridať na panel...',
|
'UI:Menu:AddToDashboard' => 'Pridať na panel...',
|
||||||
'UI:Button:Refresh' => 'Obnoviť',
|
'UI:Button:Refresh' => 'Obnoviť',
|
||||||
'UI:Button:GoPrint' => 'Print...~~',
|
'UI:Button:GoPrint' => 'Print...~~',
|
||||||
|
|||||||
@@ -333,14 +333,18 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
|
||||||
'BooleanLabel:yes' => 'evet',
|
'BooleanLabel:yes' => 'evet',
|
||||||
'BooleanLabel:no' => 'hayır',
|
'BooleanLabel:no' => 'hayır',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' login~~',
|
||||||
'Menu:WelcomeMenu' => 'Hoşgeldiniz',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => 'Hoşgeldiniz',
|
||||||
'Menu:WelcomeMenu+' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => 'Hoşgeldiniz',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz',
|
||||||
'Menu:WelcomeMenuPage+' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz',
|
'Menu:WelcomeMenuPage' => 'Hoşgeldiniz',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => ITOP_APPLICATION_SHORT.'\'a Hoşgeldiniz',
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop açık kaynak Bilişim İşlem Potalıdır.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>iTop açık kaynak Bilişim İşlem Potalıdır.</p>
|
||||||
<ul>Kapsamı:
|
<ul>Kapsamı:
|
||||||
@@ -1028,46 +1032,64 @@ Tetikleme gerçekleştiriğinde işlemler tanımlanan sıra numarası ile gerçe
|
|||||||
'UI:NotificationsMenu:Actions:Action' => 'Other actions~~',
|
'UI:NotificationsMenu:Actions:Action' => 'Other actions~~',
|
||||||
'UI:NotificationsMenu:AvailableActions' => 'Kullanılabilir işlemler',
|
'UI:NotificationsMenu:AvailableActions' => 'Kullanılabilir işlemler',
|
||||||
|
|
||||||
'Menu:TagAdminMenu' => 'Tags configuration~~',
|
'Menu:TagAdminMenu' => 'Tags configuration~~',
|
||||||
'Menu:TagAdminMenu+' => 'Tags values management~~',
|
'Menu:TagAdminMenu+' => 'Tags values management~~',
|
||||||
'UI:TagAdminMenu:Title' => 'Tags configuration~~',
|
'UI:TagAdminMenu:Title' => 'Tags configuration~~',
|
||||||
'UI:TagAdminMenu:NoTags' => 'No Tag field configured~~',
|
'UI:TagAdminMenu:NoTags' => 'No Tag field configured~~',
|
||||||
'UI:TagSetFieldData:Error' => 'Error: %1$s~~',
|
'UI:TagSetFieldData:Error' => 'Error: %1$s~~',
|
||||||
|
|
||||||
'Menu:AuditCategories' => 'Denetleme Kategorileri',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories' => 'Denetleme Kategorileri',
|
||||||
'Menu:AuditCategories+' => 'Denetleme Kategorileri',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:Notifications:Title' => 'Denetleme Kategorileri',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories+' => 'Denetleme Kategorileri',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:Notifications:Title' => 'Denetleme Kategorileri',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:RunQueriesMenu' => 'Sorgu çalıştır',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:RunQueriesMenu' => 'Sorgu çalıştır',
|
||||||
'Menu:RunQueriesMenu+' => 'Sorgu çalıştır',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:RunQueriesMenu+' => 'Sorgu çalıştır',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:AuditCategories' => 'Denetleme Kategorileri', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories' => 'Denetleme Kategorileri',
|
||||||
'Menu:AuditCategories+' => 'Denetleme Kategorileri', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:Notifications:Title' => 'Denetleme Kategorileri', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:AuditCategories+' => 'Denetleme Kategorileri',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:Notifications:Title' => 'Denetleme Kategorileri',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:RunQueriesMenu' => 'Sorgu çalıştır', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:RunQueriesMenu' => 'Sorgu çalıştır',
|
||||||
'Menu:RunQueriesMenu+' => 'Sorgu çalıştır', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:RunQueriesMenu+' => 'Sorgu çalıştır',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:QueryMenu' => 'Sorgu deyişleri kitabı', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:QueryMenu' => 'Sorgu deyişleri kitabı',
|
||||||
'Menu:QueryMenu+' => 'Sorgu deyişleri kitabı', // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:QueryMenu+' => 'Sorgu deyişleri kitabı',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:DataAdministration' => 'Veri Yönetimi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:DataAdministration' => 'Veri Yönetimi',
|
||||||
'Menu:DataAdministration+' => 'Veri Yönetimi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:DataAdministration+' => 'Veri Yönetimi',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UniversalSearchMenu' => 'Genel sorgu',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UniversalSearchMenu' => 'Genel sorgu',
|
||||||
'Menu:UniversalSearchMenu+' => 'Herhangi bir arama...',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UniversalSearchMenu+' => 'Herhangi bir arama...',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UserManagementMenu' => 'Kullanıcı Yönetimi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:UserManagementMenu' => 'Kullanıcı Yönetimi',
|
||||||
'Menu:UserManagementMenu+' => 'Kullanıcı Yönetimi',// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:UserManagementMenu+' => 'Kullanıcı Yönetimi',
|
||||||
|
// 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' => '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+' => 'Profiller',// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:ProfilesMenu:Title' => 'Profiller',
|
'Menu:ProfilesMenu:Title' => 'Profiller',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
|
||||||
'Menu:UserAccountsMenu' => 'Kullanıcı Hesapları',
|
'Menu:UserAccountsMenu' => 'Kullanıcı Hesapları',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:UserAccountsMenu+' => 'Kullanıcı Hesapları',
|
'Menu:UserAccountsMenu+' => 'Kullanıcı Hesapları',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:UserAccountsMenu:Title' => 'Kullanıcı Hesapları',
|
'Menu:UserAccountsMenu:Title' => 'Kullanıcı Hesapları',
|
||||||
// Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
@@ -1151,74 +1173,81 @@ Tetikleme gerçekleştiriğinde işlemler tanımlanan sıra numarası ile gerçe
|
|||||||
'Portal:Button:UpdateRequest' => 'Update the request',
|
'Portal:Button:UpdateRequest' => 'Update the request',
|
||||||
'Portal:EnterYourCommentsOnTicket' => 'İsteğin çözümüne yönelik açıklamalar:',
|
'Portal:EnterYourCommentsOnTicket' => 'İsteğin çözümüne yönelik açıklamalar:',
|
||||||
'Portal:ErrorNoContactForThisUser' => 'Hata: mevcut kullanıcının irtibat bilgisi yok. Sistem yöneticisi ile irtibata geçiniz.',
|
'Portal:ErrorNoContactForThisUser' => 'Hata: mevcut kullanıcının irtibat bilgisi yok. Sistem yöneticisi ile irtibata geçiniz.',
|
||||||
'Portal:Attachments' => 'Eklentiler',
|
'Portal:Attachments' => 'Eklentiler',
|
||||||
'Portal:AddAttachment' => ' Dosya ekle ',
|
'Portal:AddAttachment' => ' Dosya ekle ',
|
||||||
'Portal:RemoveAttachment' => ' Dosya çıkar ',
|
'Portal:RemoveAttachment' => ' Dosya çıkar ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => 'Ek # %1$d ila %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => 'Ek # %1$d ila %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => '%1$s için bir şablon seçin',
|
'Portal:SelectRequestTemplate' => '%1$s için bir şablon seçin',
|
||||||
'Enum:Undefined' => 'Tanımsız',
|
'Enum:Undefined' => 'Tanımsız',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Gün %2$s Saat %3$s Dakika %4$s Saniye',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s Gün %2$s Saat %3$s Dakika %4$s Saniye',
|
||||||
'UI:ModifyAllPageTitle' => 'Hepsini değiştir',
|
'UI:ModifyAllPageTitle' => 'Hepsini değiştir',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => '%1$d Sınıfının Değiştirilmesi %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => '%1$d Sınıfının Değiştirilmesi %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => '%1$d nesnelerinin %3$s \'dışında %1$d nesnelerini değiştirme',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => '%1$d nesnelerinin %3$s \'dışında %1$d nesnelerini değiştirme',
|
||||||
'UI:Menu:ModifyAll' => 'Değiştir...',
|
'UI:Menu:ModifyAll' => 'Değiştir...',
|
||||||
'UI:Button:ModifyAll' => 'Hepsini değiştir',
|
'UI:Button:ModifyAll' => 'Hepsini değiştir',
|
||||||
'UI:Button:PreviewModifications' => 'Değişiklikleri görüntüle >>',
|
'UI:Button:PreviewModifications' => 'Değişiklikleri görüntüle >>',
|
||||||
'UI:ModifiedObject' => 'Nesne değiştirildi',
|
'UI:ModifiedObject' => 'Nesne değiştirildi',
|
||||||
'UI:BulkModifyStatus' => 'Operasyon',
|
'UI:BulkModifyStatus' => 'Operasyon',
|
||||||
'UI:BulkModifyStatus+' => 'İşlemin durumu',
|
'UI:BulkModifyStatus+' => 'İşlemin durumu',
|
||||||
'UI:BulkModifyErrors' => 'Hatalar (varsa)',
|
'UI:BulkModifyErrors' => 'Hatalar (varsa)',
|
||||||
'UI:BulkModifyErrors+' => 'Değişikliği önleyen hatalar',
|
'UI:BulkModifyErrors+' => 'Değişikliği önleyen hatalar',
|
||||||
'UI:BulkModifyStatusOk' => 'Tamam',
|
'UI:BulkModifyStatusOk' => 'Tamam',
|
||||||
'UI:BulkModifyStatusError' => 'Hata',
|
'UI:BulkModifyStatusError' => 'Hata',
|
||||||
'UI:BulkModifyStatusModified' => 'Değiştirildi',
|
'UI:BulkModifyStatusModified' => 'Değiştirildi',
|
||||||
'UI:BulkModifyStatusSkipped' => 'Atlandı',
|
'UI:BulkModifyStatusSkipped' => 'Atlandı',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d belirgin değerler:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d belirgin değerler:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d Zaman (lar)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d Zaman (lar)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d Diğer değerler...',
|
'UI:BulkModify:N_MoreValues' => '%1$d Diğer değerler...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Salt okunur alanını ayarlamaya çalışıyor: %1$s~~',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => 'Salt okunur alanını ayarlamaya çalışıyor: %1$s~~',
|
||||||
'UI:FailedToApplyStimuli' => 'Eylem başarısız oldu',
|
'UI:FailedToApplyStimuli' => 'Eylem başarısız oldu',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: %2$d Nesnelerin %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: %2$d Nesnelerin %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => 'Metninizi buraya yazın:',
|
'UI:CaseLogTypeYourTextHere' => 'Metninizi buraya yazın:',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => 'İlk değer:',
|
'UI:CaseLog:InitialValue' => 'İlk değer:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => '%1$s alanı yazılabilir değildir, çünkü veri senkronizasyonu tarafından kullanılıyor. Değer ayarlanmadı.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => '%1$s alanı yazılabilir değildir, çünkü veri senkronizasyonu tarafından kullanılıyor. Değer ayarlanmadı.',
|
||||||
'UI:ActionNotAllowed' => 'Bu işlemi bu nesnelerde yapmanıza izin verilmez.',
|
'UI:ActionNotAllowed' => 'Bu işlemi bu nesnelerde yapmanıza izin verilmez.',
|
||||||
'UI:BulkAction:NoObjectSelected' => 'Lütfen bu işlemi gerçekleştirmek için en az bir nesne seçin',
|
'UI:BulkAction:NoObjectSelected' => 'Lütfen bu işlemi gerçekleştirmek için en az bir nesne seçin',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => '%1$s alanı yazılabilir değildir, çünkü veri senkronizasyonu tarafından kullanılıyor. Değer değişmeden kalır.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => '%1$s alanı yazılabilir değildir, çünkü veri senkronizasyonu tarafından kullanılıyor. Değer değişmeden kalır.',
|
||||||
'UI:Pagination:HeaderSelection' => 'Toplam: %1$s erinin nesneleri (%2$s nesneleri seçildi).',
|
'UI:Pagination:HeaderSelection' => 'Toplam: %1$s erinin nesneleri (%2$s nesneleri seçildi).',
|
||||||
'UI:Pagination:HeaderNoSelection' => 'Toplam: %1$s nesne.',
|
'UI:Pagination:HeaderNoSelection' => 'Toplam: %1$s nesne.',
|
||||||
'UI:Pagination:PageSize' => '%1$s Sayfa başına nesneler',
|
'UI:Pagination:PageSize' => '%1$s Sayfa başına nesneler',
|
||||||
'UI:Pagination:PagesLabel' => 'Sayfalar:',
|
'UI:Pagination:PagesLabel' => 'Sayfalar:',
|
||||||
'UI:Pagination:All' => 'Hepsi',
|
'UI:Pagination:All' => 'Hepsi',
|
||||||
'UI:HierarchyOf_Class' => '%1$s \'nin hiyerarşisi',
|
|
||||||
'UI:Preferences' => 'Tercihler',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => 'Arşiv modunu etkinleştirin',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => 'Arşiv modunu devre dışı bırak',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => 'Arşiv Modu',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => 'Arşivlenmiş nesneler görünür ve hiçbir değişiklik yapılmasına izin verilmez',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => 'Favori organizasyonlar',
|
|
||||||
'UI:FavoriteOrganizations+' => 'Hızlı bir erişim için açılır menüde görmek istediğiniz kuruluşların altındaki listeyi kontrol edin. Bunun bir güvenlik ayarı olmadığını, herhangi bir kuruluştan nesnelerin hala göründüğünü ve aşağı açılan listede \\"tüm kuruluşlar\\" seçilerek erişilebileceğini unutmayın',
|
'UI:HierarchyOf_Class' => '%1$s \'nin hiyerarşisi',
|
||||||
'UI:FavoriteLanguage' => 'Kullanıcı arayüzünün dili',
|
'UI:Preferences' => 'Tercihler',
|
||||||
'UI:Favorites:SelectYourLanguage' => 'Tercih ettiğiniz dili seçin',
|
'UI:ArchiveModeOn' => 'Arşiv modunu etkinleştirin',
|
||||||
'UI:FavoriteOtherSettings' => 'Diğer ayarlar',
|
'UI:ArchiveModeOff' => 'Arşiv modunu devre dışı bırak',
|
||||||
|
'UI:ArchiveMode:Banner' => 'Arşiv Modu',
|
||||||
|
'UI:ArchiveMode:Banner+' => 'Arşivlenmiş nesneler görünür ve hiçbir değişiklik yapılmasına izin verilmez',
|
||||||
|
'UI:FavoriteOrganizations' => 'Favori organizasyonlar',
|
||||||
|
'UI:FavoriteOrganizations+' => 'Hızlı bir erişim için açılır menüde görmek istediğiniz kuruluşların altındaki listeyi kontrol edin. Bunun bir güvenlik ayarı olmadığını, herhangi bir kuruluştan nesnelerin hala göründüğünü ve aşağı açılan listede \\"tüm kuruluşlar\\" seçilerek erişilebileceğini unutmayın',
|
||||||
|
'UI:FavoriteLanguage' => 'Kullanıcı arayüzünün dili',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => 'Tercih ettiğiniz dili seçin',
|
||||||
|
'UI:FavoriteOtherSettings' => 'Diğer ayarlar',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => 'Listeler için varsayılan uzunluk: %1$s sayfa sayfa başına',
|
'UI:Favorites:Default_X_ItemsPerPage' => 'Listeler için varsayılan uzunluk: %1$s sayfa sayfa başına',
|
||||||
'UI:Favorites:ShowObsoleteData' => 'Eski bilgileri göster',
|
'UI:Favorites:ShowObsoleteData' => 'Eski bilgileri göster',
|
||||||
'UI:Favorites:ShowObsoleteData+' => 'Arama sonuçlarında ve seçilecek öğelerin listelerinde eski bilgileri gösterin',
|
'UI:Favorites:ShowObsoleteData+' => 'Arama sonuçlarında ve seçilecek öğelerin listelerinde eski bilgileri gösterin',
|
||||||
'UI:NavigateAwayConfirmationMessage' => 'Herhangi bir değişiklik atılır',
|
'UI:NavigateAwayConfirmationMessage' => 'Herhangi bir değişiklik atılır',
|
||||||
'UI:CancelConfirmationMessage' => 'Değişikliklerinizi kaybedersiniz. Yine de devam et?',
|
'UI:CancelConfirmationMessage' => 'Değişikliklerinizi kaybedersiniz. Yine de devam et?',
|
||||||
'UI:AutoApplyConfirmationMessage' => 'Bazı değişiklikler henüz uygulanmadı. '.ITOP_APPLICATION_SHORT.'\'un değişiklikleri uygulamasını istiyor musunuz?',
|
'UI:AutoApplyConfirmationMessage' => 'Bazı değişiklikler henüz uygulanmadı. '.ITOP_APPLICATION_SHORT.'\'un değişiklikleri uygulamasını istiyor musunuz?',
|
||||||
'UI:Create_Class_InState' => '%1$s durumunda oluşturun: ',
|
'UI:Create_Class_InState' => '%1$s durumunda oluşturun: ',
|
||||||
'UI:OrderByHint_Values' => 'Sıralama düzeni: %1$s',
|
'UI:OrderByHint_Values' => 'Sıralama düzeni: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => 'Panoya ekleyin...',
|
'UI:Menu:AddToDashboard' => 'Panoya ekleyin...',
|
||||||
'UI:Button:Refresh' => 'Yenile',
|
'UI:Button:Refresh' => 'Yenile',
|
||||||
'UI:Button:GoPrint' => 'Print...~~',
|
'UI:Button:GoPrint' => 'Print...~~',
|
||||||
'UI:ExplainPrintable' => 'Click onto the %1$s icon to hide items from the print.<br/>Use the "print preview" feature of your browser to preview before printing.<br/>Note: this header and the other tuning controls will not be printed.~~',
|
'UI:ExplainPrintable' => 'Click onto the %1$s icon to hide items from the print.<br/>Use the "print preview" feature of your browser to preview before printing.<br/>Note: this header and the other tuning controls will not be printed.~~',
|
||||||
'UI:PrintResolution:FullSize' => 'Full size~~',
|
'UI:PrintResolution:FullSize' => 'Full size~~',
|
||||||
'UI:PrintResolution:A4Portrait' => 'A4 Portrait~~',
|
'UI:PrintResolution:A4Portrait' => 'A4 Portrait~~',
|
||||||
'UI:PrintResolution:A4Landscape' => 'A4 Landscape~~',
|
'UI:PrintResolution:A4Landscape' => 'A4 Landscape~~',
|
||||||
'UI:PrintResolution:LetterPortrait' => 'Letter Portrait~~',
|
'UI:PrintResolution:LetterPortrait' => 'Letter Portrait~~',
|
||||||
'UI:PrintResolution:LetterLandscape' => 'Letter Landscape~~',
|
'UI:PrintResolution:LetterLandscape' => 'Letter Landscape~~',
|
||||||
'UI:Toggle:SwitchToStandardDashboard' => 'Switch to standard dashboard~~',
|
'UI:Toggle:SwitchToStandardDashboard' => 'Switch to standard dashboard~~',
|
||||||
'UI:Toggle:SwitchToCustomDashboard' => 'Switch to custom dashboard~~',
|
'UI:Toggle:SwitchToCustomDashboard' => 'Switch to custom dashboard~~',
|
||||||
|
|
||||||
@@ -1396,42 +1425,44 @@ Tetikleme gerçekleştiriğinde işlemler tanımlanan sıra numarası ile gerçe
|
|||||||
'Month-12' => 'Aralık',
|
'Month-12' => 'Aralık',
|
||||||
|
|
||||||
// Short version for the DatePicker
|
// Short version for the DatePicker
|
||||||
'DayOfWeek-Sunday-Min' => 'Paz',
|
'DayOfWeek-Sunday-Min' => 'Paz',
|
||||||
'DayOfWeek-Monday-Min' => 'Pzt',
|
'DayOfWeek-Monday-Min' => 'Pzt',
|
||||||
'DayOfWeek-Tuesday-Min' => 'Sal',
|
'DayOfWeek-Tuesday-Min' => 'Sal',
|
||||||
'DayOfWeek-Wednesday-Min' => 'Car',
|
'DayOfWeek-Wednesday-Min' => 'Car',
|
||||||
'DayOfWeek-Thursday-Min' => 'Per',
|
'DayOfWeek-Thursday-Min' => 'Per',
|
||||||
'DayOfWeek-Friday-Min' => 'Cum',
|
'DayOfWeek-Friday-Min' => 'Cum',
|
||||||
'DayOfWeek-Saturday-Min' => 'Cts',
|
'DayOfWeek-Saturday-Min' => 'Cts',
|
||||||
'Month-01-Short' => 'Oca',
|
'Month-01-Short' => 'Oca',
|
||||||
'Month-02-Short' => 'Şub',
|
'Month-02-Short' => 'Şub',
|
||||||
'Month-03-Short' => 'Mar',
|
'Month-03-Short' => 'Mar',
|
||||||
'Month-04-Short' => 'Nis',
|
'Month-04-Short' => 'Nis',
|
||||||
'Month-05-Short' => 'May',
|
'Month-05-Short' => 'May',
|
||||||
'Month-06-Short' => 'Haz',
|
'Month-06-Short' => 'Haz',
|
||||||
'Month-07-Short' => 'Tem',
|
'Month-07-Short' => 'Tem',
|
||||||
'Month-08-Short' => 'Ağu',
|
'Month-08-Short' => 'Ağu',
|
||||||
'Month-09-Short' => 'Eyl',
|
'Month-09-Short' => 'Eyl',
|
||||||
'Month-10-Short' => 'Eki',
|
'Month-10-Short' => 'Eki',
|
||||||
'Month-11-Short' => 'Kas',
|
'Month-11-Short' => 'Kas',
|
||||||
'Month-12-Short' => 'Ara',
|
'Month-12-Short' => 'Ara',
|
||||||
'Calendar-FirstDayOfWeek' => '0', // 0 = Sunday, 1 = Monday, etc...
|
'Calendar-FirstDayOfWeek' => '0',
|
||||||
|
// 0 = Sunday, 1 = Monday, etc...
|
||||||
|
|
||||||
'UI:Menu:ShortcutList' => 'Bir kısayol oluşturun...',
|
'UI:Menu:ShortcutList' => 'Bir kısayol oluşturun...',
|
||||||
'UI:ShortcutRenameDlg:Title' => 'Kısayolu yeniden adlandırın',
|
'UI:ShortcutRenameDlg:Title' => 'Kısayolu yeniden adlandırın',
|
||||||
'UI:ShortcutListDlg:Title' => 'Liste için bir kısayol oluşturun',
|
'UI:ShortcutListDlg:Title' => 'Liste için bir kısayol oluşturun',
|
||||||
'UI:ShortcutDelete:Confirm' => 'Lütfen kısayolları silmek istediğinizi onaylayın.',
|
'UI:ShortcutDelete:Confirm' => 'Lütfen kısayolları silmek istediğinizi onaylayın.',
|
||||||
'Menu:MyShortcuts' => 'Kısayollarım', // Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:MyShortcuts' => 'Kısayollarım',
|
||||||
'Class:Shortcut' => 'Kısayol',
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Class:Shortcut+' => '~~',
|
'Class:Shortcut' => 'Kısayol',
|
||||||
'Class:Shortcut/Attribute:name' => 'İsim',
|
'Class:Shortcut+' => '~~',
|
||||||
'Class:Shortcut/Attribute:name+' => 'Menü ve sayfa başlığında kullanılan etiket',
|
'Class:Shortcut/Attribute:name' => 'İsim',
|
||||||
'Class:ShortcutOQL' => 'Arama Sonucu Kısayolu',
|
'Class:Shortcut/Attribute:name+' => 'Menü ve sayfa başlığında kullanılan etiket',
|
||||||
'Class:ShortcutOQL+' => '~~',
|
'Class:ShortcutOQL' => 'Arama Sonucu Kısayolu',
|
||||||
'Class:ShortcutOQL/Attribute:oql' => 'Sorgu',
|
'Class:ShortcutOQL+' => '~~',
|
||||||
'Class:ShortcutOQL/Attribute:oql+' => 'OQL Aramak için nesnelerin listesini tanımlama',
|
'Class:ShortcutOQL/Attribute:oql' => 'Sorgu',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload' => 'Otomatik yenileme',
|
'Class:ShortcutOQL/Attribute:oql+' => 'OQL Aramak için nesnelerin listesini tanımlama',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload/Value:none' => 'Devre dışı',
|
'Class:ShortcutOQL/Attribute:auto_reload' => 'Otomatik yenileme',
|
||||||
|
'Class:ShortcutOQL/Attribute:auto_reload/Value:none' => 'Devre dışı',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload/Value:custom' => 'Özel Oran',
|
'Class:ShortcutOQL/Attribute:auto_reload/Value:custom' => 'Özel Oran',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload_sec' => 'Otomatik Yenileme Aralığı (Saniye)',
|
'Class:ShortcutOQL/Attribute:auto_reload_sec' => 'Otomatik Yenileme Aralığı (Saniye)',
|
||||||
'Class:ShortcutOQL/Attribute:auto_reload_sec/tip' => 'İzin verilen minimum %1$d saniyedir',
|
'Class:ShortcutOQL/Attribute:auto_reload_sec/tip' => 'İzin verilen minimum %1$d saniyedir',
|
||||||
|
|||||||
@@ -338,14 +338,18 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|||||||
//
|
//
|
||||||
|
|
||||||
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
||||||
'BooleanLabel:yes' => '是',
|
'BooleanLabel:yes' => '是',
|
||||||
'BooleanLabel:no' => '否',
|
'BooleanLabel:no' => '否',
|
||||||
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' 登录',
|
'UI:Login:Title' => ITOP_APPLICATION_SHORT.' 登录',
|
||||||
'Menu:WelcomeMenu' => '欢迎',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu' => '欢迎',
|
||||||
'Menu:WelcomeMenu+' => '欢迎使用 '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'Menu:WelcomeMenuPage' => '欢迎',// Duplicated into itop-welcome-itil (will be removed from here...)
|
'Menu:WelcomeMenu+' => '欢迎使用 '.ITOP_APPLICATION_SHORT,
|
||||||
'Menu:WelcomeMenuPage+' => '欢迎使用 '.ITOP_APPLICATION_SHORT, // Duplicated into itop-welcome-itil (will be removed from here...)
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
'UI:WelcomeMenu:Title' => '欢迎使用 '.ITOP_APPLICATION_SHORT,
|
'Menu:WelcomeMenuPage' => '欢迎',
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'Menu:WelcomeMenuPage+' => '欢迎使用 '.ITOP_APPLICATION_SHORT,
|
||||||
|
// Duplicated into itop-welcome-itil (will be removed from here...)
|
||||||
|
'UI:WelcomeMenu:Title' => '欢迎使用 '.ITOP_APPLICATION_SHORT,
|
||||||
|
|
||||||
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' 是完全开源的IT操作门户.</p>
|
'UI:WelcomeMenu:LeftBlock' => '<p>'.ITOP_APPLICATION_SHORT.' 是完全开源的IT操作门户.</p>
|
||||||
<ul>它包括:
|
<ul>它包括:
|
||||||
@@ -358,7 +362,7 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|||||||
</ul>
|
</ul>
|
||||||
<p>所有模块互相独立,可以单独部署.</p>',
|
<p>所有模块互相独立,可以单独部署.</p>',
|
||||||
|
|
||||||
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' 是面向服务供应商的, 它使得IT 工程师能够更方便地管理多客户和多组织.
|
'UI:WelcomeMenu:RightBlock' => '<p>'.ITOP_APPLICATION_SHORT.' 是面向服务供应商的, 它使得IT 工程师能够更方便地管理多客户和多组织.
|
||||||
<ul>'.ITOP_APPLICATION_SHORT.' 提供功能丰富的业务处理流程:
|
<ul>'.ITOP_APPLICATION_SHORT.' 提供功能丰富的业务处理流程:
|
||||||
<li>提高IT管理效率</li>
|
<li>提高IT管理效率</li>
|
||||||
<li>提升IT可操作能力</li>
|
<li>提升IT可操作能力</li>
|
||||||
@@ -1132,65 +1136,72 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', array(
|
|||||||
'Portal:Button:UpdateRequest' => '更新需求',
|
'Portal:Button:UpdateRequest' => '更新需求',
|
||||||
'Portal:EnterYourCommentsOnTicket' => '请点评此工单的解决方案:',
|
'Portal:EnterYourCommentsOnTicket' => '请点评此工单的解决方案:',
|
||||||
'Portal:ErrorNoContactForThisUser' => '错误: 当前用户没有与任何联系人关联. 请联系管理员.',
|
'Portal:ErrorNoContactForThisUser' => '错误: 当前用户没有与任何联系人关联. 请联系管理员.',
|
||||||
'Portal:Attachments' => '附件',
|
'Portal:Attachments' => '附件',
|
||||||
'Portal:AddAttachment' => ' 添加附件 ',
|
'Portal:AddAttachment' => ' 添加附件 ',
|
||||||
'Portal:RemoveAttachment' => ' 移除附件 ',
|
'Portal:RemoveAttachment' => ' 移除附件 ',
|
||||||
'Portal:Attachment_No_To_Ticket_Name' => '添加 #%1$d 到 %2$s (%3$s)',
|
'Portal:Attachment_No_To_Ticket_Name' => '添加 #%1$d 到 %2$s (%3$s)',
|
||||||
'Portal:SelectRequestTemplate' => '请为 %1$s 选择一个模板',
|
'Portal:SelectRequestTemplate' => '请为 %1$s 选择一个模板',
|
||||||
'Enum:Undefined' => '未定义',
|
'Enum:Undefined' => '未定义',
|
||||||
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s 天 %2$s 小时 %3$s 分 %4$s 秒',
|
'UI:DurationForm_Days_Hours_Minutes_Seconds' => '%1$s 天 %2$s 小时 %3$s 分 %4$s 秒',
|
||||||
'UI:ModifyAllPageTitle' => '修改所有',
|
'UI:ModifyAllPageTitle' => '修改所有',
|
||||||
'UI:Modify_N_ObjectsOf_Class' => '正在修改 %1$d 个 %2$s',
|
'UI:Modify_N_ObjectsOf_Class' => '正在修改 %1$d 个 %2$s',
|
||||||
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => '正在修改 %1$d 个 %2$s ,一共 %3$d 个',
|
'UI:Modify_M_ObjectsOf_Class_OutOf_N' => '正在修改 %1$d 个 %2$s ,一共 %3$d 个',
|
||||||
'UI:Menu:ModifyAll' => '修改...',
|
'UI:Menu:ModifyAll' => '修改...',
|
||||||
'UI:Button:ModifyAll' => '全部修改',
|
'UI:Button:ModifyAll' => '全部修改',
|
||||||
'UI:Button:PreviewModifications' => '修改预览 >>',
|
'UI:Button:PreviewModifications' => '修改预览 >>',
|
||||||
'UI:ModifiedObject' => '对象已修改',
|
'UI:ModifiedObject' => '对象已修改',
|
||||||
'UI:BulkModifyStatus' => '操作',
|
'UI:BulkModifyStatus' => '操作',
|
||||||
'UI:BulkModifyStatus+' => '操作状态',
|
'UI:BulkModifyStatus+' => '操作状态',
|
||||||
'UI:BulkModifyErrors' => '报错 (如果有)',
|
'UI:BulkModifyErrors' => '报错 (如果有)',
|
||||||
'UI:BulkModifyErrors+' => '阻止修改时报错',
|
'UI:BulkModifyErrors+' => '阻止修改时报错',
|
||||||
'UI:BulkModifyStatusOk' => 'Ok',
|
'UI:BulkModifyStatusOk' => 'Ok',
|
||||||
'UI:BulkModifyStatusError' => '错误',
|
'UI:BulkModifyStatusError' => '错误',
|
||||||
'UI:BulkModifyStatusModified' => '已修改',
|
'UI:BulkModifyStatusModified' => '已修改',
|
||||||
'UI:BulkModifyStatusSkipped' => '跳过',
|
'UI:BulkModifyStatusSkipped' => '跳过',
|
||||||
'UI:BulkModify_Count_DistinctValues' => '%1$d 不同的值:',
|
'UI:BulkModify_Count_DistinctValues' => '%1$d 不同的值:',
|
||||||
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d time(s)',
|
'UI:BulkModify:Value_Exists_N_Times' => '%1$s, %2$d time(s)',
|
||||||
'UI:BulkModify:N_MoreValues' => '%1$d more values...',
|
'UI:BulkModify:N_MoreValues' => '%1$d more values...',
|
||||||
'UI:AttemptingToSetAReadOnlyAttribute_Name' => '尝试修改只读字段: %1$s',
|
'UI:AttemptingToSetAReadOnlyAttribute_Name' => '尝试修改只读字段: %1$s',
|
||||||
'UI:FailedToApplyStimuli' => '操作失败.',
|
'UI:FailedToApplyStimuli' => '操作失败.',
|
||||||
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: 正在修改 %2$d 个 %3$s',
|
'UI:StimulusModify_N_ObjectsOf_Class' => '%1$s: 正在修改 %2$d 个 %3$s',
|
||||||
'UI:CaseLogTypeYourTextHere' => '请在这里输入内容...',
|
'UI:CaseLogTypeYourTextHere' => '请在这里输入内容...',
|
||||||
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
'UI:CaseLog:Header_Date_UserName' => '%1$s - %2$s:',
|
||||||
'UI:CaseLog:InitialValue' => '初始值:',
|
'UI:CaseLog:InitialValue' => '初始值:',
|
||||||
'UI:AttemptingToSetASlaveAttribute_Name' => '字段 %1$s 不可写,因为它由数据同步管理. 值未设置.',
|
'UI:AttemptingToSetASlaveAttribute_Name' => '字段 %1$s 不可写,因为它由数据同步管理. 值未设置.',
|
||||||
'UI:ActionNotAllowed' => '您无权操作这些对象.',
|
'UI:ActionNotAllowed' => '您无权操作这些对象.',
|
||||||
'UI:BulkAction:NoObjectSelected' => '请至少选择一个对象进行操作',
|
'UI:BulkAction:NoObjectSelected' => '请至少选择一个对象进行操作',
|
||||||
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.',
|
'UI:AttemptingToChangeASlaveAttribute_Name' => 'The field %1$s is not writable because it is mastered by the data synchronization. Value remains unchanged.',
|
||||||
'UI:Pagination:HeaderSelection' => '一共: %1$s 个对象 ( 已选择 %2$s 个).',
|
'UI:Pagination:HeaderSelection' => '一共: %1$s 个对象 ( 已选择 %2$s 个).',
|
||||||
'UI:Pagination:HeaderNoSelection' => '一共: %1$s 个对象.',
|
'UI:Pagination:HeaderNoSelection' => '一共: %1$s 个对象.',
|
||||||
'UI:Pagination:PageSize' => '每页 %1$s 个对象',
|
'UI:Pagination:PageSize' => '每页 %1$s 个对象',
|
||||||
'UI:Pagination:PagesLabel' => '页:',
|
'UI:Pagination:PagesLabel' => '页:',
|
||||||
'UI:Pagination:All' => '全部',
|
'UI:Pagination:All' => '全部',
|
||||||
'UI:HierarchyOf_Class' => '%1$s 层级',
|
|
||||||
'UI:Preferences' => '首选项...',
|
'UI:Basket:Back' => 'Back~~',
|
||||||
'UI:ArchiveModeOn' => '激活归档模式',
|
'UI:Basket:First' => 'First~~',
|
||||||
'UI:ArchiveModeOff' => '关闭归档模式',
|
'UI:Basket:Previous' => 'Previous~~',
|
||||||
'UI:ArchiveMode:Banner' => '归档模式',
|
'UI:Basket:Next' => 'Next~~',
|
||||||
'UI:ArchiveMode:Banner+' => '已归档的对象可见但不允许修改',
|
'UI:Basket:Last' => 'Last~~',
|
||||||
'UI:FavoriteOrganizations' => '快速访问',
|
|
||||||
'UI:FavoriteOrganizations+' => '进入组织下的列表,可实现通过下拉菜单快速访问. 请注意,这并不是一个安全设置, 其他组织的对象依然可以通过选择 "所有组织" 下拉列表看到.',
|
'UI:HierarchyOf_Class' => '%1$s 层级',
|
||||||
'UI:FavoriteLanguage' => '语言',
|
'UI:Preferences' => '首选项...',
|
||||||
'UI:Favorites:SelectYourLanguage' => '选择语言',
|
'UI:ArchiveModeOn' => '激活归档模式',
|
||||||
'UI:FavoriteOtherSettings' => '其他设置',
|
'UI:ArchiveModeOff' => '关闭归档模式',
|
||||||
|
'UI:ArchiveMode:Banner' => '归档模式',
|
||||||
|
'UI:ArchiveMode:Banner+' => '已归档的对象可见但不允许修改',
|
||||||
|
'UI:FavoriteOrganizations' => '快速访问',
|
||||||
|
'UI:FavoriteOrganizations+' => '进入组织下的列表,可实现通过下拉菜单快速访问. 请注意,这并不是一个安全设置, 其他组织的对象依然可以通过选择 "所有组织" 下拉列表看到.',
|
||||||
|
'UI:FavoriteLanguage' => '语言',
|
||||||
|
'UI:Favorites:SelectYourLanguage' => '选择语言',
|
||||||
|
'UI:FavoriteOtherSettings' => '其他设置',
|
||||||
'UI:Favorites:Default_X_ItemsPerPage' => '默认列表: 每页 %1$s 个项目~~',
|
'UI:Favorites:Default_X_ItemsPerPage' => '默认列表: 每页 %1$s 个项目~~',
|
||||||
'UI:Favorites:ShowObsoleteData' => '显示废弃的数据',
|
'UI:Favorites:ShowObsoleteData' => '显示废弃的数据',
|
||||||
'UI:Favorites:ShowObsoleteData+' => '在搜索结果中显示已废弃的数据',
|
'UI:Favorites:ShowObsoleteData+' => '在搜索结果中显示已废弃的数据',
|
||||||
'UI:NavigateAwayConfirmationMessage' => '所有修改都将丢失.',
|
'UI:NavigateAwayConfirmationMessage' => '所有修改都将丢失.',
|
||||||
'UI:CancelConfirmationMessage' => '您将丢失所有修改. 是否继续?',
|
'UI:CancelConfirmationMessage' => '您将丢失所有修改. 是否继续?',
|
||||||
'UI:AutoApplyConfirmationMessage' => '有些修改尚未生效. Do you want itop to take them into account?',
|
'UI:AutoApplyConfirmationMessage' => '有些修改尚未生效. Do you want itop to take them into account?',
|
||||||
'UI:Create_Class_InState' => 'Create the %1$s in state: ',
|
'UI:Create_Class_InState' => 'Create the %1$s in state: ',
|
||||||
'UI:OrderByHint_Values' => '排列顺序: %1$s',
|
'UI:OrderByHint_Values' => '排列顺序: %1$s',
|
||||||
'UI:Menu:AddToDashboard' => '添加到仪表盘...',
|
'UI:Menu:AddToDashboard' => '添加到仪表盘...',
|
||||||
'UI:Button:Refresh' => '刷新',
|
'UI:Button:Refresh' => '刷新',
|
||||||
'UI:Button:GoPrint' => '打印...',
|
'UI:Button:GoPrint' => '打印...',
|
||||||
|
|||||||
@@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
// autoload.php @generated by Composer
|
// autoload.php @generated by Composer
|
||||||
|
|
||||||
|
if (PHP_VERSION_ID < 50600) {
|
||||||
|
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
require_once __DIR__ . '/composer/autoload_real.php';
|
require_once __DIR__ . '/composer/autoload_real.php';
|
||||||
|
|
||||||
return ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f::getLoader();
|
return ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f::getLoader();
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ class ClassLoader
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string[] Array of classname => path
|
* @return string[] Array of classname => path
|
||||||
* @psalm-var array<string, string>
|
* @psalm-return array<string, string>
|
||||||
*/
|
*/
|
||||||
public function getClassMap()
|
public function getClassMap()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_classmap.php @generated by Composer
|
// autoload_classmap.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
@@ -225,6 +225,7 @@ return array(
|
|||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletHeaderStatic' => $baseDir . '/sources/Application/UI/Base/Component/Dashlet/DashletHeaderStatic.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletHeaderStatic' => $baseDir . '/sources/Application/UI/Base/Component/Dashlet/DashletHeaderStatic.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletPlainText' => $baseDir . '/sources/Application/UI/Base/Component/Dashlet/DashletPlainText.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletPlainText' => $baseDir . '/sources/Application/UI/Base/Component/Dashlet/DashletPlainText.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTable' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTable.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTable' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTable.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableBasket' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTableBasket.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableSettings' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTableSettings.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableSettings' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTableSettings.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableUIBlockFactory' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableUIBlockFactory' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\StaticTable\\FormTableRow\\FormTableRow' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/StaticTable/FormTableRow/FormTableRow.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\StaticTable\\FormTableRow\\FormTableRow' => $baseDir . '/sources/Application/UI/Base/Component/DataTable/StaticTable/FormTableRow/FormTableRow.php',
|
||||||
@@ -266,6 +267,8 @@ return array(
|
|||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Input\\tInputLabel' => $baseDir . '/sources/Application/UI/Base/Component/Input/tInputLabel.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Input\\tInputLabel' => $baseDir . '/sources/Application/UI/Base/Component/Input/tInputLabel.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\MedallionIcon\\MedallionIcon' => $baseDir . '/sources/Application/UI/Base/Component/MedallionIcon/MedallionIcon.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\MedallionIcon\\MedallionIcon' => $baseDir . '/sources/Application/UI/Base/Component/MedallionIcon/MedallionIcon.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Modal\\DoNotShowAgainOptionBlock' => $baseDir . '/sources/Application/UI/Base/Component/Modal/DoNotShowAgainOptionBlock.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Modal\\DoNotShowAgainOptionBlock' => $baseDir . '/sources/Application/UI/Base/Component/Modal/DoNotShowAgainOptionBlock.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Navigation\\Navigation' => $baseDir . '/sources/Application/UI/Base/Component/Navigation/Navigation.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Navigation\\NavigationUIBlockFactory' => $baseDir . '/sources/Application/UI/Base/Component/Navigation/NavigationUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\Panel' => $baseDir . '/sources/Application/UI/Base/Component/Panel/Panel.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\Panel' => $baseDir . '/sources/Application/UI/Base/Component/Panel/Panel.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\PanelUIBlockFactory' => $baseDir . '/sources/Application/UI/Base/Component/Panel/PanelUIBlockFactory.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\PanelUIBlockFactory' => $baseDir . '/sources/Application/UI/Base/Component/Panel/PanelUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Pill\\Pill' => $baseDir . '/sources/Application/UI/Base/Component/Pill/Pill.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Pill\\Pill' => $baseDir . '/sources/Application/UI/Base/Component/Pill/Pill.php',
|
||||||
@@ -449,7 +452,6 @@ return array(
|
|||||||
'Combodo\\iTop\\Service\\Events\\EventServiceLog' => $baseDir . '/sources/Service/Events/EventServiceLog.php',
|
'Combodo\\iTop\\Service\\Events\\EventServiceLog' => $baseDir . '/sources/Service/Events/EventServiceLog.php',
|
||||||
'Combodo\\iTop\\Service\\Events\\iEventServiceSetup' => $baseDir . '/sources/Service/Events/iEventServiceSetup.php',
|
'Combodo\\iTop\\Service\\Events\\iEventServiceSetup' => $baseDir . '/sources/Service/Events/iEventServiceSetup.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetDataTransformer' => $baseDir . '/sources/Service/Links/LinkSetDataTransformer.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetDataTransformer' => $baseDir . '/sources/Service/Links/LinkSetDataTransformer.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetHelper' => $baseDir . '/sources/Service/Links/LinkSetHelper.php',
|
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetModel' => $baseDir . '/sources/Service/Links/LinkSetModel.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetModel' => $baseDir . '/sources/Service/Links/LinkSetModel.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetRepository' => $baseDir . '/sources/Service/Links/LinkSetRepository.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetRepository' => $baseDir . '/sources/Service/Links/LinkSetRepository.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinksBulkDataPostProcessor' => $baseDir . '/sources/Service/Links/LinksBulkDataPostProcessor.php',
|
'Combodo\\iTop\\Service\\Links\\LinksBulkDataPostProcessor' => $baseDir . '/sources/Service/Links/LinksBulkDataPostProcessor.php',
|
||||||
@@ -1702,17 +1704,6 @@ return array(
|
|||||||
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\TwigExtension' => $vendorDir . '/symfony/twig-bundle/DependencyInjection/TwigExtension.php',
|
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\TwigExtension' => $vendorDir . '/symfony/twig-bundle/DependencyInjection/TwigExtension.php',
|
||||||
'Symfony\\Bundle\\TwigBundle\\TemplateIterator' => $vendorDir . '/symfony/twig-bundle/TemplateIterator.php',
|
'Symfony\\Bundle\\TwigBundle\\TemplateIterator' => $vendorDir . '/symfony/twig-bundle/TemplateIterator.php',
|
||||||
'Symfony\\Bundle\\TwigBundle\\TwigBundle' => $vendorDir . '/symfony/twig-bundle/TwigBundle.php',
|
'Symfony\\Bundle\\TwigBundle\\TwigBundle' => $vendorDir . '/symfony/twig-bundle/TwigBundle.php',
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ExceptionPanelController' => $vendorDir . '/symfony/web-profiler-bundle/Controller/ExceptionPanelController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ProfilerController' => $vendorDir . '/symfony/web-profiler-bundle/Controller/ProfilerController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\RouterController' => $vendorDir . '/symfony/web-profiler-bundle/Controller/RouterController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Csp\\ContentSecurityPolicyHandler' => $vendorDir . '/symfony/web-profiler-bundle/Csp/ContentSecurityPolicyHandler.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Csp\\NonceGenerator' => $vendorDir . '/symfony/web-profiler-bundle/Csp/NonceGenerator.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\Configuration' => $vendorDir . '/symfony/web-profiler-bundle/DependencyInjection/Configuration.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\WebProfilerExtension' => $vendorDir . '/symfony/web-profiler-bundle/DependencyInjection/WebProfilerExtension.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener' => $vendorDir . '/symfony/web-profiler-bundle/EventListener/WebDebugToolbarListener.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Profiler\\TemplateManager' => $vendorDir . '/symfony/web-profiler-bundle/Profiler/TemplateManager.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension' => $vendorDir . '/symfony/web-profiler-bundle/Twig/WebProfilerExtension.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle' => $vendorDir . '/symfony/web-profiler-bundle/WebProfilerBundle.php',
|
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AbstractAdapter' => $vendorDir . '/symfony/cache/Adapter/AbstractAdapter.php',
|
'Symfony\\Component\\Cache\\Adapter\\AbstractAdapter' => $vendorDir . '/symfony/cache/Adapter/AbstractAdapter.php',
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AbstractTagAwareAdapter' => $vendorDir . '/symfony/cache/Adapter/AbstractTagAwareAdapter.php',
|
'Symfony\\Component\\Cache\\Adapter\\AbstractTagAwareAdapter' => $vendorDir . '/symfony/cache/Adapter/AbstractTagAwareAdapter.php',
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AdapterInterface' => $vendorDir . '/symfony/cache/Adapter/AdapterInterface.php',
|
'Symfony\\Component\\Cache\\Adapter\\AdapterInterface' => $vendorDir . '/symfony/cache/Adapter/AdapterInterface.php',
|
||||||
@@ -2532,10 +2523,6 @@ return array(
|
|||||||
'Symfony\\Component\\Routing\\RouteCompilerInterface' => $vendorDir . '/symfony/routing/RouteCompilerInterface.php',
|
'Symfony\\Component\\Routing\\RouteCompilerInterface' => $vendorDir . '/symfony/routing/RouteCompilerInterface.php',
|
||||||
'Symfony\\Component\\Routing\\Router' => $vendorDir . '/symfony/routing/Router.php',
|
'Symfony\\Component\\Routing\\Router' => $vendorDir . '/symfony/routing/Router.php',
|
||||||
'Symfony\\Component\\Routing\\RouterInterface' => $vendorDir . '/symfony/routing/RouterInterface.php',
|
'Symfony\\Component\\Routing\\RouterInterface' => $vendorDir . '/symfony/routing/RouterInterface.php',
|
||||||
'Symfony\\Component\\Stopwatch\\Section' => $vendorDir . '/symfony/stopwatch/Section.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\Stopwatch' => $vendorDir . '/symfony/stopwatch/Stopwatch.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\StopwatchEvent' => $vendorDir . '/symfony/stopwatch/StopwatchEvent.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\StopwatchPeriod' => $vendorDir . '/symfony/stopwatch/StopwatchPeriod.php',
|
|
||||||
'Symfony\\Component\\String\\AbstractString' => $vendorDir . '/symfony/string/AbstractString.php',
|
'Symfony\\Component\\String\\AbstractString' => $vendorDir . '/symfony/string/AbstractString.php',
|
||||||
'Symfony\\Component\\String\\AbstractUnicodeString' => $vendorDir . '/symfony/string/AbstractUnicodeString.php',
|
'Symfony\\Component\\String\\AbstractUnicodeString' => $vendorDir . '/symfony/string/AbstractUnicodeString.php',
|
||||||
'Symfony\\Component\\String\\ByteString' => $vendorDir . '/symfony/string/ByteString.php',
|
'Symfony\\Component\\String\\ByteString' => $vendorDir . '/symfony/string/ByteString.php',
|
||||||
|
|||||||
@@ -2,24 +2,24 @@
|
|||||||
|
|
||||||
// autoload_files.php @generated by Composer
|
// autoload_files.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
|
|
||||||
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
|
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
|
||||||
|
'6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
|
||||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
|
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||||
'320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
|
'320cde22f66dd4f5d3fd621d3e88b98f' => $vendorDir . '/symfony/polyfill-ctype/bootstrap.php',
|
||||||
'0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
|
'0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php',
|
||||||
'23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
|
'23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php',
|
||||||
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
|
|
||||||
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
|
||||||
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => $vendorDir . '/laminas/laminas-servicemanager/src/autoload.php',
|
|
||||||
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||||
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
'667aeda72477189d0494fecd327c3641' => $vendorDir . '/symfony/var-dumper/Resources/functions/dump.php',
|
||||||
'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
|
'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
|
||||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||||
|
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => $vendorDir . '/laminas/laminas-servicemanager/src/autoload.php',
|
||||||
|
'8825ede83f2f289127722d4e842cf7e8' => $vendorDir . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||||
'25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
|
'25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php',
|
||||||
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
|
'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php',
|
||||||
|
'b6b991a57620e2fb6b2f66f03fe9ddc2' => $vendorDir . '/symfony/string/Resources/functions.php',
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_namespaces.php @generated by Composer
|
// autoload_namespaces.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_psr4.php @generated by Composer
|
// autoload_psr4.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
@@ -26,7 +26,6 @@ return array(
|
|||||||
'Symfony\\Component\\VarExporter\\' => array($vendorDir . '/symfony/var-exporter'),
|
'Symfony\\Component\\VarExporter\\' => array($vendorDir . '/symfony/var-exporter'),
|
||||||
'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'),
|
'Symfony\\Component\\VarDumper\\' => array($vendorDir . '/symfony/var-dumper'),
|
||||||
'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
|
'Symfony\\Component\\String\\' => array($vendorDir . '/symfony/string'),
|
||||||
'Symfony\\Component\\Stopwatch\\' => array($vendorDir . '/symfony/stopwatch'),
|
|
||||||
'Symfony\\Component\\Routing\\' => array($vendorDir . '/symfony/routing'),
|
'Symfony\\Component\\Routing\\' => array($vendorDir . '/symfony/routing'),
|
||||||
'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'),
|
'Symfony\\Component\\HttpKernel\\' => array($vendorDir . '/symfony/http-kernel'),
|
||||||
'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'),
|
'Symfony\\Component\\HttpFoundation\\' => array($vendorDir . '/symfony/http-foundation'),
|
||||||
@@ -40,7 +39,6 @@ return array(
|
|||||||
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
|
'Symfony\\Component\\Console\\' => array($vendorDir . '/symfony/console'),
|
||||||
'Symfony\\Component\\Config\\' => array($vendorDir . '/symfony/config'),
|
'Symfony\\Component\\Config\\' => array($vendorDir . '/symfony/config'),
|
||||||
'Symfony\\Component\\Cache\\' => array($vendorDir . '/symfony/cache'),
|
'Symfony\\Component\\Cache\\' => array($vendorDir . '/symfony/cache'),
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\' => array($vendorDir . '/symfony/web-profiler-bundle'),
|
|
||||||
'Symfony\\Bundle\\TwigBundle\\' => array($vendorDir . '/symfony/twig-bundle'),
|
'Symfony\\Bundle\\TwigBundle\\' => array($vendorDir . '/symfony/twig-bundle'),
|
||||||
'Symfony\\Bundle\\FrameworkBundle\\' => array($vendorDir . '/symfony/framework-bundle'),
|
'Symfony\\Bundle\\FrameworkBundle\\' => array($vendorDir . '/symfony/framework-bundle'),
|
||||||
'Symfony\\Bridge\\Twig\\' => array($vendorDir . '/symfony/twig-bridge'),
|
'Symfony\\Bridge\\Twig\\' => array($vendorDir . '/symfony/twig-bridge'),
|
||||||
|
|||||||
@@ -25,33 +25,21 @@ class ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
require __DIR__ . '/platform_check.php';
|
require __DIR__ . '/platform_check.php';
|
||||||
|
|
||||||
spl_autoload_register(array('ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f', 'loadClassLoader'), true, true);
|
spl_autoload_register(array('ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f', 'loadClassLoader'), true, true);
|
||||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
|
||||||
spl_autoload_unregister(array('ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f', 'loadClassLoader'));
|
spl_autoload_unregister(array('ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f', 'loadClassLoader'));
|
||||||
|
|
||||||
$includePaths = require __DIR__ . '/include_paths.php';
|
$includePaths = require __DIR__ . '/include_paths.php';
|
||||||
$includePaths[] = get_include_path();
|
$includePaths[] = get_include_path();
|
||||||
set_include_path(implode(PATH_SEPARATOR, $includePaths));
|
set_include_path(implode(PATH_SEPARATOR, $includePaths));
|
||||||
|
|
||||||
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
require __DIR__ . '/autoload_static.php';
|
||||||
if ($useStaticLoader) {
|
call_user_func(\Composer\Autoload\ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f::getInitializer($loader));
|
||||||
require __DIR__ . '/autoload_static.php';
|
|
||||||
|
|
||||||
call_user_func(\Composer\Autoload\ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f::getInitializer($loader));
|
|
||||||
} else {
|
|
||||||
$classMap = require __DIR__ . '/autoload_classmap.php';
|
|
||||||
if ($classMap) {
|
|
||||||
$loader->addClassMap($classMap);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$loader->setClassMapAuthoritative(true);
|
$loader->setClassMapAuthoritative(true);
|
||||||
|
$loader->setApcuPrefix('YzkejrfRDHz9hqMdq98PU');
|
||||||
$loader->register(true);
|
$loader->register(true);
|
||||||
|
|
||||||
if ($useStaticLoader) {
|
$includeFiles = \Composer\Autoload\ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f::$files;
|
||||||
$includeFiles = Composer\Autoload\ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f::$files;
|
|
||||||
} else {
|
|
||||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
|
||||||
}
|
|
||||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||||
composerRequire7f81b4a2a468a061c306af5e447a9a9f($fileIdentifier, $file);
|
composerRequire7f81b4a2a468a061c306af5e447a9a9f($fileIdentifier, $file);
|
||||||
}
|
}
|
||||||
@@ -60,11 +48,16 @@ class ComposerAutoloaderInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $fileIdentifier
|
||||||
|
* @param string $file
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
function composerRequire7f81b4a2a468a061c306af5e447a9a9f($fileIdentifier, $file)
|
function composerRequire7f81b4a2a468a061c306af5e447a9a9f($fileIdentifier, $file)
|
||||||
{
|
{
|
||||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||||
require $file;
|
|
||||||
|
|
||||||
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
|
||||||
|
|
||||||
|
require $file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,22 +7,22 @@ namespace Composer\Autoload;
|
|||||||
class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
||||||
{
|
{
|
||||||
public static $files = array (
|
public static $files = array (
|
||||||
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
|
|
||||||
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
|
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
|
||||||
|
'6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php',
|
||||||
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
|
'0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php',
|
||||||
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
'320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
|
||||||
'0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
|
'0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php',
|
||||||
'23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
|
'23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php',
|
||||||
'667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
|
|
||||||
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
|
||||||
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => __DIR__ . '/..' . '/laminas/laminas-servicemanager/src/autoload.php',
|
|
||||||
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||||
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
'667aeda72477189d0494fecd327c3641' => __DIR__ . '/..' . '/symfony/var-dumper/Resources/functions/dump.php',
|
||||||
'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
|
'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
|
||||||
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
|
'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php',
|
||||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
|
'37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||||
|
'c9d07b32a2e02bc0fc582d4f0c1b56cc' => __DIR__ . '/..' . '/laminas/laminas-servicemanager/src/autoload.php',
|
||||||
|
'8825ede83f2f289127722d4e842cf7e8' => __DIR__ . '/..' . '/symfony/polyfill-intl-grapheme/bootstrap.php',
|
||||||
'25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
|
'25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php',
|
||||||
'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
|
'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php',
|
||||||
|
'b6b991a57620e2fb6b2f66f03fe9ddc2' => __DIR__ . '/..' . '/symfony/string/Resources/functions.php',
|
||||||
);
|
);
|
||||||
|
|
||||||
public static $prefixLengthsPsr4 = array (
|
public static $prefixLengthsPsr4 = array (
|
||||||
@@ -54,7 +54,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Symfony\\Component\\VarExporter\\' => 30,
|
'Symfony\\Component\\VarExporter\\' => 30,
|
||||||
'Symfony\\Component\\VarDumper\\' => 28,
|
'Symfony\\Component\\VarDumper\\' => 28,
|
||||||
'Symfony\\Component\\String\\' => 25,
|
'Symfony\\Component\\String\\' => 25,
|
||||||
'Symfony\\Component\\Stopwatch\\' => 28,
|
|
||||||
'Symfony\\Component\\Routing\\' => 26,
|
'Symfony\\Component\\Routing\\' => 26,
|
||||||
'Symfony\\Component\\HttpKernel\\' => 29,
|
'Symfony\\Component\\HttpKernel\\' => 29,
|
||||||
'Symfony\\Component\\HttpFoundation\\' => 33,
|
'Symfony\\Component\\HttpFoundation\\' => 33,
|
||||||
@@ -68,7 +67,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Symfony\\Component\\Console\\' => 26,
|
'Symfony\\Component\\Console\\' => 26,
|
||||||
'Symfony\\Component\\Config\\' => 25,
|
'Symfony\\Component\\Config\\' => 25,
|
||||||
'Symfony\\Component\\Cache\\' => 24,
|
'Symfony\\Component\\Cache\\' => 24,
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\' => 33,
|
|
||||||
'Symfony\\Bundle\\TwigBundle\\' => 26,
|
'Symfony\\Bundle\\TwigBundle\\' => 26,
|
||||||
'Symfony\\Bundle\\FrameworkBundle\\' => 31,
|
'Symfony\\Bundle\\FrameworkBundle\\' => 31,
|
||||||
'Symfony\\Bridge\\Twig\\' => 20,
|
'Symfony\\Bridge\\Twig\\' => 20,
|
||||||
@@ -189,10 +187,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/symfony/string',
|
0 => __DIR__ . '/..' . '/symfony/string',
|
||||||
),
|
),
|
||||||
'Symfony\\Component\\Stopwatch\\' =>
|
|
||||||
array (
|
|
||||||
0 => __DIR__ . '/..' . '/symfony/stopwatch',
|
|
||||||
),
|
|
||||||
'Symfony\\Component\\Routing\\' =>
|
'Symfony\\Component\\Routing\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/symfony/routing',
|
0 => __DIR__ . '/..' . '/symfony/routing',
|
||||||
@@ -245,10 +239,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/symfony/cache',
|
0 => __DIR__ . '/..' . '/symfony/cache',
|
||||||
),
|
),
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\' =>
|
|
||||||
array (
|
|
||||||
0 => __DIR__ . '/..' . '/symfony/web-profiler-bundle',
|
|
||||||
),
|
|
||||||
'Symfony\\Bundle\\TwigBundle\\' =>
|
'Symfony\\Bundle\\TwigBundle\\' =>
|
||||||
array (
|
array (
|
||||||
0 => __DIR__ . '/..' . '/symfony/twig-bundle',
|
0 => __DIR__ . '/..' . '/symfony/twig-bundle',
|
||||||
@@ -590,6 +580,7 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletHeaderStatic' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Dashlet/DashletHeaderStatic.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletHeaderStatic' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Dashlet/DashletHeaderStatic.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletPlainText' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Dashlet/DashletPlainText.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Dashlet\\DashletPlainText' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Dashlet/DashletPlainText.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTable' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTable.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTable' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTable.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableBasket' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTableBasket.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableSettings' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTableSettings.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableSettings' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTableSettings.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableUIBlockFactory' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\DataTableUIBlockFactory' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/DataTableUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\StaticTable\\FormTableRow\\FormTableRow' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/StaticTable/FormTableRow/FormTableRow.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\DataTable\\StaticTable\\FormTableRow\\FormTableRow' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/DataTable/StaticTable/FormTableRow/FormTableRow.php',
|
||||||
@@ -631,6 +622,8 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Input\\tInputLabel' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Input/tInputLabel.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Input\\tInputLabel' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Input/tInputLabel.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\MedallionIcon\\MedallionIcon' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/MedallionIcon/MedallionIcon.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\MedallionIcon\\MedallionIcon' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/MedallionIcon/MedallionIcon.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Modal\\DoNotShowAgainOptionBlock' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Modal/DoNotShowAgainOptionBlock.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Modal\\DoNotShowAgainOptionBlock' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Modal/DoNotShowAgainOptionBlock.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Navigation\\Navigation' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Navigation/Navigation.php',
|
||||||
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Navigation\\NavigationUIBlockFactory' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Navigation/NavigationUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\Panel' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Panel/Panel.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\Panel' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Panel/Panel.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\PanelUIBlockFactory' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Panel/PanelUIBlockFactory.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Panel\\PanelUIBlockFactory' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Panel/PanelUIBlockFactory.php',
|
||||||
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Pill\\Pill' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Pill/Pill.php',
|
'Combodo\\iTop\\Application\\UI\\Base\\Component\\Pill\\Pill' => __DIR__ . '/../..' . '/sources/Application/UI/Base/Component/Pill/Pill.php',
|
||||||
@@ -814,7 +807,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Combodo\\iTop\\Service\\Events\\EventServiceLog' => __DIR__ . '/../..' . '/sources/Service/Events/EventServiceLog.php',
|
'Combodo\\iTop\\Service\\Events\\EventServiceLog' => __DIR__ . '/../..' . '/sources/Service/Events/EventServiceLog.php',
|
||||||
'Combodo\\iTop\\Service\\Events\\iEventServiceSetup' => __DIR__ . '/../..' . '/sources/Service/Events/iEventServiceSetup.php',
|
'Combodo\\iTop\\Service\\Events\\iEventServiceSetup' => __DIR__ . '/../..' . '/sources/Service/Events/iEventServiceSetup.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetDataTransformer' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetDataTransformer.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetDataTransformer' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetDataTransformer.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetHelper' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetHelper.php',
|
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetModel' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetModel.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetModel' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetModel.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinkSetRepository' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetRepository.php',
|
'Combodo\\iTop\\Service\\Links\\LinkSetRepository' => __DIR__ . '/../..' . '/sources/Service/Links/LinkSetRepository.php',
|
||||||
'Combodo\\iTop\\Service\\Links\\LinksBulkDataPostProcessor' => __DIR__ . '/../..' . '/sources/Service/Links/LinksBulkDataPostProcessor.php',
|
'Combodo\\iTop\\Service\\Links\\LinksBulkDataPostProcessor' => __DIR__ . '/../..' . '/sources/Service/Links/LinksBulkDataPostProcessor.php',
|
||||||
@@ -2067,17 +2059,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\TwigExtension' => __DIR__ . '/..' . '/symfony/twig-bundle/DependencyInjection/TwigExtension.php',
|
'Symfony\\Bundle\\TwigBundle\\DependencyInjection\\TwigExtension' => __DIR__ . '/..' . '/symfony/twig-bundle/DependencyInjection/TwigExtension.php',
|
||||||
'Symfony\\Bundle\\TwigBundle\\TemplateIterator' => __DIR__ . '/..' . '/symfony/twig-bundle/TemplateIterator.php',
|
'Symfony\\Bundle\\TwigBundle\\TemplateIterator' => __DIR__ . '/..' . '/symfony/twig-bundle/TemplateIterator.php',
|
||||||
'Symfony\\Bundle\\TwigBundle\\TwigBundle' => __DIR__ . '/..' . '/symfony/twig-bundle/TwigBundle.php',
|
'Symfony\\Bundle\\TwigBundle\\TwigBundle' => __DIR__ . '/..' . '/symfony/twig-bundle/TwigBundle.php',
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ExceptionPanelController' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Controller/ExceptionPanelController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\ProfilerController' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Controller/ProfilerController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Controller\\RouterController' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Controller/RouterController.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Csp\\ContentSecurityPolicyHandler' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Csp/ContentSecurityPolicyHandler.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Csp\\NonceGenerator' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Csp/NonceGenerator.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\Configuration' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/DependencyInjection/Configuration.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\DependencyInjection\\WebProfilerExtension' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/DependencyInjection/WebProfilerExtension.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/EventListener/WebDebugToolbarListener.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Profiler\\TemplateManager' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Profiler/TemplateManager.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/Twig/WebProfilerExtension.php',
|
|
||||||
'Symfony\\Bundle\\WebProfilerBundle\\WebProfilerBundle' => __DIR__ . '/..' . '/symfony/web-profiler-bundle/WebProfilerBundle.php',
|
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AbstractAdapter' => __DIR__ . '/..' . '/symfony/cache/Adapter/AbstractAdapter.php',
|
'Symfony\\Component\\Cache\\Adapter\\AbstractAdapter' => __DIR__ . '/..' . '/symfony/cache/Adapter/AbstractAdapter.php',
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AbstractTagAwareAdapter' => __DIR__ . '/..' . '/symfony/cache/Adapter/AbstractTagAwareAdapter.php',
|
'Symfony\\Component\\Cache\\Adapter\\AbstractTagAwareAdapter' => __DIR__ . '/..' . '/symfony/cache/Adapter/AbstractTagAwareAdapter.php',
|
||||||
'Symfony\\Component\\Cache\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/symfony/cache/Adapter/AdapterInterface.php',
|
'Symfony\\Component\\Cache\\Adapter\\AdapterInterface' => __DIR__ . '/..' . '/symfony/cache/Adapter/AdapterInterface.php',
|
||||||
@@ -2897,10 +2878,6 @@ class ComposerStaticInit7f81b4a2a468a061c306af5e447a9a9f
|
|||||||
'Symfony\\Component\\Routing\\RouteCompilerInterface' => __DIR__ . '/..' . '/symfony/routing/RouteCompilerInterface.php',
|
'Symfony\\Component\\Routing\\RouteCompilerInterface' => __DIR__ . '/..' . '/symfony/routing/RouteCompilerInterface.php',
|
||||||
'Symfony\\Component\\Routing\\Router' => __DIR__ . '/..' . '/symfony/routing/Router.php',
|
'Symfony\\Component\\Routing\\Router' => __DIR__ . '/..' . '/symfony/routing/Router.php',
|
||||||
'Symfony\\Component\\Routing\\RouterInterface' => __DIR__ . '/..' . '/symfony/routing/RouterInterface.php',
|
'Symfony\\Component\\Routing\\RouterInterface' => __DIR__ . '/..' . '/symfony/routing/RouterInterface.php',
|
||||||
'Symfony\\Component\\Stopwatch\\Section' => __DIR__ . '/..' . '/symfony/stopwatch/Section.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\Stopwatch' => __DIR__ . '/..' . '/symfony/stopwatch/Stopwatch.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\StopwatchEvent' => __DIR__ . '/..' . '/symfony/stopwatch/StopwatchEvent.php',
|
|
||||||
'Symfony\\Component\\Stopwatch\\StopwatchPeriod' => __DIR__ . '/..' . '/symfony/stopwatch/StopwatchPeriod.php',
|
|
||||||
'Symfony\\Component\\String\\AbstractString' => __DIR__ . '/..' . '/symfony/string/AbstractString.php',
|
'Symfony\\Component\\String\\AbstractString' => __DIR__ . '/..' . '/symfony/string/AbstractString.php',
|
||||||
'Symfony\\Component\\String\\AbstractUnicodeString' => __DIR__ . '/..' . '/symfony/string/AbstractUnicodeString.php',
|
'Symfony\\Component\\String\\AbstractUnicodeString' => __DIR__ . '/..' . '/symfony/string/AbstractUnicodeString.php',
|
||||||
'Symfony\\Component\\String\\ByteString' => __DIR__ . '/..' . '/symfony/string/ByteString.php',
|
'Symfony\\Component\\String\\ByteString' => __DIR__ . '/..' . '/symfony/string/ByteString.php',
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// include_paths.php @generated by Composer
|
// include_paths.php @generated by Composer
|
||||||
|
|
||||||
$vendorDir = dirname(dirname(__FILE__));
|
$vendorDir = dirname(__DIR__);
|
||||||
$baseDir = dirname($vendorDir);
|
$baseDir = dirname($vendorDir);
|
||||||
|
|
||||||
return array(
|
return array(
|
||||||
|
|||||||
48
pages/UI.php
48
pages/UI.php
@@ -435,9 +435,21 @@ try
|
|||||||
throw new SecurityException('User not allowed to view this object', array('class' => $sClass, 'id' => $id));
|
throw new SecurityException('User not allowed to view this object', array('class' => $sClass, 'id' => $id));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//N°1386 - Advanced Search: Navigation in list - Browse this list
|
||||||
|
$sBasketBackUrl = utils::ReadPostedParam('basket_back_url', '', false, 'raw');
|
||||||
|
$sBasketClass = utils::ReadPostedParam('basket_class', null, false, 'raw');
|
||||||
|
$sBasketFilter = utils::ReadPostedParam('basket_filter', null, false, 'raw');
|
||||||
|
$sBasketList = utils::ReadPostedParam('basket_list_navigation', null, false, 'string');
|
||||||
|
$sBasketPostedFieldsForBackUrl = utils::ReadPostedParam('basket_back_posted_fields', "", false, 'raw');
|
||||||
|
$aBasketList = [];
|
||||||
|
if ($sBasketList != null) {
|
||||||
|
$aBasketList = json_decode($sBasketList);
|
||||||
|
}
|
||||||
|
|
||||||
$sClassLabel = MetaModel::GetName($sClass);
|
$sClassLabel = MetaModel::GetName($sClass);
|
||||||
$oP->set_title(Dict::Format('UI:DetailsPageTitle', $oObj->GetRawName(), $sClassLabel)); // Set title will take care of the encoding
|
$oP->set_title(Dict::Format('UI:DetailsPageTitle', $oObj->GetRawName(), $sClassLabel)); // Set title will take care of the encoding
|
||||||
$oP->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, $oP->IsPrintableVersion() ? cmdbAbstractObject::ENUM_DISPLAY_MODE_PRINT : cmdbAbstractObject::ENUM_DISPLAY_MODE_VIEW));
|
$oP->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, $oP->IsPrintableVersion() ? cmdbAbstractObject::ENUM_DISPLAY_MODE_PRINT : cmdbAbstractObject::ENUM_DISPLAY_MODE_VIEW, $sBasketFilter, $sBasketClass, $aBasketList, $sBasketBackUrl,
|
||||||
|
$sBasketPostedFieldsForBackUrl));
|
||||||
$oObj->DisplayDetails($oP);
|
$oObj->DisplayDetails($oP);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -447,20 +459,30 @@ try
|
|||||||
$oP->DisableBreadCrumb();
|
$oP->DisableBreadCrumb();
|
||||||
|
|
||||||
// Retrieve object
|
// Retrieve object
|
||||||
$sClass = utils::ReadParam('class', '', false, 'class');
|
$sClass = utils::ReadParam('class', '', false, 'class');
|
||||||
$id = utils::ReadParam('id', '');
|
$id = utils::ReadParam('id', '');
|
||||||
$oObj = MetaModel::GetObject($sClass, $id);
|
$oObj = MetaModel::GetObject($sClass, $id);
|
||||||
|
|
||||||
// Retrieve ownership token
|
// Retrieve ownership token
|
||||||
$sToken = utils::ReadParam('token', '');
|
$sToken = utils::ReadParam('token', '');
|
||||||
if ($sToken != '')
|
if ($sToken != '') {
|
||||||
{
|
iTopOwnershipLock::ReleaseLock($sClass, $id, $sToken);
|
||||||
iTopOwnershipLock::ReleaseLock($sClass, $id, $sToken);
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$oP->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, cmdbAbstractObject::ENUM_DISPLAY_MODE_VIEW));
|
//N°1386 - Advanced Search: Navigation in list - Browse this list
|
||||||
cmdbAbstractObject::ReloadAndDisplay($oP, $oObj, array('operation' => 'details'));
|
$sBasketBackUrl = utils::ReadPostedParam('basket_back_url', '', false, 'raw');
|
||||||
break;
|
$sBasketClass = utils::ReadPostedParam('basket_class', null, false, 'raw');
|
||||||
|
$sBasketFilter = utils::ReadPostedParam('basket_filter', null, false, 'raw');
|
||||||
|
$sBasketList = utils::ReadPostedParam('basket_list_navigation', null, false, 'string');
|
||||||
|
$sBasketPostedFieldsForBackUrl = utils::ReadPostedParam('basket_back_posted_fields', "", false, 'raw');
|
||||||
|
$aBasketList = [];
|
||||||
|
if ($sBasketList != null) {
|
||||||
|
$aBasketList = json_decode($sBasketList);
|
||||||
|
}
|
||||||
|
|
||||||
|
$oP->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, cmdbAbstractObject::ENUM_DISPLAY_MODE_VIEW, $sBasketFilter, $sBasketClass, $aBasketList, $sBasketBackUrl, $sBasketPostedFieldsForBackUrl));
|
||||||
|
cmdbAbstractObject::ReloadAndDisplay($oP, $oObj, array('operation' => 'details'));
|
||||||
|
break;
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
|||||||
@@ -216,10 +216,12 @@ JS
|
|||||||
|
|
||||||
if ($oFilter) {
|
if ($oFilter) {
|
||||||
//--- Query filter
|
//--- Query filter
|
||||||
$oPanelResult= PanelUIBlockFactory::MakeWithBrandingSecondaryColor(Dict::S('UI:RunQuery:QueryResults'));
|
$oPanelResult = PanelUIBlockFactory::MakeWithBrandingSecondaryColor(Dict::S('UI:RunQuery:QueryResults'));
|
||||||
$oP->AddSubBlock($oPanelResult);
|
$oP->AddSubBlock($oPanelResult);
|
||||||
$oResultBlock = new DisplayBlock($oFilter, 'list', false);
|
$oResultBlock = new DisplayBlock($oFilter, 'list', false);
|
||||||
$oPanelResult->AddSubBlock($oResultBlock->GetDisplay($oP, 'runquery'));
|
$oPanelResult->AddSubBlock($oResultBlock->GetDisplay($oP, 'runquery'));
|
||||||
|
//Added in order to go back to search from navigation in the basket
|
||||||
|
$oP->AddSubBlock(DataTableUIBlockFactory::MakeParamForBasket(['encoding' => $sEncoding, 'expression' => $sExpression]));
|
||||||
|
|
||||||
// Breadcrumb
|
// Breadcrumb
|
||||||
//$iCount = $oResultBlock->GetDisplayedCount();
|
//$iCount = $oResultBlock->GetDisplayedCount();
|
||||||
|
|||||||
190
sources/Application/UI/Base/Component/Basket/Basket.php
Normal file
190
sources/Application/UI/Base/Component/Basket/Basket.php
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2013-2021 Combodo SARL
|
||||||
|
*
|
||||||
|
* This file is part of iTop.
|
||||||
|
*
|
||||||
|
* iTop is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* iTop is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Combodo\iTop\Application\UI\Base\Component\Basket;
|
||||||
|
|
||||||
|
|
||||||
|
use Combodo\iTop\Application\UI\Base\Layout\UIContentBlock;
|
||||||
|
use iTopStandardURLMaker;
|
||||||
|
use utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class Basket
|
||||||
|
*
|
||||||
|
* @package Combodo\iTop\Application\UI\Base\Component\Basket
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
class Basket extends UIContentBlock
|
||||||
|
{
|
||||||
|
|
||||||
|
// Overloaded constants
|
||||||
|
public const BLOCK_CODE = 'ibo-basket';
|
||||||
|
/** @inheritDoc */
|
||||||
|
public const REQUIRES_ANCESTORS_DEFAULT_JS_FILES = true;
|
||||||
|
/** @inheritDoc */
|
||||||
|
public const REQUIRES_ANCESTORS_DEFAULT_CSS_FILES = true;
|
||||||
|
public const DEFAULT_HTML_TEMPLATE_REL_PATH = 'base/components/basket/layout';
|
||||||
|
public const DEFAULT_JS_TEMPLATE_REL_PATH = 'base/components/basket/layout';
|
||||||
|
public const DEFAULT_JS_FILES_REL_PATH = [];
|
||||||
|
|
||||||
|
protected $iIdx;
|
||||||
|
protected $iCount;
|
||||||
|
protected $iIdFirst = 0;
|
||||||
|
protected $iIdPrev = 0;
|
||||||
|
protected $iIdNext = 0;
|
||||||
|
protected $iIdLast = 0;
|
||||||
|
protected $aList = [];
|
||||||
|
protected $sFilter;
|
||||||
|
protected $sBackUrl;
|
||||||
|
protected $sClass;
|
||||||
|
protected $sPostedFields;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Panel constructor.
|
||||||
|
*
|
||||||
|
* @param string $sTitle
|
||||||
|
* @param \Combodo\iTop\Application\UI\Base\iUIBlock[] $aSubBlocks
|
||||||
|
* @param string $sColorScheme Color scheme code such as "success", "failure", "active", ... {@see css/backoffice/components/_panel.scss}
|
||||||
|
* @param string|null $sId
|
||||||
|
*/
|
||||||
|
public function __construct(string $sClass, int $iIdx, array $aList, string $sFilter, string $sBackUrl, string $sPostedFieldsForBackUrl = "", ?string $sId = null)
|
||||||
|
{
|
||||||
|
parent::__construct($sId);
|
||||||
|
$this->iCount = count($aList);
|
||||||
|
if ($this->iCount == 0) {
|
||||||
|
return new UIContentBlock();
|
||||||
|
}
|
||||||
|
$this->sClass = $sClass;
|
||||||
|
$this->aList = $aList;
|
||||||
|
$this->sFilter = $sFilter;
|
||||||
|
$this->sBackUrl = $sBackUrl;
|
||||||
|
$this->iIdx = $iIdx;
|
||||||
|
if ($this->iIdx>0) {
|
||||||
|
$this->iIdFirst = $aList[0];
|
||||||
|
$this->iIdPrev = $aList[$iIdx - 1];
|
||||||
|
}
|
||||||
|
if ($this->iIdx < $this->iCount -1) {
|
||||||
|
$this->iIdNext = $aList[$iIdx + 1];
|
||||||
|
$this->iIdLast = $aList[$this->iCount - 1];
|
||||||
|
}
|
||||||
|
$this->sPostedFields = $sPostedFieldsForBackUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function GetIdx(): int
|
||||||
|
{
|
||||||
|
return $this->iIdx + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetPostedFields(): string
|
||||||
|
{
|
||||||
|
return $this->sPostedFields;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function GetCount(): int
|
||||||
|
{
|
||||||
|
return $this->iCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function GetUrlFromId($iId)
|
||||||
|
{
|
||||||
|
$sUrl = iTopStandardURLMaker::MakeObjectURL($this->sClass, $iId);
|
||||||
|
return $sUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetUrlFirst(): string
|
||||||
|
{
|
||||||
|
return $this->GetUrlFromId($this->iIdFirst);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetUrlPrev(): string
|
||||||
|
{
|
||||||
|
return $this->GetUrlFromId($this->iIdPrev);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetUrlNext(): string
|
||||||
|
{
|
||||||
|
return $this->GetUrlFromId($this->iIdNext);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return int|mixed
|
||||||
|
*/
|
||||||
|
public function GetUrlLast(): string
|
||||||
|
{
|
||||||
|
return $this->GetUrlFromId($this->iIdLast);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetBackUrl(): string
|
||||||
|
{
|
||||||
|
return $this->sBackUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetFilter(): string
|
||||||
|
{
|
||||||
|
return $this->sFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetList(): string
|
||||||
|
{
|
||||||
|
return json_encode($this->aList);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function HasPrec(): bool
|
||||||
|
{
|
||||||
|
return $this->iIdx > 0;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function HasNext(): bool
|
||||||
|
{
|
||||||
|
return $this->iIdx+1 < $this->iCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,74 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2013-2021 Combodo SARL
|
||||||
|
*
|
||||||
|
* This file is part of iTop.
|
||||||
|
*
|
||||||
|
* iTop is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* iTop is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Combodo\iTop\Application\UI\Base\Component\Basket;
|
||||||
|
|
||||||
|
use Combodo\iTop\Application\UI\Base\AbstractUIBlockFactory;
|
||||||
|
use DBObjectSearch;
|
||||||
|
use DBObjectSet;
|
||||||
|
use utils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class BasketUIBlockFactory
|
||||||
|
*
|
||||||
|
* @api
|
||||||
|
* @package UIBlockExtensibilityAPI
|
||||||
|
* @since 3.1.1
|
||||||
|
*
|
||||||
|
* @link <itop_url>/test/VisualTest/Backoffice/RenderAllUiBlocks.php#title-panels to see live examples
|
||||||
|
*/
|
||||||
|
class BasketUIBlockFactory extends AbstractUIBlockFactory
|
||||||
|
{
|
||||||
|
/** @inheritDoc */
|
||||||
|
public const TWIG_TAG_NAME = 'UIBasket';
|
||||||
|
/** @inheritDoc */
|
||||||
|
public const UI_BLOCK_CLASS_NAME = Basket::class;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Make a basis Panel component
|
||||||
|
*
|
||||||
|
* @api
|
||||||
|
*
|
||||||
|
* @return \Combodo\iTop\Application\UI\Base\Component\Basket
|
||||||
|
*/
|
||||||
|
public static function MakeStandard($oObject, string $sFilter, string $sClass, array $aList = [], string $sBackUrl = '', $sPostedFieldsForBackUrl = "")
|
||||||
|
{
|
||||||
|
if (utils::IsNotNullOrEmptyString($sFilter) && count($aList) === 0) {
|
||||||
|
$oBasketFilter = DBObjectSearch::FromOQL($sFilter);
|
||||||
|
$oSet = new DBObjectSet($oBasketFilter);
|
||||||
|
$aList = $oSet->GetColumnAsArray('id', false);
|
||||||
|
if (utils::IsNullOrEmptyString($sClass)) {
|
||||||
|
$sClass = $oBasketFilter->GetClass();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (utils::IsNullOrEmptyString($sClass)) {
|
||||||
|
$oBasketFilter = DBObjectSearch::FromOQL($sFilter);
|
||||||
|
$sClass = $oBasketFilter->GetClass();
|
||||||
|
}
|
||||||
|
if (count($aList) === 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$iIdx = array_search($oObject->GetKey(), $aList);
|
||||||
|
$oNavigationBlock = new Basket($sClass, $iIdx, $aList, $sFilter, $sBackUrl, $sPostedFieldsForBackUrl);
|
||||||
|
|
||||||
|
return $oNavigationBlock;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -48,6 +48,10 @@ class DataTable extends UIContentBlock
|
|||||||
protected $aAjaxData;
|
protected $aAjaxData;
|
||||||
protected $aDisplayColumns;
|
protected $aDisplayColumns;
|
||||||
protected $aResultColumns;
|
protected $aResultColumns;
|
||||||
|
/* @since 3.1.1 */
|
||||||
|
protected $sBasketFilter;
|
||||||
|
/* @since 3.1.1 */
|
||||||
|
protected $sBasketClass;
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
@@ -221,8 +225,47 @@ class DataTable extends UIContentBlock
|
|||||||
return json_encode($this->aInitDisplayData);
|
return json_encode($this->aInitDisplayData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
public function GetBasketFilter()
|
||||||
|
{
|
||||||
|
return $this->sBasketFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $sFilter
|
||||||
|
*
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
public function setBasketFilter(string $sFilter): void
|
||||||
|
{
|
||||||
|
$this->sBasketFilter = $sFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return mixed
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
public function GetBasketClass()
|
||||||
|
{
|
||||||
|
return $this->sBasketClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $sBasketClass
|
||||||
|
*
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
public function setBasketClass(string $sBasketClass): void
|
||||||
|
{
|
||||||
|
$this->sBasketClass = $sBasketClass;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get $aInitDisplayData
|
* Get $aInitDisplayData
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function GetInitDisplayData(): array
|
public function GetInitDisplayData(): array
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
||||||
|
* @license http://opensource.org/licenses/AGPL-3.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Combodo\iTop\Application\UI\Base\Component\DataTable;
|
||||||
|
|
||||||
|
|
||||||
|
use ApplicationContext;
|
||||||
|
use Combodo\iTop\Application\UI\Base\Layout\UIContentBlock;
|
||||||
|
use Combodo\iTop\Application\UI\Base\tJSRefreshCallback;
|
||||||
|
use DataTableConfig;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class DataTableBasket
|
||||||
|
*
|
||||||
|
* @package Combodo\iTop\Application\UI\Base\Component\DataTableBasket
|
||||||
|
* @since 3.1.1
|
||||||
|
*/
|
||||||
|
class DataTableBasket extends UIContentBlock
|
||||||
|
{
|
||||||
|
// Overloaded constants
|
||||||
|
public const BLOCK_CODE = 'ibo-datatable-basket';
|
||||||
|
|
||||||
|
public const DEFAULT_JS_ON_READY_TEMPLATE_REL_PATH = 'base/components/datatable/basket';
|
||||||
|
|
||||||
|
protected $sBasketPostedFieldsForBackUrl;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Panel constructor.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function __construct(array $aBasketPostedFieldsForBackUrl = [], ?string $sId = null)
|
||||||
|
{
|
||||||
|
parent::__construct($sId);
|
||||||
|
$this->sBasketPostedFieldsForBackUrl = json_encode($aBasketPostedFieldsForBackUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function GetBasketPostedFieldsForBackUrl(): string
|
||||||
|
{
|
||||||
|
return $this->sBasketPostedFieldsForBackUrl;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -572,30 +572,43 @@ class DataTableUIBlockFactory extends AbstractUIBlockFactory
|
|||||||
|
|
||||||
$aExtraParams['table_id'] = $sTableId;
|
$aExtraParams['table_id'] = $sTableId;
|
||||||
$aExtraParams['list_id'] = $sListId;
|
$aExtraParams['list_id'] = $sListId;
|
||||||
|
$oFilter = $oSet->GetFilter();
|
||||||
|
|
||||||
|
$sBasketAliasClass = $oFilter->GetFirstJoinedClassAlias();
|
||||||
|
if ($sBasketAliasClass === 'Link') {
|
||||||
|
$sLinkToBasket = $sBasketAliasClass.'/'.$sTargetAttr;
|
||||||
|
$sBasketAliasClass = 'Remote';
|
||||||
|
} else {
|
||||||
|
$sLinkToBasket = $sBasketAliasClass;
|
||||||
|
}
|
||||||
|
|
||||||
$oDataTable->SetOptions($aOptions);
|
$oDataTable->SetOptions($aOptions);
|
||||||
$oDataTable->SetAjaxUrl(utils::GetAbsoluteUrlAppRoot()."pages/ajax.render.php");
|
$oDataTable->SetAjaxUrl(utils::GetAbsoluteUrlAppRoot()."pages/ajax.render.php");
|
||||||
$oDataTable->SetAjaxData([
|
$oDataTable->SetAjaxData([
|
||||||
"operation" => 'search',
|
"operation" => 'search',
|
||||||
"filter" => $oSet->GetFilter()->serialize(),
|
"filter" => $oFilter->serialize(),
|
||||||
"columns" => $oCustomSettings->aColumns,
|
"columns" => $oCustomSettings->aColumns,
|
||||||
"extra_params" => $aExtraParams,
|
"extra_params" => $aExtraParams,
|
||||||
"class_aliases" => $aClassAliases,
|
"class_aliases" => $aClassAliases,
|
||||||
"select_mode" => $sSelectMode,
|
"select_mode" => $sSelectMode,
|
||||||
|
"basket" => $sLinkToBasket,
|
||||||
]);
|
]);
|
||||||
$oDataTable->SetDisplayColumns($aColumnDefinition);
|
$oDataTable->SetDisplayColumns($aColumnDefinition);
|
||||||
$oDataTable->SetResultColumns($oCustomSettings->aColumns);
|
$oDataTable->SetResultColumns($oCustomSettings->aColumns);
|
||||||
$oDataTable->SetInitDisplayData(AjaxRenderController::GetDataForTable($oSet, $aClassAliases, $aColumnsToLoad, $sIdName, $aExtraParams));
|
$oFilter->SetSelectedClasses([$sBasketAliasClass]);
|
||||||
|
$oDataTable->SetBasketFilter($oFilter->ToOQL(true));
|
||||||
|
$oDataTable->SetBasketClass($oFilter->GetClass());
|
||||||
|
$oDataTable->SetInitDisplayData(AjaxRenderController::GetDataForTable($oSet, $aClassAliases, $aColumnsToLoad, $sIdName, $aExtraParams, 1, $sLinkToBasket));
|
||||||
|
|
||||||
// row actions
|
// row actions
|
||||||
if (isset($aExtraParams['row_actions'])) {
|
if (isset($aExtraParams['row_actions'])) {
|
||||||
$oDataTable->SetRowActions($aExtraParams['row_actions']);
|
$oDataTable->SetRowActions($aExtraParams['row_actions']);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($aExtraParams['creation_in_modal_js_handler'])){
|
if (isset($aExtraParams['creation_in_modal_js_handler'])) {
|
||||||
$oDataTable->SetModalCreationHandler($aExtraParams['creation_in_modal_js_handler']);
|
$oDataTable->SetModalCreationHandler($aExtraParams['creation_in_modal_js_handler']);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $oDataTable;
|
return $oDataTable;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -887,10 +900,18 @@ JS;
|
|||||||
return $oTable;
|
return $oTable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function MakeParamForBasket(array $aPostedFields)
|
||||||
|
{
|
||||||
|
$oBlock = new DataTableBasket($aPostedFields);
|
||||||
|
|
||||||
|
return $oBlock;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function GetAllowedParams(): array
|
public
|
||||||
|
static function GetAllowedParams(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'surround_with_panel',
|
'surround_with_panel',
|
||||||
@@ -941,4 +962,5 @@ JS;
|
|||||||
/** Don't provide the standard object creation feature */
|
/** Don't provide the standard object creation feature */
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -21,6 +21,7 @@ namespace Combodo\iTop\Application\UI\Base\Layout\PageContent;
|
|||||||
|
|
||||||
|
|
||||||
use cmdbAbstractObject;
|
use cmdbAbstractObject;
|
||||||
|
use Combodo\iTop\Application\UI\Base\Component\Basket\BasketUIBlockFactory;
|
||||||
use Combodo\iTop\Application\UI\Base\Layout\ActivityPanel\ActivityPanelFactory;
|
use Combodo\iTop\Application\UI\Base\Layout\ActivityPanel\ActivityPanelFactory;
|
||||||
use Combodo\iTop\Application\UI\Base\Layout\Object\ObjectFactory;
|
use Combodo\iTop\Application\UI\Base\Layout\Object\ObjectFactory;
|
||||||
use DBObject;
|
use DBObject;
|
||||||
@@ -48,22 +49,32 @@ class PageContentFactory
|
|||||||
/**
|
/**
|
||||||
* Make a standard object details page with the form in the middle and the logs / activity in the side panel
|
* Make a standard object details page with the form in the middle and the logs / activity in the side panel
|
||||||
*
|
*
|
||||||
* @param \DBObject $oObject
|
|
||||||
* @param string $sMode Mode the object is being displayed (view, edit, create, ...), default is view.
|
|
||||||
*
|
|
||||||
* @see cmdbAbstractObject::ENUM_DISPLAY_MODE_XXX
|
* @see cmdbAbstractObject::ENUM_DISPLAY_MODE_XXX
|
||||||
*
|
*
|
||||||
|
* @param \DBObject $oObject
|
||||||
|
* @param string $sMode Mode the object is being displayed (view, edit, create, ...), default is view.
|
||||||
|
*
|
||||||
|
* since 3.1.1 params for navigation in basket
|
||||||
|
* @param string $sBasketFilter filter to find list of objects in basket
|
||||||
|
* @param array $aBasketList list of id of objects in basket
|
||||||
|
* @param string $sBackUrl url to go back to list of ojects in basket
|
||||||
|
* @param string $sPostedFieldsForBackUrl fields to post for come back to main page
|
||||||
|
*
|
||||||
|
*
|
||||||
* @return \Combodo\iTop\Application\UI\Base\Layout\PageContent\PageContentWithSideContent
|
* @return \Combodo\iTop\Application\UI\Base\Layout\PageContent\PageContentWithSideContent
|
||||||
* @throws \CoreException
|
* @throws \CoreException
|
||||||
*/
|
*/
|
||||||
public static function MakeForObjectDetails(DBObject $oObject, string $sMode = cmdbAbstractObject::DEFAULT_DISPLAY_MODE)
|
public static function MakeForObjectDetails(DBObject $oObject, string $sMode = cmdbAbstractObject::DEFAULT_DISPLAY_MODE, $sBasketFilter = null, $aBasketList = [], $sBackUrl = null, $sPostedFieldsForBackUrl = "")
|
||||||
{
|
{
|
||||||
$oLayout = new PageContentWithSideContent();
|
$oLayout = new PageContentWithSideContent();
|
||||||
|
|
||||||
// Add object details layout
|
|
||||||
// TODO 3.0.0 see N°3518
|
if ($sBasketFilter != null) {
|
||||||
//$oObjectDetails = ObjectFactory::MakeDetails($oObject, $sMode);
|
$oNavigationBlock = BasketUIBlockFactory::MakeStandard($oObject, $sBasketFilter, $aBasketList, $sBackUrl, $sPostedFieldsForBackUrl);
|
||||||
//$oLayout->AddMainBlock($oObjectDetails);
|
if ($oNavigationBlock != null) {
|
||||||
|
$oLayout->AddSubBlock($oNavigationBlock);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Add object activity layout
|
// Add object activity layout
|
||||||
$oActivityPanel = ActivityPanelFactory::MakeForObjectDetails($oObject, $sMode);
|
$oActivityPanel = ActivityPanelFactory::MakeForObjectDetails($oObject, $sMode);
|
||||||
|
|||||||
@@ -120,8 +120,10 @@ class BlockIndirectLinkSetViewTable extends AbstractBlockLinkSetViewTable
|
|||||||
$sAttributeLinkedSetIndirectAttCode = $oAttributeLinkedSetIndirectDefinition->GetCode();
|
$sAttributeLinkedSetIndirectAttCode = $oAttributeLinkedSetIndirectDefinition->GetCode();
|
||||||
$sAttributeLinkedSetIndirectLinkedClass = $oAttributeLinkedSetIndirectDefinition->GetTargetClass();
|
$sAttributeLinkedSetIndirectLinkedClass = $oAttributeLinkedSetIndirectDefinition->GetTargetClass();
|
||||||
|
|
||||||
|
|
||||||
$aAttCodesToDisplay = MetaModel::GetAttributeLinkedSetIndirectDatatableAttCodesToDisplay($this->sObjectClass, $this->sAttCode, $sAttributeLinkedSetIndirectLinkedClass, $sAttributeLinkedSetIndirectAttCode);
|
$aAttCodesToDisplay = MetaModel::GetAttributeLinkedSetIndirectDatatableAttCodesToDisplay($this->sObjectClass, $this->sAttCode, $sAttributeLinkedSetIndirectLinkedClass, $sAttributeLinkedSetIndirectAttCode);
|
||||||
/** @noinspection PhpUnnecessaryLocalVariableInspection *//** @noinspection OneTimeUseVariablesInspection */
|
/** @noinspection PhpUnnecessaryLocalVariableInspection */
|
||||||
|
/** @noinspection OneTimeUseVariablesInspection */
|
||||||
$sAttCodesToDisplay = implode(',', $aAttCodesToDisplay);
|
$sAttCodesToDisplay = implode(',', $aAttCodesToDisplay);
|
||||||
|
|
||||||
return $sAttCodesToDisplay;
|
return $sAttCodesToDisplay;
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ class AjaxRenderController
|
|||||||
* @throws \MySQLException
|
* @throws \MySQLException
|
||||||
* @throws \MySQLHasGoneAwayException
|
* @throws \MySQLHasGoneAwayException
|
||||||
*/
|
*/
|
||||||
public static function GetDataForTable(DBObjectSet $oSet, array $aClassAliases, array $aColumnsLoad, string $sIdName = "", array $aExtraParams = [], int $iDrawNumber = 1)
|
public static function GetDataForTable(DBObjectSet $oSet, array $aClassAliases, array $aColumnsLoad, string $sIdName = "", array $aExtraParams = [], int $iDrawNumber = 1, string $sLinkToBasket = "")
|
||||||
{
|
{
|
||||||
if (isset($aExtraParams['show_obsolete_data'])) {
|
if (isset($aExtraParams['show_obsolete_data'])) {
|
||||||
$bShowObsoleteData = $aExtraParams['show_obsolete_data'];
|
$bShowObsoleteData = $aExtraParams['show_obsolete_data'];
|
||||||
@@ -72,7 +72,7 @@ class AjaxRenderController
|
|||||||
$oSet->SetShowObsoleteData($bShowObsoleteData);
|
$oSet->SetShowObsoleteData($bShowObsoleteData);
|
||||||
$aResult["draw"] = $iDrawNumber;
|
$aResult["draw"] = $iDrawNumber;
|
||||||
$aResult["recordsTotal"] = $oSet->Count();
|
$aResult["recordsTotal"] = $oSet->Count();
|
||||||
$aResult["recordsFiltered"] = $aResult["recordsTotal"] ;
|
$aResult["recordsFiltered"] = $aResult["recordsTotal"];
|
||||||
$aResult["data"] = [];
|
$aResult["data"] = [];
|
||||||
while ($aObject = $oSet->FetchAssoc()) {
|
while ($aObject = $oSet->FetchAssoc()) {
|
||||||
$aObj = [];
|
$aObj = [];
|
||||||
@@ -80,7 +80,7 @@ class AjaxRenderController
|
|||||||
if (isset($aObject[$sAlias]) && !is_null($aObject[$sAlias])) {
|
if (isset($aObject[$sAlias]) && !is_null($aObject[$sAlias])) {
|
||||||
$aObj[$sAlias."/_key_"] = $aObject[$sAlias]->GetKey();
|
$aObj[$sAlias."/_key_"] = $aObject[$sAlias]->GetKey();
|
||||||
$aObj[$sAlias."/_key_/raw"] = $aObject[$sAlias]->GetKey();
|
$aObj[$sAlias."/_key_/raw"] = $aObject[$sAlias]->GetKey();
|
||||||
$aObj[$sAlias."/hyperlink"] = $aObject[$sAlias]->GetHyperlink();
|
$aObj[$sAlias."/hyperlink"] = $aObject[$sAlias]->GetHyperlink(null, true, null, false, ($sLinkToBasket === $sAlias));
|
||||||
$aObj[$sAlias."/friendlyname"] = $aObject[$sAlias]->Get('friendlyname');
|
$aObj[$sAlias."/friendlyname"] = $aObject[$sAlias]->Get('friendlyname');
|
||||||
|
|
||||||
// N°5943 Protection against $aColumnsLoad having less class aliases than $aClassAliases, this is in case the method's consumer isn't passing data correctly
|
// N°5943 Protection against $aColumnsLoad having less class aliases than $aClassAliases, this is in case the method's consumer isn't passing data correctly
|
||||||
@@ -95,14 +95,13 @@ class AjaxRenderController
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($aColumnsLoad[$sAlias] as $sAttCode) {
|
foreach ($aColumnsLoad[$sAlias] as $sAttCode) {
|
||||||
$aObj[$sAlias."/".$sAttCode] = $aObject[$sAlias]->GetAsHTML($sAttCode);
|
$aObj[$sAlias."/".$sAttCode] = $aObject[$sAlias]->GetAsHTML($sAttCode, true, ($sLinkToBasket === $sAlias."/".$sAttCode));
|
||||||
|
|
||||||
$bExcludeRawValue = false;
|
$bExcludeRawValue = false;
|
||||||
// Only retrieve raw (stored) value for simple fields
|
// Only retrieve raw (stored) value for simple fields
|
||||||
foreach (cmdbAbstractObject::GetAttDefClassesToExcludeFromMarkupMetadataRawValue() as $sAttDefClassToExclude)
|
foreach (cmdbAbstractObject::GetAttDefClassesToExcludeFromMarkupMetadataRawValue() as $sAttDefClassToExclude) {
|
||||||
{
|
|
||||||
$oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
|
$oAttDef = MetaModel::GetAttributeDef($sClass, $sAttCode);
|
||||||
if (is_a($oAttDef, $sAttDefClassToExclude, true))
|
if (is_a($oAttDef, $sAttDefClassToExclude, true)) {
|
||||||
{
|
|
||||||
$bExcludeRawValue = true;
|
$bExcludeRawValue = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -490,7 +489,9 @@ class AjaxRenderController
|
|||||||
$oSet = new DBObjectSet($oFilter, $aOrderBy, $aQueryParams, null, $iEnd - $iStart, $iStart);
|
$oSet = new DBObjectSet($oFilter, $aOrderBy, $aQueryParams, null, $iEnd - $iStart, $iStart);
|
||||||
$oSet->OptimizeColumnLoad($aColumnsLoad);
|
$oSet->OptimizeColumnLoad($aColumnsLoad);
|
||||||
|
|
||||||
return self::GetDataForTable($oSet, $aClassAliases, $aColumnsLoad, $sIdName, $aExtraParams, $iDrawNumber);
|
$sLinkToBasket = utils::ReadParam('basket', '', false, 'string');
|
||||||
|
|
||||||
|
return self::GetDataForTable($oSet, $aClassAliases, $aColumnsLoad, $sIdName, $aExtraParams, $iDrawNumber, $sLinkToBasket);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -294,9 +294,21 @@ JS;
|
|||||||
FormHelper::DisableAttributeBlobInputs($sClass, $aFormExtraParams);
|
FormHelper::DisableAttributeBlobInputs($sClass, $aFormExtraParams);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
//N°1386 - Advanced Search: Navigation in list - Browse this list
|
||||||
|
$sBasketBackUrl = utils::ReadPostedParam('basket_back_url', '', false, 'raw');
|
||||||
|
$sBasketClass = utils::ReadPostedParam('basket_class', null, false, 'raw');
|
||||||
|
$sBasketFilter = utils::ReadPostedParam('basket_filter', null, false, 'raw');
|
||||||
|
$sBasketList = utils::ReadPostedParam('basket_list_navigation', null, false, 'string');
|
||||||
|
$sBasketPostedFieldsForBackUrl = utils::ReadPostedParam('basket_back_posted_fields', "", false, 'raw');
|
||||||
|
$aBasketList = [];
|
||||||
|
if ($sBasketList != null) {
|
||||||
|
$aBasketList = json_decode($sBasketList);
|
||||||
|
}
|
||||||
|
|
||||||
$oPage = new iTopWebPage('', $bPrintable);
|
$oPage = new iTopWebPage('', $bPrintable);
|
||||||
$oPage->DisableBreadCrumb();
|
$oPage->DisableBreadCrumb();
|
||||||
$oPage->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, cmdbAbstractObject::ENUM_DISPLAY_MODE_EDIT));
|
$oPage->SetContentLayout(PageContentFactory::MakeForObjectDetails($oObj, cmdbAbstractObject::ENUM_DISPLAY_MODE_EDIT, $sBasketFilter, $sBasketClass, $aBasketList, $sBasketBackUrl, $sBasketPostedFieldsForBackUrl));
|
||||||
}
|
}
|
||||||
// - JS files
|
// - JS files
|
||||||
foreach (static::EnumRequiredForModificationJsFilesRelPaths() as $sJsFileRelPath) {
|
foreach (static::EnumRequiredForModificationJsFilesRelPaths() as $sJsFileRelPath) {
|
||||||
|
|||||||
30
templates/base/components/basket/layout.html.twig
Normal file
30
templates/base/components/basket/layout.html.twig
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
{# @copyright Copyright (C) 2010-2021 Combodo SARL #}
|
||||||
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
||||||
|
<div id='{{ oUIBlock.GetId() }}'
|
||||||
|
class='{{ oUIBlock.GetBlocksInheritanceCSSClassesAsString() }} {{ oUIBlock.GetAdditionalCSSClassesAsString() }} {{ oUIBlock.GetCSSColorClass() }} {% if oUIBlock.IsHidden() %}ibo-is-hidden{% endif %} ibo-is-opened' data-role='ibo-basket'>
|
||||||
|
{% block ibobasket %}
|
||||||
|
<form id='ibo-form-basket' class='ibo-basket-form' method='post'>
|
||||||
|
<input type='hidden' name='basket_list_basket' value='{{ oUIBlock.GetList() }}'/>
|
||||||
|
<input type='hidden' name='basket_class' value='{{ oUIBlock.GetClass() }}'/>
|
||||||
|
<input type='hidden' name='basket_filter' value='{{ oUIBlock.GetFilter() }}'/>
|
||||||
|
<input type='hidden' name='basket_back_posted_fields' value='{{ oUIBlock.GetPostedFields()|raw }}'/>
|
||||||
|
<input type='hidden' name='basket_back_url' value='{{ oUIBlock.GetBackUrl()|raw }}'/>
|
||||||
|
<div class='ibo-form-basket--nav fas fa-angle-up' id='{{ oUIBlock.GetId() }}-back' data-tooltip-content='{{ 'UI:Basket:Back'|dict_s }}'></div>
|
||||||
|
{% if oUIBlock.HasPrec() %}
|
||||||
|
<div class='ibo-form-basket--nav fas fa-angle-double-left' id='{{ oUIBlock.GetId() }}-first' data-tooltip-content='{{ 'UI:Basket:First'|dict_s }}'></div>
|
||||||
|
<div class='ibo-form-basket--nav fas fa-angle-left' id='{{ oUIBlock.GetId() }}-prev' data-tooltip-content='{{ 'UI:Basket:Previous'|dict_s }}'></div>
|
||||||
|
{% else %}
|
||||||
|
   
|
||||||
|
{% endif %}
|
||||||
|
<div class='ibo-form-basket--total'>{{ oUIBlock.GetIdx() }} /
|
||||||
|
<span id='{{ oUIBlock.GetId() }}-total' class='ibo-form-basket--total--link' data-tooltip-content='{{ 'UI:Basket:Back'|dict_s }}'>{{ oUIBlock.GetCount() }}</span>
|
||||||
|
</div>
|
||||||
|
{% if oUIBlock.HasNext() %}
|
||||||
|
<div class='ibo-form-basket--nav fas fa-angle-right' id='{{ oUIBlock.GetId() }}-next' data-tooltip-content='{{ 'UI:Basket:Next'|dict_s }}'></div>
|
||||||
|
<div class='ibo-form-basket--nav fas fa-angle-double-right' id='{{ oUIBlock.GetId() }}-last' data-tooltip-content='{{ 'UI:Basket:Last'|dict_s }}'></div>
|
||||||
|
{% else %}
|
||||||
|
   
|
||||||
|
{% endif %}
|
||||||
|
</form>
|
||||||
|
{% endblock %}
|
||||||
|
</div>
|
||||||
55
templates/base/components/basket/layout.js.twig
Normal file
55
templates/base/components/basket/layout.js.twig
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
{# @copyright Copyright (C) 2010-2021 Combodo SARL #}
|
||||||
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
||||||
|
function backToBasket() {
|
||||||
|
$('#ibo-form-basket').attr('action', '{{ oUIBlock.GetBackUrl() | raw }}');
|
||||||
|
$('#ibo-form-basket').attr('method', 'post');
|
||||||
|
$('#ibo-form-basket').find('[name=basket_filter]').val('');
|
||||||
|
|
||||||
|
if ('{{ oUIBlock.GetPostedFields() | raw }}' != '')
|
||||||
|
{
|
||||||
|
JSON.parse('{{ oUIBlock.GetPostedFields() | raw }}', (key, value) => {
|
||||||
|
$('#ibo-form-basket').append($('<input/>').attr({'type': 'hidden', 'name': key, 'value': value}));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#ibo-form-basket').submit();
|
||||||
|
|
||||||
|
}
|
||||||
|
$('#{{ oUIBlock.GetId() }}-back').on('click', function () {
|
||||||
|
backToBasket();
|
||||||
|
});
|
||||||
|
$('#{{ oUIBlock.GetId() }}-total').on('click', function () {
|
||||||
|
backToBasket();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#{{ oUIBlock.GetId() }}-first').on('click', function () {
|
||||||
|
$('#ibo-form-basket').attr('action', ' {{ oUIBlock.GetUrlFirst() | raw }} ');
|
||||||
|
$('#ibo-form-basket').submit();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#{{ oUIBlock.GetId() }}-prev').on('click', function () {
|
||||||
|
$('#ibo-form-basket').attr('action', ' {{ oUIBlock.GetUrlPrev()| raw }} ');
|
||||||
|
$('#ibo-form-basket').submit();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#{{ oUIBlock.GetId() }}-next').on('click', function () {
|
||||||
|
$('#ibo-form-basket').attr('action', ' {{ oUIBlock.GetUrlNext() | raw }} ');
|
||||||
|
$('#ibo-form-basket').submit();
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#{{ oUIBlock.GetId() }}-last').on('click', function () {
|
||||||
|
$('#ibo-form-basket').attr('action', ' {{ oUIBlock.GetUrlLast() | raw }} ');
|
||||||
|
$('#ibo-form-basket').submit()
|
||||||
|
});
|
||||||
|
|
||||||
|
/*a first try but not the good solution to keep basket in edit mode */
|
||||||
|
$('.ibo-panel--toolbar a').each(function (idx, elt) {
|
||||||
|
var onclick = $(this).attr("onClick");
|
||||||
|
if (typeof onclick == 'undefined' && onclick == false)
|
||||||
|
{
|
||||||
|
$(this).on('click', function () {
|
||||||
|
$('#ibo-form-basket').attr('action', $this.attr('href'));
|
||||||
|
$('#ibo-form-basket').submit();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
7
templates/base/components/datatable/basket.ready.js.twig
Normal file
7
templates/base/components/datatable/basket.ready.js.twig
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{# @copyright Copyright (C) 2010-2023 Combodo SARL #}
|
||||||
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
||||||
|
$("form[id^='basket']").each(function () {
|
||||||
|
$(this).append($('<input/>')
|
||||||
|
.attr({'type': 'hidden', 'name': 'basket_back_posted_fields', 'value': '{{ oUIBlock.GetBasketPostedFieldsForBackUrl()|raw }}'})
|
||||||
|
);
|
||||||
|
});
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
{% if oUIBlock.GetOption("select_mode") is not empty %}
|
{% if oUIBlock.GetOption("select_mode") is not empty %}
|
||||||
var oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = [];
|
var oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = [];
|
||||||
{% if oUIBlock.GetOption("sSelectedRows") is not empty %}
|
{% if oUIBlock.GetOption("sSelectedRows") is not empty %}
|
||||||
oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = {{ oUIBlock.GetOption('sSelectedRows')|raw }};
|
oSelectedItems{{ oUIBlock.GetOption('sListId')|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = {{ oUIBlock.GetOption('sSelectedRows')|raw }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
var bSelectAllowed{{ oUIBlock.GetId()|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = false;
|
var bSelectAllowed{{ oUIBlock.GetId()|sanitize(constant('utils::ENUM_SANITIZATION_FILTER_VARIABLE_NAME')) }} = false;
|
||||||
|
|||||||
@@ -108,14 +108,27 @@ var oTable{{ sListIDForVarSuffix }} = $('#{{ oUIBlock.GetId() }}').DataTable({
|
|||||||
// Disable hyperlinks if necessary
|
// Disable hyperlinks if necessary
|
||||||
{% if oUIBlock.GetOption("disable_hyperlinks") is not same as false %}
|
{% if oUIBlock.GetOption("disable_hyperlinks") is not same as false %}
|
||||||
$("#{{ oUIBlock.GetId() }} a").on('click', function (e) {
|
$("#{{ oUIBlock.GetId() }} a").on('click', function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
|
{% else %}
|
||||||
|
$('#{{ oUIBlock.GetId() }}_wrapper').find('.object-in-basket').on('click',
|
||||||
|
function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
sUrl = $(this).attr('href');
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').attr('action', sUrl);
|
||||||
|
if (event.ctrlKey)
|
||||||
|
{
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').attr('target', "_blank");
|
||||||
|
}
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').submit();
|
||||||
|
}
|
||||||
|
);
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
},
|
},
|
||||||
{% else %}
|
{% else %}
|
||||||
drawCallback: function (settings) {
|
drawCallback: function (settings) {
|
||||||
if(settings.json)
|
if (settings.json)
|
||||||
{
|
{
|
||||||
$(this).closest('.ibo-panel').find('.ibo-datatable--result-count').html(settings.json.recordsTotal);
|
$(this).closest('.ibo-panel').find('.ibo-datatable--result-count').html(settings.json.recordsTotal);
|
||||||
}
|
}
|
||||||
@@ -129,12 +142,26 @@ var oTable{{ sListIDForVarSuffix }} = $('#{{ oUIBlock.GetId() }}').DataTable({
|
|||||||
{
|
{
|
||||||
$(this).closest('.dataTables_wrapper').find('.dataTables_paginate, .dataTables_info').show();
|
$(this).closest('.dataTables_wrapper').find('.dataTables_paginate, .dataTables_info').show();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Disable hyperlinks if necessary
|
// Disable hyperlinks if necessary
|
||||||
{% if oUIBlock.GetOption("disable_hyperlinks") is same as true %}
|
{% if oUIBlock.GetOption("disable_hyperlinks") is same as true %}
|
||||||
$("#{{ oUIBlock.GetId() }} a").on('click', function (e) {
|
$("#{{ oUIBlock.GetId() }} a").on('click', function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
|
{% else %}
|
||||||
|
$('#{{ oUIBlock.GetId() }}_wrapper').find('.object-in-basket').on('click',
|
||||||
|
function (event) {
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
sUrl = $(this).attr('href');
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').attr('action', sUrl);
|
||||||
|
if (event.ctrlKey)
|
||||||
|
{
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').attr('target', "_blank");
|
||||||
|
}
|
||||||
|
$('#basket{{ oUIBlock.GetId() }}').submit();
|
||||||
|
}
|
||||||
|
);
|
||||||
{% endif %}
|
{% endif %}
|
||||||
},
|
},
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -435,17 +462,31 @@ if ($('#datatable_dlg_{{ oUIBlock.GetId() }}').hasClass('itop-datatable'))
|
|||||||
}
|
}
|
||||||
$('#datatable_dlg_{{ oUIBlock.GetId() }}').DataTableSettings(aOptions{{ sListIDForVarSuffix }});
|
$('#datatable_dlg_{{ oUIBlock.GetId() }}').DataTableSettings(aOptions{{ sListIDForVarSuffix }});
|
||||||
|
|
||||||
if(window.ResizeObserver){
|
$('body').append($('<form/>')
|
||||||
let oTable{{ sListIDForVarSuffix }}ResizeTimeout = null;
|
.attr({'method': 'post', 'id': 'basket{{ oUIBlock.GetId() }}'})
|
||||||
const oTable{{ sListIDForVarSuffix }}Resize = new ResizeObserver(function(){
|
.append($('<input/>')
|
||||||
clearTimeout(oTable{{ sListIDForVarSuffix }}ResizeTimeout);
|
.attr({'type': 'hidden', 'name': 'basket_filter', 'value': "{{ oUIBlock.GetBasketFilter()|raw }}"})
|
||||||
oTable{{ sListIDForVarSuffix }}ResizeTimeout = setTimeout(function(){
|
)
|
||||||
$('#{{ oUIBlock.GetId() }}').DataTable().columns.adjust();
|
.append($('<input/>')
|
||||||
}, 120);
|
.attr({'type': 'hidden', 'name': 'basket_class', 'value': "{{ oUIBlock.GetBasketClass()|raw }}"})
|
||||||
});
|
)
|
||||||
oTable{{ sListIDForVarSuffix }}Resize.observe($('#{{ oUIBlock.GetId() }}')[0]);
|
.append($('<input/>')
|
||||||
|
.attr({'type': 'hidden', 'name': 'basket_back_url', 'value': window.location.href})
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
if (window.ResizeObserver)
|
||||||
|
{
|
||||||
|
let oTable{{ sListIDForVarSuffix }}ResizeTimeout = null;
|
||||||
|
const oTable{{ sListIDForVarSuffix }}Resize = new ResizeObserver(function () {
|
||||||
|
clearTimeout(oTable{{ sListIDForVarSuffix }}ResizeTimeout);
|
||||||
|
oTable{{ sListIDForVarSuffix }}ResizeTimeout = setTimeout(function () {
|
||||||
|
$('#{{ oUIBlock.GetId() }}').DataTable().columns.adjust();
|
||||||
|
}, 120);
|
||||||
|
});
|
||||||
|
oTable{{ sListIDForVarSuffix }}Resize.observe($('#{{ oUIBlock.GetId() }}')[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
{% if oUIBlock.HasRowActions() %}
|
{% if oUIBlock.HasRowActions() %}
|
||||||
{% include 'base/components/datatable/row-actions/handler.js.twig' %}
|
{% include 'base/components/datatable/row-actions/handler.js.twig' %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
Reference in New Issue
Block a user