mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 02:28:44 +02:00
N°8844 - Datamodel Cloud moved in Virtualization
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.2">
|
||||
<itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3">
|
||||
<classes>
|
||||
<class id="ContainerImage" _delta="define">
|
||||
<parent>cmdbAbstractObject</parent>
|
||||
@@ -1196,6 +1196,38 @@
|
||||
</details>
|
||||
</presentation>
|
||||
</class>
|
||||
<class id="Cloud" _delta="must_exist">
|
||||
<fields>
|
||||
<field id="containerhosts_list" xsi:type="AttributeLinkedSet" _delta="define">
|
||||
<linked_class>ContainerHost</linked_class>
|
||||
<ext_key_to_me>system_id</ext_key_to_me>
|
||||
<tracking_level>list</tracking_level>
|
||||
<edit_mode/>
|
||||
<with_php_constraint>false</with_php_constraint>
|
||||
<with_php_computation>false</with_php_computation>
|
||||
<edit_when/>
|
||||
</field>
|
||||
</fields>
|
||||
<presentation>
|
||||
<details>
|
||||
<items>
|
||||
<item id="containerhosts_list" _delta="define">
|
||||
<rank>40</rank>
|
||||
</item>
|
||||
</items>
|
||||
</details>
|
||||
</presentation>
|
||||
<relations>
|
||||
<relation id="impacts" _delta="merge">
|
||||
<neighbours>
|
||||
<neighbour id="containerhosts" _delta="define">
|
||||
<attribute>containerhosts_list</attribute>
|
||||
<direction>both</direction>
|
||||
</neighbour>
|
||||
</neighbours>
|
||||
</relation>
|
||||
</relations>
|
||||
</class>
|
||||
</classes>
|
||||
<menus>
|
||||
<menu id="ConfigManagementOverview" xsi:type="DashboardMenuNode" _delta="must_exist">
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
@@ -93,8 +94,6 @@ Dict::Add('EN US', 'English', 'English', [
|
||||
'Class:ContainerVirtualHost/Attribute:status+' => 'Status of the container platform',
|
||||
'Class:ContainerVirtualHost/Attribute:containerapplications_list' => 'Applications',
|
||||
'Class:ContainerVirtualHost/Attribute:containerapplications_list+' => 'Applications running on this container environment',
|
||||
|
||||
|
||||
]);
|
||||
|
||||
//
|
||||
@@ -155,6 +154,3 @@ Dict::Add('EN US', 'English', 'English', [
|
||||
'Class:ContainerImageType' => 'Container Image Type',
|
||||
'Class:ContainerImageType+' => 'Typology of container images',
|
||||
]);
|
||||
|
||||
|
||||
?>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Localized data
|
||||
*
|
||||
@@ -15,6 +16,7 @@ Dict::Add('FR FR', 'French', 'Français', [
|
||||
'Container:moreinfo' => 'Spécificités de la conteneurisation',
|
||||
'Container:otherinfo' => 'Dates et description',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Container Image
|
||||
//
|
||||
@@ -153,5 +155,3 @@ Dict::Add('FR FR', 'French', 'Français', [
|
||||
'Class:ContainerImageType' => 'Type d\'image',
|
||||
'Class:ContainerImageType+' => 'Typologie d\'images pour container',
|
||||
]);
|
||||
|
||||
?>
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
<?php
|
||||
|
||||
// PHP Data Model definition file
|
||||
|
||||
// WARNING - WARNING - WARNING
|
||||
// DO NOT EDIT THIS FILE (unless you know what you are doing)
|
||||
//
|
||||
// If you provide a datamodel.xxxx.xml file with your module,
|
||||
// this file WILL BE overwritten by the compilation of the
|
||||
// module (during the setup) if the datamodel.xxxx.xml file
|
||||
// contains the definition of new classes or menus.
|
||||
//
|
||||
// The recommended way to define new classes (for iTop 2.0 and later) is via the XML definition.
|
||||
// This file remains in the module's template only for the cases where there is:
|
||||
// - either no new class or menu defined in the XML file
|
||||
// - or no XML file at all supplied by the module
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
<?php
|
||||
|
||||
//
|
||||
// iTop module definition file
|
||||
//
|
||||
|
||||
SetupWebPage::AddModule(
|
||||
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
||||
'itop-container-mgmt/3.2.0',
|
||||
array(
|
||||
'itop-container-mgmt/3.3.0',
|
||||
[
|
||||
// Identification
|
||||
//
|
||||
'label' => 'Container management',
|
||||
@@ -14,41 +15,39 @@ SetupWebPage::AddModule(
|
||||
|
||||
// Setup
|
||||
//
|
||||
'dependencies' => array(
|
||||
'itop-virtualization-mgmt/3.2.0'
|
||||
),
|
||||
'dependencies' => [
|
||||
'itop-virtualization-mgmt/3.3.0',
|
||||
],
|
||||
'mandatory' => false,
|
||||
'visible' => true,
|
||||
'installer' => 'ContainerTypeInstaller',
|
||||
'installer' => '',
|
||||
|
||||
// Components
|
||||
//
|
||||
'datamodel' => array(
|
||||
'model.itop-container-mgmt.php', // Contains the PHP code generated by the "compilation" of datamodel.combodo-container-mgmt.xml
|
||||
),
|
||||
'webservice' => array(
|
||||
|
||||
),
|
||||
'data.struct' => array(
|
||||
'datamodel' => [
|
||||
|
||||
],
|
||||
'webservice' => [
|
||||
|
||||
],
|
||||
'data.struct' => [
|
||||
// add your 'structure' definition XML files here,
|
||||
'data/en_us.data.itop-container-type.xml',
|
||||
'data/en_us.data.itop-container-image-type.xml',
|
||||
),
|
||||
'data.sample' => array(
|
||||
],
|
||||
'data.sample' => [
|
||||
// add your sample data XML files here,
|
||||
),
|
||||
|
||||
],
|
||||
|
||||
// Documentation
|
||||
//
|
||||
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
|
||||
'doc.more_information' => '', // hyperlink to more information, if any
|
||||
'doc.more_information' => '', // hyperlink to more information, if any
|
||||
|
||||
// Default settings
|
||||
//
|
||||
'settings' => array(
|
||||
'settings' => [
|
||||
// Module specific settings go here, if any
|
||||
),
|
||||
)
|
||||
],
|
||||
]
|
||||
);
|
||||
|
||||
|
||||
|
||||
0
datamodels/2.x/itop-virtualization-mgmt/data.sample.farm.xml → datamodels/2.x/itop-virtualization-mgmt/data/data.sample.farm.xml
Executable file → Normal file
0
datamodels/2.x/itop-virtualization-mgmt/data.sample.farm.xml → datamodels/2.x/itop-virtualization-mgmt/data/data.sample.farm.xml
Executable file → Normal file
0
datamodels/2.x/itop-virtualization-mgmt/data.sample.vm.xml → datamodels/2.x/itop-virtualization-mgmt/data/data.sample.vm.xml
Executable file → Normal file
0
datamodels/2.x/itop-virtualization-mgmt/data.sample.vm.xml → datamodels/2.x/itop-virtualization-mgmt/data/data.sample.vm.xml
Executable file → Normal file
@@ -1007,23 +1007,6 @@
|
||||
</style>
|
||||
</properties>
|
||||
<fields>
|
||||
<field id="containerhosts_list" xsi:type="AttributeLinkedSet">
|
||||
<linked_class>ContainerHost</linked_class>
|
||||
<ext_key_to_me>system_id</ext_key_to_me>
|
||||
<tracking_level>list</tracking_level>
|
||||
<edit_mode/>
|
||||
<with_php_constraint>false</with_php_constraint>
|
||||
<with_php_computation>false</with_php_computation>
|
||||
<edit_when/>
|
||||
</field>
|
||||
<field id="location_id" xsi:type="AttributeExternalKey">
|
||||
<sql>location_id</sql>
|
||||
<filter><![CDATA[SELECT Location WHERE org_id=:this->provider_id]]></filter>
|
||||
<is_null_allowed>true</is_null_allowed>
|
||||
<target_class>Location</target_class>
|
||||
<on_target_delete>DEL_MANUAL</on_target_delete>
|
||||
<tracking_level>all</tracking_level>
|
||||
</field>
|
||||
<field id="provider_id" xsi:type="AttributeExternalKey">
|
||||
<sql>provider_id</sql>
|
||||
<filter/>
|
||||
@@ -1032,6 +1015,17 @@
|
||||
<on_target_delete>DEL_MANUAL</on_target_delete>
|
||||
<tracking_level>all</tracking_level>
|
||||
</field>
|
||||
<field id="location_id" xsi:type="AttributeExternalKey">
|
||||
<sql>location_id</sql>
|
||||
<filter><![CDATA[SELECT Location WHERE org_id=:this->provider_id]]></filter>
|
||||
<dependencies>
|
||||
<attribute id="provider_id"/>
|
||||
</dependencies>
|
||||
<is_null_allowed>true</is_null_allowed>
|
||||
<target_class>Location</target_class>
|
||||
<on_target_delete>DEL_MANUAL</on_target_delete>
|
||||
<tracking_level>all</tracking_level>
|
||||
</field>
|
||||
</fields>
|
||||
<methods/>
|
||||
<presentation>
|
||||
@@ -1074,7 +1068,7 @@
|
||||
<items>
|
||||
<item id="col:col1">
|
||||
<items>
|
||||
<item id="fieldset:Container:baseinfo">
|
||||
<item id="fieldset:Virtualization:baseinfo">
|
||||
<items>
|
||||
<item id="name">
|
||||
<rank>10</rank>
|
||||
@@ -1088,17 +1082,17 @@
|
||||
<item id="business_criticity">
|
||||
<rank>40</rank>
|
||||
</item>
|
||||
<item id="location_id">
|
||||
<rank>50</rank>
|
||||
</item>
|
||||
</items>
|
||||
<rank>10</rank>
|
||||
</item>
|
||||
<item id="fieldset:Container:moreinfo">
|
||||
<item id="fieldset:Virtualization:moreinfo">
|
||||
<items>
|
||||
<item id="provider_id">
|
||||
<rank>10</rank>
|
||||
</item>
|
||||
<item id="location_id">
|
||||
<rank>20</rank>
|
||||
</item>
|
||||
</items>
|
||||
<rank>20</rank>
|
||||
</item>
|
||||
@@ -1107,7 +1101,7 @@
|
||||
</item>
|
||||
<item id="col:col2">
|
||||
<items>
|
||||
<item id="fieldset:Container:otherinfo">
|
||||
<item id="fieldset:Virtualization:otherinfo">
|
||||
<items>
|
||||
<item id="move2production">
|
||||
<rank>50</rank>
|
||||
@@ -1124,9 +1118,6 @@
|
||||
<item id="virtualmachine_list">
|
||||
<rank>30</rank>
|
||||
</item>
|
||||
<item id="containerhosts_list">
|
||||
<rank>40</rank>
|
||||
</item>
|
||||
<item id="contacts_list">
|
||||
<rank>50</rank>
|
||||
</item>
|
||||
@@ -1158,16 +1149,6 @@
|
||||
</items>
|
||||
</default_search>
|
||||
</presentation>
|
||||
<relations>
|
||||
<relation id="impacts">
|
||||
<neighbours>
|
||||
<neighbour id="containerhosts">
|
||||
<attribute>containerhosts_list</attribute>
|
||||
<direction>both</direction>
|
||||
</neighbour>
|
||||
</neighbours>
|
||||
</relation>
|
||||
</relations>
|
||||
</class>
|
||||
<class id="Server">
|
||||
<relations>
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('CS CZ', 'Czech', 'Čeština', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,25 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('DA DA', 'Danish', 'Dansk', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,25 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('DE DE', 'German', 'Deutsch', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -22,6 +22,16 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('EN US', 'English', 'English', [
|
||||
'Virtualization:baseinfo' => 'General',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics',
|
||||
'Virtualization:otherinfo' => 'Dates and description',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
@@ -22,6 +22,20 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('EN GB', 'British English', 'British English', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('EN GB', 'British English', 'British English', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
|
||||
@@ -8,10 +8,25 @@
|
||||
* @author Miguel Turrubiates <miguel_tf@yahoo.com>
|
||||
* @notas Utilizar codificación UTF-8 para mostrar acentos y otros caracteres especiales
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('ES CR', 'Spanish', 'Español, Castellano', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -22,6 +22,16 @@
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('FR FR', 'French', 'Français', [
|
||||
'Virtualization:baseinfo' => 'Informations générales',
|
||||
'Virtualization:moreinfo' => 'Spécificités de la virtualisation',
|
||||
'Virtualization:otherinfo' => 'Dates et description',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
@@ -21,10 +21,25 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('HU HU', 'Hungarian', 'Magyar', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('IT IT', 'Italian', 'Italiano', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('JA JP', 'Japanese', '日本語', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -13,10 +13,24 @@
|
||||
* @author Denis Flaven <denis.flaven@combodo.com>
|
||||
*
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('NL NL', 'Dutch', 'Nederlands', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('PL PL', 'Polish', 'Polski', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('PT BR', 'Brazilian', 'Brazilian', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -11,10 +11,24 @@
|
||||
* @author Vladimir Kunin <v.b.kunin@gmail.com>
|
||||
*
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('RU RU', 'Russian', 'Русский', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('SK SK', 'Slovak', 'Slovenčina', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('TR TR', 'Turkish', 'Türkçe', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -21,10 +21,24 @@
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with iTop. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
//
|
||||
// Fieldsets for Virtualization classes
|
||||
//
|
||||
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
'Virtualization:baseinfo' => 'General~~',
|
||||
'Virtualization:moreinfo' => 'Virtualization specifics~~',
|
||||
'Virtualization:otherinfo' => 'Dates and description~~',
|
||||
]);
|
||||
|
||||
//
|
||||
// Class Cloud
|
||||
//
|
||||
|
||||
Dict::Add('ZH CN', 'Chinese', '简体中文', [
|
||||
'Class:Cloud/Name' => '%1$s',
|
||||
'Class:Cloud/ComplementaryName' => '%1$s-%2$s',
|
||||
'Class:Cloud' => 'Cloud',
|
||||
'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~~',
|
||||
|
||||
@@ -44,14 +44,14 @@ SetupWebPage::AddModule(
|
||||
],
|
||||
'data.sample' => [
|
||||
// add your sample data XML files here,
|
||||
'data.sample.farm.xml',
|
||||
'data.sample.hypervisor.xml',
|
||||
'data.sample.vm.xml',
|
||||
'data.sample.dbserver.xml',
|
||||
'data.sample.dbschema.xml',
|
||||
'data.sample.webserver.xml',
|
||||
'data.sample.webapp.xml',
|
||||
'data.sample.applicationsolutionci.xml',
|
||||
'data/data.sample.farm.xml',
|
||||
'data/data.sample.hypervisor.xml',
|
||||
'data/data.sample.vm.xml',
|
||||
'data/data.sample.dbserver.xml',
|
||||
'data/data.sample.dbschema.xml',
|
||||
'data/data.sample.webserver.xml',
|
||||
'data/data.sample.webapp.xml',
|
||||
'data/data.sample.applicationsolutionci.xml',
|
||||
],
|
||||
|
||||
// Documentation
|
||||
|
||||
Reference in New Issue
Block a user