';
+ }
+
+ var indicatorsHtml = '';
+ indicatorsHtml += indicators.getPlayedIndicatorHtml(item);
+
+ if (indicatorsHtml) {
+ html += '
' + indicatorsHtml + '
';
+ }
+
+ var progressHtml = indicators.getProgressBarHtml(item, {
+ containerClass: 'listItemProgressBar'
+ });
+
+ if (progressHtml) {
+ html += progressHtml;
+ }
+ html += '
';
}
- var indicatorsHtml = '';
- indicatorsHtml += indicators.getPlayedIndicatorHtml(item);
-
- if (indicatorsHtml) {
- html += '
' + indicatorsHtml + '
';
+ if (options.showProgramTimeColumn) {
+ html += '
';
+ html += datetime.getDisplayTime(datetime.parseISO8601Date(item.StartDate));
+ html += ' - ';
+ html += datetime.getDisplayTime(datetime.parseISO8601Date(item.EndDate));
+ html += '
';
}
- var progressHtml = indicators.getProgressBarHtml(item, {
- containerClass: 'listItemProgressBar'
- });
-
- if (progressHtml) {
- html += progressHtml;
- }
- html += '
';
-
var textlines = [];
if (options.showParentTitle) {
if (item.Type == 'Episode') {
textlines.push(item.SeriesName || ' ');
}
+
+ // Not needed, part of mediainfo
+ //if (item.EpisodeTitle) {
+ // textlines.push(item.Name || ' ');
+ //}
}
var displayName = itemHelper.getDisplayName(item);
@@ -273,7 +292,7 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
}
}
- cssClass = 'listItemBody';
+ cssClass = 'listItemBody two-line';
if (!clickEntireItem) {
cssClass += ' itemAction';
}
@@ -287,9 +306,6 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
if (!enableSideMediaInfo) {
var mediaInfoClass = 'secondary listItemMediaInfo listItemBodyText';
- if (layoutManager.tv) {
- mediaInfoClass += ' listItemMediaInfo-padded';
- }
html += '
' + mediaInfo.getPrimaryMediaInfoHtml(item) + '
';
}
@@ -313,13 +329,16 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan
if (!clickEntireItem) {
html += '';
- html += '';
- html += userdataButtons.getIconsHtml({
- item: item,
- includePlayed: false,
- cssClass: 'listItemButton'
- });
- html += '';
+
+ if (options.enableUserDataButtons !== false) {
+ html += '';
+ html += userdataButtons.getIconsHtml({
+ item: item,
+ includePlayed: false,
+ cssClass: 'listItemButton'
+ });
+ html += '';
+ }
}
html += '' + outerTagName + '>';
diff --git a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.css b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.css
index ff8fc1f8dd..de7e80c2a9 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.css
+++ b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.css
@@ -57,5 +57,5 @@
background: #EF6C00;
padding: .16em .6em;
border-radius: .15em;
- font-size: 82%;
+ font-size: 80%;
}
diff --git a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js
index a1fe91967b..c7a87e3070 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js
+++ b/dashboard-ui/bower_components/emby-webcomponents/mediainfo/mediainfo.js
@@ -1,4 +1,4 @@
-define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainfo.css'], function (datetime, globalize, embyRouter) {
+define(['datetime', 'globalize', 'embyRouter', 'itemHelper', 'material-icons', 'css!./mediainfo.css'], function (datetime, globalize, embyRouter, itemHelper) {
function getProgramInfoHtml(item, options) {
var html = '';
@@ -20,7 +20,7 @@ define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainf
try {
date = datetime.parseISO8601Date(item.StartDate);
- text = date.toLocaleDateString();
+ text = datetime.toLocaleDateString(date);
text += ', ' + datetime.getDisplayTime(date);
@@ -98,7 +98,7 @@ define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainf
try {
date = datetime.parseISO8601Date(item.PremiereDate);
- text = date.toLocaleDateString();
+ text = datetime.toLocaleDateString(date);
miscInfo.push(text);
}
catch (e) {
@@ -112,7 +112,7 @@ define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainf
try {
date = datetime.parseISO8601Date(item.StartDate);
- text = date.toLocaleDateString();
+ text = datetime.toLocaleDateString(date);
miscInfo.push(text);
if (item.Type != "Recording") {
@@ -179,14 +179,14 @@ define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainf
}
if (item.IsSeries && item.EpisodeTitle) {
- miscInfo.push(item.EpisodeTitle);
+ miscInfo.push(itemHelper.getDisplayName(item));
}
else if (item.PremiereDate) {
try {
date = datetime.parseISO8601Date(item.PremiereDate);
- text = globalize.translate('sharedcomponents#OriginalAirDateValue', date.toLocaleDateString());
+ text = globalize.translate('sharedcomponents#OriginalAirDateValue', datetime.toLocaleDateString(date));
miscInfo.push(text);
}
catch (e) {
@@ -397,50 +397,6 @@ define(['datetime', 'globalize', 'embyRouter', 'material-icons', 'css!./mediainf
return false;
}
- function getDisplayName(item, options) {
-
- if (!item) {
- throw new Error("null item passed into getDisplayName");
- }
-
- options = options || {};
-
- var name = item.EpisodeTitle || item.Name || '';
-
- if (item.Type == "TvChannel") {
-
- if (item.Number) {
- return item.Number + ' ' + name;
- }
- return name;
- }
- if (options.isInlineSpecial && item.Type == "Episode" && item.ParentIndexNumber == 0) {
-
- name = globalize.translate('sharedcomponents#ValueSpecialEpisodeName', name);
-
- } else if (item.Type == "Episode" && item.IndexNumber != null && item.ParentIndexNumber != null) {
-
- var displayIndexNumber = item.IndexNumber;
-
- var number = "E" + displayIndexNumber;
-
- if (options.includeParentInfo !== false) {
- number = "S" + item.ParentIndexNumber + ", " + number;
- }
-
- if (item.IndexNumberEnd) {
-
- displayIndexNumber = item.IndexNumberEnd;
- number += "-" + displayIndexNumber;
- }
-
- name = number + " - " + name;
-
- }
-
- return name;
- }
-
function getPrimaryMediaInfoHtml(item, options) {
options = options || {};
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json
index bc76db45f2..6471b14b79 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ar.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 dec2235909..a7826dd339 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/bg-BG.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u0441\u0430\u043c\u043e \u043d\u043e\u0432\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json
index 6594aebc8e..73e4920ccc 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ca.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Afegeix",
@@ -47,7 +45,6 @@
"RecordAnytime": "Enregistra en qualsevol moment",
"RecordOnlyNewEpisodes": "Enregistra nom\u00e9s nous episodis",
"HeaderBecomeProjectSupporter": "Obtenir Emby Premiere",
- "HeaderEnjoyDayTrial": "Gaudeix una Prova Gratu\u00efta de 14 Dies",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Prefer\u00e8ncies",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json
index b7bb4c7f44..576687d8d2 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/cs.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "P\u0159idat",
@@ -47,7 +45,6 @@
"RecordAnytime": "Nahr\u00e1vat kdykoliv",
"RecordOnlyNewEpisodes": "Nahr\u00e1vat pouze nov\u00e9 epizody",
"HeaderBecomeProjectSupporter": "Z\u00edskat Emby Premiere",
- "HeaderEnjoyDayTrial": "U\u017eijte si 14 denn\u00ed zku\u0161ebn\u00ed verzi zdarma",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.",
"OptionConvertRecordingsToStreamingFormat": "Automaticky prov\u00e1d\u011bt konverzi do podporovan\u00fdch streamov\u00fdch form\u00e1t\u016f",
"OptionConvertRecordingsToStreamingFormatHelp": "Nahr\u00e1vky budou p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed p\u0159eved\u011bny do MP4 pro snadn\u00e9 p\u0159ehr\u00e1v\u00e1n\u00ed na va\u0161ich za\u0159\u00edzen\u00edch.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Nastaven\u00ed",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json
index fda8ff4aa4..e038d4d0e7 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/da.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/da.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Del",
"Add": "Tilf\u00f8j",
@@ -47,7 +45,6 @@
"RecordAnytime": "Optag p\u00e5 ethverts tidspunkt",
"RecordOnlyNewEpisodes": "Optag kun nye episoder",
"HeaderBecomeProjectSupporter": "F\u00e5 Emby Premiere",
- "HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Emby Premiere abonnement er n\u00f8dvendigt for at oprette automatiserede optagelser af serier.",
"OptionConvertRecordingsToStreamingFormat": "Konverter automatisk optagelser til et streamingvenligt format",
"OptionConvertRecordingsToStreamingFormatHelp": "Optagelser vil l\u00f8bende blive konverteret til MP4 for nemmere afspilning p\u00e5 dine enheder.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Indstillinger",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json
index f32efb2bd7..f0593a3ef1 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/de.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/de.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Zeige Indikatoren f\u00fcr:",
- "NewEpisodes": "Neue Episoden",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Teilen",
"Add": "Hinzuf\u00fcgen",
@@ -47,7 +45,6 @@
"RecordAnytime": "Zu jeder Zeit aufzeichnen",
"RecordOnlyNewEpisodes": "Nehme nur neue Episoden auf",
"HeaderBecomeProjectSupporter": "Holen Sie Emby Premium",
- "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ein aktives Emby Premium Abo wird benn\u00f6tigt um automatische Serienaufnahmen zu erstellen.",
"OptionConvertRecordingsToStreamingFormat": "Konvertiere Aufnahmen automatisch in ein streaming freundliches Format.",
"OptionConvertRecordingsToStreamingFormatHelp": "Aufnahmen werden als MP4 konvertiert um eine bessere Wiedergabe auf Ihren Ger\u00e4ten zu gew\u00e4hrleisten.",
@@ -278,5 +275,12 @@
"MoveRight": "Nach rechts bewegen",
"MoveLeft": "Nach links bewegen",
"ConfirmDeleteImage": "Bild l\u00f6schen?",
- "HeaderEditImages": "Bilder bearbeiten"
+ "HeaderEditImages": "Bilder bearbeiten",
+ "Settings": "Einstellungen",
+ "ShowIndicatorsFor": "Zeige Indikatoren f\u00fcr:",
+ "NewEpisodes": "Neue Episoden",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ 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 73dd349849..3a151c712d 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/el.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/el.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 45d6d06d57..96f56ce2ee 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-GB.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 e90dde77c3..09033f2d0f 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/en-US.json
@@ -281,5 +281,6 @@
"NewEpisodes": "New episodes",
"HDPrograms": "HD programs",
"LiveBroadcasts": "Live broadcasts",
- "Premieres": "Premieres"
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ 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 abda1a629e..95af28d10a 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-AR.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos cap\u00edtulos",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 25e0bd1a69..fc60acb995 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es-MX.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Compartir",
"Add": "Agregar",
@@ -47,7 +45,6 @@
"RecordAnytime": "Grabar en cualquier momento",
"RecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios",
"HeaderBecomeProjectSupporter": "Obtener Emby Premier",
- "HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se requiere de una suscripci\u00f3n de Emby Premier para crear grabaciones automatizadas de series.",
"OptionConvertRecordingsToStreamingFormat": "Convertir autom\u00e1ticamente las grabaciones a un formato amigable para transmisi\u00f3n",
"OptionConvertRecordingsToStreamingFormatHelp": "Las grabaciones ser\u00e1n convertidas en tiempo real a MP4 para una f\u00e1cil reproducci\u00f3n en sus dispositivos.",
@@ -278,5 +275,12 @@
"MoveRight": "Mover a la derecha",
"MoveLeft": "Mover a la izquierda",
"ConfirmDeleteImage": "\u00bfEliminar imagen?",
- "HeaderEditImages": "Editar im\u00e1genes"
+ "HeaderEditImages": "Editar im\u00e1genes",
+ "Settings": "Configuraci\u00f3n",
+ "ShowIndicatorsFor": "Mostrar indicadores para:",
+ "NewEpisodes": "Episodios nuevos",
+ "HDPrograms": "Programas en HD",
+ "LiveBroadcasts": "Transmisiones en vivo",
+ "Premieres": "Estrenos",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json
index d7f3eb5ec2..7e09dcdb26 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/es.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/es.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Compartir",
"Add": "A\u00f1adir",
@@ -47,7 +45,6 @@
"RecordAnytime": "Grabar a cualquier hora",
"RecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios",
"HeaderBecomeProjectSupporter": "Consigue Emby Premiere",
- "HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Se necesita una suscripci\u00f3n a Emby Premiere para poder crear grabaciones autom\u00e1ticas.",
"OptionConvertRecordingsToStreamingFormat": "Convertir grabaciones autom\u00e1ticamente a un formato amigable",
"OptionConvertRecordingsToStreamingFormatHelp": "Las grabaciones se convertir\u00e1n en tiempo real a MP4 para una reproducci\u00f3n sencilla desde tus dispositivos.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Ajustes",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json
index b8e0caee33..3490674d73 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fi.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 2ca09abd1b..96b325c37e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr-CA.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json
index 7ca4f4ac71..bfa454d8ca 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/fr.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
"Share": "Partager",
"Add": "Ajouter",
@@ -47,7 +45,6 @@
"RecordAnytime": "Enregistrer \u00e0 n'importe quelle heure\/journ\u00e9e",
"RecordOnlyNewEpisodes": "Enregistrer seulement les nouveaux \u00e9pisodes",
"HeaderBecomeProjectSupporter": "Obtenez Emby Premiere",
- "HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Une souscription Emby Premiere active est n\u00e9cessaire pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.",
"OptionConvertRecordingsToStreamingFormat": "Convertir automatiquement les enregistrements a un format facilement diffusable.",
"OptionConvertRecordingsToStreamingFormatHelp": "Les enregistrements seront convertis \u00e0 la vol\u00e9e en MP4 afin faciliter la lecture sur tous vos appareils.",
@@ -278,5 +275,12 @@
"MoveRight": "D\u00e9placer \u00e0 droite",
"MoveLeft": "D\u00e9placer \u00e0 gauche",
"ConfirmDeleteImage": "Supprimer l'image ?",
- "HeaderEditImages": "Modifier les images"
+ "HeaderEditImages": "Modifier les images",
+ "Settings": "Param\u00e8tres",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json
index 392d49e0b9..74ae3e539a 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/gsw.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json
index 0a3d01eed2..de44731c8d 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/he.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/he.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\u05d4\u05d5\u05e1\u05e3",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "\u05ea\u05d4\u05e0\u05d4 \u05de 14 \u05d9\u05de\u05d9 \u05e0\u05e1\u05d9\u05d5\u05df \u05d7\u05d9\u05e0\u05dd",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json
index c5041e3337..715f3d759f 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hr.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Dodaj",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Snimi samo nove epizode",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json
index d9b994f87f..f1714acc7e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/hu.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Megoszt\u00e1s",
"Add": "Hozz\u00e1ad",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Emby Premiere beszerz\u00e9se",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Be\u00e1ll\u00edt\u00e1sok",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json
index e833750cec..1a1679f84f 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/id.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/id.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Nikmati percobaan gratis selama 14 hari",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json
index 013345020d..f5879fed13 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/it.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/it.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Aggiungi",
@@ -47,7 +45,6 @@
"RecordAnytime": "Registra a qualsiasi ora",
"RecordOnlyNewEpisodes": "Registra solo i nuovi episodi",
"HeaderBecomeProjectSupporter": "Ottieni Emby Premiere",
- "HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Configurazione",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json
index 3c7bd25967..f845f2e83c 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/kk.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u0439\u0493\u0430\u049b\u0442\u0430\u0443\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443:",
- "NewEpisodes": "\u0416\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"Add": "\u04ae\u0441\u0442\u0435\u0443",
@@ -47,7 +45,6 @@
"RecordAnytime": "\u04d8\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443",
"RecordOnlyNewEpisodes": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443",
"HeaderBecomeProjectSupporter": "Emby Premiere \u0430\u043b\u0443",
- "HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437",
"MessageActiveSubscriptionRequiredSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442.",
"OptionConvertRecordingsToStreamingFormat": "\u0416\u0430\u0437\u0443\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u0440\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439 \u043f\u0456\u0448\u0456\u043c\u0433\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443",
"OptionConvertRecordingsToStreamingFormatHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u043e\u04a3\u0430\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043d\u0430\u049b\u0442\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 MP4 \u043f\u0456\u0448\u0456\u043c\u0456\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0435\u0434\u0456.",
@@ -278,5 +275,12 @@
"MoveRight": "\u041e\u04a3\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
"MoveLeft": "\u0421\u043e\u043b\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
"ConfirmDeleteImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044f\u043c\u044b\u0437 \u0431\u0430?",
- "HeaderEditImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443"
+ "HeaderEditImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443",
+ "Settings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
+ "ShowIndicatorsFor": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u0439\u0493\u0430\u049b\u0442\u0430\u0443\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443:",
+ "NewEpisodes": "\u0416\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
+ "HDPrograms": "HD-\u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440",
+ "LiveBroadcasts": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0442\u0430\u0440\u0430\u0442\u0443\u043b\u0430\u0440",
+ "Premieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430\u043b\u0430\u0440",
+ "RepeatEpisodes": "Repeat episodes"
}
\ 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 682e285e42..c26c9e4aaf 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ko.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\ucd94\uac00",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "\uc0c8 \uc5d0\ud53c\uc18c\ub4dc\ub9cc \ub179\ud654",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "14\uc77c \ubb34\ub8cc \uccb4\ud5d8\ud558\uae30",
"MessageActiveSubscriptionRequiredSeriesRecordings": "\uc790\ub3d9 \uc2dc\ub9ac\uc988 \ub179\ud654\ub97c \uc608\uc57d\ud558\ub824\uba74 Emby \ud504\ub9ac\ubbf8\uc5b4 \uac00\uc785\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "\uc124\uc815",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json
index 2ca09abd1b..96b325c37e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ms.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json
index b8e2c0401b..ba7fd4407d 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nb.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Spesial - {0}",
"Share": "Del",
"Add": "Legg til",
@@ -47,7 +45,6 @@
"RecordAnytime": "Ta opptak n\u00e5r som helst",
"RecordOnlyNewEpisodes": "Ta opptak kun av nye episoder",
"HeaderBecomeProjectSupporter": "Skaff Emby Premiere",
- "HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Et aktivt Emby Premiere abonnement er p\u00e5krevd for \u00e5 kunne automatisere serieopptak.",
"OptionConvertRecordingsToStreamingFormat": "Automatisk konvertere opptak til et streaming vennlig format",
"OptionConvertRecordingsToStreamingFormatHelp": "Opptakene vil bli konvertert p\u00e5 et \u00f8yeblikk til MP4 for enkel avspilling p\u00e5 enhetene.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Innstillinger",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json
index 4de9773c4c..6e24596018 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/nl.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Speciaal - {0}",
"Share": "Delen",
"Add": "Toevoegen",
@@ -47,7 +45,6 @@
"RecordAnytime": "Op elk tijdstip opnemen",
"RecordOnlyNewEpisodes": "Alleen nieuwe afleveringen opnemen",
"HeaderBecomeProjectSupporter": "Verkrijg Emby Premiere",
- "HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Er is een actief Emby Premiere abonnement benodigd om een automatische serie opname aan te maken.",
"OptionConvertRecordingsToStreamingFormat": "Opnamen automatisch converteren naar een streaming formaat",
"OptionConvertRecordingsToStreamingFormatHelp": "Opnames zullen direct worden omgezet naar MP4 voor het eenvoudig afspelen op uw apparaten.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Instellingen",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json
index 7e0b7c3414..5e72f69530 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pl.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Dodaj",
@@ -47,7 +45,6 @@
"RecordAnytime": "Nagrywaj o ka\u017cdym czasie",
"RecordOnlyNewEpisodes": "Nagrywaj tylko nowe odcinki",
"HeaderBecomeProjectSupporter": "Kup Emby Premiere",
- "HeaderEnjoyDayTrial": "Mi\u0142ego 14 dniowego okresu pr\u00f3bnego",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktywna subskrypcja Emby Premiere jest wymagana aby tworzy\u0107 automatyczne nagrania seriali.",
"OptionConvertRecordingsToStreamingFormat": "Automatycznie konwertuj nagrania do formatu przyjaznego strumieniowaniu.",
"OptionConvertRecordingsToStreamingFormatHelp": "Nagrania zostan\u0105 skonwertowane \"w locie\" do formatu MP4 aby umo\u017cliwi\u0107 ich odtworzenie na wi\u0119kszo\u015bci urz\u0105dze\u0144.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Ustawienia",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 f50a9e850d..b729567acf 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-BR.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Compartilhar",
"Add": "Adicionar",
@@ -47,7 +45,6 @@
"RecordAnytime": "Gravar a qualquer hora",
"RecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios",
"HeaderBecomeProjectSupporter": "Obter Emby Premiere",
- "HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o ativa do Emby Premiere \u00e9 requerida para criar a grava\u00e7\u00e3o automatizada de s\u00e9ries.",
"OptionConvertRecordingsToStreamingFormat": "Converter automaticamente grava\u00e7\u00f5es para um formato amig\u00e1vel a streaming",
"OptionConvertRecordingsToStreamingFormatHelp": "Grava\u00e7\u00f5es ser\u00e3o convertidas automaticamente para MP4 para uma reprodu\u00e7\u00e3o mais f\u00e1cil em seus dispositivos.",
@@ -278,5 +275,12 @@
"MoveRight": "Mover para direita",
"MoveLeft": "Mover para esquerda",
"ConfirmDeleteImage": "Apagar imagem?",
- "HeaderEditImages": "Editar Imagens"
+ "HeaderEditImages": "Editar Imagens",
+ "Settings": "Ajustes",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ 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 d0f0a67831..b4a9838136 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/pt-PT.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Especial - {0}",
"Share": "Partilhar",
"Add": "Adicionar",
@@ -47,7 +45,6 @@
"RecordAnytime": "Gravar a qualquer hora",
"RecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Uma subscri\u00e7\u00e3o Emby Premiere \u00e9 necess\u00e1ria para criar a grava\u00e7\u00e3o autom\u00e1tica de s\u00e9ries.",
"OptionConvertRecordingsToStreamingFormat": "Converter automaticamente grava\u00e7\u00f5es para um formato amig\u00e1vel a streaming",
"OptionConvertRecordingsToStreamingFormatHelp": "Grava\u00e7\u00f5es ser\u00e3o convertidas automaticamente para MP4 para uma reprodu\u00e7\u00e3o mais f\u00e1cil em seus dispositivos.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Ajustes",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json
index a7f10d3476..b2a47ad70e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ro.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json
index a3aa483988..1edb99b5ef 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/ru.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0434\u043b\u044f:",
- "NewEpisodes": "\u041d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"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",
@@ -47,7 +45,6 @@
"RecordAnytime": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f",
"RecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"HeaderBecomeProjectSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere",
- "HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439",
"MessageActiveSubscriptionRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.",
"OptionConvertRecordingsToStreamingFormat": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0443\u0434\u043e\u0431\u043d\u044b\u0439 \u0434\u043b\u044f \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u0444\u043e\u0440\u043c\u0430\u0442",
"OptionConvertRecordingsToStreamingFormatHelp": "\u0417\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0432 MP4 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043d\u0430 \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.",
@@ -278,5 +275,12 @@
"MoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e",
"MoveLeft": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043b\u0435\u0432\u043e",
"ConfirmDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a?",
- "HeaderEditImages": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438"
+ "HeaderEditImages": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438",
+ "Settings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
+ "ShowIndicatorsFor": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0438\u043d\u0434\u0438\u043a\u0430\u0442\u043e\u0440\u044b \u0434\u043b\u044f:",
+ "NewEpisodes": "\u041d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
+ "HDPrograms": "HD-\u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438",
+ "LiveBroadcasts": "\u042d\u0444\u0438\u0440\u043d\u043e\u0435 \u0432\u0435\u0449\u0430\u043d\u0438\u0435",
+ "Premieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u044b",
+ "RepeatEpisodes": "Repeat episodes"
}
\ 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 2ca09abd1b..96b325c37e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sk.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 bd22018989..775165f6b0 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sl-SI.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Uzivaje v 14 Dnevni preizkusni razlicici",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Nastavitve",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json
index 3e815e7780..fe0c5e744f 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/sv.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
"Share": "Dela",
"Add": "L\u00e4gg till",
@@ -47,7 +45,6 @@
"RecordAnytime": "Spela in n\u00e4r som helst",
"RecordOnlyNewEpisodes": "Spela bara in nya avsnitt",
"HeaderBecomeProjectSupporter": "Skaffa Emby Premium",
- "HeaderEnjoyDayTrial": "Upplev en 14-dagars pr\u00f6voperiod",
"MessageActiveSubscriptionRequiredSeriesRecordings": "Ett aktivt Emby Premium-medlemskap kr\u00e4vs f\u00f6r att skapa automatiska TV-serieinspelningar.",
"OptionConvertRecordingsToStreamingFormat": "Konvertera inspelningar automatiskt till ett str\u00f6mningsv\u00e4nligt format",
"OptionConvertRecordingsToStreamingFormatHelp": "Inspelningar omkodas till MP4 f\u00f6r problemfri str\u00f6mning till dina enheter.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Inst\u00e4llningar",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json
index 2ff0f8d97f..8dc2d04ad7 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/tr.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Ekle",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Sadece yeni b\u00f6l\u00fcmleri kaydet",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json
index cc7f092fe1..2756d9eae5 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/uk.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Add",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json
index 6ef61217ba..5951748119 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/vi.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "Th\u00eam",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "Record only new episodes",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 e12b64c5a7..028ce93e8e 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-CN.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\u6dfb\u52a0",
@@ -47,7 +45,6 @@
"RecordAnytime": "Record at any time",
"RecordOnlyNewEpisodes": "\u53ea\u5f55\u5236\u65b0\u5267\u96c6",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 8d7c7fde22..dac3c7a040 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-HK.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "Share",
"Add": "\u65b0\u589e",
@@ -47,7 +45,6 @@
"RecordAnytime": "\u6bcf\u4e00\u6b21\u8a18\u9304",
"RecordOnlyNewEpisodes": "\u53ea\u8a18\u9304\u6700\u65b0\u5287\u96c6",
"HeaderBecomeProjectSupporter": "Get Emby Premiere",
- "HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
"MessageActiveSubscriptionRequiredSeriesRecordings": "An active Emby Premiere subscription is required in order to create automated series recordings.",
"OptionConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format",
"OptionConvertRecordingsToStreamingFormatHelp": "Recordings will be converted on the fly to MP4 for easy playback on your devices.",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
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 e57cb4a42a..90014ce7aa 100644
--- a/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json
+++ b/dashboard-ui/bower_components/emby-webcomponents/strings/zh-TW.json
@@ -1,6 +1,4 @@
{
- "ShowIndicatorsFor": "Show indicators for:",
- "NewEpisodes": "New episodes",
"ValueSpecialEpisodeName": "Special - {0}",
"Share": "\u5206\u4eab",
"Add": "\u6dfb\u52a0",
@@ -47,7 +45,6 @@
"RecordAnytime": "\u5728\u4efb\u4f55\u6642\u9593\u9304\u88fd",
"RecordOnlyNewEpisodes": "\u53ea\u9304\u88fd\u65b0\u7684\u96c6\u6578",
"HeaderBecomeProjectSupporter": "\u7acb\u5373\u53d6\u5f97",
- "HeaderEnjoyDayTrial": "\u514d\u8cbb\u8a66\u752814\u5929",
"MessageActiveSubscriptionRequiredSeriesRecordings": "\u8981\u4f7f\u7528\u81ea\u52d5\u9304\u88fd\u7cfb\u5217\u7684\u529f\u80fd\uff0c\u9700\u8981\u6709\u6548\u7684Emby\u8c6a\u83ef\u7248\u8a02\u95b1",
"OptionConvertRecordingsToStreamingFormat": "\u81ea\u52d5\u5c07\u9304\u88fd\u5167\u5bb9\u8f49\u63db\u6210\u9069\u7528\u65bc\u4e32\u6d41\u7684\u683c\u5f0f",
"OptionConvertRecordingsToStreamingFormatHelp": "\u9304\u88fd\u7684\u5167\u5bb9\u5c07\u6703\u8f49\u63db\u6210MP4\uff0c\u4ee5\u4fbf\u66f4\u5bb9\u6613\u5730\u5728\u60a8\u7684\u88dd\u7f6e\u4e0a\u64ad\u653e",
@@ -278,5 +275,12 @@
"MoveRight": "Move right",
"MoveLeft": "Move left",
"ConfirmDeleteImage": "Delete image?",
- "HeaderEditImages": "Edit Images"
+ "HeaderEditImages": "Edit Images",
+ "Settings": "Settings",
+ "ShowIndicatorsFor": "Show indicators for:",
+ "NewEpisodes": "New episodes",
+ "HDPrograms": "HD programs",
+ "LiveBroadcasts": "Live broadcasts",
+ "Premieres": "Premieres",
+ "RepeatEpisodes": "Repeat episodes"
}
\ No newline at end of file
diff --git a/dashboard-ui/scripts/livetvchannel.js b/dashboard-ui/scripts/livetvchannel.js
index c957798fbb..0c64817e05 100644
--- a/dashboard-ui/scripts/livetvchannel.js
+++ b/dashboard-ui/scripts/livetvchannel.js
@@ -1,99 +1,43 @@
-define(['datetime', 'tvguide'], function (datetime) {
+define(['datetime', 'listView'], function (datetime, listView) {
+
+ function isSameDay(date1, date2) {
+
+ return date1.toDateString() === date2.toDateString();
+ }
function renderPrograms(page, result) {
var html = '';
-
- var currentIndexValue;
-
- var now = new Date();
+ var currentItems = [];
+ var currentStartDate = null;
for (var i = 0, length = result.Items.length; i < length; i++) {
- var program = result.Items[i];
+ var item = result.Items[i];
- var startDate = datetime.parseISO8601Date(program.StartDate, true);
- var startDateText = LibraryBrowser.getFutureDateText(startDate);
+ var itemStartDate = datetime.parseISO8601Date(item.StartDate);
+ if (!currentStartDate || !isSameDay(currentStartDate, itemStartDate)) {
- var endDate = datetime.parseISO8601Date(program.EndDate, true);
+ if (currentItems.length) {
- if (startDateText != currentIndexValue) {
+ html += '