From db5e0f8029a7e225246724f56f11049dd0338012 Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: Sep 28 2018 08:30:22 +0000 Subject: Add title to 'remove' dialog for 'association_table' widget of 'Services' entity To improve translation quality the title of 'Remove' dialog, which is initialized within details table of the entity, should be specified explicitly in the spec and should be an entire sentence. Fixes: https://pagure.io/freeipa/issue/7704 Reviewed-By: Serhii Tsymbaliuk Reviewed-By: Christian Heimes --- diff --git a/install/ui/src/freeipa/service.js b/install/ui/src/freeipa/service.js index 3875210..1bbb93f 100644 --- a/install/ui/src/freeipa/service.js +++ b/install/ui/src/freeipa/service.js @@ -205,7 +205,7 @@ return { add_method: 'allow_retrieve_keytab', remove_method: 'disallow_retrieve_keytab', add_title: '@i18n:keytab.add_retrive', - remove_title: '@i18n:keytab.remove_retrieve', + remove_title: '@i18n:keytab.remove_users_retrieve', columns: [ { name: 'ipaallowedtoperform_read_keys_user', @@ -222,7 +222,7 @@ return { add_method: 'allow_retrieve_keytab', remove_method: 'disallow_retrieve_keytab', add_title: '@i18n:keytab.add_retrive', - remove_title: '@i18n:keytab.remove_retrieve', + remove_title: '@i18n:keytab.remove_groups_retrieve', columns: [ { name: 'ipaallowedtoperform_read_keys_group', @@ -239,7 +239,7 @@ return { add_method: 'allow_retrieve_keytab', remove_method: 'disallow_retrieve_keytab', add_title: '@i18n:keytab.add_retrive', - remove_title: '@i18n:keytab.remove_retrieve', + remove_title: '@i18n:keytab.remove_hosts_retrieve', columns: [ { name: 'ipaallowedtoperform_read_keys_host', @@ -256,7 +256,7 @@ return { add_method: 'allow_retrieve_keytab', remove_method: 'disallow_retrieve_keytab', add_title: '@i18n:keytab.add_retrive', - remove_title: '@i18n:keytab.remove_retrieve', + remove_title: '@i18n:keytab.remove_hostgroups_retrieve', columns: [ { name: 'ipaallowedtoperform_read_keys_hostgroup', @@ -280,7 +280,7 @@ return { add_method: 'allow_create_keytab', remove_method: 'disallow_create_keytab', add_title: '@i18n:keytab.add_create', - remove_title: '@i18n:keytab.remove_create', + remove_title: '@i18n:keytab.remove_users_create', columns: [ { name: 'ipaallowedtoperform_write_keys_user', @@ -297,7 +297,7 @@ return { add_method: 'allow_create_keytab', remove_method: 'disallow_create_keytab', add_title: '@i18n:keytab.add_create', - remove_title: '@i18n:keytab.remove_create', + remove_title: '@i18n:keytab.remove_groups_create', columns: [ { name: 'ipaallowedtoperform_write_keys_group', @@ -314,7 +314,7 @@ return { add_method: 'allow_create_keytab', remove_method: 'disallow_create_keytab', add_title: '@i18n:keytab.add_create', - remove_title: '@i18n:keytab.remove_create', + remove_title: '@i18n:keytab.remove_hosts_create', columns: [ { name: 'ipaallowedtoperform_write_keys_host', @@ -331,7 +331,7 @@ return { add_method: 'allow_create_keytab', remove_method: 'disallow_create_keytab', add_title: '@i18n:keytab.add_create', - remove_title: '@i18n:keytab.remove_create', + remove_title: '@i18n:keytab.remove_hostgroups_create', columns: [ { name: 'ipaallowedtoperform_write_keys_hostgroup',