mirror of
https://github.com/owntone/owntone-server.git
synced 2025-02-24 11:59:16 -05:00
[web] Fix untranslated button
This commit is contained in:
parent
4268f41a51
commit
7d7d38b946
@ -47,6 +47,7 @@
|
|||||||
@play-count-changed="play_count_changed()"
|
@play-count-changed="play_count_changed()"
|
||||||
/>
|
/>
|
||||||
<modal-dialog
|
<modal-dialog
|
||||||
|
:close_action="$t('page.podcast.cancel')"
|
||||||
:delete_action="$t('page.podcast.remove')"
|
:delete_action="$t('page.podcast.remove')"
|
||||||
:show="show_remove_podcast_modal"
|
:show="show_remove_podcast_modal"
|
||||||
:title="$t('page.podcast.remove-podcast')"
|
:title="$t('page.podcast.remove-podcast')"
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
export default {
|
export default {
|
||||||
name: 'ModalDialog',
|
name: 'ModalDialog',
|
||||||
props: {
|
props: {
|
||||||
close_action: { default: 'dialog.cancel', type: String },
|
close_action: { default: '', type: String },
|
||||||
delete_action: { default: '', type: String },
|
delete_action: { default: '', type: String },
|
||||||
ok_action: { default: '', type: String },
|
ok_action: { default: '', type: String },
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"cancel": "Abbrechen",
|
|
||||||
"add": {
|
"add": {
|
||||||
"rss": {
|
"rss": {
|
||||||
"add": "Hinzufügen",
|
"add": "Hinzufügen",
|
||||||
@ -385,6 +384,7 @@
|
|||||||
"count": "{count} Playlist|{count} Playlisten"
|
"count": "{count} Playlist|{count} Playlisten"
|
||||||
},
|
},
|
||||||
"podcast": {
|
"podcast": {
|
||||||
|
"cancel": "Abbrechen",
|
||||||
"play": "Spielen",
|
"play": "Spielen",
|
||||||
"remove": "Entfernen",
|
"remove": "Entfernen",
|
||||||
"remove-info-1": "Diesen Podcast wirklich dauerhaft aus der Bibliothek löschen?",
|
"remove-info-1": "Diesen Podcast wirklich dauerhaft aus der Bibliothek löschen?",
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"cancel": "Cancel",
|
|
||||||
"add": {
|
"add": {
|
||||||
"rss": {
|
"rss": {
|
||||||
"add": "Add",
|
"add": "Add",
|
||||||
@ -385,6 +384,7 @@
|
|||||||
"count": "{count} playlist|{count} playlist|{count} playlists"
|
"count": "{count} playlist|{count} playlist|{count} playlists"
|
||||||
},
|
},
|
||||||
"podcast": {
|
"podcast": {
|
||||||
|
"cancel": "Cancel",
|
||||||
"play": "Play",
|
"play": "Play",
|
||||||
"remove": "Remove",
|
"remove": "Remove",
|
||||||
"remove-info-1": "Permanently remove this podcast from your library?",
|
"remove-info-1": "Permanently remove this podcast from your library?",
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"cancel": "Annuler",
|
|
||||||
"add": {
|
"add": {
|
||||||
"rss": {
|
"rss": {
|
||||||
"add": "Ajouter",
|
"add": "Ajouter",
|
||||||
@ -385,6 +384,7 @@
|
|||||||
"count": "{count} liste de lecture|{count} liste de lecture|{count} listes de lecture"
|
"count": "{count} liste de lecture|{count} liste de lecture|{count} listes de lecture"
|
||||||
},
|
},
|
||||||
"podcast": {
|
"podcast": {
|
||||||
|
"cancel": "Annuler",
|
||||||
"play": "Lire",
|
"play": "Lire",
|
||||||
"remove": "Supprimer",
|
"remove": "Supprimer",
|
||||||
"remove-info-1": "Supprimer ce podcast de manière permanente de la bibliothèque ?",
|
"remove-info-1": "Supprimer ce podcast de manière permanente de la bibliothèque ?",
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dialog": {
|
"dialog": {
|
||||||
"cancel": "取消",
|
|
||||||
"add": {
|
"add": {
|
||||||
"rss": {
|
"rss": {
|
||||||
"add": "添加",
|
"add": "添加",
|
||||||
@ -385,6 +384,7 @@
|
|||||||
"count": "{count} 个播放列表|{count} 个播放列表"
|
"count": "{count} 个播放列表|{count} 个播放列表"
|
||||||
},
|
},
|
||||||
"podcast": {
|
"podcast": {
|
||||||
|
"cancel": "取消",
|
||||||
"play": "播放",
|
"play": "播放",
|
||||||
"remove": "移除",
|
"remove": "移除",
|
||||||
"remove-info-1": "从资料库中永久移除该播客?",
|
"remove-info-1": "从资料库中永久移除该播客?",
|
||||||
|
@ -47,6 +47,7 @@
|
|||||||
<modal-dialog
|
<modal-dialog
|
||||||
:show="show_remove_podcast_modal"
|
:show="show_remove_podcast_modal"
|
||||||
:title="$t('page.podcast.remove-podcast')"
|
:title="$t('page.podcast.remove-podcast')"
|
||||||
|
:close_action="$t('page.podcast.cancel')"
|
||||||
:delete_action="$t('page.podcast.remove')"
|
:delete_action="$t('page.podcast.remove')"
|
||||||
@close="show_remove_podcast_modal = false"
|
@close="show_remove_podcast_modal = false"
|
||||||
@delete="remove_podcast"
|
@delete="remove_podcast"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user