mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-18 06:48:50 +02:00
Adding Italian localization, thanks to Marialaura Colantoni
SVN:trunk[1233]
This commit is contained in:
483
dictionaries/it.dictionary.itop.core.php
Normal file
483
dictionaries/it.dictionary.itop.core.php
Normal file
@@ -0,0 +1,483 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Core:AttributeLinkedSet' => 'Array di oggetti',
|
||||
'Core:AttributeLinkedSet+' => 'Qualsiasi tipo di oggetti della stessa classe o sottoclasse',
|
||||
|
||||
'Core:AttributeLinkedSetIndirect' => 'Array di oggetti (N-N)',
|
||||
'Core:AttributeLinkedSetIndirect+' => 'Qualsiasi tipo di oggetti [sottoclasse] della stessa classe',
|
||||
|
||||
'Core:AttributeInteger' => 'Intero',
|
||||
'Core:AttributeInteger+' => 'Valore numerico (potrebbe essere negativo)',
|
||||
|
||||
'Core:AttributeDecimal' => 'Decimale',
|
||||
'Core:AttributeDecimal+' => 'Valore decimale (potrebbe essere negativo)',
|
||||
|
||||
'Core:AttributeBoolean' => 'Boolean',
|
||||
'Core:AttributeBoolean+' => 'Boolean',
|
||||
|
||||
'Core:AttributeString' => 'Stringa',
|
||||
'Core:AttributeString+' => 'Stringa alfanumerica',
|
||||
|
||||
'Core:AttributeClass' => 'Classe',
|
||||
'Core:AttributeClass+' => 'Classe',
|
||||
|
||||
'Core:AttributeApplicationLanguage' => 'Lingua utente',
|
||||
'Core:AttributeApplicationLanguage+' => 'Lingua e nazione (IT IT)',
|
||||
|
||||
'Core:AttributeFinalClass' => 'Classe (auto)',
|
||||
'Core:AttributeFinalClass+' => 'Classe reale dell\'oggetto (creato automaticamente dal nucleo)',
|
||||
|
||||
'Core:AttributePassword' => 'Password',
|
||||
'Core:AttributePassword+' => 'Password di un dispositivo esterno',
|
||||
|
||||
'Core:AttributeEncryptedString' => 'Stringa crittografata',
|
||||
'Core:AttributeEncryptedString+' => 'Stringa crittografata con chiave locale',
|
||||
|
||||
'Core:AttributeText' => 'Testo',
|
||||
'Core:AttributeText+' => 'Stringa di caratteri multiline',
|
||||
|
||||
'Core:AttributeHTML' => 'HTML',
|
||||
'Core:AttributeHTML+' => 'Stringa HTML',
|
||||
|
||||
'Core:AttributeEmailAddress' => 'Indirizzo email',
|
||||
'Core:AttributeEmailAddress+' => 'Indirizzo email',
|
||||
|
||||
'Core:AttributeIPAddress' => 'Indirizzo IP',
|
||||
'Core:AttributeIPAddress+' => 'Indirizzo IP',
|
||||
|
||||
'Core:AttributeOQL' => 'OQL',
|
||||
'Core:AttributeOQL+' => 'Object Query Langage expression',
|
||||
|
||||
'Core:AttributeEnum' => 'Enum',
|
||||
'Core:AttributeEnum+' => 'Lista di stringhe alfanumeriche predefinite',
|
||||
|
||||
'Core:AttributeTemplateString' => 'Template stringa',
|
||||
'Core:AttributeTemplateString+' => 'Stringa contenente segnaposti',
|
||||
|
||||
'Core:AttributeTemplateText' => 'Template testo',
|
||||
'Core:AttributeTemplateText+' => 'Testo contenente segnaposti',
|
||||
|
||||
'Core:AttributeTemplateHTML' => 'Template HTML',
|
||||
'Core:AttributeTemplateHTML+' => 'HTML contenente segnaposti',
|
||||
|
||||
'Core:AttributeWikiText' => 'Articolo wiki',
|
||||
'Core:AttributeWikiText+' => 'Testo formattato wiki',
|
||||
|
||||
'Core:AttributeDateTime' => 'Data/ora',
|
||||
'Core:AttributeDateTime+' => 'Data e ora (anno-mese-giorno hh:mm:ss)',
|
||||
|
||||
'Core:AttributeDate' => 'Data',
|
||||
'Core:AttributeDate+' => 'Data (anno-mese-giorno)',
|
||||
|
||||
'Core:AttributeDeadline' => 'Scadenza',
|
||||
'Core:AttributeDeadline+' => 'Data, visualizzata in relazione al tempo corrente',
|
||||
|
||||
'Core:AttributeExternalKey' => 'Chiave esterna',
|
||||
'Core:AttributeExternalKey+' => 'Chiave esterna (o straniera)',
|
||||
|
||||
'Core:AttributeExternalField' => 'Campo esterno',
|
||||
'Core:AttributeExternalField+' => 'Campo mappato a una chiave esterna',
|
||||
|
||||
'Core:AttributeURL' => 'URL',
|
||||
'Core:AttributeURL+' => 'URL assoluto o relativo come stringa di testo',
|
||||
|
||||
'Core:AttributeBlob' => 'Blob',
|
||||
'Core:AttributeBlob+' => 'Qualsiasi contenuto binario (documento)',
|
||||
|
||||
'Core:AttributeOneWayPassword' => 'Password "one way"',
|
||||
'Core:AttributeOneWayPassword+' => 'Password "one way" criptata (hashed)',
|
||||
|
||||
'Core:AttributeTable' => 'Tabella',
|
||||
'Core:AttributeTable+' => 'Array indicizzato avente due dimensioni',
|
||||
|
||||
'Core:AttributePropertySet' => 'Proprietà',
|
||||
'Core:AttributePropertySet+' => 'Elenco delle proprietà non tipizzati (nome e valore)',
|
||||
));
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'core/cmdb'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
//
|
||||
// Class: CMDBChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:CMDBChange' => 'Change',
|
||||
'Class:CMDBChange+' => 'Changes tracking',
|
||||
'Class:CMDBChange/Attribute:date' => 'date',
|
||||
'Class:CMDBChange/Attribute:date+' => 'date and time at which the changes have been recorded',
|
||||
'Class:CMDBChange/Attribute:userinfo' => 'misc. info',
|
||||
'Class:CMDBChange/Attribute:userinfo+' => 'caller\'s defined information',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOp
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOp' => 'Change Operation',
|
||||
'Class:CMDBChangeOp+' => 'Change operations tracking',
|
||||
'Class:CMDBChangeOp/Attribute:change' => 'change',
|
||||
'Class:CMDBChangeOp/Attribute:change+' => 'change',
|
||||
'Class:CMDBChangeOp/Attribute:date' => 'date',
|
||||
'Class:CMDBChangeOp/Attribute:date+' => 'date and time of the change',
|
||||
'Class:CMDBChangeOp/Attribute:userinfo' => 'user',
|
||||
'Class:CMDBChangeOp/Attribute:userinfo+' => 'who made this change',
|
||||
'Class:CMDBChangeOp/Attribute:objclass' => 'object class',
|
||||
'Class:CMDBChangeOp/Attribute:objclass+' => 'object class',
|
||||
'Class:CMDBChangeOp/Attribute:objkey' => 'object id',
|
||||
'Class:CMDBChangeOp/Attribute:objkey+' => 'object id',
|
||||
'Class:CMDBChangeOp/Attribute:finalclass' => 'type',
|
||||
'Class:CMDBChangeOp/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpCreate
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpCreate' => 'object creation',
|
||||
'Class:CMDBChangeOpCreate+' => 'Object creation tracking',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpDelete
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpDelete' => 'object deletion',
|
||||
'Class:CMDBChangeOpDelete+' => 'Object deletion tracking',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpSetAttribute
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpSetAttribute' => 'object change',
|
||||
'Class:CMDBChangeOpSetAttribute+' => 'Object properties change tracking',
|
||||
'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Attribute',
|
||||
'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'code of the modified property',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpSetAttributeScalar
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpSetAttributeScalar' => 'property change',
|
||||
'Class:CMDBChangeOpSetAttributeScalar+' => 'Object scalar properties change tracking',
|
||||
'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Previous value',
|
||||
'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'previous value of the attribute',
|
||||
'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'New value',
|
||||
'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'new value of the attribute',
|
||||
));
|
||||
// Used by CMDBChangeOp... & derived classes
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Change:ObjectCreated' => 'Oggetto creato',
|
||||
'Change:ObjectDeleted' => 'Oggetto creato',
|
||||
'Change:ObjectModified' => 'Oggetto modificato',
|
||||
'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s impostato su %2$s (valore precedente: %3$s)',
|
||||
'Change:Text_AppendedTo_AttName' => '%1$s allegata alla %2$s',
|
||||
'Change:AttName_Changed_PreviousValue_OldValue' => '%1$s modificato, valore precedente: %2$s',
|
||||
'Change:AttName_Changed' => '%1$s modificato',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpSetAttributeBlob
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpSetAttributeBlob' => 'data change',
|
||||
'Class:CMDBChangeOpSetAttributeBlob+' => 'data change tracking',
|
||||
'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Previous data',
|
||||
'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'previous contents of the attribute',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CMDBChangeOpSetAttributeText
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:CMDBChangeOpSetAttributeText' => 'text change',
|
||||
'Class:CMDBChangeOpSetAttributeText+' => 'text change tracking',
|
||||
'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Previous data',
|
||||
'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'previous contents of the attribute',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: Event
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:Event' => 'Log Event',
|
||||
'Class:Event+' => 'An application internal event',
|
||||
'Class:Event/Attribute:message' => 'message',
|
||||
'Class:Event/Attribute:message+' => 'short description of the event',
|
||||
'Class:Event/Attribute:date' => 'date',
|
||||
'Class:Event/Attribute:date+' => 'date and time at which the changes have been recorded',
|
||||
'Class:Event/Attribute:userinfo' => 'user info',
|
||||
'Class:Event/Attribute:userinfo+' => 'identification of the user that was doing the action that triggered this event',
|
||||
'Class:Event/Attribute:finalclass' => 'type',
|
||||
'Class:Event/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: EventNotification
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:EventNotification' => 'Notification event',
|
||||
'Class:EventNotification+' => 'Trace of a notification that has been sent',
|
||||
'Class:EventNotification/Attribute:trigger_id' => 'Trigger',
|
||||
'Class:EventNotification/Attribute:trigger_id+' => 'user account',
|
||||
'Class:EventNotification/Attribute:action_id' => 'user',
|
||||
'Class:EventNotification/Attribute:action_id+' => 'user account',
|
||||
'Class:EventNotification/Attribute:object_id' => 'Object id',
|
||||
'Class:EventNotification/Attribute:object_id+' => 'object id (class defined by the trigger ?)',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: EventNotificationEmail
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:EventNotificationEmail' => 'Email emission event',
|
||||
'Class:EventNotificationEmail+' => 'Trace of an email that has been sent',
|
||||
'Class:EventNotificationEmail/Attribute:to' => 'TO',
|
||||
'Class:EventNotificationEmail/Attribute:to+' => 'TO',
|
||||
'Class:EventNotificationEmail/Attribute:cc' => 'CC',
|
||||
'Class:EventNotificationEmail/Attribute:cc+' => 'CC',
|
||||
'Class:EventNotificationEmail/Attribute:bcc' => 'BCC',
|
||||
'Class:EventNotificationEmail/Attribute:bcc+' => 'BCC',
|
||||
'Class:EventNotificationEmail/Attribute:from' => 'From',
|
||||
'Class:EventNotificationEmail/Attribute:from+' => 'Sender of the message',
|
||||
'Class:EventNotificationEmail/Attribute:subject' => 'Subject',
|
||||
'Class:EventNotificationEmail/Attribute:subject+' => 'Subject',
|
||||
'Class:EventNotificationEmail/Attribute:body' => 'Body',
|
||||
'Class:EventNotificationEmail/Attribute:body+' => 'Body',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: EventIssue
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:EventIssue' => 'Issue event',
|
||||
'Class:EventIssue+' => 'Trace of an issue (warning, error, etc.)',
|
||||
'Class:EventIssue/Attribute:issue' => 'Issue',
|
||||
'Class:EventIssue/Attribute:issue+' => 'What happened',
|
||||
'Class:EventIssue/Attribute:impact' => 'Impact',
|
||||
'Class:EventIssue/Attribute:impact+' => 'What are the consequences',
|
||||
'Class:EventIssue/Attribute:page' => 'Page',
|
||||
'Class:EventIssue/Attribute:page+' => 'HTTP entry point',
|
||||
'Class:EventIssue/Attribute:arguments_post' => 'Posted arguments',
|
||||
'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST arguments',
|
||||
'Class:EventIssue/Attribute:arguments_get' => 'URL arguments',
|
||||
'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET arguments',
|
||||
'Class:EventIssue/Attribute:callstack' => 'Callstack',
|
||||
'Class:EventIssue/Attribute:callstack+' => 'Call stack',
|
||||
'Class:EventIssue/Attribute:data' => 'Data',
|
||||
'Class:EventIssue/Attribute:data+' => 'More information',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: EventWebService
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:EventWebService' => 'Web service event',
|
||||
'Class:EventWebService+' => 'Trace of an web service call',
|
||||
'Class:EventWebService/Attribute:verb' => 'Verb',
|
||||
'Class:EventWebService/Attribute:verb+' => 'Name of the operation',
|
||||
'Class:EventWebService/Attribute:result' => 'Result',
|
||||
'Class:EventWebService/Attribute:result+' => 'Overall success/failure',
|
||||
'Class:EventWebService/Attribute:log_info' => 'Info log',
|
||||
'Class:EventWebService/Attribute:log_info+' => 'Result info log',
|
||||
'Class:EventWebService/Attribute:log_warning' => 'Warning log',
|
||||
'Class:EventWebService/Attribute:log_warning+' => 'Result warning log',
|
||||
'Class:EventWebService/Attribute:log_error' => 'Error log',
|
||||
'Class:EventWebService/Attribute:log_error+' => 'Result error log',
|
||||
'Class:EventWebService/Attribute:data' => 'Data',
|
||||
'Class:EventWebService/Attribute:data+' => 'Result data',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: Action
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:Action' => 'Custom Action',
|
||||
'Class:Action+' => 'User defined action',
|
||||
'Class:Action/Attribute:name' => 'Name',
|
||||
'Class:Action/Attribute:name+' => '',
|
||||
'Class:Action/Attribute:description' => 'Description',
|
||||
'Class:Action/Attribute:description+' => '',
|
||||
'Class:Action/Attribute:status' => 'Status',
|
||||
'Class:Action/Attribute:status+' => 'In production or ?',
|
||||
'Class:Action/Attribute:status/Value:test' => 'Being tested',
|
||||
'Class:Action/Attribute:status/Value:test+' => 'Being tested',
|
||||
'Class:Action/Attribute:status/Value:enabled' => 'In production',
|
||||
'Class:Action/Attribute:status/Value:enabled+' => 'In production',
|
||||
'Class:Action/Attribute:status/Value:disabled' => 'Inactive',
|
||||
'Class:Action/Attribute:status/Value:disabled+' => 'Inactive',
|
||||
'Class:Action/Attribute:trigger_list' => 'Related Triggers',
|
||||
'Class:Action/Attribute:trigger_list+' => 'Triggers linked to this action',
|
||||
'Class:Action/Attribute:finalclass' => 'Type',
|
||||
'Class:Action/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: ActionNotification
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:ActionNotification' => 'Notification',
|
||||
'Class:ActionNotification+' => 'Notification (abstract)',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: ActionEmail
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:ActionEmail' => 'Email notification',
|
||||
'Class:ActionEmail+' => '',
|
||||
'Class:ActionEmail/Attribute:test_recipient' => 'Test recipient',
|
||||
'Class:ActionEmail/Attribute:test_recipient+' => 'Detination in case status is set to "Test"',
|
||||
'Class:ActionEmail/Attribute:from' => 'From',
|
||||
'Class:ActionEmail/Attribute:from+' => 'Will be sent into the email header',
|
||||
'Class:ActionEmail/Attribute:reply_to' => 'Reply to',
|
||||
'Class:ActionEmail/Attribute:reply_to+' => 'Will be sent into the email header',
|
||||
'Class:ActionEmail/Attribute:to' => 'To',
|
||||
'Class:ActionEmail/Attribute:to+' => 'Destination of the email',
|
||||
'Class:ActionEmail/Attribute:cc' => 'Cc',
|
||||
'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy',
|
||||
'Class:ActionEmail/Attribute:bcc' => 'bcc',
|
||||
'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy',
|
||||
'Class:ActionEmail/Attribute:subject' => 'subject',
|
||||
'Class:ActionEmail/Attribute:subject+' => 'Title of the email',
|
||||
'Class:ActionEmail/Attribute:body' => 'body',
|
||||
'Class:ActionEmail/Attribute:body+' => 'Contents of the email',
|
||||
'Class:ActionEmail/Attribute:importance' => 'importance',
|
||||
'Class:ActionEmail/Attribute:importance+' => 'Importance flag',
|
||||
'Class:ActionEmail/Attribute:importance/Value:low' => 'low',
|
||||
'Class:ActionEmail/Attribute:importance/Value:low+' => 'low',
|
||||
'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
|
||||
'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
|
||||
'Class:ActionEmail/Attribute:importance/Value:high' => 'high',
|
||||
'Class:ActionEmail/Attribute:importance/Value:high+' => 'high',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: Trigger
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:Trigger' => 'Trigger',
|
||||
'Class:Trigger+' => 'Custom event handler',
|
||||
'Class:Trigger/Attribute:description' => 'Description',
|
||||
'Class:Trigger/Attribute:description+' => 'one line description',
|
||||
'Class:Trigger/Attribute:action_list' => 'Triggered actions',
|
||||
'Class:Trigger/Attribute:action_list+' => 'Actions performed when the trigger is activated',
|
||||
'Class:Trigger/Attribute:finalclass' => 'Type',
|
||||
'Class:Trigger/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: TriggerOnObject
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:TriggerOnObject' => 'Trigger (class dependent)',
|
||||
'Class:TriggerOnObject+' => 'Trigger on a given class of objects',
|
||||
'Class:TriggerOnObject/Attribute:target_class' => 'Target class',
|
||||
'Class:TriggerOnObject/Attribute:target_class+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: TriggerOnStateChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:TriggerOnStateChange' => 'Trigger (on state change)',
|
||||
'Class:TriggerOnStateChange+' => 'Trigger on object state change',
|
||||
'Class:TriggerOnStateChange/Attribute:state' => 'State',
|
||||
'Class:TriggerOnStateChange/Attribute:state+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: TriggerOnStateEnter
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:TriggerOnStateEnter' => 'Trigger (on entering a state)',
|
||||
'Class:TriggerOnStateEnter+' => 'Trigger on object state change - entering',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: TriggerOnStateLeave
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:TriggerOnStateLeave' => 'Trigger (on leaving a state)',
|
||||
'Class:TriggerOnStateLeave+' => 'Trigger on object state change - leaving',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: TriggerOnObjectCreate
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:TriggerOnObjectCreate' => 'Trigger (on object creation)',
|
||||
'Class:TriggerOnObjectCreate+' => 'Trigger on object creation of [a child class of] the given class',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkTriggerAction
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkTriggerAction' => 'Action/Trigger',
|
||||
'Class:lnkTriggerAction+' => 'Link between a trigger and an action',
|
||||
'Class:lnkTriggerAction/Attribute:action_id' => 'Action',
|
||||
'Class:lnkTriggerAction/Attribute:action_id+' => 'The action to be executed',
|
||||
'Class:lnkTriggerAction/Attribute:action_name' => 'Action',
|
||||
'Class:lnkTriggerAction/Attribute:action_name+' => '',
|
||||
'Class:lnkTriggerAction/Attribute:trigger_id' => 'Trigger',
|
||||
'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
|
||||
'Class:lnkTriggerAction/Attribute:trigger_name' => 'Trigger',
|
||||
'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
|
||||
'Class:lnkTriggerAction/Attribute:order' => 'Order',
|
||||
'Class:lnkTriggerAction/Attribute:order+' => 'Actions execution order',
|
||||
));
|
||||
|
||||
|
||||
?>
|
||||
887
dictionaries/it.dictionary.itop.ui.php
Normal file
887
dictionaries/it.dictionary.itop.ui.php
Normal file
@@ -0,0 +1,887 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'gui'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'application'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
//
|
||||
// Class: AuditCategory
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:AuditCategory' => 'Categoria di Audit',
|
||||
'Class:AuditCategory+' => 'Una sezione all\'interno dell\'audit globale',
|
||||
'Class:AuditCategory/Attribute:name' => 'Nome Categoria',
|
||||
'Class:AuditCategory/Attribute:name+' => 'Nome breve per questa categoria',
|
||||
'Class:AuditCategory/Attribute:description' => 'Descrizione Categoria Audit',
|
||||
'Class:AuditCategory/Attribute:description+' => 'Descrizione lunga per questa categoria di audit',
|
||||
'Class:AuditCategory/Attribute:definition_set' => 'Insieme di definizione',
|
||||
'Class:AuditCategory/Attribute:definition_set+' => 'OQL espressione che definisce l\'insieme di oggetti da controllare',
|
||||
'Class:AuditCategory/Attribute:rules_list' => 'Regole di Audit',
|
||||
'Class:AuditCategory/Attribute:rules_list+' => 'Regole di Audit per questa categoria',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: AuditRule
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:AuditRule' => 'Regole di Audit',
|
||||
'Class:AuditRule+' => 'Una regola per verificare una determinata categoria di audit',
|
||||
'Class:AuditRule/Attribute:name' => 'Rule Name',
|
||||
'Class:AuditRule/Attribute:name+' => 'Nome breve per questa regola',
|
||||
'Class:AuditRule/Attribute:description' => 'escrizione della regola di Audit',
|
||||
'Class:AuditRule/Attribute:description+' => 'Descrizione lunga per questa regola di audit',
|
||||
'Class:AuditRule/Attribute:query' => 'Query to Run',
|
||||
'Class:AuditRule/Attribute:query+' => 'L\'espressione OQL da richiedere',
|
||||
'Class:AuditRule/Attribute:valid_flag' => 'Oggetti Validi?',
|
||||
'Class:AuditRule/Attribute:valid_flag+' => 'Vero se la norma restituisce gli oggetti validi, falso altrimenti',
|
||||
'Class:AuditRule/Attribute:valid_flag/Value:true' => 'vero',
|
||||
'Class:AuditRule/Attribute:valid_flag/Value:true+' => 'vero',
|
||||
'Class:AuditRule/Attribute:valid_flag/Value:false' => 'falso',
|
||||
'Class:AuditRule/Attribute:valid_flag/Value:false+' => 'falso',
|
||||
'Class:AuditRule/Attribute:category_id' => 'Categoria',
|
||||
'Class:AuditRule/Attribute:category_id+' => 'La categoria per questa regola',
|
||||
'Class:AuditRule/Attribute:category_name' => 'Categoria',
|
||||
'Class:AuditRule/Attribute:category_name+' => 'Nome della categoria per questa regola',
|
||||
));
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'addon/userrights'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
//
|
||||
// Class: User
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:User' => 'Utente',
|
||||
'Class:User+' => 'Login Utente',
|
||||
'Class:User/Attribute:finalclass' => 'Tipo di account',
|
||||
'Class:User/Attribute:finalclass+' => '',
|
||||
'Class:User/Attribute:contactid' => 'Contatto (persona)',
|
||||
'Class:User/Attribute:contactid+' => 'I dati personali sulla base dei dati aziendali',
|
||||
'Class:User/Attribute:last_name' => 'Cognome',
|
||||
'Class:User/Attribute:last_name+' => 'Nome del contatto corrispondente',
|
||||
'Class:User/Attribute:first_name' => 'Nome',
|
||||
'Class:User/Attribute:first_name+' => 'Nome del contatto corrispondente',
|
||||
'Class:User/Attribute:email' => 'Email',
|
||||
'Class:User/Attribute:email+' => 'Email del contatto corrispondente',
|
||||
'Class:User/Attribute:login' => 'Login',
|
||||
'Class:User/Attribute:login+' => 'Stringa di identificazione dell\'utente',
|
||||
'Class:User/Attribute:language' => 'Lingua',
|
||||
'Class:User/Attribute:language+' => 'Lingua utente',
|
||||
'Class:User/Attribute:language/Value:IT IT' => 'Italian',
|
||||
'Class:User/Attribute:language/Value:IT IT+' => 'English (U.S.)',
|
||||
'Class:User/Attribute:language/Value:FR FR' => 'French',
|
||||
'Class:User/Attribute:language/Value:FR FR+' => 'French (France)',
|
||||
'Class:User/Attribute:profile_list' => 'Profili',
|
||||
'Class:User/Attribute:profile_list+' => 'Ruoli e concessioni dei diritti per la persona',
|
||||
'Class:User/Attribute:allowed_org_list' => 'Organizzazioni Consentite',
|
||||
'Class:User/Attribute:allowed_org_list+' => 'All\'utente finale è consentito di vedere i dati appartenenti alle seguenti organizzazioni. Se non si specifica organizzazione, non vi è alcuna restrizione.',
|
||||
|
||||
'Class:User/Error:LoginMustBeUnique' => 'Il login deve essere unico - "%1s" è già in uso.',
|
||||
'Class:User/Error:AtLeastOneProfileIsNeeded' => 'Almeno un profilo deve essere assegnato a questo utente.',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_Profiles
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_Profiles' => 'Profilo',
|
||||
'Class:URP_Profiles+' => 'Profilo Utente',
|
||||
'Class:URP_Profiles/Attribute:name' => 'Nome',
|
||||
'Class:URP_Profiles/Attribute:name+' => 'etichetta',
|
||||
'Class:URP_Profiles/Attribute:description' => 'Descrizione',
|
||||
'Class:URP_Profiles/Attribute:description+' => 'Una linea di descrizione',
|
||||
'Class:URP_Profiles/Attribute:user_list' => 'Utenti',
|
||||
'Class:URP_Profiles/Attribute:user_list+' => 'Persone che hanno questo ruolo',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_Dimensions
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_Dimensions' => 'Dimensione',
|
||||
'Class:URP_Dimensions+' => 'Dimensione dell\'aplicazione(silos definire)',
|
||||
'Class:URP_Dimensions/Attribute:name' => 'Nome',
|
||||
'Class:URP_Dimensions/Attribute:name+' => 'etichetta',
|
||||
'Class:URP_Dimensions/Attribute:description' => 'Descrizione',
|
||||
'Class:URP_Dimensions/Attribute:description+' => 'Una linea di descrizione',
|
||||
'Class:URP_Dimensions/Attribute:type' => 'Tipo',
|
||||
'Class:URP_Dimensions/Attribute:type+' => 'nome della classe o tipo di dati (unità di proiezione)',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_UserProfile
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_UserProfile' => 'Profilo utente',
|
||||
'Class:URP_UserProfile+' => 'Profilo utente',
|
||||
'Class:URP_UserProfile/Attribute:userid' => 'Utente',
|
||||
'Class:URP_UserProfile/Attribute:userid+' => 'Account utente',
|
||||
'Class:URP_UserProfile/Attribute:userlogin' => 'Login',
|
||||
'Class:URP_UserProfile/Attribute:userlogin+' => 'Login Utente',
|
||||
'Class:URP_UserProfile/Attribute:profileid' => 'Profilo',
|
||||
'Class:URP_UserProfile/Attribute:profileid+' => 'Profilo utente',
|
||||
'Class:URP_UserProfile/Attribute:profile' => 'Profilo',
|
||||
'Class:URP_UserProfile/Attribute:profile+' => 'Nome profilo',
|
||||
'Class:URP_UserProfile/Attribute:reason' => 'Motivo',
|
||||
'Class:URP_UserProfile/Attribute:reason+' => 'spiegare perché questa persona può avere questo ruolo',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_UserOrg
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_UserOrg' => 'Organizzazione dell\'utente',
|
||||
'Class:URP_UserOrg+' => 'Organizzazioni Consentite',
|
||||
'Class:URP_UserOrg/Attribute:userid' => 'Utente',
|
||||
'Class:URP_UserOrg/Attribute:userid+' => 'Account utente',
|
||||
'Class:URP_UserOrg/Attribute:userlogin' => 'Login',
|
||||
'Class:URP_UserOrg/Attribute:userlogin+' => 'Login utente',
|
||||
'Class:URP_UserOrg/Attribute:allowed_org_id' => 'Organizzazione',
|
||||
'Class:URP_UserOrg/Attribute:allowed_org_id+' => 'Organizzazioni Consentite',
|
||||
'Class:URP_UserOrg/Attribute:allowed_org_name' => 'Organizzazione',
|
||||
'Class:URP_UserOrg/Attribute:allowed_org_name+' => 'Organizzazioni Consentite',
|
||||
'Class:URP_UserOrg/Attribute:reason' => 'Motivo',
|
||||
'Class:URP_UserOrg/Attribute:reason+' => 'spiegare perché questa persona è consentito di vedere i dati appartenenti a questa organizzazione',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_ProfileProjection
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_ProfileProjection' => 'profile_projection',
|
||||
'Class:URP_ProfileProjection+' => 'profile projections',
|
||||
'Class:URP_ProfileProjection/Attribute:dimensionid' => 'Dimension',
|
||||
'Class:URP_ProfileProjection/Attribute:dimensionid+' => 'application dimension',
|
||||
'Class:URP_ProfileProjection/Attribute:dimension' => 'Dimension',
|
||||
'Class:URP_ProfileProjection/Attribute:dimension+' => 'application dimension',
|
||||
'Class:URP_ProfileProjection/Attribute:profileid' => 'Profile',
|
||||
'Class:URP_ProfileProjection/Attribute:profileid+' => 'usage profile',
|
||||
'Class:URP_ProfileProjection/Attribute:profile' => 'Profile',
|
||||
'Class:URP_ProfileProjection/Attribute:profile+' => 'Profile name',
|
||||
'Class:URP_ProfileProjection/Attribute:value' => 'Value expression',
|
||||
'Class:URP_ProfileProjection/Attribute:value+' => 'OQL expression (using $user) | constant | | +attribute code',
|
||||
'Class:URP_ProfileProjection/Attribute:attribute' => 'Attribute',
|
||||
'Class:URP_ProfileProjection/Attribute:attribute+' => 'Target attribute code (optional)',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_ClassProjection
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_ClassProjection' => 'class_projection',
|
||||
'Class:URP_ClassProjection+' => 'class projections',
|
||||
'Class:URP_ClassProjection/Attribute:dimensionid' => 'Dimension',
|
||||
'Class:URP_ClassProjection/Attribute:dimensionid+' => 'application dimension',
|
||||
'Class:URP_ClassProjection/Attribute:dimension' => 'Dimension',
|
||||
'Class:URP_ClassProjection/Attribute:dimension+' => 'application dimension',
|
||||
'Class:URP_ClassProjection/Attribute:class' => 'Class',
|
||||
'Class:URP_ClassProjection/Attribute:class+' => 'Target class',
|
||||
'Class:URP_ClassProjection/Attribute:value' => 'Value expression',
|
||||
'Class:URP_ClassProjection/Attribute:value+' => 'OQL expression (using $this) | constant | | +attribute code',
|
||||
'Class:URP_ClassProjection/Attribute:attribute' => 'Attribute',
|
||||
'Class:URP_ClassProjection/Attribute:attribute+' => 'Target attribute code (optional)',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_ActionGrant
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_ActionGrant' => 'action_permission',
|
||||
'Class:URP_ActionGrant+' => 'permissions on classes',
|
||||
'Class:URP_ActionGrant/Attribute:profileid' => 'Profile',
|
||||
'Class:URP_ActionGrant/Attribute:profileid+' => 'usage profile',
|
||||
'Class:URP_ActionGrant/Attribute:profile' => 'Profile',
|
||||
'Class:URP_ActionGrant/Attribute:profile+' => 'usage profile',
|
||||
'Class:URP_ActionGrant/Attribute:class' => 'Class',
|
||||
'Class:URP_ActionGrant/Attribute:class+' => 'Target class',
|
||||
'Class:URP_ActionGrant/Attribute:permission' => 'Permission',
|
||||
'Class:URP_ActionGrant/Attribute:permission+' => 'allowed or not allowed?',
|
||||
'Class:URP_ActionGrant/Attribute:permission/Value:yes' => 'yes',
|
||||
'Class:URP_ActionGrant/Attribute:permission/Value:yes+' => 'yes',
|
||||
'Class:URP_ActionGrant/Attribute:permission/Value:no' => 'no',
|
||||
'Class:URP_ActionGrant/Attribute:permission/Value:no+' => 'no',
|
||||
'Class:URP_ActionGrant/Attribute:action' => 'Action',
|
||||
'Class:URP_ActionGrant/Attribute:action+' => 'operations to perform on the given class',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_StimulusGrant
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_StimulusGrant' => 'stimulus_permission',
|
||||
'Class:URP_StimulusGrant+' => 'permissions on stimilus in the life cycle of the object',
|
||||
'Class:URP_StimulusGrant/Attribute:profileid' => 'Profile',
|
||||
'Class:URP_StimulusGrant/Attribute:profileid+' => 'usage profile',
|
||||
'Class:URP_StimulusGrant/Attribute:profile' => 'Profile',
|
||||
'Class:URP_StimulusGrant/Attribute:profile+' => 'usage profile',
|
||||
'Class:URP_StimulusGrant/Attribute:class' => 'Class',
|
||||
'Class:URP_StimulusGrant/Attribute:class+' => 'Target class',
|
||||
'Class:URP_StimulusGrant/Attribute:permission' => 'Permission',
|
||||
'Class:URP_StimulusGrant/Attribute:permission+' => 'allowed or not allowed?',
|
||||
'Class:URP_StimulusGrant/Attribute:permission/Value:yes' => 'yes',
|
||||
'Class:URP_StimulusGrant/Attribute:permission/Value:yes+' => 'yes',
|
||||
'Class:URP_StimulusGrant/Attribute:permission/Value:no' => 'no',
|
||||
'Class:URP_StimulusGrant/Attribute:permission/Value:no+' => 'no',
|
||||
'Class:URP_StimulusGrant/Attribute:stimulus' => 'Stimulus',
|
||||
'Class:URP_StimulusGrant/Attribute:stimulus+' => 'stimulus code',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: URP_AttributeGrant
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:URP_AttributeGrant' => 'attribute_permission',
|
||||
'Class:URP_AttributeGrant+' => 'permissions at the attributes level',
|
||||
'Class:URP_AttributeGrant/Attribute:actiongrantid' => 'Action grant',
|
||||
'Class:URP_AttributeGrant/Attribute:actiongrantid+' => 'action grant',
|
||||
'Class:URP_AttributeGrant/Attribute:attcode' => 'Attribute',
|
||||
'Class:URP_AttributeGrant/Attribute:attcode+' => 'attribute code',
|
||||
));
|
||||
|
||||
//
|
||||
// String from the User Interface: menu, messages, buttons, etc...
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Menu:WelcomeMenu' => 'Benvenuto',
|
||||
'Menu:WelcomeMenu+' => 'Benvenuto su iTop',
|
||||
'Menu:WelcomeMenuPage' => 'Benvenuto',
|
||||
'Menu:WelcomeMenuPage+' => 'Benvenuto su iTop',
|
||||
'UI:WelcomeMenu:Title' => 'Benvenuto su iTop',
|
||||
|
||||
'UI:WelcomeMenu:LeftBlock' => '<p>iTop è un completo Portale Funzionale IT, Open Source.</p>
|
||||
<ul>Esso include:
|
||||
<li>Un completo CMDB (Configuration management database) per documentare e gestire l\'IT di inventario.</li>
|
||||
<li>Un modulo di gestione degli incidenti per monitorare e comunicare su tutte le questioni che si verificano nel settore IT.</li>
|
||||
<li>Un modulo di gestione delle modifiche per pianificare e monitorare i cambiamenti all\'ambiente IT.</li>
|
||||
<li>Una banca dati errori noti per accelerare la risoluzione di incidenti.</li>
|
||||
<li>Un modulo di interruzione per documentare tutte le interruzioni pianificate e notificare gli opportuni contatti.</li>
|
||||
<li>Una dashboard per ottenere rapidamente una panoramica del sistema IT.</li>
|
||||
</ul>
|
||||
<p>Tutti i moduli possono essere installati, passo dopo passo, indipendentemente l\'uno dall\'altro.</p>',
|
||||
|
||||
'UI:WelcomeMenu:RightBlock' => '<p>iTop è fornitore di servizi di orientamento, che consente ai progettisti di gestire più o organizzazioni o clienti con facilità .
|
||||
<ul>iTop, offre un set ricco di funzionalità dei processi di business che:
|
||||
<li>Migliora l\'efficacia di gestione IT</li>
|
||||
<li>Guida le prestazione delle operazioni IT</li>
|
||||
<li>Migliora la soddisfazione del cliente e fornisce ai dirigenti un idea della performance del business.</li>
|
||||
</ul>
|
||||
</p>
|
||||
<p>iTop è completamente aperto per essere integrato all\'interno della vostra infrastruttura di gestione dell\'IT.</p>
|
||||
<p>
|
||||
<ul>L\'adozione di questa nuova generazione di portale funzionale IT vi aiuterà a:
|
||||
<li>Meglio gestire un ambiente IT sempre più complesso.</li>
|
||||
<li>Implementare i processi ITIL al proprio ritmo.</li>
|
||||
<li>Gestire la risorsa più importante della tua IT: Documentazione.</li>
|
||||
</ul>
|
||||
</p>',
|
||||
'UI:WelcomeMenu:AllOpenRequests' => 'Aprire le richieste: %1$d',
|
||||
'UI:WelcomeMenu:MyCalls' => 'Le mie richieste',
|
||||
'UI:WelcomeMenu:OpenIncidents' => 'Apri gli incidenti: %1$d',
|
||||
'UI:WelcomeMenu:AllConfigItems' => 'Configuration Items: %1$d',
|
||||
'UI:WelcomeMenu:MyIncidents' => 'Incidenti assegnati a me',
|
||||
'UI:AllOrganizations' => ' Tutte le Organizzazioni ',
|
||||
'UI:YourSearch' => 'La tua ricerca',
|
||||
'UI:LoggedAsMessage' => 'Logged come %1$s',
|
||||
'UI:LoggedAsMessage+Admin' => 'Logged come %1$s (Administrator)',
|
||||
'UI:Button:Logoff' => 'Log off',
|
||||
'UI:Button:GlobalSearch' => 'Ricerca',
|
||||
'UI:Button:Search' => ' Ricerca ',
|
||||
'UI:Button:Query' => ' Domanda ',
|
||||
'UI:Button:Ok' => 'Ok',
|
||||
'UI:Button:Cancel' => 'Cancella',
|
||||
'UI:Button:Apply' => 'Applica',
|
||||
'UI:Button:Back' => ' << Indietro',
|
||||
'UI:Button:Restart' => ' |<< Riavviare ',
|
||||
'UI:Button:Next' => ' Prossimo >> ',
|
||||
'UI:Button:Finish' => ' Fine ',
|
||||
'UI:Button:DoImport' => ' Eseguire le importazioni ! ',
|
||||
'UI:Button:Done' => ' Fatto ',
|
||||
'UI:Button:SimulateImport' => ' Simulare l\'Importazione ',
|
||||
'UI:Button:Test' => 'Test!',
|
||||
'UI:Button:Evaluate' => ' Valuta ',
|
||||
'UI:Button:AddObject' => ' Aggiungi... ',
|
||||
'UI:Button:BrowseObjects' => ' Sfoglia... ',
|
||||
'UI:Button:Add' => ' Aggiungi ',
|
||||
'UI:Button:AddToList' => ' << Aggiungi ',
|
||||
'UI:Button:RemoveFromList' => ' Rimuovi>> ',
|
||||
'UI:Button:FilterList' => ' Filtra... ',
|
||||
'UI:Button:Create' => ' Crea ',
|
||||
'UI:Button:Delete' => ' Cancella! ',
|
||||
'UI:Button:ChangePassword' => ' Cambia Password ',
|
||||
'UI:Button:ResetPassword' => ' Azzera Password ',
|
||||
|
||||
'UI:SearchToggle' => 'Cerca',
|
||||
'UI:ClickToCreateNew' => 'Crea un nuovo %1$s',
|
||||
'UI:SearchFor_Class' => 'Ricerca l\'oggetto %1$s',
|
||||
'UI:NoObjectToDisplay' => 'Nessun oggetto da mostrare.',
|
||||
'UI:Error:MandatoryTemplateParameter_object_id' => 'Object_id parametro è obbligatorio quando link_attr è specificato. Verificare la definizione del modello di display..',
|
||||
'UI:Error:MandatoryTemplateParameter_target_attr' => 'Target_attr parametro è obbligatorio quando link_attr è specificato. Verificare la definizione del modello di display.',
|
||||
'UI:Error:MandatoryTemplateParameter_group_by' => 'Il parametro è group_by obbligatoria. Verificare la definizione del modello di display.',
|
||||
'UI:Error:InvalidGroupByFields' => 'Elenco di campi non valido per il raggruppamento: "%1$s".',
|
||||
'UI:Error:UnsupportedStyleOfBlock' => 'Errore: Stile non supportato di blocco: "%1$s".',
|
||||
'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'Errata definizione di link: la classe di oggetti da gestire: %1$s wnon è stato trovato come chiave esterna nella classe %2$s',
|
||||
'UI:Error:Object_Class_Id_NotFound' => 'Oggetto: %1$s:%2$d non trovato.',
|
||||
'UI:Error:WizardCircularReferenceInDependencies' => 'Errore: Riferimento circolare nelle dipendenze tra i campi, controllare il modello di dati.',
|
||||
'UI:Error:UploadedFileTooBig' => 'Il file caricato è troppo grande. (dimensione massima consentita è di %1$s). Verificare di configurazione di PHP per upload_max_filesize e post_max_size.',
|
||||
'UI:Error:UploadedFileTruncated.' => 'Il file caricato è stata troncato !',
|
||||
'UI:Error:NoTmpDir' => 'La directory temporanea non è definita.',
|
||||
'UI:Error:CannotWriteToTmp_Dir' => 'Impossibile scrivere il file temporaneo sul disco. upload_tmp_dir = "%1$s".',
|
||||
'UI:Error:UploadStoppedByExtension_FileName' => 'Caricamento fermato per estensione. (Nome del file originale = "%1$s").',
|
||||
'UI:Error:UploadFailedUnknownCause_Code' => 'Il caricamento del file non riuscito, causa sconosciuta. (Codice errore = "%1$s").',
|
||||
|
||||
'UI:Error:1ParametersMissing' => 'Errore: il seguente parametro deve essere specificato per questa operazione: %1$s.',
|
||||
'UI:Error:2ParametersMissing' => 'Errore: i seguenti parametri devono essere specificati per questa operazione: %1$s e %2$s.',
|
||||
'UI:Error:3ParametersMissing' => 'Errore: i seguenti parametri devono essere specificati per questa operazione: %1$s, %2$s e %3$s.',
|
||||
'UI:Error:4ParametersMissing' => 'Errore: i seguenti parametri devono essere specificati per questa operazione: %1$s, %2$s, %3$s e %4$s.',
|
||||
'UI:Error:IncorrectOQLQuery_Message' => 'Errore: errata OQL query: %1$s',
|
||||
'UI:Error:AnErrorOccuredWhileRunningTheQuery_Message' => 'Si è verificato un errore durante l\'esecuzione della query: %1$s',
|
||||
'UI:Error:ObjectAlreadyUpdated' => 'Errore: l\'oggetto è già stato aggiornato.',
|
||||
'UI:Error:ObjectCannotBeUpdated' => 'Errore: oggetto non può essere aggiornato.',
|
||||
'UI:Error:ObjectsAlreadyDeleted' => 'Errore: gli oggetti sono già stati eliminati!',
|
||||
'UI:Error:BulkDeleteNotAllowedOn_Class' => 'Non hai i permessi per eseguire una eliminazione collettiva degli oggetti della classe %1$s',
|
||||
'UI:Error:DeleteNotAllowedOn_Class' => 'Non ti è permesso di eliminare gli oggetti della classe %1$s',
|
||||
'UI:Error:BulkModifyNotAllowedOn_Class' => 'Non hai i permessi per eseguire un aggiornamento collettivo degli oggetti della classe %1$s',
|
||||
'UI:Error:ObjectAlreadyCloned' => 'Errore: l\'oggetto è già stato clonato!',
|
||||
'UI:Error:ObjectAlreadyCreated' => 'Errore: l\'oggetto è già stato creato!',
|
||||
'UI:Error:Invalid_Stimulus_On_Object_In_State' => 'Errore: stimolo non valido "%1$s" su un oggetto %2$s nello stato "%3$s".',
|
||||
|
||||
|
||||
'UI:GroupBy:Count' => 'Conteggio',
|
||||
'UI:GroupBy:Count+' => 'Numero di elementi',
|
||||
'UI:CountOfObjects' => '%1$d oggetti corrispondenti ai criteri.',
|
||||
'UI_CountOfObjectsShort' => '%1$d oggetti.',
|
||||
'UI:NoObject_Class_ToDisplay' => 'No %1$s da visualizzare',
|
||||
'UI:History:LastModified_On_By' => 'Ultima modifica %1$s da %2$s.',
|
||||
'UI:HistoryTab' => 'Storia',
|
||||
'UI:NotificationsTab' => 'Notifiche',
|
||||
'UI:History:BulkImports' => 'Storia',
|
||||
'UI:History:BulkImports+' => 'Elenco delle importazioni CSV (primo ultimo)',
|
||||
'UI:History:BulkImportDetails' => 'Modifiche derivanti dai importazione CSV eseguita su %1$s (da %2$s)',
|
||||
'UI:History:Date' => 'Data',
|
||||
'UI:History:Date+' => 'Data del cambiamento',
|
||||
'UI:History:User' => 'Utente',
|
||||
'UI:History:User+' => 'Utente che ha effettuato la modifica',
|
||||
'UI:History:Changes' => 'Cambiamenti',
|
||||
'UI:History:Changes+' => 'Cambiamenti apportate all\'oggetto',
|
||||
'UI:History:StatsCreations' => 'Creato',
|
||||
'UI:History:StatsCreations+' => 'Conteggi degli oggetti creati',
|
||||
'UI:History:StatsModifs' => 'Modificato',
|
||||
'UI:History:StatsModifs+' => 'Conteggi degli oggetti modificati',
|
||||
'UI:History:StatsDeletes' => 'Cancellati',
|
||||
'UI:History:StatsDeletes+' => 'Conteggi degli oggetti cancellati',
|
||||
'UI:Loading' => 'Caricamento...',
|
||||
'UI:Menu:Actions' => 'Azioni',
|
||||
'UI:Menu:New' => 'Nuovo...',
|
||||
'UI:Menu:Add' => 'Aggiungi...',
|
||||
'UI:Menu:Manage' => 'Gestisti...',
|
||||
'UI:Menu:EMail' => 'eMail',
|
||||
'UI:Menu:CSVExport' => 'CSV Export',
|
||||
'UI:Menu:Modify' => 'Modifica...',
|
||||
'UI:Menu:Delete' => 'Cancella...',
|
||||
'UI:Menu:Manage' => 'Gestisci...',
|
||||
'UI:Menu:BulkDelete' => 'Cancella..',
|
||||
'UI:UndefinedObject' => 'indefinito',
|
||||
'UI:Document:OpenInNewWindow:Download' => 'Apri in una nuova finestra: %1$s, Scarica: %2$s',
|
||||
'UI:SelectAllToggle+' => 'Seleziona / Deseleziona Tutto',
|
||||
'UI:TruncatedResults' => '%1$d oggetti visualizzati su %2$d',
|
||||
'UI:DisplayAll' => 'Mostra tutto',
|
||||
'UI:CollapseList' => 'Collapse',
|
||||
'UI:CountOfResults' => '%1$d oggetto(i)',
|
||||
'UI:ChangesLogTitle' => 'Log dei cambiamenti (%1$d):',
|
||||
'UI:EmptyChangesLogTitle' => 'Log dei cambiamenti è vuoto',
|
||||
'UI:SearchFor_Class_Objects' => 'Ricerca per %1$s Oggetti',
|
||||
'UI:OQLQueryBuilderTitle' => 'OQL Query Builder',
|
||||
'UI:OQLQueryTab' => 'OQL Query',
|
||||
'UI:SimpleSearchTab' => 'Ricerca semplice',
|
||||
'UI:Details+' => 'Dettagli',
|
||||
'UI:SearchValue:Any' => '* Qualsiasi *',
|
||||
'UI:SearchValue:Mixed' => '* misti *',
|
||||
'UI:SelectOne' => '-- selezionare una --',
|
||||
'UI:Login:Welcome' => 'Benvenuti su iTop!',
|
||||
'UI:Login:IncorrectLoginPassword' => 'Errato login/password, si prega di riprovare.',
|
||||
'UI:Login:IdentifyYourself' => 'Identificare te stesso prima di continuare',
|
||||
'UI:Login:UserNamePrompt' => 'Nome Utente',
|
||||
'UI:Login:PasswordPrompt' => 'Password',
|
||||
'UI:Login:ChangeYourPassword' => 'Cambia la tua password',
|
||||
'UI:Login:OldPasswordPrompt' => 'Vecchia password',
|
||||
'UI:Login:NewPasswordPrompt' => 'Nuova password',
|
||||
'UI:Login:RetypeNewPasswordPrompt' => 'Riscrivi la nuova password',
|
||||
'UI:Login:IncorrectOldPassword' => 'Errore: la vecchia password non è corretta',
|
||||
'UI:LogOffMenu' => 'Log off',
|
||||
'UI:LogOff:ThankYou' => 'Grazie per aver scelto iTop',
|
||||
'UI:LogOff:ClickHereToLoginAgain' => 'Clicca qui per effettuare il login di nuovo...',
|
||||
'UI:ChangePwdMenu' => 'Cambia Password...',
|
||||
'UI:AccessRO-All' => 'iTop è di sola lettura',
|
||||
'UI:AccessRO-Users' => 'iTop è di sola lettura per gli utenti finali',
|
||||
'UI:Login:RetypePwdDoesNotMatch' => 'Nuova password e la nuova password digitata nuovamente non corrispondono !',
|
||||
'UI:Button:Login' => 'Entra iTop',
|
||||
'UI:Login:Error:AccessRestricted' => 'L\'accesso iTop è limitato. Si prega di contattare un amministratore iTop.',
|
||||
'UI:Login:Error:AccessAdmin' => 'Accesso limitato alle persone che hanno privilegi di amministratore. Si prega di contattare un amministratore iTop.',
|
||||
'UI:CSVImport:MappingSelectOne' => '-- selezionare una --',
|
||||
'UI:CSVImport:MappingNotApplicable' => '-- ignora questo campo --',
|
||||
'UI:CSVImport:NoData' => 'Insieme di dati vuoto ..., si prega di fornire alcuni dati!',
|
||||
'UI:Title:DataPreview' => 'Anteprima dati',
|
||||
'UI:CSVImport:ErrorOnlyOneColumn' => 'Errore: I dati contengono solo una colonna. Avete selezionare il carattere separatore appropriato?',
|
||||
'UI:CSVImport:FieldName' => 'Campo %1$d',
|
||||
'UI:CSVImport:DataLine1' => 'Dati Linea 1',
|
||||
'UI:CSVImport:DataLine2' => 'Dati Linea 2',
|
||||
'UI:CSVImport:idField' => 'id (Chiave Primaria)',
|
||||
'UI:Title:BulkImport' => 'iTop - importazione collettiva',
|
||||
'UI:Title:BulkImport+' => 'CSV Import Wizard',
|
||||
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Sincronizzazione di %1$d oggetti della classe %2$s',
|
||||
'UI:CSVImport:ClassesSelectOne' => '-- selezionare una --',
|
||||
'UI:CSVImport:ErrorExtendedAttCode' => 'Errore interno: "%1$s" è un codice errato, perché "%2$s" NON è una chiave esterna della classe "%3$s"',
|
||||
'UI:CSVImport:ObjectsWillStayUnchanged' => '%1$d oggetto(i) rimarrà invariato.',
|
||||
'UI:CSVImport:ObjectsWillBeModified' => '%1$d oggetto(i) sarà modificato.',
|
||||
'UI:CSVImport:ObjectsWillBeAdded' => '%1$d oggetto(i) sarà aggiunto.',
|
||||
'UI:CSVImport:ObjectsWillHaveErrors' => '%1$d oggetto(i) avranno i errori.',
|
||||
'UI:CSVImport:ObjectsRemainedUnchanged' => '%1$d oggetto(i) è rimasto invariato.',
|
||||
'UI:CSVImport:ObjectsWereModified' => '%1$d oggetto(i) sono stati modificati.',
|
||||
'UI:CSVImport:ObjectsWereAdded' => '%1$d oggetto(i) sono stati aggiunti.',
|
||||
'UI:CSVImport:ObjectsHadErrors' => '%1$d oggetto(i) hanno avuto errori.',
|
||||
'UI:Title:CSVImportStep2' => 'Step 2 of 5: opzioni dati CVS',
|
||||
'UI:Title:CSVImportStep3' => 'Step 3 of 5: Mappatura dei dati',
|
||||
'UI:Title:CSVImportStep4' => 'Step 4 of 5: Importa simulazione',
|
||||
'UI:Title:CSVImportStep5' => 'Step 5 of 5: Importazione completata',
|
||||
'UI:CSVImport:LinesNotImported' => 'Linee che non possono essere caricate:',
|
||||
'UI:CSVImport:LinesNotImported+' => 'Le righe che seguono non sono state importate in quanto contengono errori',
|
||||
'UI:CSVImport:SeparatorComma+' => ', (comma)',
|
||||
'UI:CSVImport:SeparatorSemicolon+' => '; (semicolon)',
|
||||
'UI:CSVImport:SeparatorTab+' => 'tab',
|
||||
'UI:CSVImport:SeparatorOther' => 'altri:',
|
||||
'UI:CSVImport:QualifierDoubleQuote+' => '" (double quote)',
|
||||
'UI:CSVImport:QualifierSimpleQuote+' => '\' (simple quote)',
|
||||
'UI:CSVImport:QualifierOther' => 'altri:',
|
||||
'UI:CSVImport:TreatFirstLineAsHeader' => 'Trattare la prima riga come intestazione (nomi di colonna)',
|
||||
'UI:CSVImport:Skip_N_LinesAtTheBeginning' => 'Saltare le linee %1$s all\'inzio del file',
|
||||
'UI:CSVImport:CSVDataPreview' => 'CSV Anteprima dei dati',
|
||||
'UI:CSVImport:SelectFile' => 'Selezionare il file da importare:',
|
||||
'UI:CSVImport:Tab:LoadFromFile' => 'Carica da un file',
|
||||
'UI:CSVImport:Tab:CopyPaste' => 'Copiare e incollare dati',
|
||||
'UI:CSVImport:Tab:Templates' => 'Modelli',
|
||||
'UI:CSVImport:PasteData' => 'Incollare i dati da importare:',
|
||||
'UI:CSVImport:PickClassForTemplate' => 'Scegli il modello da scaricare: ',
|
||||
'UI:CSVImport:SeparatorCharacter' => 'Separatore di carattere:',
|
||||
'UI:CSVImport:TextQualifierCharacter' => 'Testo di qualificazione carattere',
|
||||
'UI:CSVImport:CommentsAndHeader' => 'Commenti e intestazione',
|
||||
'UI:CSVImport:SelectClass' => 'Selezionare la classe da importare:',
|
||||
'UI:CSVImport:AdvancedMode' => 'Modalità avanzata',
|
||||
'UI:CSVImport:AdvancedMode+' => 'In modalità avanzata l\'"id" (chiave primaria) degli oggetti può essere utilizzata per aggiornare e rinominare gli oggetti.' .
|
||||
'Tuttavia il "id" colonna (se presente) può essere usato solo come criterio di ricerca e non può essere combinato con qualsiasi altro criterio di ricerca.',
|
||||
'UI:CSVImport:SelectAClassFirst' => 'Per configurare il mapping, selezionare prima una classe.',
|
||||
'UI:CSVImport:HeaderFields' => 'Campi',
|
||||
'UI:CSVImport:HeaderMappings' => 'Mapping',
|
||||
'UI:CSVImport:HeaderSearch' => 'Ricerca?',
|
||||
'UI:CSVImport:AlertIncompleteMapping' => 'Per favovore selezionare una mappatura per ogni campo.',
|
||||
'UI:CSVImport:AlertNoSearchCriteria' => 'Per favore seleziona almeno un criterio di ricerca',
|
||||
'UI:CSVImport:Encoding' => 'Codifica dei caratteri',
|
||||
'UI:UniversalSearchTitle' => 'iTop - Ricerca Universale',
|
||||
'UI:UniversalSearch:Error' => 'Errore: %1$s',
|
||||
'UI:UniversalSearch:LabelSelectTheClass' => 'Selezionare la classe per la ricerca: ',
|
||||
|
||||
'UI:Audit:Title' => 'iTop - CMDB Audit',
|
||||
'UI:Audit:InteractiveAudit' => 'Audit Interattivo',
|
||||
'UI:Audit:HeaderAuditRule' => 'Regole di Audit',
|
||||
'UI:Audit:HeaderNbObjects' => '# Ogetti',
|
||||
'UI:Audit:HeaderNbErrors' => '# Errori',
|
||||
'UI:Audit:PercentageOk' => '% Ok',
|
||||
|
||||
'UI:RunQuery:Title' => 'iTop - Valutazione Query OQL',
|
||||
'UI:RunQuery:QueryExamples' => 'Esempi di Query',
|
||||
'UI:RunQuery:HeaderPurpose' => 'Scopo',
|
||||
'UI:RunQuery:HeaderPurpose+' => 'Spiegazione sulla query',
|
||||
'UI:RunQuery:HeaderOQLExpression' => 'Espressioni OQL',
|
||||
'UI:RunQuery:HeaderOQLExpression+' => 'La query nella sintassi OQL',
|
||||
'UI:RunQuery:ExpressionToEvaluate' => 'Espressione da valutare: ',
|
||||
'UI:RunQuery:MoreInfo' => 'Maggiori informazioni sulla query: ',
|
||||
'UI:RunQuery:DevelopedQuery' => 'Espressione della query riqualificata:',
|
||||
'UI:RunQuery:SerializedFilter' => 'Filtro pubblicato: ',
|
||||
'UI:RunQuery:Error' => 'Si è verificato un errore durante l\'esecuzione della query: %1$s',
|
||||
|
||||
'UI:Schema:Title' => 'iTop schema degli oggetti',
|
||||
'UI:Schema:CategoryMenuItem' => 'Categoria <b>%1$s</b>',
|
||||
'UI:Schema:Relationships' => 'Relazioni',
|
||||
'UI:Schema:AbstractClass' => 'Classe astratta: nessun oggetto da questa classe può essere istanziato.',
|
||||
'UI:Schema:NonAbstractClass' => 'Non classe astratta: oggetti da questa classe possono essere istanziati.',
|
||||
'UI:Schema:ClassHierarchyTitle' => 'Gerarchia delle classi',
|
||||
'UI:Schema:AllClasses' => 'Tutte le classi',
|
||||
'UI:Schema:ExternalKey_To' => 'Chiave esterna %1$s',
|
||||
'UI:Schema:Columns_Description' => 'Colonne: <em>%1$s</em>',
|
||||
'UI:Schema:Default_Description' => 'Default: "%1$s"',
|
||||
'UI:Schema:NullAllowed' => 'Null consentito',
|
||||
'UI:Schema:NullNotAllowed' => 'Null NON consentito',
|
||||
'UI:Schema:Attributes' => 'Attributi',
|
||||
'UI:Schema:AttributeCode' => 'Codice attributo',
|
||||
'UI:Schema:AttributeCode+' => 'Codice interno di un attributo',
|
||||
'UI:Schema:Label' => 'Etichetta',
|
||||
'UI:Schema:Label+' => 'Etichetta dell\'attributo',
|
||||
'UI:Schema:Type' => 'Tipo',
|
||||
|
||||
'UI:Schema:Type+' => 'Il tipo di dati dell\'attributo',
|
||||
'UI:Schema:Origin' => 'Origine',
|
||||
'UI:Schema:Origin+' => 'La classe base in cui è definito l\'attributo',
|
||||
'UI:Schema:Description' => 'Descrizione',
|
||||
'UI:Schema:Description+' => 'Descrizione del attributo',
|
||||
'UI:Schema:AllowedValues' => 'Valori consentiti',
|
||||
'UI:Schema:AllowedValues+' => 'Restrizioni per i valori possibili per questo attributo',
|
||||
'UI:Schema:MoreInfo' => 'Maggiori informazioni',
|
||||
'UI:Schema:MoreInfo+' => 'Maggiori informazioni sul campo definito nel database',
|
||||
'UI:Schema:SearchCriteria' => 'Criteri di ricerca',
|
||||
'UI:Schema:FilterCode' => 'Codice di filtro',
|
||||
'UI:Schema:FilterCode+' => 'Codice di questi criteri di ricerca',
|
||||
'UI:Schema:FilterDescription' => 'Descrizione',
|
||||
'UI:Schema:FilterDescription+' => 'Descrizione di questo criterio di ricerca',
|
||||
'UI:Schema:AvailOperators' => 'Operatori disponibili',
|
||||
'UI:Schema:AvailOperators+' => 'Operatori possibili per questo criterio di ricerca',
|
||||
'UI:Schema:ChildClasses' => 'Classi figlio',
|
||||
'UI:Schema:ReferencingClasses' => 'Classi di rifermento',
|
||||
'UI:Schema:RelatedClasses' => 'Classi correlate',
|
||||
'UI:Schema:LifeCycle' => 'Ciclo di vita',
|
||||
'UI:Schema:Triggers' => 'Triggers',
|
||||
'UI:Schema:Relation_Code_Description' => 'Relazione <em>%1$s</em> (%2$s)',
|
||||
'UI:Schema:RelationDown_Description' => 'Giù: %1$s',
|
||||
'UI:Schema:RelationUp_Description' => 'Su: %1$s',
|
||||
'UI:Schema:RelationPropagates' => '%1$s: propagato al livello %2$d, query: %3$s',
|
||||
'UI:Schema:RelationDoesNotPropagate' => '%1$s: non si propaga a (%2$d livelli), query: %3$s',
|
||||
'UI:Schema:Class_ReferencingClasses_From_By' => '%1$s fa riferimento la classe %2$s tramite il campo %3$s',
|
||||
'UI:Schema:Class_IsLinkedTo_Class_Via_ClassAndAttribute' => '%1$s è legata alla %2$s via %3$s::<em>%4$s</em>',
|
||||
'UI:Schema:Links:1-n' => 'Classi che puntano a %1$s (1:n links):',
|
||||
'UI:Schema:Links:n-n' => 'Classi legati alla %1$s (n:n links):',
|
||||
'UI:Schema:Links:All' => 'Grafico di tutte le classi correlate',
|
||||
'UI:Schema:NoLifeCyle' => 'Non vi è alcun ciclo di vita definito per questa classe.',
|
||||
'UI:Schema:LifeCycleTransitions' => 'Transizioni',
|
||||
'UI:Schema:LifeCyleAttributeOptions' => 'Opzioni per l\'attributo',
|
||||
'UI:Schema:LifeCycleHiddenAttribute' => 'Nascosto',
|
||||
'UI:Schema:LifeCycleReadOnlyAttribute' => 'Di sola lettura',
|
||||
'UI:Schema:LifeCycleMandatoryAttribute' => 'Obbigatorio',
|
||||
'UI:Schema:LifeCycleAttributeMustChange' => 'Deve cambiare',
|
||||
'UI:Schema:LifeCycleAttributeMustPrompt' => 'All\'utente verrà richiesto di modificare il valore',
|
||||
'UI:Schema:LifeCycleEmptyList' => 'lista vuota',
|
||||
|
||||
'UI:LinksWidget:Autocomplete+' => 'Digitare i primi 3 caratteri...',
|
||||
'UI:Combo:SelectValue' => '--- selezionare un valore ---',
|
||||
'UI:Label:SelectedObjects' => 'oggetti selezionati: ',
|
||||
'UI:Label:AvailableObjects' => 'Oggetti disponibili: ',
|
||||
'UI:Link_Class_Attributes' => '%1$s attributi',
|
||||
'UI:SelectAllToggle+' => 'Seleziona Tutti / Deseleziona Tutti',
|
||||
'UI:AddObjectsOf_Class_LinkedWith_Class_Instance' => 'Aggiungi l\'oggeto %1$s collegato con %2$s: %3$s',
|
||||
'UI:AddObjectsOf_Class_LinkedWith_Class' => 'Aggiungi l\'oggeto %1$s al collegamento con %2$s',
|
||||
'UI:ManageObjectsOf_Class_LinkedWith_Class_Instance' => 'Gestisci l\'oggetto %1$s collegato con %2$s: %3$s',
|
||||
'UI:AddLinkedObjectsOf_Class' => 'Aggiungi %1$s...',
|
||||
'UI:RemoveLinkedObjectsOf_Class' => 'Rimuovi gli oggetti selezionati',
|
||||
'UI:Message:EmptyList:UseAdd' => 'La lista è vuota, utilizzare il pulsante "Aggiungi ..." per aggiungere elementi.',
|
||||
'UI:Message:EmptyList:UseSearchForm' => 'Utilizza il modulo di ricerca qui sopra per cercare oggetti da aggiungere.',
|
||||
|
||||
'UI:Wizard:FinalStepTitle' => 'Passo finale: la conferma',
|
||||
'UI:Title:DeletionOf_Object' => 'Soppressione di %1$s',
|
||||
'UI:Title:BulkDeletionOf_Count_ObjectsOf_Class' => 'Cancellazione collettiva di %1$d oggetti della classe %2$s',
|
||||
'UI:Delete:NotAllowedToDelete' => 'Non ti è permesso di eliminare l\'oggetto',
|
||||
'UI:Delete:NotAllowedToUpdate_Fields' => 'Non hai i permessi per aggiornare il seguente campo(i): %1$s',
|
||||
'UI:Error:NotEnoughRightsToDelete' => 'Questo oggetto non può essere cancellato perché l\'utente corrente non dispone dei diritti necessari',
|
||||
'UI:Error:CannotDeleteBecauseOfDepencies' => 'Questo oggetto non può essere cancellato perché alcune operazioni manuali devono essere effettuate prima di questo',
|
||||
'UI:Archive_User_OnBehalfOf_User' => '%1$s a nome di %2$s',
|
||||
'UI:Delete:AutomaticallyDeleted' => 'automaticamente eliminato',
|
||||
'UI:Delete:AutomaticResetOf_Fields' => 'ripristino automatico del campo(i): %1$s',
|
||||
'UI:Delete:CleaningUpRefencesTo_Object' => 'Pulizia di tutti i riferimenti a %1$s...',
|
||||
'UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class' => 'Pulizia tutti i riferimenti a %1$d oggetti di classe %2$s...',
|
||||
'UI:Delete:Done+' => 'Cosa è stato fatto...',
|
||||
'UI:Delete:_Name_Class_Deleted' => '%1$s - %2$s cancellato.',
|
||||
'UI:Delete:ConfirmDeletionOf_Name' => 'Soppressione di %1$s',
|
||||
'UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class' => 'Soppressione di %1$d oggetti di classe %2$s',
|
||||
'UI:Delete:ShouldBeDeletedAtomaticallyButNotAllowed' => 'Dovrebbe essere eliminato automaticamente, ma non sei autorizzato a farlo',
|
||||
'UI:Delete:MustBeDeletedManuallyButNotAllowed' => 'Devono essere eliminati manualmente - ma non ti è permesso di eliminare l\'oggetto, si prega di contattare l\'amministratore dell\'applicazione',
|
||||
'UI:Delete:WillBeDeletedAutomatically' => 'Verranno automaticamente cancellati',
|
||||
'UI:Delete:MustBeDeletedManually' => 'Devono essere eliminati manualmente',
|
||||
'UI:Delete:CannotUpdateBecause_Issue' => 'Dovrebbero essere automaticamente aggiornati, ma %1$s',
|
||||
'UI:Delete:WillAutomaticallyUpdate_Fields' => 'sarà automaticamente aggiornato (reset: %1$s)',
|
||||
'UI:Delete:Count_Objects/LinksReferencing_Object' => '%1$d oggetti/link fanno riferimento %2$s',
|
||||
'UI:Delete:Count_Objects/LinksReferencingTheObjects' => '%1$d oggetti / link fanno riferimento alcuni degli oggetti da eliminare',
|
||||
'UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity' => 'Per garantire l\'integrità del database, ogni riferimento dovrebbe essere ulteriormente eliminato',
|
||||
'UI:Delete:Consequence+' => 'Cosa sarà fatto',
|
||||
'UI:Delete:SorryDeletionNotAllowed' => 'Spiacenti, non sei autorizzato a cancellare questo oggetto, vedere le spiegazioni di cui sopra',
|
||||
'UI:Delete:PleaseDoTheManualOperations' => 'Si prega di eseguire le operazioni manuali di cui sopra prima di richiedere la cancellazione di questo oggetto',
|
||||
'UI:Delect:Confirm_Object' => 'Si prega di confermare che si desidera eliminare %1$s.',
|
||||
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Si prega di confermare che si desidera eliminare i seguenti oggetti %1$d della classe %2$s.',
|
||||
'UI:WelcomeToITop' => 'Benvenuto su iTop',
|
||||
'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s dettagli',
|
||||
'UI:ErrorPageTitle' => 'iTop - Errore',
|
||||
'UI:ObjectDoesNotExist' => 'Spiacenti, questo oggetto non esiste (o non si è autorizzati per vederlo).',
|
||||
'UI:SearchResultsPageTitle' => 'iTop - Risultati della ricerca',
|
||||
'UI:Search:NoSearch' => 'Niente da ricercare',
|
||||
'UI:FullTextSearchTitle_Text' => 'Risultati di "%1$s":',
|
||||
'UI:Search:Count_ObjectsOf_Class_Found' => 'Trovato l\'oggetto(i) %1$d della classe %2$s.',
|
||||
'UI:Search:NoObjectFound' => 'Nessun oggetto trovato.',
|
||||
'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s modifica',
|
||||
'UI:ModificationTitle_Class_Object' => 'Modifica di %1$s: <span class=\"hilite\">%2$s</span>',
|
||||
'UI:ClonePageTitle_Object_Class' => 'iTop - Clone %1$s - %2$s modifica',
|
||||
'UI:CloneTitle_Class_Object' => 'Clone di %1$s: <span class=\"hilite\">%2$s</span>',
|
||||
'UI:CreationPageTitle_Class' => 'iTop - Creazione di un nuovo %1$s ',
|
||||
'UI:CreationTitle_Class' => 'Creazione di un nuovo %1$s',
|
||||
'UI:SelectTheTypeOf_Class_ToCreate' => 'Seleziona il tipo di %1$s da creare:',
|
||||
'UI:Class_Object_NotUpdated' => 'Nessun cambiamento rilevato, %1$s (%2$s) <strong>non</strong> è stato modificato.',
|
||||
'UI:Class_Object_Updated' => '%1$s (%2$s) aggiornato.',
|
||||
'UI:BulkDeletePageTitle' => 'iTop - Eliminazione collettiva',
|
||||
'UI:BulkDeleteTitle' => 'Selezionate gli oggetti che si desidera eliminare:',
|
||||
'UI:PageTitle:ObjectCreated' => 'iTop Oggetto Creato.',
|
||||
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s creato.',
|
||||
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Applicazione %1$s all\'oggetto: %2$s nello stato %3$s allo stato target: %4$s.',
|
||||
'UI:ObjectCouldNotBeWritten' => 'The object could not be written: %1$s',
|
||||
'UI:PageTitle:FatalError' => 'iTop - Fatal Error',
|
||||
'UI:SystemIntrusion' => 'Accesso negato. Devi cercare di eseguire un\'operazione che non è consentita per voi.',
|
||||
'UI:FatalErrorMessage' => 'Fatal error, iTop non può continuare.',
|
||||
'UI:Error_Details' => 'Errore: %1$s.',
|
||||
|
||||
'UI:PageTitle:ClassProjections' => 'iTop gestione degli utenti - proiezioni di classe',
|
||||
'UI:PageTitle:ProfileProjections' => 'iTop gestione degli utenti - proiezioni profilo',
|
||||
'UI:UserManagement:Class' => 'Classe',
|
||||
'UI:UserManagement:Class+' => 'Classe di oggetti',
|
||||
'UI:UserManagement:ProjectedObject' => 'Oggetti',
|
||||
'UI:UserManagement:ProjectedObject+' => 'Oggetto previsto',
|
||||
'UI:UserManagement:AnyObject' => '* qualsiasi *',
|
||||
'UI:UserManagement:User' => 'Utente',
|
||||
'UI:UserManagement:User+' => 'Utenti coinvolti nella proiezione',
|
||||
'UI:UserManagement:Profile' => 'Profilo',
|
||||
'UI:UserManagement:Profile+' => 'Profilo del quale è specificata la proiezione',
|
||||
'UI:UserManagement:Action:Read' => 'Leggi',
|
||||
'UI:UserManagement:Action:Read+' => 'Leggi e visualizza oggetti',
|
||||
'UI:UserManagement:Action:Modify' => 'Modifica',
|
||||
'UI:UserManagement:Action:Modify+' => 'Creare e editare (modificare) degli oggetti',
|
||||
'UI:UserManagement:Action:Delete' => '>Cancella',
|
||||
'UI:UserManagement:Action:Delete+' => 'Cancella oggetti',
|
||||
'UI:UserManagement:Action:BulkRead' => 'Leggi Bulk (Export)',
|
||||
'UI:UserManagement:Action:BulkRead+' => 'Elenca gli oggetti o esportali massicciamente',
|
||||
'UI:UserManagement:Action:BulkModify' => 'Modifiche Collettive',
|
||||
'UI:UserManagement:Action:BulkModify+' => 'Creare / modificare massivamente (import CSV)',
|
||||
'UI:UserManagement:Action:BulkDelete' => 'Cancella Bulk ',
|
||||
'UI:UserManagement:Action:BulkDelete+' => 'Eliminare oggetti massivamente',
|
||||
'UI:UserManagement:Action:Stimuli' => 'Stimoli',
|
||||
'UI:UserManagement:Action:Stimuli+' => 'Azioni permesse (composte)',
|
||||
'UI:UserManagement:Action' => 'Azione',
|
||||
'UI:UserManagement:Action+' => 'Azione eseguita dall\'utente',
|
||||
'UI:UserManagement:TitleActions' => 'Azioni',
|
||||
'UI:UserManagement:Permission' => 'Autorizzazione',
|
||||
'UI:UserManagement:Permission+' => 'Autorizzazione dell\'utente',
|
||||
'UI:UserManagement:Attributes' => 'Attributi',
|
||||
'UI:UserManagement:ActionAllowed:Yes' => 'Si',
|
||||
'UI:UserManagement:ActionAllowed:No' => 'No',
|
||||
'UI:UserManagement:AdminProfile+' => 'Gli amministratori hanno accesso completo in lettura / scrittura a tutti gli oggetti del database..',
|
||||
'UI:UserManagement:NoLifeCycleApplicable' => 'N/A',
|
||||
'UI:UserManagement:NoLifeCycleApplicable+' => 'Nessun ciclo di vita è stato definito per questa classe',
|
||||
'UI:UserManagement:GrantMatrix' => 'Grant Matrix',
|
||||
'UI:UserManagement:LinkBetween_User_And_Profile' => 'Collegamento tra %1$s e %2$s',
|
||||
'UI:UserManagement:LinkBetween_User_And_Org' => 'Collegamento tra %1$s e %2$s',
|
||||
|
||||
'Menu:AdminTools' => 'Strumenti di amministrazione',
|
||||
'Menu:AdminTools+' => 'Strumenti di amministrazione',
|
||||
'Menu:AdminTools?' => 'Strumenti accessibile solo agli utenti con il profilo di amministratore',
|
||||
|
||||
'UI:ChangeManagementMenu' => 'Gestione Cambi',
|
||||
'UI:ChangeManagementMenu+' => 'Gestione Cambi',
|
||||
'UI:ChangeManagementMenu:Title' => 'Panoramica dei cambi',
|
||||
'UI-ChangeManagementMenu-ChangesByType' => 'Cambi per tipo',
|
||||
'UI-ChangeManagementMenu-ChangesByStatus' => 'Cambi per stato',
|
||||
'UI-ChangeManagementMenu-ChangesByWorkgroup' => 'Cambi per gruppi di lavoro',
|
||||
'UI-ChangeManagementMenu-ChangesNotYetAssigned' => 'Cambi non ancora assegnati',
|
||||
|
||||
'UI:ConfigurationItemsMenu'=> 'Configuration Items',
|
||||
'UI:ConfigurationItemsMenu+'=> 'Tutti i disposotivi',
|
||||
'UI:ConfigurationItemsMenu:Title' => 'Configuration Items Panoramica',
|
||||
'UI-ConfigurationItemsMenu-ServersByCriticity' => 'Server per criticità',
|
||||
'UI-ConfigurationItemsMenu-PCsByCriticity' => 'PCs per criticità',
|
||||
'UI-ConfigurationItemsMenu-NWDevicesByCriticity' => 'Dispositivi di rete per criticità',
|
||||
'UI-ConfigurationItemsMenu-ApplicationsByCriticity' => 'Applicazioni per criticità',
|
||||
|
||||
'UI:ConfigurationManagementMenu' => 'Gesione Configurazione',
|
||||
'UI:ConfigurationManagementMenu+' => 'Gesione Configurazione',
|
||||
'UI:ConfigurationManagementMenu:Title' => 'Panoramica delle infrastrutture',
|
||||
'UI-ConfigurationManagementMenu-InfraByType' => 'Oggetti infrastruttutura per tipo',
|
||||
'UI-ConfigurationManagementMenu-InfraByStatus' => 'Oggetti infrastruttutura per stato',
|
||||
|
||||
'UI:ConfigMgmtMenuOverview:Title' => 'Dashboard per Gesione configurazione',
|
||||
'UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus' => 'Configuration Items per stato',
|
||||
'UI-ConfigMgmtMenuOverview-FunctionalCIByType' => 'Configuration Items per tipo',
|
||||
'UI:RequestMgmtMenuOverview:Title' => 'Dashboard per Gestione Richieste',
|
||||
'UI-RequestManagementOverview-RequestByService' => 'Richieste degli utenti per servizio',
|
||||
'UI-RequestManagementOverview-RequestByPriority' => 'Richieste degli utenti per priorità',
|
||||
'UI-RequestManagementOverview-RequestUnassigned' => 'Richieste degli utenti non ancora assegnate ad un agente',
|
||||
|
||||
'UI:IncidentMgmtMenuOverview:Title' => 'Dashboard Gestione degli Incidenti',
|
||||
'UI-IncidentManagementOverview-IncidentByService' => 'Incidenti per servizio',
|
||||
'UI-IncidentManagementOverview-IncidentByPriority' => 'Incidenti per priorità',
|
||||
'UI-IncidentManagementOverview-IncidentUnassigned' => 'Incidenti non ancora assegnati ad un agente',
|
||||
|
||||
'UI:ChangeMgmtMenuOverview:Title' => 'Dashboard per Gestione dei Cambi',
|
||||
'UI-ChangeManagementOverview-ChangeByType' => 'Cambi per tipo',
|
||||
'UI-ChangeManagementOverview-ChangeUnassigned' => 'Cambi non ancora assegnati ad un agente',
|
||||
'UI-ChangeManagementOverview-ChangeWithOutage' => 'Interruzioni dovute ai cambi',
|
||||
|
||||
'UI:ServiceMgmtMenuOverview:Title' => 'Dashboard per Gestione Servizi',
|
||||
'UI-ServiceManagementOverview-CustomerContractToRenew' => 'Contratti con i clienti da rinnovarsi in 30 giorni',
|
||||
'UI-ServiceManagementOverview-ProviderContractToRenew' => 'Contratti con i fornitori da rinnovarsi in 30 giorni',
|
||||
|
||||
'UI:ContactsMenu' => 'Contatti',
|
||||
'UI:ContactsMenu+' => 'Contatti',
|
||||
'UI:ContactsMenu:Title' => 'Contatti Panoramica',
|
||||
'UI-ContactsMenu-ContactsByLocation' => 'Contatti per posizione',
|
||||
'UI-ContactsMenu-ContactsByType' => 'Contatti per tipo',
|
||||
'UI-ContactsMenu-ContactsByStatus' => 'Contatti per stato',
|
||||
|
||||
'Menu:CSVImportMenu' => 'Importazione CSV',
|
||||
'Menu:CSVImportMenu+' => 'Crea/aggiorna collettivamente',
|
||||
|
||||
'Menu:DataModelMenu' => 'Modello Dati',
|
||||
'Menu:DataModelMenu+' => 'Panoramica del Modello Dati',
|
||||
|
||||
'Menu:ExportMenu' => 'Esporta',
|
||||
'Menu:ExportMenu+' => 'Esportare i risultati di una query in formato HTML, CSV o XML',
|
||||
|
||||
'Menu:NotificationsMenu' => 'Notifiche',
|
||||
'Menu:NotificationsMenu+' => 'Configurazione delle Notifiche',
|
||||
'UI:NotificationsMenu:Title' => 'Configurazione delle <span class="hilite">Notifiche</span>',
|
||||
'UI:NotificationsMenu:Help' => 'Aiuto',
|
||||
'UI:NotificationsMenu:HelpContent' => '<p>In iTop le notifiche sono completamente personalizzabili. Essi si basano su due serie di oggetti: <i>trigger e azioni</i>.</p>
|
||||
<p><i><b>Triggers</b></i> per definire quando una notifica verrà eseguita. Ci sono 3 tipi di trigger per la copertura di 3 fasi differenti del ciclo di vita di un oggetto:
|
||||
<ol>
|
||||
<li>the "OnCreate" trigger vengono eseguiti quando un oggetto della classe specificata viene creata</li>
|
||||
<li>the "OnStateEnter" trigger vengono eseguiti prima che un oggetto della classe data entra in uno stato specifico (provenienti da un altro Stato)</li>
|
||||
<li>the "OnStateLeave" trigger vengono eseguiti quando un oggetto della classe lascia uno stato specificato</li>
|
||||
</ol>
|
||||
</p>
|
||||
<p>
|
||||
<i><b>Azioni</b></i> definire le azioni da eseguire quando il trigger vengono eseguiti. Per ora c\'è solo un tipo di azione consiste nel mandare un messaggio email.
|
||||
|
||||
Inoltre, tali azioni definiscono il modello da utilizzare per l\'invio della e-mail così come gli altri parametri del messaggio come, l\'importanza dei destinatari, ecc
|
||||
</p>
|
||||
<p>Una Pagina speciale: <a href="../setup/email.test.php" target="_blank">email.test.php</a> è disponibile per il testing e la risoluzione dei problemi di configurazione PHP mail.</p>
|
||||
<p>Per essere eseguito, le azioni devono essere associate ai trigger.
|
||||
Quando è associata a un trigger, ad ogni azione è assegnato un numero "ordine", che specifica in quale ordine le azioni devono essere eseguite.</p>',
|
||||
'UI:NotificationsMenu:Triggers' => 'Triggers',
|
||||
'UI:NotificationsMenu:AvailableTriggers' => 'Triggers Disponibili',
|
||||
'UI:NotificationsMenu:OnCreate' => 'Quando un oggetto viene creato',
|
||||
'UI:NotificationsMenu:OnStateEnter' => 'Quando un oggetto entra in un determinato stato',
|
||||
'UI:NotificationsMenu:OnStateLeave' => 'Quando un oggetto lascia un determinato stato',
|
||||
'UI:NotificationsMenu:Actions' => 'Azioni',
|
||||
'UI:NotificationsMenu:AvailableActions' => 'Azioni disponibili',
|
||||
|
||||
'Menu:AuditCategories' => 'Categorie di Audit',
|
||||
'Menu:AuditCategories+' => 'Categorie di Audit',
|
||||
'Menu:Notifications:Title' => 'Categorie di Audit',
|
||||
|
||||
'Menu:RunQueriesMenu' => 'Esegui query',
|
||||
'Menu:RunQueriesMenu+' => 'Eseguire una query',
|
||||
|
||||
'Menu:DataAdministration' => 'Data di amministrazione',
|
||||
'Menu:DataAdministration+' => 'Data di amministrazione',
|
||||
|
||||
'Menu:UniversalSearchMenu' => 'Ricerca universale',
|
||||
'Menu:UniversalSearchMenu+' => 'Cerca qualsiasi cosa...',
|
||||
|
||||
'Menu:ApplicationLogMenu' => 'Log dell\'applicazione',
|
||||
'Menu:ApplicationLogMenu+' => 'Log dell\'applicazione',
|
||||
'Menu:ApplicationLogMenu:Title' => 'Log dell\'applicazione',
|
||||
|
||||
'Menu:UserManagementMenu' => 'Gestione degli utenti',
|
||||
'Menu:UserManagementMenu+' => 'Gestione degli utenti',
|
||||
|
||||
'Menu:ProfilesMenu' => 'Profili',
|
||||
'Menu:ProfilesMenu+' => 'Profili',
|
||||
'Menu:ProfilesMenu:Title' => 'Profili',
|
||||
|
||||
'Menu:UserAccountsMenu' => 'Account utente',
|
||||
'Menu:UserAccountsMenu+' => 'Account utente',
|
||||
'Menu:UserAccountsMenu:Title' => 'Account utente',
|
||||
|
||||
'UI:iTopVersion:Short' => 'Versione iTop %1$s',
|
||||
'UI:iTopVersion:Long' => 'Versione iTop %1$s-%2$s costruito il %3$s',
|
||||
'UI:PropertiesTab' => 'Proprietà',
|
||||
|
||||
'UI:OpenDocumentInNewWindow_' => 'Apri questo documento in una nuova finestra: %1$s',
|
||||
'UI:DownloadDocument_' => 'Scarica questo documento: %1$s',
|
||||
'UI:Document:NoPreview' => 'Non è disponibile un\'anteprima per questo tipo di documento',
|
||||
|
||||
'UI:DeadlineMissedBy_duration' => 'Mancati %1$s',
|
||||
'UI:Deadline_LessThan1Min' => '< 1 min',
|
||||
'UI:Deadline_Minutes' => '%1$d min',
|
||||
'UI:Deadline_Hours_Minutes' => '%1$dh %2$dmin',
|
||||
'UI:Deadline_Days_Hours_Minutes' => '%1$dd %2$dh %3$dmin',
|
||||
'UI:Help' => 'Help',
|
||||
'UI:PasswordConfirm' => '(Conferma)',
|
||||
'UI:BeforeAdding_Class_ObjectsSaveThisObject' => 'Prima di aggiungere più %1$s oggetti, salva questo oggetto.',
|
||||
'UI:DisplayThisMessageAtStartup' => 'Visualizza questo messaggio in fase di avvio',
|
||||
'UI:RelationshipGraph' => 'Visualizzazione grafica',
|
||||
'UI:RelationshipList' => 'Lista',
|
||||
'UI:OperationCancelled' => 'Operazione Annullata',
|
||||
|
||||
'Portal:Title' => 'Portale Utente iTop',
|
||||
'Portal:Refresh' => 'Aggiorna',
|
||||
'Portal:Back' => 'Indietro',
|
||||
'Portal:CreateNewRequest' => 'Crea una nuova richiesta',
|
||||
'Portal:ChangeMyPassword' => 'Cambia la mia password',
|
||||
'Portal:Disconnect' => 'Disconnetti',
|
||||
'Portal:OpenRequests' => 'Le mie richieste aperte',
|
||||
'Portal:ResolvedRequests' => 'Le mie richieste risolte',
|
||||
'Portal:SelectService' => 'Seleziona un servizio dal catalogo:',
|
||||
'Portal:PleaseSelectOneService' => 'Si prega di selezionare un servizio',
|
||||
'Portal:SelectSubcategoryFrom_Service' => 'Seleziona una sotto-categoria per il servizio %1$s:',
|
||||
'Portal:PleaseSelectAServiceSubCategory' => 'Si prega di selezionare una delle sottocategorie',
|
||||
'Portal:DescriptionOfTheRequest' => 'Inserire la descrizione della tua richiesta:',
|
||||
'Portal:TitleRequestDetailsFor_Request' => 'Dettagli per la richiesta %1$s:',
|
||||
'Portal:NoOpenRequest' => 'Nessuna richiesta in questa categoria.',
|
||||
'Portal:Button:CloseTicket' => 'Chiudi questo ticket',
|
||||
'Portal:EnterYourCommentsOnTicket' => 'Inserisci il tuo commento circa la risoluzione di questo ticket:',
|
||||
'Portal:ErrorNoContactForThisUser' => 'Errore: l\'utente corrente non è associato ad un Contatto/Persona. Si prega di contattare l\'amministratore.',
|
||||
'Portal:Attachments' => 'Allegati',
|
||||
'Portal:AddAttachment' => ' Aggiungi allegati ',
|
||||
'Portal:RemoveAttachment' => ' Rimuovi allegati ',
|
||||
'Portal:Attachment_No_To_Ticket_Name' => 'Allegato #%1$d a %2$s (%3$s)',
|
||||
'Enum:Undefined' => 'Non definito',
|
||||
));
|
||||
|
||||
|
||||
|
||||
?>
|
||||
47
modules/authent-external/it.dict.authent-external.php
Normal file
47
modules/authent-external/it.dict.authent-external.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: UserExternal
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserExternal' => 'Esterno utente',
|
||||
'Class:UserExternal+' => 'Utente autenticato al di fuori di iTop',
|
||||
));
|
||||
|
||||
|
||||
|
||||
?>
|
||||
49
modules/authent-ldap/it.dict.authent-ldap.php
Normal file
49
modules/authent-ldap/it.dict.authent-ldap.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: UserLDAP
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserLDAP' => 'Utente LDAP',
|
||||
'Class:UserLDAP+' => 'Utente autenticato da LDAP',
|
||||
'Class:UserLDAP/Attribute:password' => 'Password',
|
||||
'Class:UserLDAP/Attribute:password+' => 'user authentication string',
|
||||
));
|
||||
|
||||
|
||||
|
||||
?>
|
||||
49
modules/authent-local/it.dict.authent-local.php
Normal file
49
modules/authent-local/it.dict.authent-local.php
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: UserLocal
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserLocal' => 'Utente iTop',
|
||||
'Class:UserLocal+' => 'Utente autenticato da iTop',
|
||||
'Class:UserLocal/Attribute:password' => 'Password',
|
||||
'Class:UserLocal/Attribute:password+' => 'user authentication string',
|
||||
));
|
||||
|
||||
|
||||
|
||||
?>
|
||||
347
modules/itop-change-mgmt-1.0.0/it.dict.itop-change-mgmt.php
Normal file
347
modules/itop-change-mgmt-1.0.0/it.dict.itop-change-mgmt.php
Normal file
@@ -0,0 +1,347 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:ChangeManagement' => 'Gestione dei cambi',
|
||||
'Menu:Change:Overview' => 'Panoramica',
|
||||
'Menu:Change:Overview+' => '',
|
||||
'Menu:NewChange' => 'Nuovo cambio',
|
||||
'Menu:NewChange+' => 'Crea un ticket per un nuovo cambio',
|
||||
'Menu:SearchChanges' => 'Cerca per cambi',
|
||||
'Menu:SearchChanges+' => 'Cerca i cambi per tickets',
|
||||
'Menu:Change:Shortcuts' => 'Scorciatoie',
|
||||
'Menu:Change:Shortcuts+' => '',
|
||||
'Menu:WaitingAcceptance' => 'Modifiche in attesa di accettazione',
|
||||
'Menu:WaitingAcceptance+' => '',
|
||||
'Menu:WaitingApproval' => 'Modifiche in attesa di approvazione',
|
||||
'Menu:WaitingApproval+' => '',
|
||||
'Menu:Changes' => 'Modifiche aperte',
|
||||
'Menu:Changes+' => '',
|
||||
'Menu:MyChanges' => 'Modifiche assegnate a me',
|
||||
'Menu:MyChanges+' => 'Modifiche assegnato a me (come Agent)',
|
||||
));
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
|
||||
//
|
||||
// Class: Change
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Change' => 'Cambio',
|
||||
'Class:Change+' => '',
|
||||
'Class:Change/Attribute:start_date' => 'Avvio previsto',
|
||||
'Class:Change/Attribute:start_date+' => '',
|
||||
'Class:Change/Attribute:status' => 'Stato',
|
||||
'Class:Change/Attribute:status+' => '',
|
||||
'Class:Change/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:Change/Attribute:status/Value:new+' => '',
|
||||
'Class:Change/Attribute:status/Value:validated' => 'Convalidato',
|
||||
'Class:Change/Attribute:status/Value:validated+' => '',
|
||||
'Class:Change/Attribute:status/Value:rejected' => 'Rifiutato',
|
||||
'Class:Change/Attribute:status/Value:rejected+' => '',
|
||||
'Class:Change/Attribute:status/Value:assigned' => 'Assegnato',
|
||||
'Class:Change/Attribute:status/Value:assigned+' => '',
|
||||
'Class:Change/Attribute:status/Value:plannedscheduled' => 'Pianificato e programmato',
|
||||
'Class:Change/Attribute:status/Value:plannedscheduled+' => '',
|
||||
'Class:Change/Attribute:status/Value:approved' => 'Approvato',
|
||||
'Class:Change/Attribute:status/Value:approved+' => '',
|
||||
'Class:Change/Attribute:status/Value:notapproved' => 'Non approvato',
|
||||
'Class:Change/Attribute:status/Value:notapproved+' => '',
|
||||
'Class:Change/Attribute:status/Value:implemented' => 'Implementato',
|
||||
'Class:Change/Attribute:status/Value:implemented+' => '',
|
||||
'Class:Change/Attribute:status/Value:monitored' => 'Monitorato',
|
||||
'Class:Change/Attribute:status/Value:monitored+' => '',
|
||||
'Class:Change/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:Change/Attribute:status/Value:closed+' => '',
|
||||
'Class:Change/Attribute:reason' => 'Motivo',
|
||||
'Class:Change/Attribute:reason+' => '',
|
||||
'Class:Change/Attribute:requestor_id' => 'Richiedente',
|
||||
'Class:Change/Attribute:requestor_id+' => '',
|
||||
'Class:Change/Attribute:requestor_email' => 'Richiedente',
|
||||
'Class:Change/Attribute:requestor_email+' => '',
|
||||
'Class:Change/Attribute:org_id' => 'Cliente',
|
||||
'Class:Change/Attribute:org_id+' => '',
|
||||
'Class:Change/Attribute:org_name' => 'Cliente',
|
||||
'Class:Change/Attribute:org_name+' => '',
|
||||
'Class:Change/Attribute:workgroup_id' => 'Gruppo di lavoro',
|
||||
'Class:Change/Attribute:workgroup_id+' => '',
|
||||
'Class:Change/Attribute:workgroup_name' => 'Gruppo di lavoro',
|
||||
'Class:Change/Attribute:workgroup_name+' => '',
|
||||
'Class:Change/Attribute:creation_date' => 'Creato',
|
||||
'Class:Change/Attribute:creation_date+' => '',
|
||||
'Class:Change/Attribute:last_update' => 'Ultimo aggiornamento',
|
||||
'Class:Change/Attribute:last_update+' => '',
|
||||
'Class:Change/Attribute:end_date' => 'Data di fine',
|
||||
'Class:Change/Attribute:end_date+' => '',
|
||||
'Class:Change/Attribute:close_date' => 'Chiuso',
|
||||
'Class:Change/Attribute:close_date+' => '',
|
||||
'Class:Change/Attribute:impact' => 'Impatto',
|
||||
'Class:Change/Attribute:impact+' => '',
|
||||
'Class:Change/Attribute:agent_id' => 'Agente',
|
||||
'Class:Change/Attribute:agent_id+' => '',
|
||||
'Class:Change/Attribute:agent_name' => 'Agente',
|
||||
'Class:Change/Attribute:agent_name+' => '',
|
||||
'Class:Change/Attribute:agent_email' => 'Agente',
|
||||
'Class:Change/Attribute:agent_email+' => '',
|
||||
'Class:Change/Attribute:supervisor_group_id' => 'Supervisor team',
|
||||
'Class:Change/Attribute:supervisor_group_id+' => '',
|
||||
'Class:Change/Attribute:supervisor_group_name' => 'Supervisor team',
|
||||
'Class:Change/Attribute:supervisor_group_name+' => '',
|
||||
'Class:Change/Attribute:supervisor_id' => 'Supervisor',
|
||||
'Class:Change/Attribute:supervisor_id+' => '',
|
||||
'Class:Change/Attribute:supervisor_email' => 'Supervisor',
|
||||
'Class:Change/Attribute:supervisor_email+' => '',
|
||||
'Class:Change/Attribute:manager_group_id' => 'Manager team',
|
||||
'Class:Change/Attribute:manager_group_id+' => '',
|
||||
'Class:Change/Attribute:manager_group_name' => 'Manager team',
|
||||
'Class:Change/Attribute:manager_group_name+' => '',
|
||||
'Class:Change/Attribute:manager_id' => 'Manager',
|
||||
'Class:Change/Attribute:manager_id+' => '',
|
||||
'Class:Change/Attribute:manager_email' => 'Manager',
|
||||
'Class:Change/Attribute:manager_email+' => '',
|
||||
'Class:Change/Attribute:outage' => 'Interruzione',
|
||||
'Class:Change/Attribute:outage+' => '',
|
||||
'Class:Change/Attribute:outage/Value:yes' => 'Si',
|
||||
'Class:Change/Attribute:outage/Value:yes+' => '',
|
||||
'Class:Change/Attribute:outage/Value:no' => 'No',
|
||||
'Class:Change/Attribute:outage/Value:no+' => '',
|
||||
'Class:Change/Attribute:change_request' => 'Richiesta',
|
||||
'Class:Change/Attribute:change_request+' => '',
|
||||
'Class:Change/Attribute:fallback' => 'Piano alternativo',
|
||||
'Class:Change/Attribute:fallback+' => '',
|
||||
'Class:Change/Stimulus:ev_validate' => 'Convalidare',
|
||||
'Class:Change/Stimulus:ev_validate+' => '',
|
||||
'Class:Change/Stimulus:ev_reject' => 'Rifiutare',
|
||||
'Class:Change/Stimulus:ev_reject+' => '',
|
||||
'Class:Change/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:Change/Stimulus:ev_assign+' => '',
|
||||
'Class:Change/Stimulus:ev_reopen' => 'Riaprire',
|
||||
'Class:Change/Stimulus:ev_reopen+' => '',
|
||||
'Class:Change/Stimulus:ev_plan' => 'Pianificare',
|
||||
'Class:Change/Stimulus:ev_plan+' => '',
|
||||
'Class:Change/Stimulus:ev_approve' => 'Approvare',
|
||||
'Class:Change/Stimulus:ev_approve+' => '',
|
||||
'Class:Change/Stimulus:ev_replan' => 'Ripianificare',
|
||||
'Class:Change/Stimulus:ev_replan+' => '',
|
||||
'Class:Change/Stimulus:ev_notapprove' => 'Rifiutare',
|
||||
'Class:Change/Stimulus:ev_notapprove+' => '',
|
||||
'Class:Change/Stimulus:ev_implement' => 'Implementare',
|
||||
'Class:Change/Stimulus:ev_implement+' => '',
|
||||
'Class:Change/Stimulus:ev_monitor' => 'Monitorare',
|
||||
'Class:Change/Stimulus:ev_monitor+' => '',
|
||||
'Class:Change/Stimulus:ev_finish' => 'Finire',
|
||||
'Class:Change/Stimulus:ev_finish+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: RoutineChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiani', array(
|
||||
'Class:RoutineChange' => 'Routine di cambi',
|
||||
'Class:RoutineChange+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:RoutineChange/Attribute:status/Value:new+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:assigned' => 'Assegnato',
|
||||
'Class:RoutineChange/Attribute:status/Value:assigned+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:plannedscheduled' => 'Pianificato e programmato',
|
||||
'Class:RoutineChange/Attribute:status/Value:plannedscheduled+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:approved' => 'Approvato',
|
||||
'Class:RoutineChange/Attribute:status/Value:approved+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:implemented' => 'Implementato',
|
||||
'Class:RoutineChange/Attribute:status/Value:implemented+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:monitored' => 'Monitorato',
|
||||
'Class:RoutineChange/Attribute:status/Value:monitored+' => '',
|
||||
'Class:RoutineChange/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:RoutineChange/Attribute:status/Value:closed+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_validate' => 'Convalidare',
|
||||
'Class:RoutineChange/Stimulus:ev_validate+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:RoutineChange/Stimulus:ev_assign+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_reopen' => 'Riaprire',
|
||||
'Class:RoutineChange/Stimulus:ev_reopen+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_plan' => 'Pianificare',
|
||||
'Class:RoutineChange/Stimulus:ev_plan+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_replan' => 'Ripianificare',
|
||||
'Class:RoutineChange/Stimulus:ev_replan+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_implement' => 'Implementare',
|
||||
'Class:RoutineChange/Stimulus:ev_implement+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_monitor' => 'Monitorare',
|
||||
'Class:RoutineChange/Stimulus:ev_monitor+' => '',
|
||||
'Class:RoutineChange/Stimulus:ev_finish' => 'Finire',
|
||||
'Class:RoutineChange/Stimulus:ev_finish+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: ApprovedChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:ApprovedChange' => 'Cambi approvati',
|
||||
'Class:ApprovedChange+' => '',
|
||||
'Class:ApprovedChange/Attribute:approval_date' => 'Data di approvazione',
|
||||
'Class:ApprovedChange/Attribute:approval_date+' => '',
|
||||
'Class:ApprovedChange/Attribute:approval_comment' => 'Commento di approvazione',
|
||||
'Class:ApprovedChange/Attribute:approval_comment+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_validate' => 'Convalidare',
|
||||
'Class:ApprovedChange/Stimulus:ev_validate+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_reject' => 'Rifiutare',
|
||||
'Class:ApprovedChange/Stimulus:ev_reject+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:ApprovedChange/Stimulus:ev_assign+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_reopen' => 'Riaprire',
|
||||
'Class:ApprovedChange/Stimulus:ev_reopen+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_plan' => 'Pianificare',
|
||||
'Class:ApprovedChange/Stimulus:ev_plan+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_approve' => 'Approvare',
|
||||
'Class:ApprovedChange/Stimulus:ev_approve+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_replan' => 'Ripianificare',
|
||||
'Class:ApprovedChange/Stimulus:ev_replan+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_notapprove' => 'Rifiutare l\'approvazione',
|
||||
'Class:ApprovedChange/Stimulus:ev_notapprove+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_implement' => 'Implementare',
|
||||
'Class:ApprovedChange/Stimulus:ev_implement+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_monitor' => 'Monitorare',
|
||||
'Class:ApprovedChange/Stimulus:ev_monitor+' => '',
|
||||
'Class:ApprovedChange/Stimulus:ev_finish' => 'Finire',
|
||||
'Class:ApprovedChange/Stimulus:ev_finish+' => '',
|
||||
));
|
||||
//
|
||||
// Class: NormalChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:NormalChange' => 'Cambi normali',
|
||||
'Class:NormalChange+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:NormalChange/Attribute:status/Value:new+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:validated' => 'Convalidato',
|
||||
'Class:NormalChange/Attribute:status/Value:validated+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:rejected' => 'Rifiutato',
|
||||
'Class:NormalChange/Attribute:status/Value:rejected+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:assigned' => 'Assegnato',
|
||||
'Class:NormalChange/Attribute:status/Value:assigned+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:plannedscheduled' => 'Pianificato e programmato',
|
||||
'Class:NormalChange/Attribute:status/Value:plannedscheduled+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:approved' => 'Approvato',
|
||||
'Class:NormalChange/Attribute:status/Value:approved+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:notapproved' => 'Non approvato',
|
||||
'Class:NormalChange/Attribute:status/Value:notapproved+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:implemented' => 'Implementato',
|
||||
'Class:NormalChange/Attribute:status/Value:implemented+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:monitored' => 'Monitorato',
|
||||
'Class:NormalChange/Attribute:status/Value:monitored+' => '',
|
||||
'Class:NormalChange/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:NormalChange/Attribute:status/Value:closed+' => '',
|
||||
'Class:NormalChange/Attribute:acceptance_date' => 'Data di approvazione',
|
||||
'Class:NormalChange/Attribute:acceptance_date+' => '',
|
||||
'Class:NormalChange/Attribute:acceptance_comment' => 'Commento di approvazione',
|
||||
'Class:NormalChange/Attribute:acceptance_comment+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_validate' => 'Convalidare',
|
||||
'Class:NormalChange/Stimulus:ev_validate+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_reject' => 'Rifiutare',
|
||||
'Class:NormalChange/Stimulus:ev_reject+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:NormalChange/Stimulus:ev_assign+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_reopen' => 'Riaprire',
|
||||
'Class:NormalChange/Stimulus:ev_reopen+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_plan' => 'Pianificare',
|
||||
'Class:NormalChange/Stimulus:ev_plan+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_approve' => 'Approvare',
|
||||
'Class:NormalChange/Stimulus:ev_approve+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_replan' => 'Ripianificare',
|
||||
'Class:NormalChange/Stimulus:ev_replan+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_notapprove' => 'Rifiutare l\'approvazione',
|
||||
'Class:NormalChange/Stimulus:ev_notapprove+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_implement' => 'Implementare',
|
||||
'Class:NormalChange/Stimulus:ev_implement+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_monitor' => 'Monitorare',
|
||||
'Class:NormalChange/Stimulus:ev_monitor+' => '',
|
||||
'Class:NormalChange/Stimulus:ev_finish' => 'Finire',
|
||||
'Class:NormalChange/Stimulus:ev_finish+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: EmergencyChange
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:EmergencyChange' => 'Cambi di emergenza',
|
||||
'Class:EmergencyChange+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:EmergencyChange/Attribute:status/Value:new+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:validated' => 'Convalidato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:validated+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:rejected' => 'Rifiutato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:rejected+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:assigned' => 'Asseganto',
|
||||
'Class:EmergencyChange/Attribute:status/Value:assigned+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:plannedscheduled' => 'Pianificato e programmato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:plannedscheduled+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:approved' => 'Approvato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:approved+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:notapproved' => 'Non approvato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:notapproved+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:implemented' => 'Implementato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:implemented+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:monitored' => 'Monitorato',
|
||||
'Class:EmergencyChange/Attribute:status/Value:monitored+' => '',
|
||||
'Class:EmergencyChange/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:EmergencyChange/Attribute:status/Value:closed+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_validate' => 'Convalidare',
|
||||
'Class:EmergencyChange/Stimulus:ev_validate+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_reject' => 'Rifiutare',
|
||||
'Class:EmergencyChange/Stimulus:ev_reject+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:EmergencyChange/Stimulus:ev_assign+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_reopen' => 'Riaprire',
|
||||
'Class:EmergencyChange/Stimulus:ev_reopen+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_plan' => 'Pianificare',
|
||||
'Class:EmergencyChange/Stimulus:ev_plan+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_approve' => 'Approavre',
|
||||
'Class:EmergencyChange/Stimulus:ev_approve+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_replan' => 'Riaprire',
|
||||
'Class:EmergencyChange/Stimulus:ev_replan+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_notapprove' => 'Rifiutare l\'approvazione',
|
||||
'Class:EmergencyChange/Stimulus:ev_notapprove+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_implement' => 'Implementare',
|
||||
'Class:EmergencyChange/Stimulus:ev_implement+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_monitor' => 'Monitorare',
|
||||
'Class:EmergencyChange/Stimulus:ev_monitor+' => '',
|
||||
'Class:EmergencyChange/Stimulus:ev_finish' => 'Finire',
|
||||
'Class:EmergencyChange/Stimulus:ev_finish+' => '',
|
||||
));
|
||||
|
||||
?>
|
||||
1052
modules/itop-config-mgmt-1.0.0/it.dict.itop-config-mgmt.php
Normal file
1052
modules/itop-config-mgmt-1.0.0/it.dict.itop-config-mgmt.php
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:IncidentManagement' => 'Gestione Incidente',
|
||||
'Menu:IncidentManagement+' => 'Gestione Incidente',
|
||||
'Menu:Incident:Overview' => 'Panoramica',
|
||||
'Menu:Incident:Overview+' => 'Panoramica',
|
||||
'Menu:NewIncident' => 'Nuovo Incidente',
|
||||
'Menu:NewIncident+' => 'Crea un ticket per un nuovo incidente',
|
||||
'Menu:SearchIncidents' => 'Ricerca per Incidenti',
|
||||
'Menu:SearchIncidents+' => 'Ricerca Incidenti per tickets',
|
||||
'Menu:Incident:Shortcuts' => 'Scorciatoie',
|
||||
'Menu:Incident:Shortcuts+' => '',
|
||||
'Menu:Incident:MyIncidents' => 'Incidenti assegnati a me',
|
||||
'Menu:Incident:MyIncidents+' => 'Incidents assegnati a me (as Agent)',
|
||||
'Menu:Incident:EscalatedIncidents' => 'Incidenti in escalation',
|
||||
'Menu:Incident:EscalatedIncidents+' => 'Incidenti in escalation',
|
||||
'Menu:Incident:OpenIncidents' => 'Tutti gli Incidenti Aperti',
|
||||
'Menu:Incident:OpenIncidents+' => 'Tutti gli Incidenti Aperti',
|
||||
|
||||
));
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: Incident
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Incident' => 'Incidente',
|
||||
'Class:Incident+' => '',
|
||||
'Class:Incident/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:Incident/Stimulus:ev_assign+' => '',
|
||||
'Class:Incident/Stimulus:ev_reassign' => 'Riassegnare',
|
||||
'Class:Incident/Stimulus:ev_reassign+' => '',
|
||||
'Class:Incident/Stimulus:ev_timeout' => 'ev_timeout',
|
||||
'Class:Incident/Stimulus:ev_timeout+' => '',
|
||||
'Class:Incident/Stimulus:ev_resolve' => 'Segnala come risolto',
|
||||
'Class:Incident/Stimulus:ev_resolve+' => '',
|
||||
'Class:Incident/Stimulus:ev_close' => 'Chiuso',
|
||||
'Class:Incident/Stimulus:ev_close+' => '',
|
||||
));
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,149 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'bizmodel'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: KnownError
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:KnownError' => 'Errori conosciuti',
|
||||
'Class:KnownError+' => 'Errori documentati per problemi noti',
|
||||
'Class:KnownError/Attribute:name' => 'Nome',
|
||||
'Class:KnownError/Attribute:name+' => '',
|
||||
'Class:KnownError/Attribute:org_id' => 'Cliente ',
|
||||
'Class:KnownError/Attribute:org_id+' => '',
|
||||
'Class:KnownError/Attribute:cust_name' => 'Nome del cliente',
|
||||
'Class:KnownError/Attribute:cust_name+' => '',
|
||||
'Class:KnownError/Attribute:problem_id' => 'Problema correlato',
|
||||
'Class:KnownError/Attribute:problem_id+' => '',
|
||||
'Class:KnownError/Attribute:problem_ref' => 'Ref',
|
||||
'Class:KnownError/Attribute:problem_ref+' => '',
|
||||
'Class:KnownError/Attribute:symptom' => 'Sintomo',
|
||||
'Class:KnownError/Attribute:symptom+' => '',
|
||||
'Class:KnownError/Attribute:root_cause' => 'Causa principale',
|
||||
'Class:KnownError/Attribute:root_cause+' => '',
|
||||
'Class:KnownError/Attribute:workaround' => 'Soluzione temporanea',
|
||||
'Class:KnownError/Attribute:workaround+' => '',
|
||||
'Class:KnownError/Attribute:solution' => 'Solutione',
|
||||
'Class:KnownError/Attribute:solution+' => '',
|
||||
'Class:KnownError/Attribute:error_code' => 'Codice di errore',
|
||||
'Class:KnownError/Attribute:error_code+' => '',
|
||||
'Class:KnownError/Attribute:domain' => 'Dominio',
|
||||
'Class:KnownError/Attribute:domain+' => '',
|
||||
'Class:KnownError/Attribute:domain/Value:Application' => 'Applicazione',
|
||||
'Class:KnownError/Attribute:domain/Value:Application+' => 'Applicazione',
|
||||
'Class:KnownError/Attribute:domain/Value:Desktop' => 'Desktop',
|
||||
'Class:KnownError/Attribute:domain/Value:Desktop+' => 'Desktop',
|
||||
'Class:KnownError/Attribute:domain/Value:Network' => 'Network',
|
||||
'Class:KnownError/Attribute:domain/Value:Network+' => 'Network',
|
||||
'Class:KnownError/Attribute:domain/Value:Server' => 'Server',
|
||||
'Class:KnownError/Attribute:domain/Value:Server+' => 'Server',
|
||||
'Class:KnownError/Attribute:vendor' => 'Venditore',
|
||||
'Class:KnownError/Attribute:vendor+' => '',
|
||||
'Class:KnownError/Attribute:model' => 'Modello',
|
||||
'Class:KnownError/Attribute:model+' => '',
|
||||
'Class:KnownError/Attribute:version' => 'Versione',
|
||||
'Class:KnownError/Attribute:version+' => '',
|
||||
'Class:KnownError/Attribute:ci_list' => 'CIs',
|
||||
'Class:KnownError/Attribute:ci_list+' => '',
|
||||
'Class:KnownError/Attribute:document_list' => 'Documenti',
|
||||
'Class:KnownError/Attribute:document_list+' => '',
|
||||
));
|
||||
|
||||
|
||||
//
|
||||
// Class: lnkInfraError
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkInfraError' => 'InfraErrorLinks',
|
||||
'Class:lnkInfraError+' => 'Infra relativi a un errore noto',
|
||||
'Class:lnkInfraError/Attribute:infra_id' => 'CI',
|
||||
'Class:lnkInfraError/Attribute:infra_id+' => '',
|
||||
'Class:lnkInfraError/Attribute:infra_name' => 'Nome CI',
|
||||
'Class:lnkInfraError/Attribute:infra_name+' => '',
|
||||
'Class:lnkInfraError/Attribute:infra_status' => 'CI Stato',
|
||||
'Class:lnkInfraError/Attribute:infra_status+' => '',
|
||||
'Class:lnkInfraError/Attribute:error_id' => 'Errore',
|
||||
'Class:lnkInfraError/Attribute:error_id+' => '',
|
||||
'Class:lnkInfraError/Attribute:error_name' => 'Nome Errore',
|
||||
'Class:lnkInfraError/Attribute:error_name+' => '',
|
||||
'Class:lnkInfraError/Attribute:reason' => 'Motivo',
|
||||
'Class:lnkInfraError/Attribute:reason+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkDocumentError
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkDocumentError' => 'DocumentsErrorLinks',
|
||||
'Class:lnkDocumentError+' => 'Un collegamento tra un documento e un errore noto',
|
||||
'Class:lnkDocumentError/Attribute:doc_id' => 'Documento',
|
||||
'Class:lnkDocumentError/Attribute:doc_id+' => '',
|
||||
'Class:lnkDocumentError/Attribute:doc_name' => 'Nome Documento',
|
||||
'Class:lnkDocumentError/Attribute:doc_name+' => '',
|
||||
'Class:lnkDocumentError/Attribute:error_id' => 'Errore',
|
||||
'Class:lnkDocumentError/Attribute:error_id+' => '',
|
||||
'Class:lnkDocumentError/Attribute:error_name' => 'Nome Errore',
|
||||
'Class:lnkDocumentError/Attribute:error_name+' => '',
|
||||
'Class:lnkDocumentError/Attribute:link_type' => 'Informazione',
|
||||
'Class:lnkDocumentError/Attribute:link_type+' => '',
|
||||
));
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Menu:NewError' => 'Nuovo errore conosciuto',
|
||||
'Menu:NewError+' => 'Creazione di un Nuovo Errore Conosciuto',
|
||||
'Menu:SearchError' => 'Ricerca per Errori Conosciuti',
|
||||
'Menu:SearchError+' => 'Ricerca per Errori Conosciuti',
|
||||
'Menu:Problem:KnownErrors' => 'Tutti gli errori conosciuti',
|
||||
'Menu:Problem:KnownErrors+' => 'Tutti gli errori conosciuti',
|
||||
));
|
||||
?>
|
||||
167
modules/itop-problem-mgmt-1.0.0/it.dict.itop-problem-mgmt.php
Normal file
167
modules/itop-problem-mgmt-1.0.0/it.dict.itop-problem-mgmt.php
Normal file
@@ -0,0 +1,167 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
// Classes in 'bizmodel'
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
|
||||
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:ProblemManagement' => 'Gestione dei Problemi',
|
||||
'Menu:ProblemManagement+' => 'Gestione dei Problemi',
|
||||
'Menu:Problem:Overview' => 'Panoramica',
|
||||
'Menu:Problem:Overview+' => 'Panoramica',
|
||||
'Menu:NewProblem' => 'Nuovo Problema',
|
||||
'Menu:NewProblem+' => 'Nuovo Problema',
|
||||
'Menu:SearchProblems' => 'Ricerca per Problema',
|
||||
'Menu:SearchProblems+' => 'Ricerca per Problema',
|
||||
'Menu:Problem:Shortcuts' => 'Scorciatoia',
|
||||
'Menu:Problem:MyProblems' => 'I Miei Problemi',
|
||||
'Menu:Problem:MyProblems+' => 'I Miei Problemi',
|
||||
'Menu:Problem:OpenProblems' => 'Tutti i Problemi Aperti',
|
||||
'Menu:Problem:OpenProblems+' => 'Tutti i Problemi Aperti',
|
||||
'UI-ProblemManagementOverview-ProblemByService' => 'Problemi per Servizio',
|
||||
'UI-ProblemManagementOverview-ProblemByService+' => 'Problemi per Servizio',
|
||||
'UI-ProblemManagementOverview-ProblemByPriority' => 'Problemi per Priorità',
|
||||
'UI-ProblemManagementOverview-ProblemByPriority+' => 'Problemi per Priorità',
|
||||
'UI-ProblemManagementOverview-ProblemUnassigned' => 'Problemi non assegnati',
|
||||
'UI-ProblemManagementOverview-ProblemUnassigned+' => 'Problemi non assegnati',
|
||||
'UI:ProblemMgmtMenuOverview:Title' => 'Dashboard per la gestione dei problemi',
|
||||
'UI:ProblemMgmtMenuOverview:Title+' => 'Dashboard per la gestione dei problemi',
|
||||
|
||||
));
|
||||
//
|
||||
// Class: Problem
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Problem' => 'Problema',
|
||||
'Class:Problem+' => '',
|
||||
'Class:Problem/Attribute:status' => 'Stato',
|
||||
'Class:Problem/Attribute:status+' => '',
|
||||
'Class:Problem/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:Problem/Attribute:status/Value:new+' => '',
|
||||
'Class:Problem/Attribute:status/Value:assigned' => 'Assegnato',
|
||||
'Class:Problem/Attribute:status/Value:assigned+' => '',
|
||||
'Class:Problem/Attribute:status/Value:resolved' => 'Risolto',
|
||||
'Class:Problem/Attribute:status/Value:resolved+' => '',
|
||||
'Class:Problem/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:Problem/Attribute:status/Value:closed+' => '',
|
||||
'Class:Problem/Attribute:org_id' => 'Cliente',
|
||||
'Class:Problem/Attribute:org_id+' => '',
|
||||
'Class:Problem/Attribute:org_name' => 'Nome',
|
||||
'Class:Problem/Attribute:org_name+' => 'Nome Comune',
|
||||
'Class:Problem/Attribute:service_id' => 'Servizio',
|
||||
'Class:Problem/Attribute:service_id+' => '',
|
||||
'Class:Problem/Attribute:service_name' => 'Nome',
|
||||
'Class:Problem/Attribute:service_name+' => '',
|
||||
'Class:Problem/Attribute:servicesubcategory_id' => 'Categoria di servizio',
|
||||
'Class:Problem/Attribute:servicesubcategory_id+' => '',
|
||||
'Class:Problem/Attribute:servicesubcategory_name' => 'Nome',
|
||||
'Class:Problem/Attribute:servicesubcategory_name+' => '',
|
||||
'Class:Problem/Attribute:product' => 'Prodotto',
|
||||
'Class:Problem/Attribute:product+' => '',
|
||||
'Class:Problem/Attribute:impact' => 'Impatto',
|
||||
'Class:Problem/Attribute:impact+' => '',
|
||||
'Class:Problem/Attribute:impact/Value:1' => 'Una persona',
|
||||
'Class:Problem/Attribute:impact/Value:1+' => '',
|
||||
'Class:Problem/Attribute:impact/Value:2' => 'Un servizio',
|
||||
'Class:Problem/Attribute:impact/Value:2+' => '',
|
||||
'Class:Problem/Attribute:impact/Value:3' => 'Un dipartimento',
|
||||
'Class:Problem/Attribute:impact/Value:3+' => '',
|
||||
'Class:Problem/Attribute:urgency' => 'Urgenza',
|
||||
'Class:Problem/Attribute:urgency+' => '',
|
||||
'Class:Problem/Attribute:urgency/Value:1' => 'Bassa',
|
||||
'Class:Problem/Attribute:urgency/Value:1+' => 'Bassa',
|
||||
'Class:Problem/Attribute:urgency/Value:2' => 'Media',
|
||||
'Class:Problem/Attribute:urgency/Value:2+' => 'Media',
|
||||
'Class:Problem/Attribute:urgency/Value:3' => 'Alta',
|
||||
'Class:Problem/Attribute:urgency/Value:3+' => 'Alta',
|
||||
'Class:Problem/Attribute:priority' => 'Priorità',
|
||||
'Class:Problem/Attribute:priority+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:1' => 'Bassa',
|
||||
'Class:Problem/Attribute:priority/Value:1+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:2' => 'Media',
|
||||
'Class:Problem/Attribute:priority/Value:2+' => '',
|
||||
'Class:Problem/Attribute:priority/Value:3' => 'Alta',
|
||||
'Class:Problem/Attribute:priority/Value:3+' => '',
|
||||
'Class:Problem/Attribute:workgroup_id' => 'Gruppo di lavoro',
|
||||
'Class:Problem/Attribute:workgroup_id+' => '',
|
||||
'Class:Problem/Attribute:workgroup_name' => 'Nome',
|
||||
'Class:Problem/Attribute:workgroup_name+' => '',
|
||||
'Class:Problem/Attribute:agent_id' => 'Agente',
|
||||
'Class:Problem/Attribute:agent_id+' => '',
|
||||
'Class:Problem/Attribute:agent_name' => 'Nome dell\Agente',
|
||||
'Class:Problem/Attribute:agent_name+' => '',
|
||||
'Class:Problem/Attribute:agent_email' => 'Email dell\'Agente',
|
||||
'Class:Problem/Attribute:agent_email+' => '',
|
||||
'Class:Problem/Attribute:related_change_id' => 'Cambi Correalati',
|
||||
'Class:Problem/Attribute:related_change_id+' => '',
|
||||
'Class:Problem/Attribute:related_change_ref' => 'Ref',
|
||||
'Class:Problem/Attribute:related_change_ref+' => '',
|
||||
'Class:Problem/Attribute:close_date' => 'Data di Chiusura',
|
||||
'Class:Problem/Attribute:close_date+' => '',
|
||||
'Class:Problem/Attribute:last_update' => 'Ultimo Aggiornamento',
|
||||
'Class:Problem/Attribute:last_update+' => '',
|
||||
'Class:Problem/Attribute:assignment_date' => 'Data di asseganzione',
|
||||
'Class:Problem/Attribute:assignment_date+' => '',
|
||||
'Class:Problem/Attribute:resolution_date' => 'Data di risoluzione',
|
||||
'Class:Problem/Attribute:resolution_date+' => '',
|
||||
'Class:Problem/Attribute:knownerrors_list' => 'Errori Conosciuti',
|
||||
'Class:Problem/Attribute:knownerrors_list+' => '',
|
||||
'Class:Problem/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:Problem/Stimulus:ev_assign+' => '',
|
||||
'Class:Problem/Stimulus:ev_reassign' => 'Riassegnare',
|
||||
'Class:Problem/Stimulus:ev_reassign+' => '',
|
||||
'Class:Problem/Stimulus:ev_resolve' => 'Risolvere',
|
||||
'Class:Problem/Stimulus:ev_resolve+' => '',
|
||||
'Class:Problem/Stimulus:ev_close' => 'Chiudere',
|
||||
'Class:Problem/Stimulus:ev_close+' => '',
|
||||
));
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Menu:RequestManagement' => 'Servizio di assistenza',
|
||||
'Menu:RequestManagement+' => 'Servizio di assistenza',
|
||||
'Menu:UserRequest:Overview' => 'Panoramica',
|
||||
'Menu:UserRequest:Overview+' => 'Panoramica',
|
||||
'Menu:NewUserRequest' => 'Nuova Richiesta dall\'Utente',
|
||||
'Menu:NewUserRequest+' => 'Crea un ticket per una Nuova Richiesta dall\'Utente',
|
||||
'Menu:SearchUserRequests' => 'Cerca per Richieste dall\'Utente',
|
||||
'Menu:SearchUserRequests+' => 'Cerca per tickets delle Richieste dall\'Utente',
|
||||
'Menu:UserRequest:Shortcuts' => 'Scorciatoia',
|
||||
'Menu:UserRequest:Shortcuts+' => '',
|
||||
'Menu:UserRequest:MyRequests' => 'Richiesta assegnata a me',
|
||||
'Menu:UserRequest:MyRequests+' => 'Richiesta assegnata a me (come Agente)',
|
||||
'Menu:UserRequest:EscalatedRequests' => 'Richieste in escalation',
|
||||
'Menu:UserRequest:EscalatedRequests+' => 'Richieste in escalation',
|
||||
'Menu:UserRequest:OpenRequests' => 'Tutte le richieste aperte',
|
||||
'Menu:UserRequest:OpenRequests+' => 'Tutte le richieste aperte',
|
||||
));
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
//
|
||||
// Class: UserRequest
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:UserRequest' => 'Richiesta dell\'utente',
|
||||
'Class:UserRequest+' => '',
|
||||
'Class:UserRequest/Attribute:request_type' => 'Tipo di Richiesta',
|
||||
'Class:UserRequest/Attribute:request_type+' => '',
|
||||
'Class:UserRequest/Attribute:request_type/Value:information' => 'Informazione',
|
||||
'Class:UserRequest/Attribute:request_type/Value:information+' => 'Informazione',
|
||||
'Class:UserRequest/Attribute:request_type/Value:issue' => 'Problema',
|
||||
'Class:UserRequest/Attribute:request_type/Value:issue+' => 'Problema',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service request' => 'Richiesta di assistenza',
|
||||
'Class:UserRequest/Attribute:request_type/Value:service request+' => 'Richiesta di assistenza',
|
||||
'Class:UserRequest/Attribute:freeze_reason' => 'Motivo dell\'attesa',
|
||||
'Class:UserRequest/Attribute:freeze_reason+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_assign' => 'Assegnare',
|
||||
'Class:UserRequest/Stimulus:ev_assign+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_reassign' => 'Riassegnare',
|
||||
'Class:UserRequest/Stimulus:ev_reassign+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_timeout' => 'ev_timeout',
|
||||
'Class:UserRequest/Stimulus:ev_timeout+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_resolve' => 'Segna come risolto',
|
||||
'Class:UserRequest/Stimulus:ev_resolve+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_close' => 'Chiuso',
|
||||
'Class:UserRequest/Stimulus:ev_close+' => '',
|
||||
'Class:UserRequest/Stimulus:ev_freeze' => 'Segna come in attesa',
|
||||
'Class:UserRequest/Stimulus:ev_freeze+' => '',
|
||||
));
|
||||
|
||||
?>
|
||||
455
modules/itop-service-mgmt-1.0.0/it.dict.itop-service-mgmt.php
Normal file
455
modules/itop-service-mgmt-1.0.0/it.dict.itop-service-mgmt.php
Normal file
@@ -0,0 +1,455 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
|
||||
Dict::Add('IT IT', 'Italian' ,'Italiano' ,array(
|
||||
'Menu:ServiceManagement' => 'Gestione del Servizio',
|
||||
'Menu:ServiceManagement+' => 'Panoramica della Gestione del Servizio',
|
||||
'Menu:Service:Overview' => 'Panoramica',
|
||||
'Menu:Service:Overview+' => '',
|
||||
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'Contratti per livello di servizio',
|
||||
'UI-ServiceManagementMenu-ContractsByStatus' => 'Contratti per stato',
|
||||
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'Contratti che terminano in meno di 30 giorni',
|
||||
|
||||
'Menu:ServiceType' => 'Tipi di Servizio',
|
||||
'Menu:ServiceType+' => 'Tipi di Servizio',
|
||||
'Menu:ProviderContract' => 'Contratti con Provider',
|
||||
'Menu:ProviderContract+' => 'Contratti con Provider',
|
||||
'Menu:CustomerContract' => 'Contratti con Clienti',
|
||||
'Menu:CustomerContract+' => 'Contratti con Clienti',
|
||||
'Menu:ServiceSubcategory' => 'Sottocategorie di Servizio',
|
||||
'Menu:ServiceSubcategory+' => 'Sottocategorie di Servizio',
|
||||
'Menu:Service' => 'Servizi',
|
||||
'Menu:Service+' => 'Servizi',
|
||||
'Menu:SLA' => 'SLAs',
|
||||
'Menu:SLA+' => 'Service Level Agreements',
|
||||
'Menu:SLT' => 'SLTs',
|
||||
'Menu:SLT+' => 'Service Level Targets',
|
||||
|
||||
));
|
||||
|
||||
|
||||
/*
|
||||
'UI:ServiceManagementMenu' => 'Gestion des Services',
|
||||
'UI:ServiceManagementMenu+' => 'Gestion des Services',
|
||||
'UI:ServiceManagementMenu:Title' => 'Résumé des services & contrats',
|
||||
'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'Contrats par niveau de service',
|
||||
'UI-ServiceManagementMenu-ContractsByStatus' => 'Contrats par état',
|
||||
'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'Contrats se terminant dans moins de 30 jours',
|
||||
*/
|
||||
|
||||
|
||||
//
|
||||
// Class: Contract
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Contract' => 'Contratto',
|
||||
'Class:Contract+' => '',
|
||||
'Class:Contract/Attribute:name' => 'Nome',
|
||||
'Class:Contract/Attribute:name+' => '',
|
||||
'Class:Contract/Attribute:description' => 'Descrizione',
|
||||
'Class:Contract/Attribute:description+' => '',
|
||||
'Class:Contract/Attribute:start_date' => 'Data di inzio',
|
||||
'Class:Contract/Attribute:start_date+' => '',
|
||||
'Class:Contract/Attribute:end_date' => 'Data di fine',
|
||||
'Class:Contract/Attribute:end_date+' => '',
|
||||
'Class:Contract/Attribute:cost' => 'Costo',
|
||||
'Class:Contract/Attribute:cost+' => '',
|
||||
'Class:Contract/Attribute:cost_currency' => 'Valuta',
|
||||
'Class:Contract/Attribute:cost_currency+' => '',
|
||||
'Class:Contract/Attribute:cost_currency/Value:dollars' => 'Dollari',
|
||||
'Class:Contract/Attribute:cost_currency/Value:dollars+' => '',
|
||||
'Class:Contract/Attribute:cost_currency/Value:euros' => 'Euro',
|
||||
'Class:Contract/Attribute:cost_currency/Value:euros+' => '',
|
||||
'Class:Contract/Attribute:cost_unit' => 'Costo unitario',
|
||||
'Class:Contract/Attribute:cost_unit+' => '',
|
||||
'Class:Contract/Attribute:billing_frequency' => 'Frequenza di fatturazione',
|
||||
'Class:Contract/Attribute:billing_frequency+' => '',
|
||||
'Class:Contract/Attribute:contact_list' => 'Contatti',
|
||||
'Class:Contract/Attribute:contact_list+' => 'Contatti correlati al contratto',
|
||||
'Class:Contract/Attribute:document_list' => 'Documenti',
|
||||
'Class:Contract/Attribute:document_list+' => 'Documenti allegati al contratto',
|
||||
'Class:Contract/Attribute:ci_list' => 'CIs',
|
||||
'Class:Contract/Attribute:ci_list+' => 'CI supportate dal contratto',
|
||||
'Class:Contract/Attribute:finalclass' => 'Tipo',
|
||||
'Class:Contract/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: ProviderContract
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:ProviderContract' => 'Contratto con Provider',
|
||||
'Class:ProviderContract+' => '',
|
||||
'Class:ProviderContract/Attribute:provider_id' => 'Provider',
|
||||
'Class:ProviderContract/Attribute:provider_id+' => '',
|
||||
'Class:ProviderContract/Attribute:provider_name' => 'Nome del Provider',
|
||||
'Class:ProviderContract/Attribute:provider_name+' => '',
|
||||
'Class:ProviderContract/Attribute:sla' => 'SLA',
|
||||
'Class:ProviderContract/Attribute:sla+' => 'Service Level Agreement',
|
||||
'Class:ProviderContract/Attribute:coverage' => 'Ore di servizio',
|
||||
'Class:ProviderContract/Attribute:coverage+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: CustomerContract
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian' ,'Italian', array(
|
||||
'Class:CustomerContract' => 'Contratto con cliente',
|
||||
'Class:CustomerContract+' => '',
|
||||
'Class:CustomerContract/Attribute:org_id' => 'Cliente',
|
||||
'Class:CustomerContract/Attribute:org_id+' => '',
|
||||
'Class:CustomerContract/Attribute:org_name' => 'Nome Cliente',
|
||||
'Class:CustomerContract/Attribute:org_name+' => '',
|
||||
'Class:CustomerContract/Attribute:provider_id' => 'Provider',
|
||||
'Class:CustomerContract/Attribute:provider_id+' => '',
|
||||
'Class:CustomerContract/Attribute:provider_name' => 'Nome Provider',
|
||||
'Class:CustomerContract/Attribute:provider_name+' => '',
|
||||
'Class:CustomerContract/Attribute:support_team_id' => 'Team di supporto',
|
||||
'Class:CustomerContract/Attribute:support_team_id+' => '',
|
||||
'Class:CustomerContract/Attribute:support_team_name' => 'Team di supporto',
|
||||
'Class:CustomerContract/Attribute:support_team_name+' => '',
|
||||
'Class:CustomerContract/Attribute:provider_list' => 'Providers',
|
||||
'Class:CustomerContract/Attribute:provider_list+' => '',
|
||||
'Class:CustomerContract/Attribute:sla_list' => 'SLAs',
|
||||
'Class:CustomerContract/Attribute:sla_list+' => 'Lista delle SLA correlate con il contratto',
|
||||
'Class:CustomerContract/Attribute:provider_list' => 'Contratti di sostegno',
|
||||
'Class:CustomerContract/Attribute:sla_list+' => '',
|
||||
));
|
||||
//
|
||||
// Class: lnkCustomerContractToProviderContract
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian','Italiano', array(
|
||||
'Class:lnkCustomerContractToProviderContract' => 'lnkCustomerContractToProviderContract',
|
||||
'Class:lnkCustomerContractToProviderContract+' => '',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:customer_contract_id' => 'Contratto con Cliente',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:customer_contract_id+' => '',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:customer_contract_name' => 'Nome',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:customer_contract_name+' => '',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_contract_id' => 'Contratto con Provider',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_contract_id+' => '',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_contract_name' => 'Nome',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_contract_name+' => '',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_sla' => 'Provider SLA',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_sla+' => 'Service Level Agreement',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_coverage' => 'Ore di Servizio',
|
||||
'Class:lnkCustomerContractToProviderContract/Attribute:provider_coverage+' => '',
|
||||
));
|
||||
|
||||
|
||||
//
|
||||
// Class: lnkContractToSLA
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkContractToSLA' => 'Contratto/SLA',
|
||||
'Class:lnkContractToSLA+' => '',
|
||||
'Class:lnkContractToSLA/Attribute:contract_id' => 'Contratto',
|
||||
'Class:lnkContractToSLA/Attribute:contract_id+' => '',
|
||||
'Class:lnkContractToSLA/Attribute:contract_name' => 'Contratto',
|
||||
'Class:lnkContractToSLA/Attribute:contract_name+' => '',
|
||||
'Class:lnkContractToSLA/Attribute:sla_id' => 'SLA',
|
||||
'Class:lnkContractToSLA/Attribute:sla_id+' => '',
|
||||
'Class:lnkContractToSLA/Attribute:sla_name' => 'SLA',
|
||||
'Class:lnkContractToSLA/Attribute:sla_name+' => '',
|
||||
'Class:lnkContractToSLA/Attribute:coverage' => 'Ore di servizio',
|
||||
'Class:lnkContractToSLA/Attribute:coverage+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkContractToDoc
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkContractToDoc' => 'Contratto/Doc',
|
||||
'Class:lnkContractToDoc+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:contract_id' => 'Contratto',
|
||||
'Class:lnkContractToDoc/Attribute:contract_id+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:contract_name' => 'Contratto',
|
||||
'Class:lnkContractToDoc/Attribute:contract_name+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:document_id' => 'Documento',
|
||||
'Class:lnkContractToDoc/Attribute:document_id+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:document_name' => 'Documento',
|
||||
'Class:lnkContractToDoc/Attribute:document_name+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:document_type' => 'Tipo di Documento',
|
||||
'Class:lnkContractToDoc/Attribute:document_type+' => '',
|
||||
'Class:lnkContractToDoc/Attribute:document_status' => 'Stato del documento',
|
||||
'Class:lnkContractToDoc/Attribute:document_status+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkContractToContact
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkContractToContact' => 'Contratto/Contatto',
|
||||
'Class:lnkContractToContact+' => '',
|
||||
'Class:lnkContractToContact/Attribute:contract_id' => 'Contratto',
|
||||
'Class:lnkContractToContact/Attribute:contract_id+' => '',
|
||||
'Class:lnkContractToContact/Attribute:contract_name' => 'Contratto',
|
||||
'Class:lnkContractToContact/Attribute:contract_name+' => '',
|
||||
'Class:lnkContractToContact/Attribute:contact_id' => 'Contatto',
|
||||
'Class:lnkContractToContact/Attribute:contact_id+' => '',
|
||||
'Class:lnkContractToContact/Attribute:contact_name' => 'Contatto',
|
||||
'Class:lnkContractToContact/Attribute:contact_name+' => '',
|
||||
'Class:lnkContractToContact/Attribute:contact_email' => 'Contatto email',
|
||||
'Class:lnkContractToContact/Attribute:contact_email+' => '',
|
||||
'Class:lnkContractToContact/Attribute:role' => 'Ruolo',
|
||||
'Class:lnkContractToContact/Attribute:role+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkContractToCI
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkContractToCI' => 'Contratto/CI',
|
||||
'Class:lnkContractToCI+' => '',
|
||||
'Class:lnkContractToCI/Attribute:contract_id' => 'Contratto',
|
||||
'Class:lnkContractToCI/Attribute:contract_id+' => '',
|
||||
'Class:lnkContractToCI/Attribute:contract_name' => 'Contratto',
|
||||
'Class:lnkContractToCI/Attribute:contract_name+' => '',
|
||||
'Class:lnkContractToCI/Attribute:ci_id' => 'CI',
|
||||
'Class:lnkContractToCI/Attribute:ci_id+' => '',
|
||||
'Class:lnkContractToCI/Attribute:ci_name' => 'CI',
|
||||
'Class:lnkContractToCI/Attribute:ci_name+' => '',
|
||||
'Class:lnkContractToCI/Attribute:ci_status' => 'CI stato',
|
||||
'Class:lnkContractToCI/Attribute:ci_status+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: Service
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian','Italiano', array(
|
||||
'Class:Service' => 'Servizio',
|
||||
'Class:Service+' => '',
|
||||
'Class:Service/Attribute:org_id' => 'Provider',
|
||||
'Class:Service/Attribute:org_id+' => '',
|
||||
'Class:Service/Attribute:provider_name' => 'Provider',
|
||||
'Class:Service/Attribute:provider_name+' => '',
|
||||
'Class:Service/Attribute:name' => 'Nome',
|
||||
'Class:Service/Attribute:name+' => '',
|
||||
'Class:Service/Attribute:description' => 'Descrizione',
|
||||
'Class:Service/Attribute:description+' => '',
|
||||
'Class:Service/Attribute:type' => 'Tipo',
|
||||
'Class:Service/Attribute:type+' => '',
|
||||
'Class:Service/Attribute:type/Value:IncidentManagement' => 'Gestione Incidente',
|
||||
'Class:Service/Attribute:type/Value:IncidentManagement+' => 'Gestione Incidente',
|
||||
'Class:Service/Attribute:type/Value:RequestManagement' => 'Gestione Richieste',
|
||||
'Class:Service/Attribute:type/Value:RequestManagement+' => 'Gestione Richieste',
|
||||
'Class:Service/Attribute:status' => 'Stato',
|
||||
'Class:Service/Attribute:status+' => '',
|
||||
'Class:Service/Attribute:status/Value:design' => 'Progettazione',
|
||||
'Class:Service/Attribute:status/Value:design+' => '',
|
||||
'Class:Service/Attribute:status/Value:obsolete' => 'Obsoleto',
|
||||
'Class:Service/Attribute:status/Value:obsolete+' => '',
|
||||
'Class:Service/Attribute:status/Value:production' => 'Produzione',
|
||||
'Class:Service/Attribute:status/Value:production+' => '',
|
||||
'Class:Service/Attribute:subcategory_list' => 'Sottocategorie di servizio',
|
||||
'Class:Service/Attribute:subcategory_list+' => '',
|
||||
'Class:Service/Attribute:sla_list' => 'SLAs',
|
||||
'Class:Service/Attribute:sla_list+' => '',
|
||||
'Class:Service/Attribute:document_list' => 'Documenti',
|
||||
'Class:Service/Attribute:document_list+' => 'Documenti allegati al servizio',
|
||||
'Class:Service/Attribute:contact_list' => 'Contatti',
|
||||
'Class:Service/Attribute:contact_list+' => 'Contatti che hanno un ruolo per questo servizio',
|
||||
'Class:Service/Tab:Related_Contracts' => 'Contratti correlati',
|
||||
'Class:Service/Tab:Related_Contracts+' => 'Contratti siglati per questo servizio',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: ServiceSubcategory
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:ServiceSubcategory' => 'Sottocategorie del servizio',
|
||||
'Class:ServiceSubcategory+' => '',
|
||||
'Class:ServiceSubcategory/Attribute:name' => 'Nome',
|
||||
'Class:ServiceSubcategory/Attribute:name+' => '',
|
||||
'Class:ServiceSubcategory/Attribute:description' => 'Descrizione',
|
||||
'Class:ServiceSubcategory/Attribute:description+' => '',
|
||||
'Class:ServiceSubcategory/Attribute:service_id' => 'Servizio',
|
||||
'Class:ServiceSubcategory/Attribute:service_id+' => '',
|
||||
'Class:ServiceSubcategory/Attribute:service_name' => 'Servizio',
|
||||
'Class:ServiceSubcategory/Attribute:service_name+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: SLA
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:SLA' => 'SLA',
|
||||
'Class:SLA+' => '',
|
||||
'Class:SLA/Attribute:name' => 'Name',
|
||||
'Class:SLA/Attribute:name+' => '',
|
||||
'Class:SLA/Attribute:service_id' => 'Servizio',
|
||||
'Class:SLA/Attribute:service_id+' => '',
|
||||
'Class:SLA/Attribute:service_name' => 'Servizio',
|
||||
'Class:SLA/Attribute:service_name+' => '',
|
||||
'Class:SLA/Attribute:slt_list' => 'SLTs',
|
||||
'Class:SLA/Attribute:slt_list+' => 'Lista delle soglie dei libelli di servizio',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: SLT
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian' ,'Italiano', array(
|
||||
'Class:SLT' => 'SLT',
|
||||
'Class:SLT+' => '',
|
||||
'Class:SLT/Attribute:name' => 'Nome',
|
||||
'Class:SLT/Attribute:name+' => '',
|
||||
'Class:SLT/Attribute:metric' => 'Metrica',
|
||||
'Class:SLT/Attribute:metric+' => '',
|
||||
'Class:SLT/Attribute:metric/Value:TTO' => 'TTO',
|
||||
'Class:SLT/Attribute:metric/Value:TTO+' => 'TTO',
|
||||
'Class:SLT/Attribute:metric/Value:TTR' => 'TTR',
|
||||
'Class:SLT/Attribute:metric/Value:TTR+' => 'TTR',
|
||||
'Class:SLT/Attribute:ticket_priority' => 'Priorità del ticket',
|
||||
'Class:SLT/Attribute:ticket_priority+' => '',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:1' => '1',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:1+' => '1',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:2' => '2',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:2+' => '2',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:3' => '3',
|
||||
'Class:SLT/Attribute:ticket_priority/Value:3+' => '3',
|
||||
'Class:SLT/Attribute:value' => 'Valore',
|
||||
'Class:SLT/Attribute:value+' => '',
|
||||
'Class:SLT/Attribute:value_unit' => 'Unità',
|
||||
'Class:SLT/Attribute:value_unit+' => '',
|
||||
'Class:SLT/Attribute:value_unit/Value:days' => 'giorni',
|
||||
'Class:SLT/Attribute:value_unit/Value:days+' => 'giorni',
|
||||
'Class:SLT/Attribute:value_unit/Value:hours' => 'ore',
|
||||
'Class:SLT/Attribute:value_unit/Value:hours+' => 'ore',
|
||||
'Class:SLT/Attribute:value_unit/Value:minutes' => 'minuti',
|
||||
'Class:SLT/Attribute:value_unit/Value:minutes+' => 'minuti',
|
||||
'Class:SLT/Attribute:sla_list' => 'SLAs',
|
||||
'Class:SLT/Attribute:sla_list+' => 'SLAs che usano i SLT',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkSLTToSLA
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkSLTToSLA' => 'SLT/SLA',
|
||||
'Class:lnkSLTToSLA+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:sla_id' => 'SLA',
|
||||
'Class:lnkSLTToSLA/Attribute:sla_id+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:sla_name' => 'SLA',
|
||||
'Class:lnkSLTToSLA/Attribute:sla_name+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_id' => 'SLT',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_id+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_name' => 'SLT',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_name+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_metric' => 'Metrica',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_metric+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_ticket_priority' => 'Priorità del ticket',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_ticket_priority+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_value' => 'Valore',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_value+' => '',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_value_unit' => 'Unità',
|
||||
'Class:lnkSLTToSLA/Attribute:slt_value_unit+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkServiceToDoc
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkServiceToDoc' => 'Servizio/Doc',
|
||||
'Class:lnkServiceToDoc+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:service_id' => 'Servizio',
|
||||
'Class:lnkServiceToDoc/Attribute:service_id+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:service_name' => 'Servizio',
|
||||
'Class:lnkServiceToDoc/Attribute:service_name+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:document_id' => 'Documento',
|
||||
'Class:lnkServiceToDoc/Attribute:document_id+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:document_name' => 'Documento',
|
||||
'Class:lnkServiceToDoc/Attribute:document_name+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:document_type' => 'Tipo documento',
|
||||
'Class:lnkServiceToDoc/Attribute:document_type+' => '',
|
||||
'Class:lnkServiceToDoc/Attribute:document_status' => 'Stato del documento',
|
||||
'Class:lnkServiceToDoc/Attribute:document_status+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkServiceToContact
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkServiceToContact' => 'Service/Contatto',
|
||||
'Class:lnkServiceToContact+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:service_id' => 'Servizio',
|
||||
'Class:lnkServiceToContact/Attribute:service_id+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:service_name' => 'Servizio',
|
||||
'Class:lnkServiceToContact/Attribute:service_name+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:contact_id' => 'Contatto',
|
||||
'Class:lnkServiceToContact/Attribute:contact_id+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:contact_name' => 'Contatto',
|
||||
'Class:lnkServiceToContact/Attribute:contact_name+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:contact_email' => 'Email del contatto',
|
||||
'Class:lnkServiceToContact/Attribute:contact_email+' => '',
|
||||
'Class:lnkServiceToContact/Attribute:role' => 'Ruolo',
|
||||
'Class:lnkServiceToContact/Attribute:role+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkServiceToCI
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:lnkServiceToCI' => 'Servizio/CI',
|
||||
'Class:lnkServiceToCI+' => '',
|
||||
'Class:lnkServiceToCI/Attribute:service_id' => 'Servizio',
|
||||
'Class:lnkServiceToCI/Attribute:service_id+' => '',
|
||||
'Class:lnkServiceToCI/Attribute:service_name' => 'Servizio',
|
||||
'Class:lnkServiceToCI/Attribute:service_name+' => '',
|
||||
'Class:lnkServiceToCI/Attribute:ci_id' => 'CI',
|
||||
'Class:lnkServiceToCI/Attribute:ci_id+' => '',
|
||||
'Class:lnkServiceToCI/Attribute:ci_name' => 'CI',
|
||||
'Class:lnkServiceToCI/Attribute:ci_name+' => '',
|
||||
'Class:lnkServiceToCI/Attribute:ci_status' => 'CI stato',
|
||||
'Class:lnkServiceToCI/Attribute:ci_status+' => '',
|
||||
));
|
||||
|
||||
|
||||
?>
|
||||
267
modules/itop-tickets-1.0.0/it.dict.itop-tickets.php
Normal file
267
modules/itop-tickets-1.0.0/it.dict.itop-tickets.php
Normal file
@@ -0,0 +1,267 @@
|
||||
<?php
|
||||
// Copyright (C) 2010 Combodo SARL
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation; version 3 of the License.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
||||
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
* @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
||||
*/
|
||||
|
||||
// Dictionnay conventions
|
||||
// Class:<class_name>
|
||||
// Class:<class_name>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>
|
||||
// Class:<class_name>/Attribute:<attribute_code>+
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>
|
||||
// Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>
|
||||
// Class:<class_name>/Stimulus:<stimulus_code>+
|
||||
|
||||
|
||||
//
|
||||
// Class: Ticket
|
||||
//
|
||||
|
||||
//
|
||||
// Class: Ticket
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
||||
'Class:Ticket' => 'Ticket',
|
||||
'Class:Ticket+' => '',
|
||||
'Class:Ticket/Attribute:ref' => 'Ref',
|
||||
'Class:Ticket/Attribute:ref+' => '',
|
||||
'Class:Ticket/Attribute:title' => 'Titolo',
|
||||
'Class:Ticket/Attribute:title+' => '',
|
||||
'Class:Ticket/Attribute:description' => 'Descrizione',
|
||||
'Class:Ticket/Attribute:description+' => '',
|
||||
'Class:Ticket/Attribute:ticket_log' => 'Log',
|
||||
'Class:Ticket/Attribute:ticket_log+' => '',
|
||||
'Class:Ticket/Attribute:start_date' => 'Inzio',
|
||||
'Class:Ticket/Attribute:start_date+' => '',
|
||||
'Class:Ticket/Attribute:document_list' => 'Documenti',
|
||||
'Class:Ticket/Attribute:document_list+' => 'Documenti relativi al ticket',
|
||||
'Class:Ticket/Attribute:ci_list' => 'CIs',
|
||||
'Class:Ticket/Attribute:ci_list+' => 'CIs coivolti dall\'incidente',
|
||||
'Class:Ticket/Attribute:contact_list' => 'Contatti',
|
||||
'Class:Ticket/Attribute:contact_list+' => 'Team e persone coinvolte',
|
||||
'Class:Ticket/Attribute:incident_list' => 'Incidenti Correlati',
|
||||
'Class:Ticket/Attribute:incident_list+' => '',
|
||||
'Class:Ticket/Attribute:finalclass' => 'Tipo',
|
||||
'Class:Ticket/Attribute:finalclass+' => '',
|
||||
));
|
||||
|
||||
|
||||
//
|
||||
// Class: lnkTicketToDoc
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkTicketToDoc' => 'Ticket/Documento',
|
||||
'Class:lnkTicketToDoc+' => '',
|
||||
'Class:lnkTicketToDoc/Attribute:ticket_id' => 'Ticket',
|
||||
'Class:lnkTicketToDoc/Attribute:ticket_id+' => '',
|
||||
'Class:lnkTicketToDoc/Attribute:ticket_ref' => 'Ticket #',
|
||||
'Class:lnkTicketToDoc/Attribute:ticket_ref+' => '',
|
||||
'Class:lnkTicketToDoc/Attribute:document_id' => 'Documento',
|
||||
'Class:lnkTicketToDoc/Attribute:document_id+' => '',
|
||||
'Class:lnkTicketToDoc/Attribute:document_name' => 'Documento',
|
||||
'Class:lnkTicketToDoc/Attribute:document_name+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkTicketToContact
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkTicketToContact' => 'Ticket/Contatto',
|
||||
'Class:lnkTicketToContact+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:ticket_id' => 'Ticket',
|
||||
'Class:lnkTicketToContact/Attribute:ticket_id+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:ticket_ref' => 'Ticket #',
|
||||
'Class:lnkTicketToContact/Attribute:ticket_ref+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:contact_id' => 'Contatto',
|
||||
'Class:lnkTicketToContact/Attribute:contact_id+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:contact_name' => 'Contatto',
|
||||
'Class:lnkTicketToContact/Attribute:contact_name+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:contact_email' => 'Email',
|
||||
'Class:lnkTicketToContact/Attribute:contact_email+' => '',
|
||||
'Class:lnkTicketToContact/Attribute:role' => 'Ruolo',
|
||||
'Class:lnkTicketToContact/Attribute:role+' => '',
|
||||
));
|
||||
|
||||
//
|
||||
// Class: lnkTicketToCI
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:lnkTicketToCI' => 'Ticket/CI',
|
||||
'Class:lnkTicketToCI+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:ticket_id' => 'Ticket',
|
||||
'Class:lnkTicketToCI/Attribute:ticket_id+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:ticket_ref' => 'Ticket #',
|
||||
'Class:lnkTicketToCI/Attribute:ticket_ref+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:ci_id' => 'CI',
|
||||
'Class:lnkTicketToCI/Attribute:ci_id+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:ci_name' => 'CI',
|
||||
'Class:lnkTicketToCI/Attribute:ci_name+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:ci_status' => 'CI stato',
|
||||
'Class:lnkTicketToCI/Attribute:ci_status+' => '',
|
||||
'Class:lnkTicketToCI/Attribute:impact' => 'Impatto',
|
||||
'Class:lnkTicketToCI/Attribute:impact+' => '',
|
||||
));
|
||||
|
||||
|
||||
//
|
||||
// Class: ResponseTicket
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italian', array(
|
||||
'Class:ResponseTicket' => 'Ticket di risposta',
|
||||
'Class:ResponseTicket+' => '',
|
||||
'Class:ResponseTicket/Attribute:status' => 'Stato',
|
||||
'Class:ResponseTicket/Attribute:status+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:new' => 'Nuovo',
|
||||
'Class:ResponseTicket/Attribute:status/Value:new+' => 'Recentemente aperto',
|
||||
'Class:ResponseTicket/Attribute:status/Value:escalated_tto' => 'Escalation/TTO',
|
||||
'Class:ResponseTicket/Attribute:status/Value:escalated_tto+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:assigned' => 'Assegnato',
|
||||
'Class:ResponseTicket/Attribute:status/Value:assigned+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:escalated_ttr' => 'Escalation/TTR',
|
||||
'Class:ResponseTicket/Attribute:status/Value:escalated_ttr+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:frozen' => 'In attesa',
|
||||
'Class:ResponseTicket/Attribute:status/Value:frozen+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:resolved' => 'Risolto',
|
||||
'Class:ResponseTicket/Attribute:status/Value:resolved+' => '',
|
||||
'Class:ResponseTicket/Attribute:status/Value:closed' => 'Chiuso',
|
||||
'Class:ResponseTicket/Attribute:status/Value:closed+' => '',
|
||||
'Class:ResponseTicket/Attribute:caller_id' => 'Visitatore',
|
||||
'Class:ResponseTicket/Attribute:caller_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:caller_email' => 'Email',
|
||||
'Class:ResponseTicket/Attribute:caller_email+' => '',
|
||||
'Class:ResponseTicket/Attribute:org_id' => 'Cliente',
|
||||
'Class:ResponseTicket/Attribute:org_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:org_name' => 'Cliente',
|
||||
'Class:ResponseTicket/Attribute:org_name+' => '',
|
||||
'Class:ResponseTicket/Attribute:service_id' => 'Servizio',
|
||||
'Class:ResponseTicket/Attribute:service_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:service_name' => 'Nome',
|
||||
'Class:ResponseTicket/Attribute:service_name+' => '',
|
||||
'Class:ResponseTicket/Attribute:servicesubcategory_id' => 'Elemento di servizio',
|
||||
'Class:ResponseTicket/Attribute:servicesubcategory_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:servicesubcategory_name' => 'Name',
|
||||
'Class:ResponseTicket/Attribute:servicesubcategory_name+' => '',
|
||||
'Class:ResponseTicket/Attribute:product' => 'Prodotto',
|
||||
'Class:ResponseTicket/Attribute:product+' => '',
|
||||
'Class:ResponseTicket/Attribute:impact' => 'Impatto',
|
||||
'Class:ResponseTicket/Attribute:impact+' => '',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:1' => 'Un dipartimento',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:1+' => '',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:2' => 'Un servizio',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:2+' => '',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:3' => 'Una persona',
|
||||
'Class:ResponseTicket/Attribute:impact/Value:3+' => '',
|
||||
'Class:ResponseTicket/Attribute:urgency' => 'Urgenza',
|
||||
'Class:ResponseTicket/Attribute:urgency+' => '',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:1' => 'Alta',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:1+' => '',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:2' => 'Media',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:2+' => '',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:3' => 'Bassa',
|
||||
'Class:ResponseTicket/Attribute:urgency/Value:3+' => '',
|
||||
'Class:ResponseTicket/Attribute:priority' => 'Priorità',
|
||||
'Class:ResponseTicket/Attribute:priority+' => '',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:1' => 'Alta',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:1+' => '',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:2' => 'Media',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:2+' => '',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:3' => 'Bassa',
|
||||
'Class:ResponseTicket/Attribute:priority/Value:3+' => '',
|
||||
'Class:ResponseTicket/Attribute:workgroup_id' => 'Gruppo di lavoro',
|
||||
'Class:ResponseTicket/Attribute:workgroup_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:workgroup_name' => 'Workgroup',
|
||||
'Class:ResponseTicket/Attribute:workgroup_name+' => '',
|
||||
'Class:ResponseTicket/Attribute:agent_id' => 'Agente',
|
||||
'Class:ResponseTicket/Attribute:agent_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:agent_name' => 'Agente',
|
||||
'Class:ResponseTicket/Attribute:agent_name+' => '',
|
||||
'Class:ResponseTicket/Attribute:agent_email' => 'Email dell\'agente',
|
||||
'Class:ResponseTicket/Attribute:agent_email+' => '',
|
||||
'Class:ResponseTicket/Attribute:related_problem_id' => 'Problemi correlati',
|
||||
'Class:ResponseTicket/Attribute:related_problem_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:related_problem_ref' => 'Ref',
|
||||
'Class:ResponseTicket/Attribute:related_problem_ref+' => '',
|
||||
'Class:ResponseTicket/Attribute:related_change_id' => 'Cambi correlati',
|
||||
'Class:ResponseTicket/Attribute:related_change_id+' => '',
|
||||
'Class:ResponseTicket/Attribute:related_change_ref' => 'Cambi correlati',
|
||||
'Class:ResponseTicket/Attribute:related_change_ref+' => '',
|
||||
'Class:ResponseTicket/Attribute:close_date' => 'Chiuso',
|
||||
'Class:ResponseTicket/Attribute:close_date+' => '',
|
||||
'Class:ResponseTicket/Attribute:last_update' => 'Ultimo aggiornamento',
|
||||
'Class:ResponseTicket/Attribute:last_update+' => '',
|
||||
'Class:ResponseTicket/Attribute:assignment_date' => 'Data di Assegnazione ',
|
||||
'Class:ResponseTicket/Attribute:assignment_date+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_date' => 'Data di risoluzione',
|
||||
'Class:ResponseTicket/Attribute:resolution_date+' => '',
|
||||
'Class:ResponseTicket/Attribute:tto_escalation_deadline' => 'TTO Scadenza di Escalation',
|
||||
'Class:ResponseTicket/Attribute:tto_escalation_deadline+' => '',
|
||||
'Class:ResponseTicket/Attribute:ttr_escalation_deadline' => 'TTR Scadenza di Escalation',
|
||||
'Class:ResponseTicket/Attribute:ttr_escalation_deadline+' => '',
|
||||
'Class:ResponseTicket/Attribute:closure_deadline' => 'Termine di chiusura',
|
||||
'Class:ResponseTicket/Attribute:closure_deadline+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_code' => 'Codice di risoluzione',
|
||||
'Class:ResponseTicket/Attribute:resolution_code+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:couldnotreproduce' => 'Non puo\' essere riprodotto',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:couldnotreproduce+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:duplicate' => 'Ticket duplicato',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:duplicate+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:fixed' => 'Fissato',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:fixed+' => '',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:irrelevant' => 'Irrilevante',
|
||||
'Class:ResponseTicket/Attribute:resolution_code/Value:irrelevant+' => '',
|
||||
'Class:ResponseTicket/Attribute:solution' => 'Soluzione',
|
||||
'Class:ResponseTicket/Attribute:solution+' => '',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction' => 'Soddisfazione dell\'utente',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction+' => '',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:1' => 'Molto soddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:1+' => 'Molto soddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:2' => 'Abbastanza soddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:2+' => 'Abbastanza soddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:3' => 'Piuttosto insoddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:3+' => 'Piuttosto insoddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:4' => 'Molto insoddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_satisfaction/Value:4+' => 'Molto insoddisfatto',
|
||||
'Class:ResponseTicket/Attribute:user_commment' => 'Commento dell\'utente',
|
||||
'Class:ResponseTicket/Attribute:user_commment+' => '',
|
||||
'Class:ResponseTicket/Stimulus:ev_assign' => 'Assegna',
|
||||
'Class:ResponseTicket/Stimulus:ev_assign+' => '',
|
||||
'Class:ResponseTicket/Stimulus:ev_reassign' => 'Riassegna',
|
||||
'Class:ResponseTicket/Stimulus:ev_reassign+' => '',
|
||||
'Class:ResponseTicket/Stimulus:ev_timeout' => 'Escalation',
|
||||
'Class:ResponseTicket/Stimulus:ev_timeout+' => '',
|
||||
'Class:ResponseTicket/Stimulus:ev_resolve' => 'Segna come risolto',
|
||||
'Class:ResponseTicket/Stimulus:ev_resolve+' => '',
|
||||
'Class:ResponseTicket/Stimulus:ev_close' => 'Chiudi',
|
||||
'Class:ResponseTicket/Stimulus:ev_close+' => '',
|
||||
));
|
||||
|
||||
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user