mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-23 17:26:42 +00:00
Translation for number of occurrences (#25117)
* Translation for number of occurrences * Update src/translations/en.json
This commit is contained in:
parent
09a17131ab
commit
6bf8faa96a
@ -159,9 +159,11 @@ class DialogSystemLogDetail extends LitElement {
|
||||
this.hass!.locale,
|
||||
this.hass!.config
|
||||
)}
|
||||
(${item.count}
|
||||
${this.hass.localize(
|
||||
"ui.panel.config.logs.detail.occurrences"
|
||||
(${this.hass.localize(
|
||||
"ui.panel.config.logs.detail.number_of_occurrences",
|
||||
{
|
||||
count: item.count,
|
||||
}
|
||||
)}) <br />
|
||||
`
|
||||
: ""}
|
||||
|
@ -3162,7 +3162,7 @@
|
||||
"documentation": "documentation",
|
||||
"issues": "issues",
|
||||
"first_occurred": "First occurred",
|
||||
"occurrences": "occurrences",
|
||||
"number_of_occurrences": "{count} {count, plural,\n one {occurrence}\n other {occurrences}\n}",
|
||||
"last_logged": "Last logged"
|
||||
}
|
||||
},
|
||||
@ -9320,7 +9320,6 @@
|
||||
"documentation": "[%key:ui::panel::config::logs::detail::documentation%]",
|
||||
"issues": "[%key:ui::panel::config::logs::detail::issues%]",
|
||||
"first_occurred": "[%key:ui::panel::config::logs::detail::first_occurred%]",
|
||||
"occurrences": "[%key:ui::panel::config::logs::detail::occurrences%]",
|
||||
"last_logged": "[%key:ui::panel::config::logs::detail::last_logged%]"
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user