mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
update recording dialogs
This commit is contained in:
parent
c44b85501f
commit
9146727fda
@ -14,12 +14,12 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.259",
|
"version": "1.4.260",
|
||||||
"_release": "1.4.259",
|
"_release": "1.4.260",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.259",
|
"tag": "1.4.260",
|
||||||
"commit": "2e5f06e70a3a24a3904a91fe28669a3483d3b7ca"
|
"commit": "17a68c9487039020a8056d4aec2617d0daf16d8b"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.1",
|
"_target": "^1.2.1",
|
||||||
|
@ -18,11 +18,4 @@
|
|||||||
|
|
||||||
.recordingDialog-btnRecord {
|
.recordingDialog-btnRecord {
|
||||||
background-color: #cc3333;
|
background-color: #cc3333;
|
||||||
}
|
|
||||||
|
|
||||||
@media all and (max-width: 800px) {
|
|
||||||
|
|
||||||
.programDialog-itemName {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -15,7 +15,7 @@
|
|||||||
<p class="itemMiscInfoSecondary secondaryText" style="display: flex; align-items: center; flex-wrap: wrap;"></p>
|
<p class="itemMiscInfoSecondary secondaryText" style="display: flex; align-items: center; flex-wrap: wrap;"></p>
|
||||||
<p class="itemGenres secondaryText"></p>
|
<p class="itemGenres secondaryText"></p>
|
||||||
|
|
||||||
<div style="margin:.5em 0 0;" class="recordingFields">
|
<div style="margin:.5em 0 1em;" class="recordingFields">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
.recordingButton {
|
.recordingButton {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
min-width: 10em;
|
min-width: 10em;
|
||||||
border-radius: 10em;
|
|
||||||
font-size: 92%;
|
font-size: 92%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,5 +83,4 @@
|
|||||||
<span class="manageButtonText">${Settings}</span>
|
<span class="manageButtonText">${Settings}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
|
||||||
</div>
|
</div>
|
@ -1,4 +1,4 @@
|
|||||||
define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-collapse', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) {
|
define(['dialogHelper', 'globalize', 'layoutManager', 'mediaInfo', 'apphost', 'connectionManager', 'require', 'loading', 'scrollHelper', 'imageLoader', 'datetime', 'scrollStyles', 'emby-button', 'emby-checkbox', 'emby-input', 'emby-select', 'paper-icon-button-light', 'css!./../formdialog', 'css!./recordingcreator', 'material-icons'], function (dialogHelper, globalize, layoutManager, mediaInfo, appHost, connectionManager, require, loading, scrollHelper, imageLoader, datetime) {
|
||||||
|
|
||||||
var currentDialog;
|
var currentDialog;
|
||||||
var recordingUpdated = false;
|
var recordingUpdated = false;
|
||||||
@ -49,6 +49,8 @@
|
|||||||
context.querySelector('.selectAirTime').value = item.RecordAnyTime ? 'any' : 'original';
|
context.querySelector('.selectAirTime').value = item.RecordAnyTime ? 'any' : 'original';
|
||||||
|
|
||||||
context.querySelector('.selectShowType').value = item.RecordNewOnly ? 'new' : 'all';
|
context.querySelector('.selectShowType').value = item.RecordNewOnly ? 'new' : 'all';
|
||||||
|
context.querySelector('.chkSkipEpisodesInLibrary').checked = item.SkipEpisodesInLibrary;
|
||||||
|
context.querySelector('.selectKeepUpTo').value = item.KeepUpTo || 0;
|
||||||
|
|
||||||
if (item.ChannelName || item.ChannelNumber) {
|
if (item.ChannelName || item.ChannelNumber) {
|
||||||
context.querySelector('.optionChannelOnly').innerHTML = globalize.translate('sharedcomponents#ChannelNameOnly', item.ChannelName || item.ChannelNumber);
|
context.querySelector('.optionChannelOnly').innerHTML = globalize.translate('sharedcomponents#ChannelNameOnly', item.ChannelName || item.ChannelNumber);
|
||||||
@ -82,6 +84,8 @@
|
|||||||
item.RecordAnyChannel = form.querySelector('.selectChannels').value == 'all';
|
item.RecordAnyChannel = form.querySelector('.selectChannels').value == 'all';
|
||||||
item.RecordAnyTime = form.querySelector('.selectAirTime').value == 'any';
|
item.RecordAnyTime = form.querySelector('.selectAirTime').value == 'any';
|
||||||
item.RecordNewOnly = form.querySelector('.selectShowType').value == 'new';
|
item.RecordNewOnly = form.querySelector('.selectShowType').value == 'new';
|
||||||
|
item.SkipEpisodesInLibrary = form.querySelector('.chkSkipEpisodesInLibrary').checked;
|
||||||
|
item.KeepUpTo = form.querySelector('.selectKeepUpTo').value;
|
||||||
|
|
||||||
apiClient.updateLiveTvSeriesTimer(item);
|
apiClient.updateLiveTvSeriesTimer(item);
|
||||||
});
|
});
|
||||||
@ -94,6 +98,8 @@
|
|||||||
|
|
||||||
function init(context) {
|
function init(context) {
|
||||||
|
|
||||||
|
fillKeepUpTo(context);
|
||||||
|
|
||||||
context.querySelector('.btnCancel').addEventListener('click', function () {
|
context.querySelector('.btnCancel').addEventListener('click', function () {
|
||||||
|
|
||||||
closeDialog(false);
|
closeDialog(false);
|
||||||
@ -123,6 +129,28 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function fillKeepUpTo(context) {
|
||||||
|
|
||||||
|
var html = '';
|
||||||
|
|
||||||
|
for (var i = 0; i <= 50; i++) {
|
||||||
|
|
||||||
|
var text;
|
||||||
|
|
||||||
|
if (i == 0) {
|
||||||
|
text = globalize.translate('sharedcomponents#AsManyAsPossible');
|
||||||
|
} else if (i == 1) {
|
||||||
|
text = globalize.translate('sharedcomponents#ValueOneEpisode');
|
||||||
|
} else {
|
||||||
|
text = globalize.translate('sharedcomponents#ValueEpisodeCount', i);
|
||||||
|
}
|
||||||
|
|
||||||
|
html += '<option value="' + i + '">' + text + '</option>';
|
||||||
|
}
|
||||||
|
|
||||||
|
context.querySelector('.selectKeepUpTo').innerHTML = html;
|
||||||
|
}
|
||||||
|
|
||||||
function showEditor(itemId, serverId, options) {
|
function showEditor(itemId, serverId, options) {
|
||||||
|
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
|
@ -16,6 +16,14 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="checkboxContainer checkboxContainer-withDescription">
|
||||||
|
<label>
|
||||||
|
<input type="checkbox" is="emby-checkbox" class="chkSkipEpisodesInLibrary"/>
|
||||||
|
<span>${SkipEpisodesAlreadyInMyLibrary}</span>
|
||||||
|
</label>
|
||||||
|
<div class="fieldDescription checkboxFieldDescription">${SkipEpisodesAlreadyInMyLibraryHelp}</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="selectContainer">
|
<div class="selectContainer">
|
||||||
<select is="emby-select" class="selectChannels" label="${LabelChannels}">
|
<select is="emby-select" class="selectChannels" label="${LabelChannels}">
|
||||||
<option class="optionChannelOnly" value="one">${OneChannel}</option>
|
<option class="optionChannelOnly" value="one">${OneChannel}</option>
|
||||||
@ -30,6 +38,11 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="selectContainer">
|
||||||
|
<select is="emby-select" class="selectKeepUpTo" label="${LabelKeepUpTo}">
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="inputContainer">
|
<div class="inputContainer">
|
||||||
<div style="display: flex; align-items: center;">
|
<div style="display: flex; align-items: center;">
|
||||||
<div style="flex-grow: 1;">
|
<div style="flex-grow: 1;">
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
|
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Afegeix",
|
"Add": "Afegeix",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "P\u0159idat",
|
"Add": "P\u0159idat",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Del",
|
"Share": "Del",
|
||||||
"Add": "Tilf\u00f8j",
|
"Add": "Tilf\u00f8j",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Teilen",
|
"Share": "Teilen",
|
||||||
"Add": "Hinzuf\u00fcgen",
|
"Add": "Hinzuf\u00fcgen",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -39,9 +39,6 @@
|
|||||||
"Saturday": "Saturday",
|
"Saturday": "Saturday",
|
||||||
"Days": "Days",
|
"Days": "Days",
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Record series",
|
||||||
"RecordOnAllChannels": "Record on all channels",
|
|
||||||
"RecordAnytime": "Record at any time",
|
|
||||||
"RecordOnlyNewEpisodes": "Record only new episodes",
|
|
||||||
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
|
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
|
||||||
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
||||||
@ -300,5 +297,11 @@
|
|||||||
"NewEpisodesOnly": "New episodes only",
|
"NewEpisodesOnly": "New episodes only",
|
||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:"
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible"
|
||||||
}
|
}
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Compartir",
|
"Share": "Compartir",
|
||||||
"Add": "Agregar",
|
"Add": "Agregar",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Compartir",
|
"Share": "Compartir",
|
||||||
"Add": "A\u00f1adir",
|
"Add": "A\u00f1adir",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
|
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
|
||||||
"Share": "Partager",
|
"Share": "Partager",
|
||||||
"Add": "Ajouter",
|
"Add": "Ajouter",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u05d4\u05d5\u05e1\u05e3",
|
"Add": "\u05d4\u05d5\u05e1\u05e3",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Dodaj",
|
"Add": "Dodaj",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Megoszt\u00e1s",
|
"Share": "Megoszt\u00e1s",
|
||||||
"Add": "Hozz\u00e1ad",
|
"Add": "Hozz\u00e1ad",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Aggiungi",
|
"Add": "Aggiungi",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
|
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
|
||||||
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||||
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\ucd94\uac00",
|
"Add": "\ucd94\uac00",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Spesial - {0}",
|
"ValueSpecialEpisodeName": "Spesial - {0}",
|
||||||
"Share": "Del",
|
"Share": "Del",
|
||||||
"Add": "Legg til",
|
"Add": "Legg til",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Speciaal - {0}",
|
"ValueSpecialEpisodeName": "Speciaal - {0}",
|
||||||
"Share": "Delen",
|
"Share": "Delen",
|
||||||
"Add": "Toevoegen",
|
"Add": "Toevoegen",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Dodaj",
|
"Add": "Dodaj",
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
{
|
{
|
||||||
"LabelRecord": "Record:",
|
"LabelRecord": "Gravar:",
|
||||||
"AllChannels": "All channels",
|
"AllChannels": "Todos os canais",
|
||||||
"NewEpisodesOnly": "New episodes only",
|
"NewEpisodesOnly": "Apenas novos epis\u00f3dios",
|
||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "Todos os epis\u00f3dios",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Iniciar quando poss\u00edvel:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Parar quando poss\u00edvel:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Compartilhar",
|
"Share": "Compartilhar",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||||
"Share": "Partilhar",
|
"Share": "Partilhar",
|
||||||
"Add": "Adicionar",
|
"Add": "Adicionar",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
|
"ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
|
||||||
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
"Share": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
|
||||||
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
|
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
|
||||||
"Share": "Dela",
|
"Share": "Dela",
|
||||||
"Add": "L\u00e4gg till",
|
"Add": "L\u00e4gg till",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Ekle",
|
"Add": "Ekle",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Add",
|
"Add": "Add",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "Th\u00eam",
|
"Add": "Th\u00eam",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u6dfb\u52a0",
|
"Add": "\u6dfb\u52a0",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "Share",
|
"Share": "Share",
|
||||||
"Add": "\u65b0\u589e",
|
"Add": "\u65b0\u589e",
|
||||||
|
@ -5,6 +5,12 @@
|
|||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
"MinutesBefore": "minutes before",
|
||||||
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
|
"SkipEpisodesAlreadyInMyLibrary": "Skip recording episodes that are already in my library",
|
||||||
|
"MinutesAfter": "minutes after",
|
||||||
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
"AsManyAsPossible": "As many as possible",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Special - {0}",
|
||||||
"Share": "\u5206\u4eab",
|
"Share": "\u5206\u4eab",
|
||||||
"Add": "\u6dfb\u52a0",
|
"Add": "\u6dfb\u52a0",
|
||||||
|
@ -66,10 +66,6 @@
|
|||||||
{
|
{
|
||||||
href: 'streamingsettings.html',
|
href: 'streamingsettings.html',
|
||||||
name: Globalize.translate('TabStreaming')
|
name: Globalize.translate('TabStreaming')
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'encodingsettings.html',
|
|
||||||
name: Globalize.translate('TabTranscoding')
|
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<div id="encodingSettingsPage" data-role="page" class="page type-interior playbackConfigurationPage withTabs" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Transcoding" data-require="scripts/encodingsettings,emby-input,emby-checkbox,emby-button,emby-select">
|
<div id="encodingSettingsPage" data-role="page" class="page type-interior playbackConfigurationPage" data-helpurl="https://github.com/MediaBrowser/Wiki/wiki/Transcoding" data-require="scripts/encodingsettings,emby-input,emby-checkbox,emby-button,emby-select">
|
||||||
|
|
||||||
<div data-role="content">
|
<div data-role="content">
|
||||||
<div class="content-primary">
|
<div class="content-primary">
|
||||||
|
@ -100,26 +100,6 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getTabs() {
|
|
||||||
return [
|
|
||||||
{
|
|
||||||
href: 'cinemamodeconfiguration.html',
|
|
||||||
name: Globalize.translate('TabCinemaMode')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'playbackconfiguration.html',
|
|
||||||
name: Globalize.translate('TabResumeSettings')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'streamingsettings.html',
|
|
||||||
name: Globalize.translate('TabStreaming')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'encodingsettings.html',
|
|
||||||
name: Globalize.translate('TabTranscoding')
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
function onSelectEncoderPathChange(e) {
|
function onSelectEncoderPathChange(e) {
|
||||||
|
|
||||||
var page = $(this).parents('.page')[0];
|
var page = $(this).parents('.page')[0];
|
||||||
@ -201,7 +181,6 @@
|
|||||||
|
|
||||||
Dashboard.showLoadingMsg();
|
Dashboard.showLoadingMsg();
|
||||||
|
|
||||||
LibraryMenu.setTabs('playback', 3, getTabs);
|
|
||||||
var page = this;
|
var page = this;
|
||||||
|
|
||||||
ApiClient.getNamedConfiguration("encoding").then(function (config) {
|
ApiClient.getNamedConfiguration("encoding").then(function (config) {
|
||||||
|
@ -302,10 +302,6 @@
|
|||||||
|
|
||||||
if (item.Type == 'Program' && user.Policy.EnableLiveTvManagement) {
|
if (item.Type == 'Program' && user.Policy.EnableLiveTvManagement) {
|
||||||
|
|
||||||
if (recordingFieldsElement.innerHTML) {
|
|
||||||
//return;
|
|
||||||
}
|
|
||||||
|
|
||||||
require(['recordingFields'], function (recordingFields) {
|
require(['recordingFields'], function (recordingFields) {
|
||||||
|
|
||||||
var currentRecordingFields = new recordingFields({
|
var currentRecordingFields = new recordingFields({
|
||||||
|
@ -148,7 +148,7 @@
|
|||||||
|
|
||||||
dlg.classList.add('promptDialog');
|
dlg.classList.add('promptDialog');
|
||||||
|
|
||||||
html += '<div class="promptDialogContent">';
|
html += '<div class="promptDialogContent" style="padding:1em;">';
|
||||||
html += '<h2>';
|
html += '<h2>';
|
||||||
html += (playerInfo.deviceName || playerInfo.name);
|
html += (playerInfo.deviceName || playerInfo.name);
|
||||||
html += '</h2>';
|
html += '</h2>';
|
||||||
|
@ -40,10 +40,6 @@
|
|||||||
{
|
{
|
||||||
href: 'streamingsettings.html',
|
href: 'streamingsettings.html',
|
||||||
name: Globalize.translate('TabStreaming')
|
name: Globalize.translate('TabStreaming')
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'encodingsettings.html',
|
|
||||||
name: Globalize.translate('TabTranscoding')
|
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -482,13 +482,18 @@ var Dashboard = {
|
|||||||
icon: 'play_circle_filled',
|
icon: 'play_circle_filled',
|
||||||
color: '#E5342E',
|
color: '#E5342E',
|
||||||
href: "cinemamodeconfiguration.html",
|
href: "cinemamodeconfiguration.html",
|
||||||
pageIds: ['cinemaModeConfigurationPage', 'playbackConfigurationPage', 'streamingSettingsPage', 'encodingSettingsPage']
|
pageIds: ['cinemaModeConfigurationPage', 'playbackConfigurationPage', 'streamingSettingsPage']
|
||||||
}, {
|
}, {
|
||||||
name: Globalize.translate('TabSync'),
|
name: Globalize.translate('TabSync'),
|
||||||
icon: 'sync',
|
icon: 'sync',
|
||||||
href: "syncactivity.html",
|
href: "syncactivity.html",
|
||||||
pageIds: ['syncActivityPage', 'syncJobPage', 'devicesUploadPage', 'syncSettingsPage'],
|
pageIds: ['syncActivityPage', 'syncJobPage', 'devicesUploadPage', 'syncSettingsPage'],
|
||||||
color: '#009688'
|
color: '#009688'
|
||||||
|
}, {
|
||||||
|
name: Globalize.translate('TabTranscoding'),
|
||||||
|
icon: 'transform',
|
||||||
|
href: "encodingsettings.html",
|
||||||
|
pageIds: ['encodingSettingsPage']
|
||||||
}, {
|
}, {
|
||||||
divider: true,
|
divider: true,
|
||||||
name: Globalize.translate('TabExtras')
|
name: Globalize.translate('TabExtras')
|
||||||
|
@ -50,10 +50,6 @@
|
|||||||
{
|
{
|
||||||
href: 'streamingsettings.html',
|
href: 'streamingsettings.html',
|
||||||
name: Globalize.translate('TabStreaming')
|
name: Globalize.translate('TabStreaming')
|
||||||
},
|
|
||||||
{
|
|
||||||
href: 'encodingsettings.html',
|
|
||||||
name: Globalize.translate('TabTranscoding')
|
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user