aboutsummaryrefslogtreecommitdiff
path: root/ui/src/components/node_page.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/components/node_page.rs')
-rw-r--r--ui/src/components/node_page.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/components/node_page.rs b/ui/src/components/node_page.rs
index 53534cf..f40aa73 100644
--- a/ui/src/components/node_page.rs
+++ b/ui/src/components/node_page.rs
@@ -81,7 +81,7 @@ markup::define! {
// }
@if node.has(NO_TRACK.0) {
details {
- summary { @tr(ri.lang, "media.tracks") }
+ summary { @tr(ri.lang, "tag.trak") }
ol { @for track in node.iter(NO_TRACK) {
li { "track" @track.get(TR_NAME) }
}}
@@ -89,7 +89,7 @@ markup::define! {
}
@if let Some(idents) = node.get(NO_IDENTIFIERS) {
details {
- summary { @tr(ri.lang, "node.external_ids") }
+ summary { @tr(ri.lang, "tag.iden") }
table {
@for (key, value) in idents.entries::<&str>() { tr {
td { @tr(ri.lang, &format!("tag.iden.{key}")) }
@@ -104,7 +104,7 @@ markup::define! {
}
@if node.has(NO_TAG.0) {
details {
- summary { @tr(ri.lang, "node.tags") }
+ summary { @tr(ri.lang, "tag.tag1") }
ol { @for tag in node.iter(NO_TAG) {
li { @tag }
}}