From c44b85501f5560f71d78908fabed3648ca06c698 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 21 Sep 2016 14:28:33 -0400 Subject: [PATCH] update translations --- .../emby-webcomponents/.bower.json | 8 +- .../emby-webcomponents/guide/guide.js | 2 +- .../indicators/indicators.js | 4 +- .../emby-webcomponents/mediainfo/mediainfo.js | 2 +- .../recordingcreator/recordingcreator.js | 75 ++++++++++--------- .../recordingeditor.template.html | 18 ++++- .../recordingcreator/recordingfields.js | 4 +- .../recordingfields.template.html | 3 +- .../recordingcreator/seriesrecordingeditor.js | 3 + .../seriesrecordingeditor.template.html | 25 ++++++- .../emby-webcomponents/strings/ar.json | 6 ++ .../emby-webcomponents/strings/bg-BG.json | 6 ++ .../emby-webcomponents/strings/ca.json | 6 ++ .../emby-webcomponents/strings/cs.json | 6 ++ .../emby-webcomponents/strings/da.json | 6 ++ .../emby-webcomponents/strings/de.json | 22 ++++-- .../emby-webcomponents/strings/el.json | 6 ++ .../emby-webcomponents/strings/en-GB.json | 6 ++ .../emby-webcomponents/strings/en-US.json | 9 ++- .../emby-webcomponents/strings/es-AR.json | 6 ++ .../emby-webcomponents/strings/es-MX.json | 6 ++ .../emby-webcomponents/strings/es.json | 6 ++ .../emby-webcomponents/strings/fi.json | 6 ++ .../emby-webcomponents/strings/fr-CA.json | 6 ++ .../emby-webcomponents/strings/fr.json | 6 ++ .../emby-webcomponents/strings/gsw.json | 6 ++ .../emby-webcomponents/strings/he.json | 6 ++ .../emby-webcomponents/strings/hr.json | 6 ++ .../emby-webcomponents/strings/hu.json | 6 ++ .../emby-webcomponents/strings/id.json | 6 ++ .../emby-webcomponents/strings/it.json | 6 ++ .../emby-webcomponents/strings/kk.json | 26 ++++--- .../emby-webcomponents/strings/ko.json | 6 ++ .../emby-webcomponents/strings/ms.json | 6 ++ .../emby-webcomponents/strings/nb.json | 6 ++ .../emby-webcomponents/strings/nl.json | 6 ++ .../emby-webcomponents/strings/pl.json | 6 ++ .../emby-webcomponents/strings/pt-BR.json | 18 +++-- .../emby-webcomponents/strings/pt-PT.json | 6 ++ .../emby-webcomponents/strings/ro.json | 6 ++ .../emby-webcomponents/strings/ru.json | 26 ++++--- .../emby-webcomponents/strings/sk.json | 6 ++ .../emby-webcomponents/strings/sl-SI.json | 6 ++ .../emby-webcomponents/strings/sv.json | 6 ++ .../emby-webcomponents/strings/tr.json | 6 ++ .../emby-webcomponents/strings/uk.json | 6 ++ .../emby-webcomponents/strings/vi.json | 6 ++ .../emby-webcomponents/strings/zh-CN.json | 6 ++ .../emby-webcomponents/strings/zh-HK.json | 6 ++ .../emby-webcomponents/strings/zh-TW.json | 6 ++ 50 files changed, 369 insertions(+), 86 deletions(-) diff --git a/dashboard-ui/bower_components/emby-webcomponents/.bower.json b/dashboard-ui/bower_components/emby-webcomponents/.bower.json index 7ac9348cdc..f4bcb5e25d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/.bower.json +++ b/dashboard-ui/bower_components/emby-webcomponents/.bower.json @@ -14,12 +14,12 @@ }, "devDependencies": {}, "ignore": [], - "version": "1.4.258", - "_release": "1.4.258", + "version": "1.4.259", + "_release": "1.4.259", "_resolution": { "type": "version", - "tag": "1.4.258", - "commit": "52cd113c96592ab8036ea4878fdff7681459b16d" + "tag": "1.4.259", + "commit": "2e5f06e70a3a24a3904a91fe28669a3483d3b7ca" }, "_source": "https://github.com/MediaBrowser/emby-webcomponents.git", "_target": "^1.2.1", diff --git a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js index 7bfecbfe9d..0b6d9a3a14 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js +++ b/dashboard-ui/bower_components/emby-webcomponents/guide/guide.js @@ -395,7 +395,7 @@ html += 'hd'; } - if (program.SeriesTimerId) { + if (program.SeriesTimerId && program.TimerId) { html += ''; } else if (program.TimerId) { diff --git a/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.js b/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.js index cd9c090809..29fa3a2561 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.js +++ b/dashboard-ui/bower_components/emby-webcomponents/indicators/indicators.js @@ -98,10 +98,10 @@ define(['css!./indicators.css', 'material-icons'], function () { function getTimerIndicator(item) { - if (item.SeriesTimerId) { + if (item.SeriesTimerId && item.TimerId) { return ''; } - if (item.TimerId) { + else if (item.TimerId) { return ''; } diff --git a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js index b15944e177..b9f9fa326a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js +++ b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js @@ -41,7 +41,7 @@ define(['datetime', 'globalize', 'embyRouter', 'itemHelper', 'material-icons', ' } if (options.timerIndicator !== false) { - if (item.SeriesTimerId) { + if (item.SeriesTimerId && item.TimerId) { miscInfo.push({ html: '' }); diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js index eb76c03cb7..11eddcd49a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingcreator.js @@ -1,7 +1,5 @@ -define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields) { +define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'datetime', 'imageLoader', 'recordingFields', 'events', 'emby-checkbox', 'emby-button', 'emby-collapse', 'emby-input', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, datetime, imageLoader, recordingFields, events) { - var currentProgramId; - var currentServerId; var currentDialog; var closeAction; var currentRecordingFields; @@ -54,47 +52,49 @@ return null; } - function renderRecording(context, defaultTimer, program, apiClient) { + function renderRecording(context, defaultTimer, program, apiClient, refreshRecordingStateOnly) { - var imgUrl = getImageUrl(program, apiClient, 200); - var imageContainer = context.querySelector('.recordingDialog-imageContainer'); + if (!refreshRecordingStateOnly) { + var imgUrl = getImageUrl(program, apiClient, 200); + var imageContainer = context.querySelector('.recordingDialog-imageContainer'); - if (imgUrl) { - imageContainer.innerHTML = ''; - imageContainer.classList.remove('hide'); + if (imgUrl) { + imageContainer.innerHTML = ''; + imageContainer.classList.remove('hide'); - imageLoader.lazyChildren(imageContainer); - } else { - imageContainer.innerHTML = ''; - imageContainer.classList.add('hide'); + imageLoader.lazyChildren(imageContainer); + } else { + imageContainer.innerHTML = ''; + imageContainer.classList.add('hide'); + } + + context.querySelector('.recordingDialog-itemName').innerHTML = program.Name; + context.querySelector('.formDialogHeaderTitle').innerHTML = program.Name; + context.querySelector('.itemGenres').innerHTML = (program.Genres || []).join(' / '); + context.querySelector('.itemOverview').innerHTML = program.Overview || ''; + + var formDialogFooter = context.querySelector('.formDialogFooter'); + var now = new Date(); + if (now >= datetime.parseISO8601Date(program.StartDate, true) && now < datetime.parseISO8601Date(program.EndDate, true)) { + formDialogFooter.classList.remove('hide'); + } else { + formDialogFooter.classList.add('hide'); + } + + context.querySelector('.itemMiscInfoPrimary').innerHTML = mediaInfo.getPrimaryMediaInfoHtml(program); } - context.querySelector('.recordingDialog-itemName').innerHTML = program.Name; - context.querySelector('.formDialogHeaderTitle').innerHTML = program.Name; - context.querySelector('.itemGenres').innerHTML = (program.Genres || []).join(' / '); - context.querySelector('.itemOverview').innerHTML = program.Overview || ''; - - var formDialogFooter = context.querySelector('.formDialogFooter'); - var now = new Date(); - if (now >= datetime.parseISO8601Date(program.StartDate, true) && now < datetime.parseISO8601Date(program.EndDate, true)) { - formDialogFooter.classList.remove('hide'); - } else { - formDialogFooter.classList.add('hide'); - } - - context.querySelector('.itemMiscInfoPrimary').innerHTML = mediaInfo.getPrimaryMediaInfoHtml(program); context.querySelector('.itemMiscInfoSecondary').innerHTML = mediaInfo.getSecondaryMediaInfoHtml(program, { - timerIndicator: false }); loading.hide(); } - function reload(context, programId) { + function reload(context, programId, serverId, refreshRecordingStateOnly) { loading.show(); - var apiClient = connectionManager.getApiClient(currentServerId); + var apiClient = connectionManager.getApiClient(serverId); var promise1 = apiClient.getNewLiveTvTimerDefaults({ programId: programId }); var promise2 = apiClient.getLiveTvProgram(programId, apiClient.getCurrentUserId()); @@ -104,7 +104,7 @@ var defaults = responses[0]; var program = responses[1]; - renderRecording(context, defaults, program, apiClient); + renderRecording(context, defaults, program, apiClient, refreshRecordingStateOnly); }); } @@ -129,8 +129,6 @@ return new Promise(function (resolve, reject) { - currentProgramId = itemId; - currentServerId = serverId; closeAction = null; loading.show(); @@ -161,9 +159,14 @@ currentDialog = dlg; + function onRecordingChanged() { + reload(dlg, itemId, serverId, true); + } + dlg.addEventListener('close', function () { - executeCloseAction(closeAction, currentProgramId, currentServerId); + events.off(currentRecordingFields, 'recordingchanged', onRecordingChanged); + executeCloseAction(closeAction, itemId, serverId); if (currentRecordingFields && currentRecordingFields.hasChanged()) { resolve(); @@ -178,7 +181,7 @@ init(dlg); - reload(dlg, itemId); + reload(dlg, itemId, serverId); currentRecordingFields = new recordingFields({ parent: dlg.querySelector('.recordingFields'), @@ -186,6 +189,8 @@ serverId: serverId }); + events.on(currentRecordingFields, 'recordingchanged', onRecordingChanged); + dialogHelper.open(dlg); }); }); diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html index fa0d99d7fc..8b85cb6ead 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingeditor.template.html @@ -11,10 +11,24 @@

- +
+
+ +
+
+ ${MinutesBefore} +
+
- +
+
+ +
+
+ ${MinutesAfter} +
+

diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.js b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.js index 77421a1e04..58d8781b7c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.js +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.js @@ -1,4 +1,4 @@ -define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'paper-icon-button-light', 'emby-button'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper) { +define(['globalize', 'connectionManager', 'require', 'loading', 'apphost', 'dom', 'recordingHelper', 'events', 'paper-icon-button-light', 'emby-button'], function (globalize, connectionManager, require, loading, appHost, dom, recordingHelper, events) { function getRegistration(apiClient, programId, feature) { @@ -210,12 +210,14 @@ if (isChecked) { if (!this.TimerId && !this.SeriesTimerId) { recordingHelper.createRecording(apiClient, options.programId, false).then(function () { + events.trigger(self, 'recordingchanged'); fetchData(self); }); } } else { if (this.TimerId) { recordingHelper.cancelTimer(apiClient, this.TimerId, true).then(function () { + events.trigger(self, 'recordingchanged'); fetchData(self); }); } diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html index ad6d837bd0..aeb20a3ebd 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/recordingfields.template.html @@ -5,8 +5,9 @@ .recordingButton { margin-left: 0; - padding: .65em 1.05em .6em .8em; min-width: 10em; + border-radius: 10em; + font-size: 92%; } .manageRecordingButton { diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js index 0ac07932f2..a9f61a983b 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.js @@ -48,6 +48,8 @@ context.querySelector('.selectChannels').value = item.RecordAnyChannel ? 'all' : 'one'; context.querySelector('.selectAirTime').value = item.RecordAnyTime ? 'any' : 'original'; + context.querySelector('.selectShowType').value = item.RecordNewOnly ? 'new' : 'all'; + if (item.ChannelName || item.ChannelNumber) { context.querySelector('.optionChannelOnly').innerHTML = globalize.translate('sharedcomponents#ChannelNameOnly', item.ChannelName || item.ChannelNumber); } else { @@ -79,6 +81,7 @@ item.PostPaddingSeconds = form.querySelector('#txtPostPaddingMinutes').value * 60; item.RecordAnyChannel = form.querySelector('.selectChannels').value == 'all'; item.RecordAnyTime = form.querySelector('.selectAirTime').value == 'any'; + item.RecordNewOnly = form.querySelector('.selectShowType').value == 'new'; apiClient.updateLiveTvSeriesTimer(item); }); diff --git a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html index ce09e3d043..06f584c128 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html +++ b/dashboard-ui/bower_components/emby-webcomponents/recordingcreator/seriesrecordingeditor.template.html @@ -9,6 +9,13 @@
+
+ +
+
+
+
+ +
+
+ ${MinutesBefore} +
+
- +
+
+ +
+
+ ${MinutesAfter} +
+

diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json index a1f49b0f9e..c31a531d19 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json index 41cad3718e..5a41423bfa 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json index e21bd369b4..e47eb2876f 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Afegeix", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json index 366f980dec..b21d3940e3 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "P\u0159idat", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json index 4e8a40913c..8882ed7603 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Del", "Add": "Tilf\u00f8j", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json index b57c4dac86..58beaa4c60 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Teilen", "Add": "Hinzuf\u00fcgen", @@ -289,12 +295,12 @@ "DeleteMedia": "Medien l\u00f6schen", "SeriesSettings": "Serieneinstellungen", "HeaderRecordingOptions": "Aufnahmeeinstellungen", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:" + "CancelSeries": "Serien abbrechen", + "DoNotRecord": "Nicht aufnehmen", + "HeaderSeriesOptions": "Serienoptionen", + "LabelChannels": "Kan\u00e4le:", + "ChannelNameOnly": "Nur Kanal {0}", + "Anytime": "Jederzeit", + "AroundTime": "Um {0}", + "LabelAirtime": "Sendezeit" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json index 437590c02a..5c50766b52 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json index 8f9aee3afb..c8d7eff215 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json index 22415f07cd..16b2043706 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json @@ -39,8 +39,6 @@ "Saturday": "Saturday", "Days": "Days", "RecordSeries": "Record series", - "LabelPrePaddingMinutes": "Pre-padding minutes:", - "LabelPostPaddingMinutes": "Post-padding minutes:", "RecordOnAllChannels": "Record on all channels", "RecordAnytime": "Record at any time", "RecordOnlyNewEpisodes": "Record only new episodes", @@ -297,5 +295,10 @@ "Anytime": "Anytime", "AroundTime": "Around {0}", "LabelAirtime": "Airtime:", - "AllChannels": "All channels" + "AllChannels": "All channels", + "LabelRecord": "Record:", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json index e30508d108..83b3edc1ae 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json index 5d5f4baead..4c8b2c6bb4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Compartir", "Add": "Agregar", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json index b819553352..40fffda273 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Compartir", "Add": "A\u00f1adir", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json index 3aeee8126a..cfc76b221c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json index 584bc7bd3c..b1b970120c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json index dd8c37149d..884cc2449c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}", "Share": "Partager", "Add": "Ajouter", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json index 06b7fa5a05..1830134141 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json index 78dc895fb5..4ec699289c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u05d4\u05d5\u05e1\u05e3", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json index 52cfcea75d..8e2fcbd1e8 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Dodaj", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json index 45e436aa86..e07240dc9d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Megoszt\u00e1s", "Add": "Hozz\u00e1ad", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json index d13ddc4b71..77a355973c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json index 8b89f02aaf..16b8c1e16a 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Aggiungi", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json index b14dd3bb13..054a77eb44 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}", "Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", "Add": "\u04ae\u0441\u0442\u0435\u0443", @@ -287,14 +293,14 @@ "HeaderKeepRecording": "\u0416\u0430\u0437\u0443\u0434\u044b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443", "HeaderLearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443", "DeleteMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0456 \u0436\u043e\u044e", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:" + "SeriesSettings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456", + "HeaderRecordingOptions": "\u0416\u0430\u0437\u0443 \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b", + "CancelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", + "DoNotRecord": "\u0416\u0430\u0437\u0443\u0493\u0430 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b", + "HeaderSeriesOptions": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u043e\u043f\u0446\u0438\u044f\u043b\u0430\u0440\u044b", + "LabelChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440:", + "ChannelNameOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 {0} \u0430\u0440\u043d\u0430\u0441\u044b", + "Anytime": "\u04d8\u0440\u043a\u0435\u0437\u0434\u0435", + "AroundTime": "{0} \u0430\u0439\u043d\u0430\u043b\u0430\u0441\u044b\u043d\u0434\u0430", + "LabelAirtime": "\u042d\u0444\u0438\u0440 \u0443\u0430\u049b\u044b\u0442\u044b:" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json index 7b39d3793f..0534f42355 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\ucd94\uac00", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json index 584bc7bd3c..b1b970120c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json index 030b9951c0..8489f252f4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Spesial - {0}", "Share": "Del", "Add": "Legg til", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json index 0fc6ffdec7..1073e6b46c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Speciaal - {0}", "Share": "Delen", "Add": "Toevoegen", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json index 06b22b5e6e..81095aaa9b 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Dodaj", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json index aacea369a9..d2390918d7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Compartilhar", "Add": "Adicionar", @@ -291,10 +297,10 @@ "HeaderRecordingOptions": "Op\u00e7\u00f5es de Grava\u00e7\u00e3o", "CancelSeries": "Cancelar s\u00e9rie", "DoNotRecord": "N\u00e3o gravar", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:" + "HeaderSeriesOptions": "Op\u00e7\u00f5es da S\u00e9rie", + "LabelChannels": "Canais:", + "ChannelNameOnly": "Somente canal {0}", + "Anytime": "A qualquer momento", + "AroundTime": "Em torno de {0}", + "LabelAirtime": "Hor\u00e1rio de exibi\u00e7\u00e3o:" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json index cc396662fd..4a2d08a84d 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Especial - {0}", "Share": "Partilhar", "Add": "Adicionar", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json index 5216f1948d..c0b97b5bad 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json index 3b50571e0d..98cc479b92 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", "Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", "Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", @@ -287,14 +293,14 @@ "HeaderKeepRecording": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", "HeaderLearnMore": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435...", "DeleteMedia": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "SeriesSettings": "Series settings", - "HeaderRecordingOptions": "Recording Options", - "CancelSeries": "Cancel series", - "DoNotRecord": "Do not record", - "HeaderSeriesOptions": "Series Options", - "LabelChannels": "Channels:", - "ChannelNameOnly": "Channel {0} only", - "Anytime": "Anytime", - "AroundTime": "Around {0}", - "LabelAirtime": "Airtime:" + "SeriesSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0435\u0440\u0438\u0430\u043b\u0430", + "HeaderRecordingOptions": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430\u043f\u0438\u0441\u0438", + "CancelSeries": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b", + "DoNotRecord": "\u041d\u0435 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c", + "HeaderSeriesOptions": "\u041e\u043f\u0446\u0438\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u0430", + "LabelChannels": "\u041a\u0430\u043d\u0430\u043b\u044b:", + "ChannelNameOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u043a\u0430\u043d\u0430\u043b {0}", + "Anytime": "\u0412 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f", + "AroundTime": "\u041e\u043a\u043e\u043b\u043e {0}", + "LabelAirtime": "\u0412\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u0430:" } \ No newline at end of file diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json index 584bc7bd3c..b1b970120c 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json index ba43e2876d..504214bfd7 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json index 3bc306b4a6..2b698b80f1 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Specialavsnitt - {0}", "Share": "Dela", "Add": "L\u00e4gg till", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json index 074710ef39..494c53b2c4 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Ekle", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json index b68f1fa302..bc086f81ce 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Add", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json index 0620744e83..0094a12875 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "Th\u00eam", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json index 828b749709..f3db018fbb 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u6dfb\u52a0", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json index 29732755b2..8088c9d261 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "Share", "Add": "\u65b0\u589e", diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json index aa8fe99bc7..e9e081bfae 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json +++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json @@ -1,4 +1,10 @@ { + "LabelRecord": "Record:", + "AllChannels": "All channels", + "NewEpisodesOnly": "New episodes only", + "AllEpisodes": "All episodes", + "LabelStartWhenPossible": "Start when possible:", + "LabelStopWhenPossible": "Stop when possible:", "ValueSpecialEpisodeName": "Special - {0}", "Share": "\u5206\u4eab", "Add": "\u6dfb\u52a0",