You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ke...@apache.org on 2013/10/02 16:23:08 UTC

[07/51] [partial] Adding documents from 4.2

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/nfs-shares-on-management-server.pot
----------------------------------------------------------------------
diff --git a/pot/nfs-shares-on-management-server.pot b/pot/nfs-shares-on-management-server.pot
new file mode 100644
index 0000000..bec36a1
--- /dev/null
+++ b/pot/nfs-shares-on-management-server.pot
@@ -0,0 +1,240 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Using the Management Server as the NFS Server"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "This section tells how to set up NFS shares for primary and secondary storage on the same node with the Management Server. This is more typical of a trial installation, but is technically possible in a larger deployment. It is assumed that you will have less than 16TB of storage on the host."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The exact commands for the following steps may vary depending on your operating system version."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "On Ubuntu/Debian systems, you'll need to install the nfs-kernel-server package:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"$ sudo apt-get install nfs-kernel-server\n"
+"        "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "On the Management Server host, create two directories that you will use for primary and secondary storage. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"# mkdir -p /export/primary\n"
+"# mkdir -p /export/secondary\n"
+"        "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To configure the new directories as NFS exports, edit /etc/exports. Export the NFS share(s) with rw,async,no_root_squash. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# vi /etc/exports"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Insert the following line."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "/export  *(rw,async,no_root_squash)"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Export the /export directory."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# exportfs -a"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Edit the /etc/sysconfig/nfs file."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# vi /etc/sysconfig/nfs"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Uncomment the following lines:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"LOCKD_TCPPORT=32803\n"
+"LOCKD_UDPPORT=32769\n"
+"MOUNTD_PORT=892\n"
+"RQUOTAD_PORT=875\n"
+"STATD_PORT=662\n"
+"STATD_OUTGOING_PORT=2020\n"
+"            "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Edit the /etc/sysconfig/iptables file."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# vi /etc/sysconfig/iptables"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Add the following lines at the beginning of the INPUT chain where <NETWORK> is the network that you'll be using:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p udp --dport 111 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 111 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 2049 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 32803 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p udp --dport 32769 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 892 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p udp --dport 892 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 875 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p udp --dport 875 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p tcp --dport 662 -j ACCEPT\n"
+"-A INPUT -s <NETWORK> -m state --state NEW -p udp --dport 662 -j ACCEPT                \n"
+"            "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Run the following commands:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"# service iptables restart\n"
+"# service iptables save\n"
+"            "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If NFS v4 communication is used between client and server, add your domain to /etc/idmapd.conf on both the hypervisor host and Management Server."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# vi /etc/idmapd.conf"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Remove the character # from the beginning of the Domain line in idmapd.conf and replace the value in the file with your own domain. In the example below, the domain is company.com."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "Domain = company.com"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Reboot the Management Server host."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Two NFS shares called /export/primary and /export/secondary are now set up."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "It is recommended that you test to be sure the previous steps have been successful."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Log in to the hypervisor host."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Be sure NFS and rpcbind are running. The commands might be different depending on your OS. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"# service rpcbind start\n"
+"# service nfs start\n"
+"# chkconfig nfs on\n"
+"# chkconfig rpcbind on\n"
+"# reboot                        \n"
+"                    "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Log back in to the hypervisor host and try to mount the /export directories. For example (substitute your own management server name):"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"# mkdir /primarymount\n"
+"# mount -t nfs <management-server-name>:/export/primary /primarymount\n"
+"# umount /primarymount\n"
+"# mkdir /secondarymount\n"
+"# mount -t nfs <management-server-name>:/export/secondary /secondarymount\n"
+"# umount /secondarymount                        \n"
+"                    "
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/nfs-shares-on-separate-server.pot
----------------------------------------------------------------------
diff --git a/pot/nfs-shares-on-separate-server.pot b/pot/nfs-shares-on-separate-server.pot
new file mode 100644
index 0000000..6dc037a
--- /dev/null
+++ b/pot/nfs-shares-on-separate-server.pot
@@ -0,0 +1,108 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Using a Separate NFS Server"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "This section tells how to set up NFS shares for secondary and (optionally) primary storage on an NFS server running on a separate node from the Management Server."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The exact commands for the following steps may vary depending on your operating system version."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "(KVM only) Ensure that no volume is already mounted at your NFS mount point."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "On the storage server, create an NFS share for secondary storage and, if you are using NFS for primary storage as well, create a second NFS share. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "\n"
+"# mkdir -p /export/primary\n"
+"# mkdir -p /export/secondary\n"
+"        "
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To configure the new directories as NFS exports, edit /etc/exports. Export the NFS share(s) with rw,async,no_root_squash. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# vi /etc/exports"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Insert the following line."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "/export  *(rw,async,no_root_squash)"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Export the /export directory."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# exportfs -a"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "On the management server, create a mount point for secondary storage. For example:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# mkdir -p /mnt/secondary"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Mount the secondary storage on your Management Server. Replace the example NFS server name and NFS share paths below with your own."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# mount -t nfs nfsservername:/nfs/share/secondary /mnt/secondary"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/offerings.pot
----------------------------------------------------------------------
diff --git a/pot/offerings.pot b/pot/offerings.pot
new file mode 100644
index 0000000..7f22cbe
--- /dev/null
+++ b/pot/offerings.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Service Offerings"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In this chapter we discuss compute, disk, and system service offerings. Network offerings are discussed in the section on setting up networking for users."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/ongoing-config-of-external-firewalls-lb.pot
----------------------------------------------------------------------
diff --git a/pot/ongoing-config-of-external-firewalls-lb.pot b/pot/ongoing-config-of-external-firewalls-lb.pot
new file mode 100644
index 0000000..1976fc0
--- /dev/null
+++ b/pot/ongoing-config-of-external-firewalls-lb.pot
@@ -0,0 +1,55 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Ongoing Configuration of External Firewalls and Load Balancers"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Additional user actions (e.g. setting a port forward) will cause further programming of the firewall and load balancer. A user may request additional public IP addresses and forward traffic received at these IPs to specific VMs. This is accomplished by enabling static NAT for a public IP address, assigning the IP to a VM, and specifying a set of protocols and port ranges to open. When a static NAT rule is created, &PRODUCT; programs the zone's external firewall with the following objects:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "A static NAT rule that maps the public IP address to the private IP address of a VM."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "A security policy that allows traffic within the set of protocols and port ranges that are specified."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "A firewall filter counter that measures the number of bytes of incoming traffic to the public IP."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The number of incoming and outgoing bytes through source NAT, static NAT, and load balancing rules is measured and saved on each external element. This data is collected on a regular basis and stored in the &PRODUCT; database."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/over-provisioning-service-offering-limits.pot
----------------------------------------------------------------------
diff --git a/pot/over-provisioning-service-offering-limits.pot b/pot/over-provisioning-service-offering-limits.pot
new file mode 100644
index 0000000..1be8e13
--- /dev/null
+++ b/pot/over-provisioning-service-offering-limits.pot
@@ -0,0 +1,50 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Over-Provisioning and Service Offering Limits"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "&PRODUCT; performs CPU over-provisioning based on an over-provisioning ratio configured by the administrator. This is defined by the cpu.overprovisioning.factor global configuration variable."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "&PRODUCT; performs CPU over-provisioning based on an over-provisioning ratio configured by the administrator. This is defined by the cpu.overprovisioning.factor global configuration variable"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Service offerings limits (e.g. 1 GHz, 1 core) are strictly enforced for core count. For example, a guest with a service offering of one core will have only one core available to it regardless of other activity on the Host."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Service offering limits for gigahertz are enforced only in the presence of contention for CPU resources. For example, suppose that a guest was created with a service offering of 1 GHz on a Host that has 2 GHz cores, and that guest is the only guest running on the Host. The guest will have the full 2 GHz available to it. When multiple guests are attempting to use the CPU a weighting factor is used to schedule CPU resources. The weight is based on the clock speed in the service offering. Guests receive a CPU allocation that is proportionate to the GHz in the service offering. For example, a guest created from a 2 GHz service offering will receive twice the CPU allocation as a guest created from a 1 GHz service offering. &PRODUCT; does not perform memory over-provisioning."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/ovm-install.pot
----------------------------------------------------------------------
diff --git a/pot/ovm-install.pot b/pot/ovm-install.pot
new file mode 100644
index 0000000..aba639b
--- /dev/null
+++ b/pot/ovm-install.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Installing OVM for &PRODUCT;"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "TODO"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/ovm-requirements.pot
----------------------------------------------------------------------
diff --git a/pot/ovm-requirements.pot b/pot/ovm-requirements.pot
new file mode 100644
index 0000000..263f46e
--- /dev/null
+++ b/pot/ovm-requirements.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "System Requirements for OVM"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "TODO"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/per-domain-limits.pot
----------------------------------------------------------------------
diff --git a/pot/per-domain-limits.pot b/pot/per-domain-limits.pot
new file mode 100644
index 0000000..4ac3828
--- /dev/null
+++ b/pot/per-domain-limits.pot
@@ -0,0 +1,60 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Per-Domain Limits"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "&PRODUCT; allows the configuration of limits on a domain basis. With a domain limit in place, all users still have their account limits. They are additionally limited, as a group, to not exceed the resource limits set on their domain. Domain limits aggregate the usage of all accounts in the domain as well as all accounts in all subdomains of that domain. Limits set at the root domain level apply to the sum of resource usage by the accounts in all domains and sub-domains below that root domain."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To set a domain 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 Domains."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Select the domain you want to modify. The current domain 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/b23872a5/pot/performance-monitoring.pot
----------------------------------------------------------------------
diff --git a/pot/performance-monitoring.pot b/pot/performance-monitoring.pot
new file mode 100644
index 0000000..b5afcfb
--- /dev/null
+++ b/pot/performance-monitoring.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Performance Monitoring"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Host and guest performance monitoring is available to end users and administrators. This allows the user to monitor their utilization of resources and determine when it is appropriate to choose a more powerful service offering or larger disk."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/physical-network-configuration-settings.pot
----------------------------------------------------------------------
diff --git a/pot/physical-network-configuration-settings.pot b/pot/physical-network-configuration-settings.pot
new file mode 100644
index 0000000..204f7f2
--- /dev/null
+++ b/pot/physical-network-configuration-settings.pot
@@ -0,0 +1,70 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Configurable Characteristics of Physical Networks"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "&PRODUCT; provides configuration settings you can use to set up a physical network in a zone, including:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "What type of network traffic it carries (guest, public, management, storage)"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "VLANs"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Unique name that the hypervisor can use to find that particular network"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Enabled or disabled. When a network is first set up, it is disabled – not in use yet. The administrator sets the physical network to enabled, and it begins to be used. The administrator can later disable the network again, which prevents any new virtual networks from being created on that physical network; the existing network traffic continues even though the state is disabled."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Speed"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Tags, so network offerings can be matched to physical networks"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Isolation method"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-about.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-about.pot b/pot/plugin-niciranvp-about.pot
new file mode 100644
index 0000000..fb39acb
--- /dev/null
+++ b/pot/plugin-niciranvp-about.pot
@@ -0,0 +1,30 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 Nicira NVP Plugin"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-devicemanagement.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-devicemanagement.pot b/pot/plugin-niciranvp-devicemanagement.pot
new file mode 100644
index 0000000..34bcc0e
--- /dev/null
+++ b/pot/plugin-niciranvp-devicemanagement.pot
@@ -0,0 +1,85 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Device-management"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack 4.0.x each Nicira NVP setup is considered a \"device\" that can be added and removed from a physical network. To complete the configuration of the Nicira NVP plugin a device needs to be added to the physical network using the \"addNiciraNVPDevice\" API call. The plugin is now enabled on the physical network and any guest networks created on that network will be provisioned using the Nicra NVP Controller."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The plugin introduces a set of new API calls to manage the devices, see below or refer to the API reference."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "addNiciraNvpDevice"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "physicalnetworkid: the UUID of the physical network on which the device is configured"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "hostname: the IP address of the NVP controller"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "username: the username for access to the NVP API"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "password: the password for access to the NVP API"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "transportzoneuuid: the UUID of the transportzone"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "deleteNiciraNVPDevice"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "nvpdeviceid: the UUID of the device"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "listNiciraNVPDevices"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-features.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-features.pot b/pot/plugin-niciranvp-features.pot
new file mode 100644
index 0000000..0c4154b
--- /dev/null
+++ b/pot/plugin-niciranvp-features.pot
@@ -0,0 +1,55 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Features of the Nicira NVP Plugin"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack release 4.0.0-incubating this plugin supports the Connectivity service. This service is responsible for creating Layer 2 networks supporting the networks created by Guests. In other words when an tennant creates a new network, instead of the traditional VLAN a logical network will be created by sending the appropriate calls to the Nicira NVP Controller."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The plugin has been tested with Nicira NVP versions 2.1.0, 2.2.0 and 2.2.1"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack 4.0.0-incubating only the XenServer hypervisor is supported for use in combination with Nicira NVP."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack 4.1.0-incubating both KVM and XenServer hypervisors are supported."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack 4.0.0-incubating the UI components for this plugin are not complete, configuration is done by sending commands to the API."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-guide.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-guide.pot b/pot/plugin-niciranvp-guide.pot
new file mode 100644
index 0000000..665e4ff
--- /dev/null
+++ b/pot/plugin-niciranvp-guide.pot
@@ -0,0 +1,30 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Plugin Guide for the Nicira NVP Plugin"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-introduction.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-introduction.pot b/pot/plugin-niciranvp-introduction.pot
new file mode 100644
index 0000000..2f50cf0
--- /dev/null
+++ b/pot/plugin-niciranvp-introduction.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 Nicira NVP Plugin"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The Nicira NVP plugin allows CloudStack to use the Nicira solution for virtualized network as a provider for CloudStack networks and services."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-preparations.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-preparations.pot b/pot/plugin-niciranvp-preparations.pot
new file mode 100644
index 0000000..c3bdbae
--- /dev/null
+++ b/pot/plugin-niciranvp-preparations.pot
@@ -0,0 +1,75 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Prerequisites"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Before enabling the Nicira NVP plugin the NVP Controller needs to be configured. Please review the NVP User Guide on how to do that."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "CloudStack needs to have at least one physical network with the isolation method set to \"STT\". This network should be enabled for the Guest traffic type."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The Guest traffic type should be configured with the traffic label that matches the name of the Integration Bridge on the hypervisor. See the Nicira NVP User Guide for more details on how to set this up in XenServer or KVM."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Make sure you have the following information ready:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The IP address of the NVP Controller"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The username to access the API"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The password to access the API"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The UUID of the Transport Zone that contains the hypervisors in this Zone"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The UUID of the Physical Network that will used for the Guest networks"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-provider.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-provider.pot b/pot/plugin-niciranvp-provider.pot
new file mode 100644
index 0000000..1f1b1e9
--- /dev/null
+++ b/pot/plugin-niciranvp-provider.pot
@@ -0,0 +1,65 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 the service provider"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To allow CloudStack to use the Nicira NVP Plugin the network service provider needs to be enabled on the physical network. The following sequence of API calls will enable the network service provider"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "addNetworkServiceProvider"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "name = \"NiciraNvp\""
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "physicalnetworkid = &lt;the uuid of the physical network&gt;"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "updateNetworkServiceProvider"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "id = &lt;the provider uuid returned by the previous call&gt;"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "state = \"Enabled\""
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-revisions.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-revisions.pot b/pot/plugin-niciranvp-revisions.pot
new file mode 100644
index 0000000..ea63a27
--- /dev/null
+++ b/pot/plugin-niciranvp-revisions.pot
@@ -0,0 +1,45 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Revision History"
+msgstr ""
+
+#. Tag: firstname
+#, no-c-format
+msgid "Hugo"
+msgstr ""
+
+#. Tag: surname
+#, no-c-format
+msgid "Trippaers"
+msgstr ""
+
+#. Tag: member
+#, no-c-format
+msgid "Documentation created for 4.0.0-incubating version of the NVP Plugin"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-tables.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-tables.pot b/pot/plugin-niciranvp-tables.pot
new file mode 100644
index 0000000..5e1570f
--- /dev/null
+++ b/pot/plugin-niciranvp-tables.pot
@@ -0,0 +1,90 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 tables"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The following tables are added to the cloud database for the Nicira NVP Plugin"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "nicira_nvp_nic_map, contains a mapping from nic to logical switch port"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "id"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "logicalswitch, uuid of the logical switch this port is connected to"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "logicalswitchport, uuid of the logical switch port for this nic"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "nic, the CloudStack uuid for this nic, reference to the nics table"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "external_nicira_nvp_devices, contains all configured devices"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "uuid"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "physical_network_id, the physical network this device is configured on"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "provider_name, set to \"NiciraNvp\""
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "device_name, display name for this device"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "host_id, reference to the host table with the device configuration"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-troubleshooting.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-troubleshooting.pot b/pot/plugin-niciranvp-troubleshooting.pot
new file mode 100644
index 0000000..45cdc9a
--- /dev/null
+++ b/pot/plugin-niciranvp-troubleshooting.pot
@@ -0,0 +1,30 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Troubleshooting the Nicira NVP Plugin"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-ui.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-ui.pot b/pot/plugin-niciranvp-ui.pot
new file mode 100644
index 0000000..80d69bd
--- /dev/null
+++ b/pot/plugin-niciranvp-ui.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Configuring the Nicira NVP plugin from the UI"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In CloudStack 4.1.0-incubating the Nicira NVP plugin and its resources can be configured in the infrastructure tab of the UI. Navigate to the physical network with STT isolation and configure the network elements. The NiciraNvp is listed here."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-usage.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-usage.pot b/pot/plugin-niciranvp-usage.pot
new file mode 100644
index 0000000..165ea6d
--- /dev/null
+++ b/pot/plugin-niciranvp-usage.pot
@@ -0,0 +1,30 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Using the Nicira NVP Plugin"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/plugin-niciranvp-uuidreferences.pot
----------------------------------------------------------------------
diff --git a/pot/plugin-niciranvp-uuidreferences.pot b/pot/plugin-niciranvp-uuidreferences.pot
new file mode 100644
index 0000000..8cbf477
--- /dev/null
+++ b/pot/plugin-niciranvp-uuidreferences.pot
@@ -0,0 +1,50 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "UUID References"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The plugin maintains several references in the CloudStack database to items created on the NVP Controller."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Every guest network this is created will have its broadcast type set to Lswitch and if the network is in state \"Implemented\", the broadcast URI will have the UUID of the Logical Switch that was created for this network on the NVP Controller."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The Nics that are connected to one of the Logical Switches will have their Logical Switch Port UUID listed in the nicira_nvp_nic_map table"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "All devices created on the NVP Controller will have a tag set to domain-account of the owner of the network, this string can be used to search for items in the NVP Controller."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/pod-add.pot
----------------------------------------------------------------------
diff --git a/pot/pod-add.pot b/pot/pod-add.pot
new file mode 100644
index 0000000..857b5a1
--- /dev/null
+++ b/pot/pod-add.pot
@@ -0,0 +1,85 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Adding a Pod"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When you created a new zone, &PRODUCT; adds the first pod for you. You can add more pods at any time using the procedure in this section."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Log in to the &PRODUCT; UI. See <xref linkend=\"log-in\" />."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In the left navigation, choose Infrastructure. In Zones, click View More, then click the zone to which you want to add a pod."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click the Compute and Storage tab. In the Pods node of the diagram, click View All."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click Add Pod."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Enter the following details in the dialog."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Name.</emphasis> The name of the pod."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Gateway.</emphasis> The gateway for the hosts in that pod."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Netmask.</emphasis> The network prefix that defines the pod's subnet. Use CIDR notation."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Start/End Reserved System IP.</emphasis> The IP range in the management network that &PRODUCT; uses to manage various system VMs, such as Secondary Storage VMs, Console Proxy VMs, and DHCP. For more information, see System Reserved IP Addresses."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click OK."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/port-forwarding.pot
----------------------------------------------------------------------
diff --git a/pot/port-forwarding.pot b/pot/port-forwarding.pot
new file mode 100644
index 0000000..47f16ff
--- /dev/null
+++ b/pot/port-forwarding.pot
@@ -0,0 +1,115 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Port Forwarding"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "A port forward service is a set of port forwarding rules that define a policy. A port forward service is then applied to one or more guest VMs. The guest VM then has its inbound network access managed according to the policy defined by the port forwarding service. You can optionally specify one or more CIDRs to filter the source IPs. This is useful when you want to allow only incoming requests from certain IP addresses to be forwarded."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "A guest VM can be in any number of port forward services. Port forward services can be defined but have no members. If a guest VM is part of more than one network, port forwarding rules will function only if they are defined on the default network"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "You cannot use port forwarding to open ports for an elastic IP address. When elastic IP is used, outside access is instead controlled through the use of security groups. See Security Groups."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "To set up port forwarding:"
+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 "If you have not already done so, add a public IP address range to a zone in &PRODUCT;. See Adding a Zone and Pod in the Installation Guide."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Add one or more VM instances to &PRODUCT;."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In the left navigation bar, click Network."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click the name of the guest network where the VMs are running."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Choose an existing IP address or acquire a new IP address. (See Acquiring a New IP Address on page 73.) Click the name of the IP address in the list."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click the Configuration tab."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In the Port Forwarding node of the diagram, click View All."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Fill in the following:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Public Port</emphasis>. The port to which public traffic will be addressed on the IP address you acquired in the previous step."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Private Port</emphasis>. The port on which the instance is listening for forwarded public traffic."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Protocol</emphasis>. The communication protocol in use between the two ports."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click Add."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/prepare-system-vm-template.pot
----------------------------------------------------------------------
diff --git a/pot/prepare-system-vm-template.pot b/pot/prepare-system-vm-template.pot
new file mode 100644
index 0000000..6429e4e
--- /dev/null
+++ b/pot/prepare-system-vm-template.pot
@@ -0,0 +1,116 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Prepare the System VM Template"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Secondary storage must be seeded with a template that is used for &PRODUCT; system VMs. Citrix provides you with the necessary binary package of the system VM."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When copying and pasting a command, be sure the command has pasted as a single line before executing. Some document viewers may introduce unwanted line breaks in copied text."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "On the Management Server, run one or more of the following cloud-install-sys-tmplt commands to retrieve and decompress the system VM template. Run the command for each hypervisor type that you expect end users to run in this Zone."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If your secondary storage mount point is not named /mnt/secondary, substitute your own mount point name."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If you set the &PRODUCT; database encryption type to \"web\" when you set up the database, you must now add the parameter -s &lt;management-server-secret-key&gt;. See <xref linkend=\"about-password-encryption\" />."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "This process will require approximately 5 GB of free space on the local file system and up to 30 minutes each time it runs."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "For XenServer:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# /usr/lib64/cloud/common/scripts/storage/secondary/cloud-install-sys-tmplt -m /mnt/secondary -u http://download.cloud.com/templates/acton/acton-systemvm-02062012.vhd.bz2 -h xenserver -s &lt;optional-management-server-secret-key&gt; -F"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "For vSphere:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# /usr/lib64/cloud/common/scripts/storage/secondary/cloud-install-sys-tmplt -m /mnt/secondary -u http://download.cloud.com/templates/acton/acton-systemvm-02062012.ova -h vmware -s &lt;optional-management-server-secret-key&gt;  -F"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "For KVM:"
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# /usr/lib64/cloud/common/scripts/storage/secondary/cloud-install-sys-tmplt -m /mnt/secondary -u http://download.cloud.com/templates/acton/acton-systemvm-02062012.qcow2.bz2 -h kvm -s &lt;optional-management-server-secret-key&gt; -F"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If you are using a separate NFS server, perform this step."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Do not perform this step if you are using the Management Server as the NFS server."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When the script has finished, unmount secondary storage and remove the created directory."
+msgstr ""
+
+#. Tag: programlisting
+#, no-c-format
+msgid "# umount /mnt/secondary\n"
+"# rmdir /mnt/secondary"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Repeat these steps for each secondary storage server."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/primary-storage-add.pot
----------------------------------------------------------------------
diff --git a/pot/primary-storage-add.pot b/pot/primary-storage-add.pot
new file mode 100644
index 0000000..c414a11
--- /dev/null
+++ b/pot/primary-storage-add.pot
@@ -0,0 +1,190 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Add Primary Storage"
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "System Requirements for Primary Storage"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Hardware requirements:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Any standards-compliant iSCSI or NFS server that is supported by the underlying hypervisor."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The storage server should be a machine with a large number of disks. The disks should ideally be managed by a hardware RAID controller."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Minimum required capacity depends on your needs."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When setting up primary storage, follow these restrictions:"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Primary storage cannot be added until a host has been added to the cluster."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "If you do not provision shared primary storage, you must set the global configuration parameter system.vm.local.storage.required to true, or else you will not be able to start VMs."
+msgstr ""
+
+#. Tag: title
+#, no-c-format
+msgid "Adding Primary Stroage"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When you create a new zone, the first primary storage is added as part of that procedure. You can add primary storage servers at any time, such as when adding a new cluster or adding more servers to an existing cluster."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Be sure there is nothing stored on the server. Adding the server to &PRODUCT; will destroy any existing data."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Log in to the &PRODUCT; UI (see <xref linkend=\"log-in\" />)."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In the left navigation, choose Infrastructure. In Zones, click View More, then click the zone in which you want to add the primary storage."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click the Compute tab."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "In the Primary Storage node of the diagram, click View All."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click Add Primary Storage."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Provide the following information in the dialog. The information required varies depending on your choice in Protocol."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Pod.</emphasis> The pod for the storage device."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Cluster.</emphasis> The cluster for the storage device."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Name.</emphasis> The name of the storage device."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Protocol.</emphasis> For XenServer, choose either NFS, iSCSI, or PreSetup. For KVM, choose NFS or SharedMountPoint. For vSphere choose either VMFS (iSCSI or FiberChannel) or NFS."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Server (for NFS, iSCSI, or PreSetup).</emphasis> The IP address or DNS name of the storage device."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Server (for VMFS).</emphasis> The IP address or DNS name of the vCenter server."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Path (for NFS).</emphasis> In NFS this is the exported path from the server."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Path (for VMFS).</emphasis> In vSphere this is a combination of the datacenter name and the datastore name. The format is \"/\" datacenter name \"/\" datastore name. For example, \"/cloud.dc.VM/cluster1datastore\"."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Path (for SharedMountPoint).</emphasis> With KVM this is the path on each host that is where this primary storage is mounted. For example, \"/mnt/primary\"."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">SR Name-Label (for PreSetup).</emphasis> Enter the name-label of the SR that has been set up outside &PRODUCT;."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Target IQN (for iSCSI).</emphasis> In iSCSI this is the IQN of the target. For example, iqn.1986-03.com.sun:02:01ec9bb549-1271378984."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Lun # (for iSCSI).</emphasis> In iSCSI this is the LUN number. For example, 3."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<emphasis role=\"bold\">Tags (optional).</emphasis> The comma-separated list of tags for this storage device. It should be an equivalent set or superset of the tags on your disk offerings.."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The tag sets on primary storage across clusters in a Zone must be identical. For example, if cluster A provides primary storage that has tags T1 and T2, all other clusters in the Zone must also provide primary storage that has tags T1 and T2."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Click OK."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/primary-storage-outage-and-data-loss.pot
----------------------------------------------------------------------
diff --git a/pot/primary-storage-outage-and-data-loss.pot b/pot/primary-storage-outage-and-data-loss.pot
new file mode 100644
index 0000000..4801afd
--- /dev/null
+++ b/pot/primary-storage-outage-and-data-loss.pot
@@ -0,0 +1,35 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Primary Storage Outage and Data Loss"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When a primary storage outage occurs the hypervisor immediately stops all VMs stored on that storage device. Guests that are marked for HA will be restarted as soon as practical when the primary storage comes back on line. With NFS, the hypervisor may allow the virtual machines to continue running depending on the nature of the issue. For example, an NFS hang will cause the guest VMs to be suspended until storage connectivity is restored.Primary storage is not designed to be backed up. Individual volumes in primary storage can be backed up using snapshots."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/primary-storage.pot
----------------------------------------------------------------------
diff --git a/pot/primary-storage.pot b/pot/primary-storage.pot
new file mode 100644
index 0000000..5fb36b3
--- /dev/null
+++ b/pot/primary-storage.pot
@@ -0,0 +1,40 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Primary Storage"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "This section gives concepts and technical details about &PRODUCT; primary storage. For information about how to install and configure primary storage through the &PRODUCT; UI, see the Installation Guide."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "<xref linkend=\"about-primary-storage\" />"
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/private-public-template.pot
----------------------------------------------------------------------
diff --git a/pot/private-public-template.pot b/pot/private-public-template.pot
new file mode 100644
index 0000000..b982f60
--- /dev/null
+++ b/pot/private-public-template.pot
@@ -0,0 +1,45 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Private and Public Templates"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When a user creates a template, it can be designated private or public."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Private templates are only available to the user who created them. By default, an uploaded template is private."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "When a user marks a template as “public,” the template becomes available to all users in all accounts in the user's domain, as well as users in any other domains that have access to the Zone where the template is stored. This depends on whether the Zone, in turn, was defined as private or public. A private Zone is assigned to a single domain, and a public Zone is accessible to any domain. If a public template is created in a private Zone, it is available only to users in the domain assigned to that Zone. If a public template is created in a public Zone, it is available to all users in all domains."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/projects-overview.pot
----------------------------------------------------------------------
diff --git a/pot/projects-overview.pot b/pot/projects-overview.pot
new file mode 100644
index 0000000..e5fd8f1
--- /dev/null
+++ b/pot/projects-overview.pot
@@ -0,0 +1,50 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Overview of Projects"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Projects are used to organize people and resources. &PRODUCT; users within a single domain can group themselves into project teams so they can collaborate and share virtual resources such as VMs, snapshots, templates, data disks, and IP addresses. &PRODUCT; tracks resource usage per project as well as per user, so the usage can be billed to either a user account or a project. For example, a private cloud within a software company might have all members of the QA department assigned to one project, so the company can track the resources used in testing while the project members can more easily isolate their efforts from other users of the same cloud"
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "You can configure &PRODUCT; to allow any user to create a new project, or you can restrict that ability to just &PRODUCT; administrators. Once you have created a project, you become that project’s administrator, and you can add others within your domain to the project. &PRODUCT; can be set up either so that you can add people directly to a project, or so that you have to send an invitation which the recipient must accept. Project members can view and manage all virtual resources created by anyone in the project (for example, share VMs). A user can be a member of any number of projects and can switch views in the &PRODUCT; UI to show only project-related information, such as project VMs, fellow project members, project-related alerts, and so on."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "The project administrator can pass on the role to another project member. The project administrator can also add more members, remove members from the project, set new resource limits (as long as they are below the global defaults set by the &PRODUCT; administrator), and delete the project. When the administrator removes a member from the project, resources created by that user, such as VM instances, remain with the project. This brings us to the subject of resource ownership and which resources can be used by a project."
+msgstr ""
+
+#. Tag: para
+#, no-c-format
+msgid "Resources created within a project are owned by the project, not by any particular &PRODUCT; account, and they can be used only within the project. A user who belongs to one or more projects can still create resources outside of those projects, and those resources belong to the user’s account; they will not be counted against the project’s usage or resource limits. You can create project-level networks to isolate traffic within the project and provide network services such as port forwarding, load balancing, VPN, and static NAT. A project can also make use of certain types of resources from outside the project, if those resources are shared. For example, a shared network or public template is available to any project in the domain. A project can get access to a private template if the template’s owner will grant permission. A project can use any service offering or disk offering available in its domain; however, you can not create private service and disk offerings at t
 he project level.."
+msgstr ""
+

http://git-wip-us.apache.org/repos/asf/cloudstack-docs/blob/b23872a5/pot/projects.pot
----------------------------------------------------------------------
diff --git a/pot/projects.pot b/pot/projects.pot
new file mode 100644
index 0000000..2b6939a
--- /dev/null
+++ b/pot/projects.pot
@@ -0,0 +1,30 @@
+#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:59\n"
+"PO-Revision-Date: 2013-02-02T20:11:59\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 "Using Projects to Organize Users and Resources"
+msgstr ""
+