mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-20 07:42:17 +02:00
N°8515 - Add CMDB datamodel for Docker and Kubernetes (#787)
* N°8515 - Add CMDB datamodel for Docker and Kubernetes * N°8515 - Add Cloud class under Virtualization * N°8515 - Add lnkContainerApplicationToImage and more fields on Image * N°8515 - Move ContainerApplication under SoftwareInstance * N°8515 - Use structural data instead of explicit load -------- Co-authored-by: Stephen Abello <stephen.abello@combodo.com> Co-authored-by: Thomas Casteleyn <thomas.casteleyn@super-visions.com>
This commit is contained in:
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
//
|
||||
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
//
|
||||
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
//
|
||||
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,8 +22,21 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('EN US', 'English', 'English', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.',
|
||||
'Class:Cloud/Attribute:provider_id' => 'Provider',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -31,6 +44,6 @@ Dict::Add('EN US', 'English', 'English', [
|
||||
//
|
||||
|
||||
Dict::Add('EN US', 'English', 'English', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '',
|
||||
]);
|
||||
|
||||
@@ -23,5 +23,22 @@
|
||||
*/
|
||||
|
||||
Dict::Add('EN GB', 'British English', 'British English', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class: LogicalInterface
|
||||
//
|
||||
|
||||
Dict::Add('EN GB', 'British English', 'British English', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '',
|
||||
]);
|
||||
|
||||
@@ -9,7 +9,15 @@
|
||||
* @notas Utilizar codificación UTF-8 para mostrar acentos y otros caracteres especiales
|
||||
*/
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -17,6 +25,6 @@ Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
//
|
||||
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -21,8 +21,22 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('FR FR', 'French', 'Français', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Nuage',
|
||||
'Class:Cloud+' => 'Hôte virtuel, opéré par un fournisseur de services Cloud, il peut héberger des Machines Virtuelles, des Hôtes pour Conteneurs, etc.',
|
||||
'Class:Cloud/Attribute:provider_id' => 'Fournisseur',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Organisation fournissant le nuage',
|
||||
'Class:Cloud/Attribute:location_id' => 'Site',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Site du fournisseur, hébergeant le nuage',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Hôtes pour conteneurs',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'Liste des hôtes hébergés dans ce nuage',
|
||||
]);
|
||||
|
||||
//
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
//
|
||||
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
//
|
||||
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -14,7 +14,15 @@
|
||||
*
|
||||
*/
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -22,6 +30,6 @@ Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
//
|
||||
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organisatie',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
//
|
||||
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
//
|
||||
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -12,7 +12,15 @@
|
||||
*
|
||||
*/
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -20,6 +28,6 @@ Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
//
|
||||
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
//
|
||||
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
//
|
||||
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
@@ -22,7 +22,15 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
// Dictionary entries go here
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'Class:Cloud+' => 'A Virtual Host operated by a Cloud provider. It can host Virtual Machines and Container Hosts.~~',
|
||||
'Class:Cloud/Attribute:provider_id+' => 'Who provides the cloud~~',
|
||||
'Class:Cloud/Attribute:location_id' => 'Location~~',
|
||||
'Class:Cloud/Attribute:location_id+' => 'Where is located the cloud~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list' => 'Container Hosts~~',
|
||||
'Class:Cloud/Attribute:containerhosts_list+' => 'List of container hosts hosted in this cloud~~',
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -30,6 +38,6 @@ Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
//
|
||||
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Org id~~',
|
||||
'Class:LogicalInterface/Attribute:org_id' => 'Organization~~',
|
||||
'Class:LogicalInterface/Attribute:org_id+' => '~~',
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user