Update language json structure
Restructure language file to use consistent pattern
across pages following loose guidelines.
- Create buckets for common global labels
- Create common component objects–appHeader, appNavigation,
appPageTitle
- Page specific labels should be nested in an object with a
key prefixed with 'page' followed by the page title
- Any 'major' child components should be nested inside page
specific objects
- Avoid any complex linked locale messages
- Alphabetize object keys, alphabetize nested properties at
end of object block
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: Ie4222b3ce24dec7af31b55b5a77425ca2f492789
diff --git a/src/components/Global/TableToolbar.vue b/src/components/Global/TableToolbar.vue
index fc3736d..e28151c 100644
--- a/src/components/Global/TableToolbar.vue
+++ b/src/components/Global/TableToolbar.vue
@@ -3,7 +3,7 @@
<div v-if="isToolbarActive" class="toolbar-container">
<div class="toolbar-content">
<p class="toolbar-selected">
- {{ selectedItemsCount }} {{ $t('global.actions.selected') }}
+ {{ selectedItemsCount }} {{ $t('global.action.selected') }}
</p>
<div class="toolbar-actions d-flex">
<b-button
@@ -20,7 +20,7 @@
class="d-block"
@click="$emit('clearSelected')"
>
- {{ $t('global.actions.cancel') }}
+ {{ $t('global.action.cancel') }}
</b-button>
</div>
</div>