summaryrefslogtreecommitdiffstats
path: root/install/ui/automount.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-06-24 11:39:48 -0500
committerAdam Young <ayoung@redhat.com>2011-06-27 12:11:22 -0400
commit7452b6d3cba288b10fe3452f9ee93d052fd45ebc (patch)
tree42fe81ab67d7e55f317ffae6770d991d3b4c9b20 /install/ui/automount.js
parent8d9575605dea3ca480f657c1ef3f94cab0d312f8 (diff)
downloadfreeipa-7452b6d3cba288b10fe3452f9ee93d052fd45ebc.tar.gz
freeipa-7452b6d3cba288b10fe3452f9ee93d052fd45ebc.tar.xz
freeipa-7452b6d3cba288b10fe3452f9ee93d052fd45ebc.zip
Fixed entity labels.
The entity labels in the following locations have been fixed: - search facet title: plural - details facet title: singular - association facet title: singular - breadcrumb: plural - adder dialog title: singular - deleter dialog title: plural Some entity labels have been changed into the correct plural form. Unused file install/ui/test/data/i18n_messages.json has been removed. Ticket #1249 Ticket #1387
Diffstat (limited to 'install/ui/automount.js')
-rw-r--r--install/ui/automount.js11
1 files changed, 3 insertions, 8 deletions
diff --git a/install/ui/automount.js b/install/ui/automount.js
index 6ef970544..d4f113d51 100644
--- a/install/ui/automount.js
+++ b/install/ui/automount.js
@@ -38,8 +38,7 @@ IPA.entity_factories.automountlocation = function() {
nested_entity : 'automountmap',
label : IPA.metadata.objects.automountmap.label,
name: 'maps',
- columns:['automountmapname'],
- back_link_text: 'Back to Locations'
+ columns:['automountmapname']
}).
details_facet({
sections:[
@@ -48,8 +47,7 @@ IPA.entity_factories.automountlocation = function() {
label: IPA.messages.details.identity,
fields:['cn']
}
- ],
- back_link_text: 'Back to Locations'
+ ]
}).
adder_dialog({
fields:['cn']
@@ -66,7 +64,6 @@ IPA.entity_factories.automountmap = function() {
label : IPA.metadata.objects.automountkey.label,
name: 'keys',
get_values: IPA.get_option_values,
- back_link_text: 'Back to Locations',
columns:[
{
factory: IPA.automount_key_column,
@@ -83,8 +80,7 @@ IPA.entity_factories.automountmap = function() {
label: IPA.messages.details.identity,
fields:['automountmapname','description']
}
- ],
- back_link_text: 'Back to Locations'
+ ]
}).
adder_dialog({
factory: IPA.automountmap_adder_dialog,
@@ -131,7 +127,6 @@ IPA.entity_factories.automountkey = function() {
}
],
disable_breadcrumb: false,
- back_link_text: 'Back to Locations',
pre_execute_hook : function (command){
var entity_name = this.entity_name;
var info = IPA.nav.get_state(entity_name + '-info');