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