diff --git a/changes/changelog.d/652.bugfix b/changes/changelog.d/652.bugfix new file mode 100644 index 000000000..da8d30b00 --- /dev/null +++ b/changes/changelog.d/652.bugfix @@ -0,0 +1 @@ +Fixed escaping issues in translated strings (#652) diff --git a/front/src/components/audio/album/Card.vue b/front/src/components/audio/album/Card.vue index 2f19d7fbb..8cc9dcf6c 100644 --- a/front/src/components/audio/album/Card.vue +++ b/front/src/components/audio/album/Card.vue @@ -11,7 +11,7 @@
- By %{ artist } + By %{ artist } – {{ album.release_date | year }}
diff --git a/front/src/components/library/Track.vue b/front/src/components/library/Track.vue index 866231b62..4e0faaeec 100644 --- a/front/src/components/library/Track.vue +++ b/front/src/components/library/Track.vue @@ -15,9 +15,10 @@
{{ track.title }}
- From album %{ album } by %{ artist } + >From album %{ album } by %{ artist }

diff --git a/front/src/components/playlists/Editor.vue b/front/src/components/playlists/Editor.vue index 5b5311f14..e42c60dae 100644 --- a/front/src/components/playlists/Editor.vue +++ b/front/src/components/playlists/Editor.vue @@ -39,8 +39,8 @@ Clear playlist -

- Do you want to clear the playlist "%{ playlist }"? +

+ Do you want to clear the playlist "%{ playlist }"?

This will remove all tracks from this playlist and cannot be undone.

Clear playlist

diff --git a/front/src/components/playlists/PlaylistModal.vue b/front/src/components/playlists/PlaylistModal.vue index 3065631af..7c4dbbf38 100644 --- a/front/src/components/playlists/PlaylistModal.vue +++ b/front/src/components/playlists/PlaylistModal.vue @@ -7,11 +7,11 @@
diff --git a/front/src/views/playlists/Detail.vue b/front/src/views/playlists/Detail.vue index 8b4dcc4c6..69639bd18 100644 --- a/front/src/views/playlists/Detail.vue +++ b/front/src/views/playlists/Detail.vue @@ -32,8 +32,8 @@ Delete -

- Do you want to delete the playlist "%{ playlist }"? +

+ Do you want to delete the playlist "%{ playlist }"?

This will completely delete this playlist and cannot be undone.

Delete playlist

diff --git a/front/src/views/radios/Detail.vue b/front/src/views/radios/Detail.vue index 0c46385a6..61a7553ed 100644 --- a/front/src/views/radios/Detail.vue +++ b/front/src/views/radios/Detail.vue @@ -24,7 +24,7 @@ Delete -

Do you want to delete the radio "%{ radio }"?

+

Do you want to delete the radio "%{ radio }"?

This will completely delete this radio and cannot be undone.

Delete radio