mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-01 06:28:46 +02:00
60 lines
2.6 KiB
PHP
60 lines
2.6 KiB
PHP
<?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
|
|
|
|
/**
|
|
* @author Erwan Taloc <erwan.taloc@combodo.com>
|
|
* @author Romain Quetiez <romain.quetiez@combodo.com>
|
|
* @author Denis Flaven <denis.flaven@combodo.com>
|
|
|
|
* @licence http://www.opensource.org/licenses/gpl-3.0.html LGPL
|
|
*/
|
|
|
|
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
|
'Class:Incident' => 'Incidente',
|
|
'Class:Incident+' => '',
|
|
'Class:Incident/Stimulus:ev_assign' => 'Assegna',
|
|
'Class:Incident/Stimulus:ev_assign+' => '',
|
|
'Class:Incident/Stimulus:ev_reassign' => 'Riassegna',
|
|
'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+' => '',
|
|
'Class:lnkTicketToIncident' => 'Ticket per Incidente',
|
|
'Class:lnkTicketToIncident/Attribute:ticket_id' => 'Ticket',
|
|
'Class:lnkTicketToIncident/Attribute:incident_id' => 'Incidente',
|
|
'Class:lnkTicketToIncident/Attribute:reason' => 'Motivo',
|
|
'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',
|
|
));
|
|
?>
|