summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/realmdomains.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-04-03 18:18:57 +0200
committerPetr Vobornik <pvoborni@redhat.com>2013-05-06 16:22:21 +0200
commitfcff33fb511db5ffe5c7809bb1a4593f2e681718 (patch)
tree31af15433d3e1a9df92f86a54eb56d8fcd2ebab9 /install/ui/src/freeipa/realmdomains.js
parent12f5f4cfdd38c2a29c8e6eeac17557f4e7731307 (diff)
downloadfreeipa.git-fcff33fb511db5ffe5c7809bb1a4593f2e681718.tar.gz
freeipa.git-fcff33fb511db5ffe5c7809bb1a4593f2e681718.tar.xz
freeipa.git-fcff33fb511db5ffe5c7809bb1a4593f2e681718.zip
Replace IPA.messages with @i18n definition for label specs
Replaced by execution of ls | grep .js | xargs sed -i -r "s/label: IPA.messages\.((.\w+)+)/label: '@i18n:\1'/" https://fedorahosted.org/freeipa/ticket/3235
Diffstat (limited to 'install/ui/src/freeipa/realmdomains.js')
-rw-r--r--install/ui/src/freeipa/realmdomains.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/realmdomains.js b/install/ui/src/freeipa/realmdomains.js
index 0121b89c..9a0cc523 100644
--- a/install/ui/src/freeipa/realmdomains.js
+++ b/install/ui/src/freeipa/realmdomains.js
@@ -37,7 +37,7 @@ define(['./ipa', './jquery', './details', './entity'], function (IPA, $) {
sections: [
{
name: 'identity',
- label: IPA.messages.objects.realmdomains.identity,
+ label: '@i18n:objects.realmdomains.identity',
fields: [
{
name: 'associateddomain',
@@ -72,7 +72,7 @@ define(['./ipa', './jquery', './details', './entity'], function (IPA, $) {
var dialog = IPA.confirm_dialog({
title: IPA.messages.objects.realmdomains.check_dns,
message: IPA.messages.objects.realmdomains.check_dns_confirmation,
- ok_label: IPA.messages.objects.realmdomains.check_dns,
+ ok_label: '@i18n:objects.realmdomains.check_dns',
on_ok: function () {
command.execute();
}
@@ -83,7 +83,7 @@ define(['./ipa', './jquery', './details', './entity'], function (IPA, $) {
dialog.create_button({
name: 'force',
- label: IPA.messages.objects.realmdomains.force_update,
+ label: '@i18n:objects.realmdomains.force_update',
visible: true,
click: function () {
command.set_option('force', true);