mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-25 03:28:45 +02:00
66 lines
3.0 KiB
PHP
66 lines
3.0 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-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
|
|
// along with iTop. If not, see <http://www.gnu.org/licenses/>
|
|
/**
|
|
* @author Benjamin Planque <benjamin.planque@combodo.com>
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Note: The classes have been grouped by categories: bizmodel
|
|
//////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Classes in 'bizmodel'
|
|
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
|
|
//
|
|
// Class: lnkFunctionalCIToTicket
|
|
//
|
|
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:lnkFunctionalCIToTicket' => 'Link FunctionalCI / Ticket',
|
|
'Class:lnkFunctionalCIToTicket+' => 'This link models the functional CIs that are concerned by a Ticket (such as a User Request, an Incident, a Change, ...)',
|
|
'Class:lnkFunctionalCIToTicket/Name' => '%1$s / %2$s',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id' => 'Ticket',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_id+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref' => 'Ref',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_ref+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title' => 'Ticket title',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:ticket_title+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id' => 'CI',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_id+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name' => 'CI Name',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:functionalci_name+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact' => 'Impact (text)',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact+' => '',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact_code' => 'Impact',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:manual' => 'Added manually',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:computed' => 'Computed',
|
|
'Class:lnkFunctionalCIToTicket/Attribute:impact_code/Value:not_impacted' => 'Not impacted',
|
|
]);
|
|
|
|
//
|
|
// Class: FunctionalCI
|
|
//
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:FunctionalCI/Attribute:tickets_list' => 'Tickets',
|
|
'Class:FunctionalCI/Attribute:tickets_list+' => 'All the tickets for this configuration item',
|
|
]);
|