Merge pull request #54 from WebTools-NG/#47-localized-no-server

#47 added no server selected to en langs
#47 merge into master
This commit is contained in:
Casper Sillemann 2020-06-13 02:33:09 +02:00 committed by GitHub
commit 0ca40d3d0c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -60,6 +60,7 @@
"ET": { "ET": {
"Description": "@:Modules.ET.Name allows you to export some information about the medias in your libraries", "Description": "@:Modules.ET.Name allows you to export some information about the medias in your libraries",
"Name": "ExportTool", "Name": "ExportTool",
"ErrorServer": "No server",
"HSelectMedia": "Select Media Type", "HSelectMedia": "Select Media Type",
"HSelectSelection": "Select Media Libary", "HSelectSelection": "Select Media Libary",
"SelectSelection": "Select Selection", "SelectSelection": "Select Selection",
@ -68,7 +69,8 @@
"RadioTVSeries": "TV Series", "RadioTVSeries": "TV Series",
"RadioMusic": "Music", "RadioMusic": "Music",
"RadioPhotos" : "Photos", "RadioPhotos" : "Photos",
"RadioOtherVideos": "Other Videos" "RadioOtherVideos": "Other Videos",
"ErrorNoServerSelected": "No server selected"
}, },
"About": { "About": {
"Description": "@:Modules.About.Name", "Description": "@:Modules.About.Name",

View file

@ -176,7 +176,7 @@ export default {
log.debug("serverCheck is none") log.debug("serverCheck is none")
this.$buefy.toast.open({ this.$buefy.toast.open({
duration: 3000, duration: 3000,
message: `No server selected`, message: this.$t('Modules.ET.ErrorNoServerSelected'),
type: 'is-danger' type: 'is-danger'
}) })
} }