http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/database-replication.pot
----------------------------------------------------------------------
diff --git a/pot/database-replication.pot b/pot/database-replication.pot
deleted file mode 100644
index 6efcacf..0000000
--- a/pot/database-replication.pot
+++ /dev/null
@@ -1,254 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Database Replication (Optional)"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "&PRODUCT; supports database replication from one MySQL node to another. 
This is achieved using standard MySQL replication. You may want to do this as 
insurance against MySQL server or storage loss. MySQL replication is 
implemented using a master/slave model. The master is the node that the 
Management Servers are configured to use. The slave is a standby node that 
receives all write operations from the master and applies them to a local, 
redundant copy of the database. The following steps are a guide to implementing 
MySQL replication."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Creating a replica is not a backup solution. You should develop a 
backup procedure for the MySQL data that is distinct from replication."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Ensure that this is a fresh install with no data in the master."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Edit my.cnf on the master and add the following in the [mysqld] section 
below datadir."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"log_bin=mysql-bin\n"
-"server_id=1\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The server_id must be unique with respect to other servers. The 
recommended way to achieve this is to give the master an ID of 1 and each slave 
a sequential number greater than 1, so that the servers are numbered 1, 2, 3, 
etc."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Restart the MySQL service:"
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"# service mysqld restart\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Create a replication account on the master and give it privileges. We 
will use the \"cloud-repl\" user with the password \"password\". This assumes 
that master and slave run on the 172.16.1.0/24 network."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"# mysql -u root\n"
-"mysql> create user 'cloud-repl'@'172.16.1.%' identified by 'password';\n"
-"mysql> grant replication slave on *.* TO 'cloud-repl'@'172.16.1.%';\n"
-"mysql> flush privileges;\n"
-"mysql> flush tables with read lock;\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Leave the current MySQL session running."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In a new shell start a second MySQL session."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Retrieve the current position of the database."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"# mysql -u root\n"
-"mysql> show master status;\n"
-"+------------------+----------+--------------+------------------+\n"
-"| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |\n"
-"+------------------+----------+--------------+------------------+\n"
-"| mysql-bin.000001 |      412 |              |                  |\n"
-"+------------------+----------+--------------+------------------+\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Note the file and the position that are returned by your instance."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Exit from this session."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Complete the master setup. Returning to your first session on the 
master, release the locks and exit MySQL."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"mysql> unlock tables;\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Install and configure the slave. On the slave server, run the following 
commands."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"# yum install mysql-server\n"
-"# chkconfig mysqld on\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Edit my.cnf and add the following lines in the [mysqld] section below 
datadir."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"server_id=2\n"
-"innodb_rollback_on_timeout=1\n"
-"innodb_lock_wait_timeout=600\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Restart MySQL."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Instruct the slave to connect to and replicate from the master. Replace 
the IP address, password, log file, and position with the values you have used 
in the previous steps."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"mysql> change master to\n"
-"    -> master_host='172.16.1.217',\n"
-"    -> master_user='cloud-repl',\n"
-"    -> master_password='password',\n"
-"    -> master_log_file='mysql-bin.000001',\n"
-"    -> master_log_pos=412;\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Then start replication on the slave."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"mysql> start slave;\n"
-"        "
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Optionally, open port 3306 on the slave as was done on the master 
earlier."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This is not required for replication to work. But if you choose not to 
do this, you will need to do it when failover to the replica occurs."
-msgstr ""
-
-#. Tag: title
-#, no-c-format
-msgid "Failover"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This will provide for a replicated database that can be used to 
implement manual failover for the Management Servers. &PRODUCT; failover from 
one MySQL instance to another is performed by the administrator. In the event 
of a database failure you should:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Stop the Management Servers (via service cloud-management stop)."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Change the replica's configuration to be a master and restart it."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Ensure that the replica's port 3306 is open to the Management Servers."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Make a change so that the Management Server uses the new database. The 
simplest process here is to put the IP address of the new database server into 
each Management Server's /etc/cloud/management/db.properties."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Restart the Management Servers:"
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "\n"
-"# service cloud-management start\n"
-"        "
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/dates-in-usage-record.pot
----------------------------------------------------------------------
diff --git a/pot/dates-in-usage-record.pot b/pot/dates-in-usage-record.pot
deleted file mode 100644
index 5ad9555..0000000
--- a/pot/dates-in-usage-record.pot
+++ /dev/null
@@ -1,50 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Dates in the Usage Record"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Usage records include a start date and an end date. These dates define 
the period of time for which the raw usage number was calculated. If daily 
aggregation is used, the start date is midnight on the day in question and the 
end date is 23:59:59 on the day in question (with one exception; see below). A 
virtual machine could have been deployed at noon on that day, stopped at 6pm on 
that day, then started up again at 11pm. When usage is calculated on that day, 
there will be 7 hours of running VM usage (usage type 1) and 12 hours of 
allocated VM usage (usage type 2). If the same virtual machine runs for the 
entire next day, there will 24 hours of both running VM usage (type 1) and 
allocated VM usage (type 2)."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Note: The start date is not the time a virtual machine was started, and 
the end date is not the time when a virtual machine was stopped. The start and 
end dates give the time range within which usage was calculated."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "For network usage, the start date and end date again define the range 
in which the number of bytes transferred was calculated. If a user downloads 10 
MB and uploads 1 MB in one day, there will be two records, one showing the 10 
megabytes received and one showing the 1 megabyte sent."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "There is one case where the start date and end date do not correspond 
to midnight and 11:59:59pm when daily aggregation is used. This occurs only for 
network usage records. When the usage server has more than one day's worth of 
unprocessed data, the old data will be included in the aggregation period. The 
start date in the usage record will show the date and time of the earliest 
event. For other types of usage, such as IP addresses and VMs, the old 
unprocessed data is not included in daily aggregation."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/dedicated-ha-hosts.pot
----------------------------------------------------------------------
diff --git a/pot/dedicated-ha-hosts.pot b/pot/dedicated-ha-hosts.pot
deleted file mode 100644
index 131d48a..0000000
--- a/pot/dedicated-ha-hosts.pot
+++ /dev/null
@@ -1,55 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Dedicated HA Hosts"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "(v3.0.3 and greater) One or more hosts can be designated for use only 
by HA-enabled VMs that are restarting due to a host failure. Setting up a pool 
of such dedicated HA hosts as the recovery destination for all HA-enabled VMs 
is useful to:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Make it easier to determine which VMs have been restarted as part of 
the &PRODUCT; high-availability function. If a VM is running on a dedicated HA 
host, then it must be an HA-enabled VM whose original host failed. (With one 
exception: It is possible for an administrator to manually migrate any VM to a 
dedicated HA host.)."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Keep HA-enabled VMs from restarting on hosts which may be reserved for 
other purposes."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The dedicated HA option is set through a special host tag when the host 
is created. To allow the administrator to dedicate hosts to only HA-enabled 
VMs, set the global configuration variable ha.tag to the desired tag (for 
example, \"ha_host\"), and restart the Management Server. Enter the value in 
the Host Tags field when adding the host(s) that you want to dedicate to 
HA-enabled VMs."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If you set ha.tag, be sure to actually use that tag on at least one 
host in your cloud. If the tag specified in ha.tag is not set for any host in 
the cloud, the HA-enabled VMs will fail to restart after a crash."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/default-account-resource-limit.pot
----------------------------------------------------------------------
diff --git a/pot/default-account-resource-limit.pot 
b/pot/default-account-resource-limit.pot
deleted file mode 100644
index a74111d..0000000
--- a/pot/default-account-resource-limit.pot
+++ /dev/null
@@ -1,60 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Default Account Resource Limits"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "You can limit resource use by accounts. The default limits are set 
using global configuration parameters, and they affect all accounts within a 
cloud. The relevant parameters are those beginning with max.account 
(max.account.snapshots, etc.).."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To override a default limit for a particular account, set a per-account 
resource limit."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation tree, click Accounts."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Select the account you want to modify. The current limits are 
displayed. A value of -1 shows that there is no limit in place"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Edit button<inlinemediaobject> <imageobject> <imagedata 
fileref=\"./images/edit-icon.png\" /> </imageobject> 
<textobject><phrase>editbutton.png: edits the settings.</phrase></textobject> 
</inlinemediaobject>"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/default-template.pot
----------------------------------------------------------------------
diff --git a/pot/default-template.pot b/pot/default-template.pot
deleted file mode 100644
index 63b08f4..0000000
--- a/pot/default-template.pot
+++ /dev/null
@@ -1,79 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "The Default Template"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "&PRODUCT; includes a CentOS template. This template is downloaded by 
the Secondary Storage VM after the primary and secondary storage are 
configured. You can use this template in your production deployment or you can 
delete it and use custom templates."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The root password for the default template is \"password\"."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A default template is provided for each of XenServer, KVM, and vSphere. 
The templates that are downloaded depend on the hypervisor type that is 
available in your cloud. Each template is approximately 2.5 GB physical size."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The default template includes the standard iptables rules, which will 
block most access to the template excluding ssh."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "# iptables --list\n"
-"Chain INPUT (policy ACCEPT)\n"
-"target     prot opt source               destination\n"
-"RH-Firewall-1-INPUT  all  --  anywhere             anywhere\n"
-"\n"
-"Chain FORWARD (policy ACCEPT)\n"
-"target     prot opt source               destination\n"
-"RH-Firewall-1-INPUT  all  --  anywhere             anywhere\n"
-"\n"
-"Chain OUTPUT (policy ACCEPT)\n"
-"target     prot opt source               destination\n"
-"\n"
-"Chain RH-Firewall-1-INPUT (2 references)\n"
-"target     prot opt source               destination\n"
-"ACCEPT     all  --  anywhere             anywhere\n"
-"ACCEPT     icmp --  anywhere        anywhere       icmp any\n"
-"ACCEPT     esp  --  anywhere        anywhere\n"
-"ACCEPT     ah   --  anywhere        anywhere\n"
-"ACCEPT     udp  --  anywhere        224.0.0.251    udp dpt:mdns\n"
-"ACCEPT     udp  --  anywhere        anywhere       udp dpt:ipp\n"
-"ACCEPT     tcp  --  anywhere        anywhere       tcp dpt:ipp\n"
-"ACCEPT     all  --  anywhere        anywhere       state 
RELATED,ESTABLISHED\n"
-"ACCEPT     tcp  --  anywhere        anywhere       state NEW tcp dpt:ssh\n"
-"REJECT     all  --  anywhere        anywhere       reject-with icmp-host-\n"
-""
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/delete-reset-vpn.pot
----------------------------------------------------------------------
diff --git a/pot/delete-reset-vpn.pot b/pot/delete-reset-vpn.pot
deleted file mode 100644
index 54b2143..0000000
--- a/pot/delete-reset-vpn.pot
+++ /dev/null
@@ -1,130 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Restarting and Removing a VPN Connection"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as an administrator or end user."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation, choose Network."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the Select view, select VPC."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All the VPCs that you have created for the account is listed in the 
page."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Configure button of the VPC to which you want to deploy the 
VMs."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The VPC page is displayed where all the tiers you created are listed in 
a diagram."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Settings icon."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following options are displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "IP Addresses"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Gateways"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Site-to-Site VPN"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Network ASLs"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Select Site-to-Site VPN."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The Site-to-Site VPN page is displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "From the Select View drop-down, ensure that VPN Connection is selected."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All the VPN connections you created are displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Select the VPN connection you want to work with."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The Details tab is displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To remove a VPN connection, click the Delete VPN connection 
button<inlinemediaobject> <imageobject> <imagedata 
fileref=\"./images/remove-vpn.png\" /> </imageobject> <textobject> 
<phrase>remove-vpn.png: button to remove a VPN connection</phrase> 
</textobject> </inlinemediaobject>"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To restart a VPN connection, click the Reset VPN connection button 
present in the Details tab.<inlinemediaobject> <imageobject> <imagedata 
fileref=\"./images/reset-vpn.png\" /> </imageobject> <textobject> 
<phrase>reset-vpn.png: button to reset a VPN connection</phrase> </textobject> 
</inlinemediaobject>"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/delete-templates.pot
----------------------------------------------------------------------
diff --git a/pot/delete-templates.pot b/pot/delete-templates.pot
deleted file mode 100644
index d1cf15f..0000000
--- a/pot/delete-templates.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Deleting Templates"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Templates may be deleted. In general, when a template spans multiple 
Zones, only the copy that is selected for deletion will be deleted; the same 
template in other Zones will not be deleted. The provided CentOS template is an 
exception to this. If the provided CentOS template is deleted, it will be 
deleted from all Zones."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "When templates are deleted, the VMs instantiated from them will 
continue to run. However, new VMs cannot be created based on the deleted 
template."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/deleting-vms.pot
----------------------------------------------------------------------
diff --git a/pot/deleting-vms.pot b/pot/deleting-vms.pot
deleted file mode 100644
index 236b460..0000000
--- a/pot/deleting-vms.pot
+++ /dev/null
@@ -1,60 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Deleting VMs"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Users can delete their own virtual machines. A running virtual machine 
will be abruptly stopped before it is deleted. Administrators can delete any 
virtual machines."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To delete a virtual machine:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as a user or admin."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation, click Instances."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Choose the VM that you want to delete."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Destroy Instance button <inlinemediaobject> <imageobject> 
<imagedata fileref=\"./images/destroy-instance.png\" /> </imageobject> 
<textobject><phrase>Destroyinstance.png: button to destroy an 
instance</phrase></textobject> </inlinemediaobject>"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/dell62xx-hardware.pot
----------------------------------------------------------------------
diff --git a/pot/dell62xx-hardware.pot b/pot/dell62xx-hardware.pot
deleted file mode 100644
index b55f4d1..0000000
--- a/pot/dell62xx-hardware.pot
+++ /dev/null
@@ -1,82 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Dell 62xx"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following steps show how a Dell 62xx is configured for zone-level 
layer-3 switching. These steps assume VLAN 201 is used to route untagged 
private IPs for pod 1, and pod 1’s layer-2 switch is connected to Ethernet 
port 1/g1."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The Dell 62xx Series switch supports up to 1024 VLANs."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Configure all the VLANs in the database."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "vlan database\n"
-"vlan 200-999\n"
-"exit"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Configure Ethernet port 1/g1."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "interface ethernet 1/g1\n"
-"switchport mode general\n"
-"switchport general pvid 201\n"
-"switchport general allowed vlan add 201 untagged\n"
-"switchport general allowed vlan add 300-999 tagged\n"
-"exit"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The statements configure Ethernet port 1/g1 as follows:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VLAN 201 is the native untagged VLAN for port 1/g1."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All VLANs (300-999) are passed to all the pod-level layer-2 switches."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/dell62xx-layer2.pot
----------------------------------------------------------------------
diff --git a/pot/dell62xx-layer2.pot b/pot/dell62xx-layer2.pot
deleted file mode 100644
index a0b588c..0000000
--- a/pot/dell62xx-layer2.pot
+++ /dev/null
@@ -1,75 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Dell 62xx"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following steps show how a Dell 62xx is configured for pod-level 
layer-2 switching."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Configure all the VLANs in the database."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "vlan database\n"
-"vlan 300-999\n"
-"exit"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VLAN 201 is used to route untagged private IP addresses for pod 1, and 
pod 1 is connected to this layer-2 switch."
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "interface range ethernet all\n"
-"switchport mode general\n"
-"switchport general allowed vlan add 300-999 tagged\n"
-"exit"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The statements configure all Ethernet ports to function as follows:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All ports are configured the same way."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All VLANs (300-999) are passed through all the ports of the layer-2 
switch."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/deployment-architecture-overview.pot
----------------------------------------------------------------------
diff --git a/pot/deployment-architecture-overview.pot 
b/pot/deployment-architecture-overview.pot
deleted file mode 100644
index 3ce4056..0000000
--- a/pot/deployment-architecture-overview.pot
+++ /dev/null
@@ -1,45 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Deployment Architecture Overview"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A &PRODUCT; installation consists of two parts: the Management Server 
and the cloud infrastructure that it manages. When you set up and manage a 
&PRODUCT; cloud, you provision resources such as hosts, storage devices, and IP 
addresses into the Management Server, and the Management Server manages those 
resources."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The minimum production installation consists of one machine running the 
&PRODUCT; Management Server and another machine to act as the cloud 
infrastructure (in this case, a very simple infrastructure consisting of one 
host running hypervisor software). In its smallest deployment, a single machine 
can act as both the Management Server and the hypervisor host (using the KVM 
hypervisor)."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A more full-featured installation consists of a highly-available 
multi-node Management Server installation and up to tens of thousands of hosts 
using any of several advanced networking setups. For information about 
deployment options, see Choosing a Deployment Architecture."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/detach-move-volumes.pot
----------------------------------------------------------------------
diff --git a/pot/detach-move-volumes.pot b/pot/detach-move-volumes.pot
deleted file mode 100644
index 405ce9b..0000000
--- a/pot/detach-move-volumes.pot
+++ /dev/null
@@ -1,65 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Attaching a Volume"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This procedure is different from moving disk volumes from one storage 
pool to another. See VM Storage Migration"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A volume can be detached from a guest VM and attached to another guest. 
Both &PRODUCT; administrators and users can detach volumes from VMs and move 
them to other VMs."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If the two VMs are in different clusters, and the volume is large, it 
may take several minutes for the volume to be moved to the new VM."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as a user or admin."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation bar, click Storage, and choose Volumes in Select 
View. Alternatively, if you know which VM the volume is attached to, you can 
click Instances, click the VM name, and click View Volumes."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the name of the volume you want to detach, then click the Detach 
Disk button <inlinemediaobject> <imageobject> <imagedata 
fileref=\"./images/detach-disk-icon.png\" /> </imageobject> 
<textobject><phrase>DetachDiskButton.png: button to detach a 
volume</phrase></textobject> </inlinemediaobject>"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To move the volume to another VM, follow the steps in Attaching a 
Volume <xref linkend=\"attaching-volume\" />."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/devcloud-usage-mode.pot
----------------------------------------------------------------------
diff --git a/pot/devcloud-usage-mode.pot b/pot/devcloud-usage-mode.pot
deleted file mode 100644
index 50a687b..0000000
--- a/pot/devcloud-usage-mode.pot
+++ /dev/null
@@ -1,75 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "DevCloud Usage Mode"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DevCloud can be used in several different ways:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Full sandbox. Where &PRODUCT; is run within the DevCloud instance 
started in Virtual Box."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In this mode, the &PRODUCT; management server runs within the instance 
and nested virtualization allows instantiation of tiny VMs within DevCloud 
itself. &PRODUCT; code modifications are done within DevCloud."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following diagram shows the architecture of the SandBox mode."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A deployment environment. Where &PRODUCT; code is developed in the 
localhost of the developer and the resulting build is deployed within DevCloud"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This mode was used in the testing procedure of &PRODUCT; 4.0.0 
incubating release. See the following screencast to see how: <ulink 
url=\"http://vimeo.com/54621457\";>http://vimeo.com/54621457</ulink>"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A host-only mode. Where DevCloud is used only as a host. &PRODUCT; 
management server is run in the localhost of the developer"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "This mode makes use of a host-only interface defined in the Virtual Box 
preferences. Check the following screencast to see how: <ulink 
url=\"http://vimeo.com/54610161\";>http://vimeo.com/54610161</ulink>"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following schematic shows the architecture of the Host-Only mode."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/devcloud.pot
----------------------------------------------------------------------
diff --git a/pot/devcloud.pot b/pot/devcloud.pot
deleted file mode 100644
index 7d9f6f9..0000000
--- a/pot/devcloud.pot
+++ /dev/null
@@ -1,55 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "DevCloud"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DevCloud is the &PRODUCT; sandbox. It is provided as a Virtual Box 
appliance. It is meant to be used as a development environment to easily test 
new &PRODUCT; development. It has also been used for training and &PRODUCT; 
demos since it provides a <emphasis>Cloud in a box</emphasis>."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DevCloud is provided as a convenience by community members. It is not 
an official &PRODUCT; release artifact."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The &PRODUCT; source code however, contains tools to build your own 
DevCloud."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DevCloud is under development and should be considered a Work In 
Progress (WIP), the wiki is the most up to date documentation:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "<ulink 
url=\"https://cwiki.apache.org/confluence/display/CLOUDSTACK/DevCloud\"; />"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/developer-getting-started.pot
----------------------------------------------------------------------
diff --git a/pot/developer-getting-started.pot 
b/pot/developer-getting-started.pot
deleted file mode 100644
index b0c3703..0000000
--- a/pot/developer-getting-started.pot
+++ /dev/null
@@ -1,60 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Getting Started"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To get started using the &PRODUCT; API, you should have the following:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "URL of the &PRODUCT; server you wish to integrate with."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Both the API Key and Secret Key for an account. This should have been 
generated by the administrator of the cloud instance and given to you."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Familiarity with HTTP GET/POST and query strings."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Knowledge of either XML or JSON."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Knowledge of a programming language that can generate HTTP requests; 
for example, Java or PHP."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/developer-introduction.pot
----------------------------------------------------------------------
diff --git a/pot/developer-introduction.pot b/pot/developer-introduction.pot
deleted file mode 100644
index 5ce4fe3..0000000
--- a/pot/developer-introduction.pot
+++ /dev/null
@@ -1,30 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Introduction to the &PRODUCT; API"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/disable-enable-zones-pods-clusters.pot
----------------------------------------------------------------------
diff --git a/pot/disable-enable-zones-pods-clusters.pot 
b/pot/disable-enable-zones-pods-clusters.pot
deleted file mode 100644
index 064346f..0000000
--- a/pot/disable-enable-zones-pods-clusters.pot
+++ /dev/null
@@ -1,85 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Disabling and Enabling Zones, Pods, and Clusters"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "You can enable or disable a zone, pod, or cluster without permanently 
removing it from the cloud. This is useful for maintenance or when there are 
problems that make a portion of the cloud infrastructure unreliable. No new 
allocations will be made to a disabled zone, pod, or cluster until its state is 
returned to Enabled. When a zone, pod, or cluster is first added to the cloud, 
it is Disabled by default."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To disable and enable a zone, pod, or cluster:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as administrator"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation bar, click Infrastructure."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In Zones, click View More."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If you are disabling or enabling a zone, find the name of the zone in 
the list, and click the Enable/Disable button.<inlinemediaobject> <imageobject> 
<imagedata fileref=\"./images/enable-disable.png\" /> </imageobject> 
<textobject><phrase>enable-disable.png: button to enable or disable zone, pod, 
or cluster.</phrase></textobject> </inlinemediaobject>"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If you are disabling or enabling a pod or cluster, click the name of 
the zone that contains the pod or cluster."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Compute tab."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the Pods or Clusters node of the diagram, click View All."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the pod or cluster name in the list."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Enable/Disable button. <inlinemediaobject><imageobject> 
<imagedata fileref=\"./images/enable-disable.png\" /> 
</imageobject></inlinemediaobject>"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/disk-volume-usage-record-format.pot
----------------------------------------------------------------------
diff --git a/pot/disk-volume-usage-record-format.pot 
b/pot/disk-volume-usage-record-format.pot
deleted file mode 100644
index 67e4dff..0000000
--- a/pot/disk-volume-usage-record-format.pot
+++ /dev/null
@@ -1,105 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Disk Volume Usage Record Format"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "For disk volumes, the following fields exist in a usage record."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "account – name of the account"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "accountid – ID of the account"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "domainid – ID of the domain in which this account resides"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "zoneid – Zone where the usage occurred"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "description – A string describing what the usage record is tracking"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "usage – String representation of the usage, including the units of 
usage (e.g. 'Hrs' for hours)"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "usagetype – A number representing the usage type (see Usage Types)"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "rawusage – A number representing the actual usage in hours"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "usageid – The volume ID"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "offeringid – The ID of the disk offering"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "type – Hypervisor"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "templateid – ROOT template ID"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "size – The amount of storage allocated"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "startdate, enddate – The range of time for which the usage is 
aggregated; see Dates in the Usage Record"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/dns-dhcp.pot
----------------------------------------------------------------------
diff --git a/pot/dns-dhcp.pot b/pot/dns-dhcp.pot
deleted file mode 100644
index ef86c0e..0000000
--- a/pot/dns-dhcp.pot
+++ /dev/null
@@ -1,35 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "DNS and DHCP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The Virtual Router provides DNS and DHCP services to the guests. It 
proxies DNS requests to the DNS server configured on the Availability Zone."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/domains.pot
----------------------------------------------------------------------
diff --git a/pot/domains.pot b/pot/domains.pot
deleted file mode 100644
index 9278a41..0000000
--- a/pot/domains.pot
+++ /dev/null
@@ -1,35 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Domains"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If the LDAP server requires SSL, you need to enable it in the 
ldapConfig command by setting the parameters ssl, truststore, and 
truststorepass. Before enabling SSL for ldapConfig, you need to get the 
certificate which the LDAP server is using and add it to a trusted keystore. 
You will need to know the path to the keystore and the password."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/enable-disable-static-nat-vpc.pot
----------------------------------------------------------------------
diff --git a/pot/enable-disable-static-nat-vpc.pot 
b/pot/enable-disable-static-nat-vpc.pot
deleted file mode 100644
index a45a135..0000000
--- a/pot/enable-disable-static-nat-vpc.pot
+++ /dev/null
@@ -1,135 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Enabling or Disabling Static NAT on a VPC"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A static NAT rule maps a public IP address to the private IP address of 
a VM in a VPC to allow Internet traffic to it. This section tells how to enable 
or disable static NAT for a particular IP address in a VPC."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If port forwarding rules are already in effect for an IP address, you 
cannot enable static NAT to that IP."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If a guest VM is part of more than one network, static NAT rules will 
function only if they are defined on the default network."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as an administrator or end user."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation, choose Network."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the Select view, select VPC."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "All the VPCs that you have created for the account is listed in the 
page."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Configure button of the VPC to which you want to deploy the 
VMs."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The VPC page is displayed where all the tiers you created are listed in 
a diagram."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Settings icon."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The following options are displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "IP Addresses"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Gateways"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Site-to-Site VPN"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Network ACLs"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Select IP Addresses."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The IP Addresses page is displayed."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the IP you want to work with."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the Details tab,click the Static NAT button.<inlinemediaobject> 
<imageobject> <imagedata fileref=\"./images/enable-disable.png\" /> 
</imageobject> <textobject> <phrase>enable-disable.png: button to enable Statid 
NAT.</phrase> </textobject> </inlinemediaobject>The button toggles between 
Enable and Disable, depending on whether static NAT is currently enabled for 
the IP address."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If you are enabling static NAT, a dialog appears as follows:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Select the tier and the destination VM, then click Apply."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/enable-disable-static-nat.pot
----------------------------------------------------------------------
diff --git a/pot/enable-disable-static-nat.pot 
b/pot/enable-disable-static-nat.pot
deleted file mode 100644
index 1b4bab1..0000000
--- a/pot/enable-disable-static-nat.pot
+++ /dev/null
@@ -1,75 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Enabling or Disabling Static NAT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If port forwarding rules are already in effect for an IP address, you 
cannot enable static NAT to that IP."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If a guest VM is part of more than one network, static NAT rules will 
function only if they are defined on the default network."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Log in to the &PRODUCT; UI as an administrator or end user."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In the left navigation, choose Network."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the name of the network where you want to work with."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click View IP Addresses."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the IP address you want to work with."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Click the Static NAT button.<inlinemediaobject> <imageobject> 
<imagedata fileref=\"./images/release-ip-icon.png\" /> </imageobject> 
<textobject><phrase>ReleaseIPButton.png: button to release an 
IP</phrase></textobject> </inlinemediaobject>The button toggles between Enable 
and Disable, depending on whether static NAT is currently enabled for the IP 
address."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If you are enabling static NAT, a dialog appears where you can choose 
the destination VM and click Apply"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/enable-security-groups.pot
----------------------------------------------------------------------
diff --git a/pot/enable-security-groups.pot b/pot/enable-security-groups.pot
deleted file mode 100644
index 4af6075..0000000
--- a/pot/enable-security-groups.pot
+++ /dev/null
@@ -1,35 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Enabling Security Groups"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "In order for security groups to function in a zone, the security groups 
feature must first be enabled for the zone. The administrator can do this when 
creating a new zone, by selecting a network offering that includes security 
groups. The procedure is described in Basic Zone Configuration in the Advanced 
Installation Guide."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/enabling-api-call-expiration.pot
----------------------------------------------------------------------
diff --git a/pot/enabling-api-call-expiration.pot 
b/pot/enabling-api-call-expiration.pot
deleted file mode 100644
index d21abe2..0000000
--- a/pot/enabling-api-call-expiration.pot
+++ /dev/null
@@ -1,70 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Enabling API Call Expiration"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "You can set an expiry timestamp on API calls to prevent replay attacks 
over non-secure channels, such as HTTP. The server tracks the expiry timestamp 
you have specified and rejects all the subsequent API requests that come in 
after this validity period."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "To enable this feature, add the following parameters to the API 
request:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "signatureVersion=3: If the signatureVersion parameter is missing or is 
not equal to 3, the expires parameter is ignored in the API request."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "expires=YYYY-MM-DDThh:mm:ssZ: Specifies the date and time at which the 
signature included in the request is expired. The timestamp is expressed in the 
YYYY-MM-DDThh:mm:ssZ format, as specified in the ISO 8601 standard."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "For example:"
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid "expires=2011-10-10T12:00:00+0530"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "A sample API request with expiration is given below:"
-msgstr ""
-
-#. Tag: programlisting
-#, no-c-format
-msgid 
"http://&lt;IPAddress&gt;:8080/client/api?command=listZones&amp;signatureVersion=3&amp;expires=2011-10-10T12:00:00+0530&amp;apiKey=miVr6X7u6bN_sdahOBpjNejPgEsT35eXq-jB8CG20YI3yaxXcgpyuaIRmFI_EJTVwZ0nUkkJbPmY3y2bciKwFQ&amp;signature=Lxx1DM40AjcXU%2FcaiK8RAP0O1hU%3D";
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/enabling-port-8096.pot
----------------------------------------------------------------------
diff --git a/pot/enabling-port-8096.pot b/pot/enabling-port-8096.pot
deleted file mode 100644
index 21836fe..0000000
--- a/pot/enabling-port-8096.pot
+++ /dev/null
@@ -1,55 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Enabling Port 8096"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Port 8096, which allows API calls without authentication, is closed and 
disabled by default on any fresh 3.0.1 installations. You can enable 8096 (or 
another port) for this purpose as follows:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Ensure that the first Management Server is installed and running."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Set the global configuration parameter integration.api.port to the 
desired port."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Restart the Management Server."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "On the Management Server host machine, create an iptables rule allowing 
access to that port."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/end-user-ui-overview.pot
----------------------------------------------------------------------
diff --git a/pot/end-user-ui-overview.pot b/pot/end-user-ui-overview.pot
deleted file mode 100644
index 9e0e568..0000000
--- a/pot/end-user-ui-overview.pot
+++ /dev/null
@@ -1,35 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "End User's UI Overview"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "The &PRODUCT; UI helps users of cloud infrastructure to view and use 
their cloud resources, including virtual machines, templates and ISOs, data 
volumes and snapshots, guest networks, and IP addresses. If the user is a 
member or administrator of one or more &PRODUCT; projects, the UI can provide a 
project-oriented view."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/error-handling.pot
----------------------------------------------------------------------
diff --git a/pot/error-handling.pot b/pot/error-handling.pot
deleted file mode 100644
index d96cbda..0000000
--- a/pot/error-handling.pot
+++ /dev/null
@@ -1,40 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Error Handling"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "If an error occurs while processing an API request, the appropriate 
response in the format specified is returned. Each error response consists of 
an error code and an error text describing what possibly can go wrong. For an 
example error response, see page 12."
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "An HTTP error code of 401 is always returned if API request was 
rejected due to bad signatures, missing API Keys, or the user simply did not 
have the permissions to execute the command."
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/event-log-queries.pot
----------------------------------------------------------------------
diff --git a/pot/event-log-queries.pot b/pot/event-log-queries.pot
deleted file mode 100644
index b6ecf6c..0000000
--- a/pot/event-log-queries.pot
+++ /dev/null
@@ -1,65 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Event Log Queries"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Database logs can be queried from the user interface. The list of 
events captured by the system includes:"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Virtual machine creation, deletion, and on-going management operations"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Virtual router creation, deletion, and on-going management operations"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Template creation and deletion"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Network/load balancer rules creation and deletion"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "Storage volume creation and deletion"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "User login and logout"
-msgstr ""
-

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/f42520a5/pot/event-types.pot
----------------------------------------------------------------------
diff --git a/pot/event-types.pot b/pot/event-types.pot
deleted file mode 100644
index fc06fb7..0000000
--- a/pot/event-types.pot
+++ /dev/null
@@ -1,575 +0,0 @@
-#Licensed to the Apache Software Foundation (ASF) under one
-#or more contributor license agreements.  See the NOTICE file
-#distributed with this work for additional information
-#regarding copyright ownership.  The ASF licenses this file
-#to you under the Apache License, Version 2.0 (the
-#"License"); you may not use this file except in compliance
-#with the License.  You may obtain a copy of the License at
-#http://www.apache.org/licenses/LICENSE-2.0
-#Unless required by applicable law or agreed to in writing,
-#software distributed under the License is distributed on an
-#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-#KIND, either express or implied.  See the License for the
-#specific language governing permissions and limitations
-#under the License.
-msgid ""
-msgstr ""
-"Project-Id-Version: 0\n"
-"POT-Creation-Date: 2013-02-02T20:11:58\n"
-"PO-Revision-Date: 2013-02-02T20:11:58\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: None\n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-publican; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#, no-c-format
-msgid "Event Types"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.EXTRACT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SG.REVOKE.INGRESS"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.DESTROY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.UPLOAD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "HOST.RECONNECT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.START"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.CLEANUP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "MAINT.CANCEL"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.STOP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VOLUME.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "MAINT.CANCEL.PS"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.REBOOT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VOLUME.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "MAINT.PREPARE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.UPGRADE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VOLUME.ATTACH"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "MAINT.PREPARE.PS"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VM.RESETPASSWORD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VOLUME.DETACH"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VPN.REMOTE.ACCESS.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VOLUME.UPLOAD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VPN.USER.ADD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.DESTROY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICEOFFERING.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VPN.USER.REMOVE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.START"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICEOFFERING.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.RESTART"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.STOP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICEOFFERING.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "UPLOAD.CUSTOM.CERTIFICATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.REBOOT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DOMAIN.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ROUTER.HA"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DOMAIN.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "STATICNAT.DISABLE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DOMAIN.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.DESTROY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SNAPSHOT.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.DESTROY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.START"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SNAPSHOT.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.START"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.STOP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SNAPSHOTPOLICY.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.STOP"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.REBOOT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SNAPSHOTPOLICY.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.REBOOT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "PROXY.HA"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SNAPSHOTPOLICY.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SSVM.H"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VNC.CONNECT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VNC.DISCONNECT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NET.IPASSIGN"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NET.IPRELEASE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NET.RULEADD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NET.RULEDELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NET.RULEMODIFY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "LB.ASSIGN.TO.RULE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "LB.REMOVE.FROM.RULE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "LB.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "LB.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "LB.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.LOGIN"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.LOGOUT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "USER.DISABLE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.UPDATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.COPY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.DOWNLOAD.START"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.DOWNLOAD.SUCCESS"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "TEMPLATE.DOWNLOAD.FAILED"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.COPY"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.ATTACH"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.DETACH"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.EXTRACT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ISO.UPLOAD"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICE.OFFERING.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICE.OFFERING.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SERVICE.OFFERING.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DISK.OFFERING.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DISK.OFFERING.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "DISK.OFFERING.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.OFFERING.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.OFFERING.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "NETWORK.OFFERING.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "POD.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "POD.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "POD.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ZONE.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ZONE.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "ZONE.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VLAN.IP.RANGE.CREATE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "VLAN.IP.RANGE.DELETE"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "CONFIGURATION.VALUE.EDIT"
-msgstr ""
-
-#. Tag: para
-#, no-c-format
-msgid "SG.AUTH.INGRESS"
-msgstr ""
-

Reply via email to