ui: Fix intl keys in order to render correct messages for empty states (#13409)
* ui: Fix intl keys in order to render correct messages for empty states * Add a debug only debug log to warn about missing keys
This commit is contained in:
parent
9c5d818546
commit
91bdeef373
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:bug
|
||||||
|
ui: Fix incorrect text on certain page empty states
|
||||||
|
```
|
|
@ -90,13 +90,13 @@ as |route|>
|
||||||
>
|
>
|
||||||
<BlockSlot @name="header">
|
<BlockSlot @name="header">
|
||||||
<h2>
|
<h2>
|
||||||
{{t 'routes.dc.auth-methods.index.empty.header'
|
{{t 'routes.dc.acls.auth-methods.index.empty.header'
|
||||||
items=items.length
|
items=items.length
|
||||||
}}
|
}}
|
||||||
</h2>
|
</h2>
|
||||||
</BlockSlot>
|
</BlockSlot>
|
||||||
<BlockSlot @name="body">
|
<BlockSlot @name="body">
|
||||||
{{t 'routes.dc.auth-methods.index.empty.body'
|
{{t 'routes.dc.acls.auth-methods.index.empty.body'
|
||||||
items=items.length
|
items=items.length
|
||||||
htmlSafe=true
|
htmlSafe=true
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -94,13 +94,13 @@ as |route|>
|
||||||
>
|
>
|
||||||
<BlockSlot @name="header">
|
<BlockSlot @name="header">
|
||||||
<h2>
|
<h2>
|
||||||
{{t 'routes.dc.services.intentions.index.empty.header'
|
{{t 'routes.dc.services.show.intentions.index.empty.header'
|
||||||
items=items.length
|
items=items.length
|
||||||
}}
|
}}
|
||||||
</h2>
|
</h2>
|
||||||
</BlockSlot>
|
</BlockSlot>
|
||||||
<BlockSlot @name="body">
|
<BlockSlot @name="body">
|
||||||
{{t 'routes.dc.services.intentions.index.empty.body'
|
{{t 'routes.dc.services.show.intentions.index.empty.body'
|
||||||
items=items.length
|
items=items.length
|
||||||
htmlSafe=true
|
htmlSafe=true
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
|
/* eslint no-console: ["error", { allow: ["debug"] }] */
|
||||||
|
import { runInDebug } from '@ember/debug';
|
||||||
|
|
||||||
// if we can't find the message, take the last part of the identifier and
|
// if we can't find the message, take the last part of the identifier and
|
||||||
// ucfirst it so it looks human
|
// ucfirst it so it looks human
|
||||||
export default function missingMessage(key, locales) {
|
export default function missingMessage(key, locales) {
|
||||||
|
runInDebug(
|
||||||
|
_ => console.debug(`Translation key not found: ${key}`)
|
||||||
|
);
|
||||||
const last = key
|
const last = key
|
||||||
.split('.')
|
.split('.')
|
||||||
.pop()
|
.pop()
|
||||||
|
|
|
@ -75,6 +75,7 @@ dc:
|
||||||
title: Metadata
|
title: Metadata
|
||||||
sessions:
|
sessions:
|
||||||
title: Lock Sessions
|
title: Lock Sessions
|
||||||
|
empty:
|
||||||
header: Welcome to Lock Sessions
|
header: Welcome to Lock Sessions
|
||||||
body: |
|
body: |
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue