diff --git a/client/pages/config/index.vue b/client/pages/config/index.vue index e354edba..c50a5fe3 100644 --- a/client/pages/config/index.vue +++ b/client/pages/config/index.vue @@ -68,16 +68,19 @@ -
+
- {{ dateExample }} +

{{ $strings.LabelExample }}: {{ dateExample }}

+

{{ $strings.LabelCurrently }} {{ currentlyDate }}

-
+
- {{ timeExample }} +

{{ $strings.LabelExample }}: {{ timeExample }}

+

{{ $strings.LabelCurrently }} {{ currentlyTime }}

+
@@ -303,6 +306,12 @@ export default { timeFormats() { return this.$store.state.globals.timeFormats }, + currentlyDate() { + return this.$formatJsDate(new Date(), this.newServerSettings.dateFormat) + }, + currentlyTime() { + return this.$formatJsTime(new Date(), this.newServerSettings.timeFormat) + }, dateExample() { const date = new Date(2014, 2, 25); return this.$formatJsDate(date, this.newServerSettings.dateFormat) diff --git a/client/strings/de.json b/client/strings/de.json index d46fb3fb..5bef86db 100644 --- a/client/strings/de.json +++ b/client/strings/de.json @@ -213,6 +213,7 @@ "LabelEpisode": "Episode", "LabelEpisodeTitle": "Episodentitel", "LabelEpisodeType": "Episodentyp", + "LabelExample": "Example", "LabelExplicit": "Explizit (Altersbeschränkung)", "LabelFeedURL": "Feed URL", "LabelFile": "Datei", diff --git a/client/strings/en-us.json b/client/strings/en-us.json index b658c52f..be811bcb 100644 --- a/client/strings/en-us.json +++ b/client/strings/en-us.json @@ -213,6 +213,7 @@ "LabelEpisode": "Episode", "LabelEpisodeTitle": "Episode Title", "LabelEpisodeType": "Episode Type", + "LabelExample": "Example", "LabelExplicit": "Explicit", "LabelFeedURL": "Feed URL", "LabelFile": "File", diff --git a/client/strings/es.json b/client/strings/es.json index b658c52f..be811bcb 100644 --- a/client/strings/es.json +++ b/client/strings/es.json @@ -213,6 +213,7 @@ "LabelEpisode": "Episode", "LabelEpisodeTitle": "Episode Title", "LabelEpisodeType": "Episode Type", + "LabelExample": "Example", "LabelExplicit": "Explicit", "LabelFeedURL": "Feed URL", "LabelFile": "File", diff --git a/client/strings/fr.json b/client/strings/fr.json index c67579eb..7e728e9a 100644 --- a/client/strings/fr.json +++ b/client/strings/fr.json @@ -213,6 +213,7 @@ "LabelEpisode": "Épisode", "LabelEpisodeTitle": "Titre de l'épisode", "LabelEpisodeType": "Type de l'épisode", + "LabelExample": "Example", "LabelExplicit": "Restriction", "LabelFeedURL": "URL deu flux", "LabelFile": "Fichier", diff --git a/client/strings/hr.json b/client/strings/hr.json index 7f2eea9e..cf787aed 100644 --- a/client/strings/hr.json +++ b/client/strings/hr.json @@ -213,6 +213,7 @@ "LabelEpisode": "Epizoda", "LabelEpisodeTitle": "Naslov epizode", "LabelEpisodeType": "Vrsta epizode", + "LabelExample": "Example", "LabelExplicit": "Explicit", "LabelFeedURL": "Feed URL", "LabelFile": "Datoteka", diff --git a/client/strings/it.json b/client/strings/it.json index 1b428941..5e124ca4 100644 --- a/client/strings/it.json +++ b/client/strings/it.json @@ -213,6 +213,7 @@ "LabelEpisode": "Episodio", "LabelEpisodeTitle": "Titolo Episodio", "LabelEpisodeType": "Tipo Episodio", + "LabelExample": "Example", "LabelExplicit": "Esplicito", "LabelFeedURL": "Feed URL", "LabelFile": "File", diff --git a/client/strings/pl.json b/client/strings/pl.json index 346a59cc..30937fed 100644 --- a/client/strings/pl.json +++ b/client/strings/pl.json @@ -213,6 +213,7 @@ "LabelEpisode": "Odcinek", "LabelEpisodeTitle": "Tytuł odcinka", "LabelEpisodeType": "Typ odcinka", + "LabelExample": "Example", "LabelExplicit": "Nieprzyzwoite", "LabelFeedURL": "URL kanału", "LabelFile": "Plik", diff --git a/client/strings/ru.json b/client/strings/ru.json index f2b497f2..a65a7908 100644 --- a/client/strings/ru.json +++ b/client/strings/ru.json @@ -213,6 +213,7 @@ "LabelEpisode": "Эпизод", "LabelEpisodeTitle": "Имя Эпизода", "LabelEpisodeType": "Тип Эпизода", + "LabelExample": "Example", "LabelExplicit": "Явный", "LabelFeedURL": "URL Канала", "LabelFile": "Файл", diff --git a/client/strings/zh-cn.json b/client/strings/zh-cn.json index 0401909e..14da76bf 100644 --- a/client/strings/zh-cn.json +++ b/client/strings/zh-cn.json @@ -213,6 +213,7 @@ "LabelEpisode": "剧集", "LabelEpisodeTitle": "剧集标题", "LabelEpisodeType": "剧集类型", + "LabelExample": "Example", "LabelExplicit": "信息准确", "LabelFeedURL": "源 URL", "LabelFile": "文件",