mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-21 16:22:20 +02:00
76 lines
2.8 KiB
PHP
76 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Copyright (C) 2013-2024 Combodo SAS
|
|
*
|
|
* This file is part of iTop.
|
|
*
|
|
* iTop is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* iTop is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
*/
|
|
Dict::Add('IT IT', 'Italian', 'Italiano', array(
|
|
|
|
// Placeholders
|
|
// $%1s : host object class name
|
|
// $%2s : host object friendlyname
|
|
// $%3s : current tab name
|
|
// $%4s : remote object class name
|
|
// $%5s : remote object friendlyname
|
|
'UI:Links:Object:New:Modal:Title' => 'Crea un oggetto',
|
|
|
|
// Create
|
|
'UI:Links:Create:Button' => 'Crea',
|
|
'UI:Links:Create:Button+' => 'Crea un %4$s',
|
|
'UI:Links:Create:Modal:Title' => 'Crea un %4$s in %2$s',
|
|
|
|
// Add
|
|
'UI:Links:Add:Button' => 'Aggiungi',
|
|
'UI:Links:Add:Button+' => 'Aggiungi un %4$s',
|
|
'UI:Links:Add:Modal:Title' => 'Aggiungi un %4$s a %2$s',
|
|
|
|
// Modify link
|
|
'UI:Links:ModifyLink:Button' => 'Modifica',
|
|
'UI:Links:ModifyLink:Button+' => 'Modifica questo link',
|
|
'UI:Links:ModifyLink:Modal:Title' => 'Modifica il link tra %2$s e %5$s',
|
|
|
|
// Modify object
|
|
'UI:Links:ModifyObject:Button' => 'Modifica',
|
|
'UI:Links:ModifyObject:Button+' => 'Modifica questo oggetto',
|
|
'UI:Links:ModifyObject:Modal:Title' => '%5$s',
|
|
|
|
// Remove
|
|
'UI:Links:Remove:Button' => 'Rimuovi',
|
|
'UI:Links:Remove:Button+' => 'Rimuovi questo %4$s',
|
|
'UI:Links:Remove:Modal:Title' => 'Rimuovi un %4$s dal suo %1$s',
|
|
'UI:Links:Remove:Modal:Message' => 'Vuoi davvero rimuovere %5$s da %2$s?',
|
|
|
|
// Delete
|
|
'UI:Links:Delete:Button' => 'Elimina',
|
|
'UI:Links:Delete:Button+' => 'Elimina questo %4$s',
|
|
'UI:Links:Delete:Modal:Title' => 'Elimina un %4$s',
|
|
'UI:Links:Delete:Modal:Message' => 'Vuoi davvero eliminare %5$s?',
|
|
|
|
// Bulk
|
|
'UI:Links:Bulk:LinkWillBeCreatedForAllObjects' => 'Aggiungi a tutti gli oggetti',
|
|
'UI:Links:Bulk:LinkWillBeDeletedFromAllObjects' => 'Rimuovi da tutti gli oggetti',
|
|
'UI:Links:Bulk:LinkWillBeCreatedFor1Object' => 'Aggiungi a un oggetto',
|
|
'UI:Links:Bulk:LinkWillBeDeletedFrom1Object' => 'Rimuovi da un oggetto',
|
|
'UI:Links:Bulk:LinkWillBeCreatedForXObjects' => 'Aggiungi {count} oggetti',
|
|
'UI:Links:Bulk:LinkWillBeDeletedFromXObjects' => 'Rimuovi {count} oggetti',
|
|
'UI:Links:Bulk:LinkExistForAllObjects' => 'Tutti gli oggetti sono già collegati',
|
|
'UI:Links:Bulk:LinkExistForOneObject' => 'Un oggetto è collegato',
|
|
'UI:Links:Bulk:LinkExistForXObjects' => '{count} oggetti sono collegati',
|
|
|
|
// New item
|
|
'UI:Links:NewItem' => 'Nuovo elemento',
|
|
|
|
));
|