mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +02:00
85 lines
3.7 KiB
PHP
85 lines
3.7 KiB
PHP
<?php
|
|
// Copyright (C) 2010-2023 Combodo SARL
|
|
//
|
|
// 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-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Note: The classes have been grouped by categories: bizmodel
|
|
//////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////
|
|
// Classes in 'bizmodel'
|
|
//////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
// Class: lnkFunctionalCIToProviderContract
|
|
//
|
|
Dict::Add('FR FR', 'French', 'Français', array(
|
|
'Class:lnkFunctionalCIToProviderContract' => 'Lien CI / Contrat fournisseur',
|
|
'Class:lnkFunctionalCIToProviderContract+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Name' => '%1$s / %2$s',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id' => 'Contrat fournisseur',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_id+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name' => 'Nom contrat fournisseur',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:providercontract_name+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id' => 'CI',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_id+' => '',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name' => 'Nom CI',
|
|
'Class:lnkFunctionalCIToProviderContract/Attribute:functionalci_name+' => '',
|
|
));
|
|
|
|
//
|
|
// Class: lnkFunctionalCIToService
|
|
//
|
|
|
|
Dict::Add('FR FR', 'French', 'Français', array(
|
|
'Class:lnkFunctionalCIToService' => 'Lien CI / Service',
|
|
'Class:lnkFunctionalCIToService+' => '',
|
|
'Class:lnkFunctionalCIToService/Name' => '%1$s / %2$s',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_id' => 'Service',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_id+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_name' => 'Nom service',
|
|
'Class:lnkFunctionalCIToService/Attribute:service_name+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_id' => 'CI',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_id+' => '',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_name' => 'Nom CI',
|
|
'Class:lnkFunctionalCIToService/Attribute:functionalci_name+' => '',
|
|
));
|
|
|
|
//
|
|
// Class: FunctionalCI
|
|
//
|
|
|
|
Dict::Add('FR FR', 'French', 'Français', array(
|
|
'Class:FunctionalCI/Attribute:providercontracts_list' => 'Contrats fournisseur',
|
|
'Class:FunctionalCI/Attribute:providercontracts_list+' => '',
|
|
'Class:FunctionalCI/Attribute:services_list' => 'Services',
|
|
'Class:FunctionalCI/Attribute:services_list+' => '',
|
|
));
|
|
|
|
//
|
|
// Class: Document
|
|
//
|
|
|
|
Dict::Add('FR FR', 'French', 'Français', array(
|
|
'Class:Document/Attribute:contracts_list' => 'Contrats',
|
|
'Class:Document/Attribute:contracts_list+' => 'Tous les contrats liés à ce document',
|
|
'Class:Document/Attribute:services_list' => 'Services',
|
|
'Class:Document/Attribute:services_list+' => 'Tous les services liés à ce document',
|
|
)); |