mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
89 lines
4.1 KiB
PHP
89 lines
4.1 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: lnkFunctionalCIToProviderContract
|
|
//
|
|
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:lnkFunctionalCIToProviderContract' => 'Link FunctionalCI / ProviderContract',
|
|
'Class:lnkFunctionalCIToProviderContract+' => 'This link models the functional CIs that are supported by an external company through a provider contract.',
|
|
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Provider contract',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Provider contract Name',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'CI',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'CI Name',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '',
|
|
]);
|
|
|
|
//
|
|
// Class: lnkFunctionalCIToService
|
|
//
|
|
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:lnkFunctionalCIToService' => 'Link FunctionalCI / Service',
|
|
'Class:lnkFunctionalCIToService+' => 'This link models the functional CIs that are required to deliver a Service and whose malfunction would affect the quality of the Service.',
|
|
'Class:lnkFunctionalCIToService/Name' => '%1$s / %2$s',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_id' => 'Service',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_id+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_name' => 'Service Name',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_name+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_id' => 'CI',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_id+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_name' => 'CI Name',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_name+' => '',
|
|
]);
|
|
|
|
//
|
|
// Class: FunctionalCI
|
|
//
|
|
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:FunctionalCI/Attribute:providercontracts_list' => 'Provider contracts',
|
|
'Class:FunctionalCI/Attribute:providercontracts_list+' => 'All the provider contracts for this configuration item',
|
|
'Class:FunctionalCI/Attribute:services_list' => 'Services',
|
|
'Class:FunctionalCI/Attribute:services_list+' => 'All the services impacted by this configuration item',
|
|
]);
|
|
|
|
//
|
|
// Class: Document
|
|
//
|
|
|
|
Dict::Add('EN US', 'English', 'English', [
|
|
'Class:Document/Attribute:contracts_list' => 'Contracts',
|
|
'Class:Document/Attribute:contracts_list+' => 'All the contracts linked to this document',
|
|
'Class:Document/Attribute:services_list' => 'Services',
|
|
'Class:Document/Attribute:services_list+' => 'All the services linked to this document',
|
|
]);
|