UI plugins: Add localization strings

This commit is contained in:
Brian Federle 2013-01-29 15:36:02 -08:00
parent 22c351fabc
commit 0f6eb2f53d
3 changed files with 11 additions and 1 deletions

View File

@ -17,6 +17,11 @@
#new labels (begin) **********************************************************************************************
label.plugins=Plugins
label.plugin.details=Plugin details
label.author.name=Author name
label.author.email=Author e-mail
label.external.link=External link
label.egress.rules=Egress rules
message.acquire.new.ip.vpc=Please confirm that you would like to acquire a new IP for this VPC.
label.zoneWizard.trafficType.management=Management: Traffic between CloudStack\'s internal resources, including any components that communicate with the Management Server, such as hosts and CloudStack system VMs

View File

@ -25,6 +25,11 @@ under the License.
<% long now = System.currentTimeMillis(); %>
<script language="javascript">
dictionary = {
'label.plugins': '<fmt:message key="label.plugins"/>',
'label.plugin.details': '<fmt:message key="label.plugin.details"/>',
'label.author.name': '<fmt:message key="label.author.name"/>',
'label.author.email': '<fmt:message key="label.author.email"/>',
'label.external.link': '<fmt:message key="label.external.link"/>',
'label.enable.s3': '<fmt:message key="label.enable.s3"/>',
'confirm.enable.s3': '<fmt:message key="confirm.enable.s3"/>',
'message.after.enable.s3': '<fmt:message key="message.after.enable.s3"/>',

View File

@ -21,7 +21,7 @@
};
cloudStack.sections.plugins = {
title: 'Plugins',
title: 'label.plugins',
show: cloudStack.uiCustom.plugins
};