mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update shared components
This commit is contained in:
parent
ee11212148
commit
6f21a963ea
@ -16,12 +16,12 @@
|
||||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.1.70",
|
||||
"_release": "1.1.70",
|
||||
"version": "1.1.72",
|
||||
"_release": "1.1.72",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.1.70",
|
||||
"commit": "7d03528fbb6d397ae53032e72e6230606e043b90"
|
||||
"tag": "1.1.72",
|
||||
"commit": "674ebfd2c3ad177d4b39025573c55920b8f69d03"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||
"_target": "^1.1.51",
|
||||
|
@ -215,7 +215,7 @@
|
||||
return connectUser;
|
||||
};
|
||||
|
||||
var minServerVersion = '3.0.5911';
|
||||
var minServerVersion = '3.0.5930';
|
||||
self.minServerVersion = function (val) {
|
||||
|
||||
if (val) {
|
||||
@ -1352,6 +1352,8 @@
|
||||
|
||||
if (result && result.Status) {
|
||||
reject({ errorCode: result.Status });
|
||||
} else {
|
||||
reject();
|
||||
}
|
||||
|
||||
}, reject);
|
||||
|
165
dashboard-ui/bower_components/emby-apiclient/serverdiscovery-chrome.js
vendored
Normal file
165
dashboard-ui/bower_components/emby-apiclient/serverdiscovery-chrome.js
vendored
Normal file
@ -0,0 +1,165 @@
|
||||
define([], function () {
|
||||
|
||||
function stringToArrayBuffer(string) {
|
||||
// UTF-16LE
|
||||
var buf = new ArrayBuffer(string.length * 2);
|
||||
var bufView = new Uint16Array(buf);
|
||||
for (var i = 0, strLen = string.length; i < strLen; i++) {
|
||||
bufView[i] = string.charCodeAt(i);
|
||||
}
|
||||
return buf;
|
||||
}
|
||||
|
||||
function arrayBufferToString(buf) {
|
||||
return String.fromCharCode.apply(null, new Uint16Array(buf));
|
||||
}
|
||||
|
||||
function getResultCode(result) {
|
||||
|
||||
if (result != null && result.resultCode != null) {
|
||||
return result.resultCode;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
function closeSocket(socketId) {
|
||||
|
||||
try {
|
||||
chrome.sockets.udp.close(socketId);
|
||||
} catch (err) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function findServersInternal(timeoutMs) {
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
var servers = [];
|
||||
|
||||
// Expected server properties
|
||||
// Name, Id, Address, EndpointAddress (optional)
|
||||
|
||||
var chrome = window.chrome;
|
||||
|
||||
if (!chrome) {
|
||||
resolve(servers);
|
||||
return;
|
||||
}
|
||||
if (!chrome.sockets) {
|
||||
resolve(servers);
|
||||
return;
|
||||
}
|
||||
|
||||
var timeout;
|
||||
var socketId;
|
||||
|
||||
function onTimerExpired() {
|
||||
resolve(servers);
|
||||
|
||||
if (socketId) {
|
||||
chrome.sockets.udp.onReceive.removeListener(onReceive);
|
||||
closeSocket(socketId);
|
||||
}
|
||||
}
|
||||
|
||||
function startTimer() {
|
||||
|
||||
console.log('starting udp receive timer with timeout ms: ' + timeoutMs);
|
||||
|
||||
timeout = setTimeout(onTimerExpired, timeoutMs);
|
||||
}
|
||||
|
||||
function onReceive(info) {
|
||||
|
||||
try {
|
||||
|
||||
console.log('ServerDiscovery message received');
|
||||
|
||||
console.log(info);
|
||||
|
||||
if (info != null && info.socketId == socketId) {
|
||||
var json = arrayBufferToString(info.data);
|
||||
console.log('Server discovery json: ' + json);
|
||||
var server = JSON.parse(json);
|
||||
|
||||
server.RemoteAddress = info.remoteAddress;
|
||||
|
||||
if (info.remotePort) {
|
||||
server.RemoteAddress += ':' + info.remotePort;
|
||||
}
|
||||
|
||||
servers.push(server);
|
||||
}
|
||||
|
||||
} catch (err) {
|
||||
console.log('Error receiving server info: ' + err);
|
||||
}
|
||||
}
|
||||
|
||||
var port = 7359;
|
||||
console.log('chrome.sockets.udp.create');
|
||||
|
||||
startTimer();
|
||||
|
||||
chrome.sockets.udp.create(function (createInfo) {
|
||||
|
||||
if (!createInfo) {
|
||||
console.log('create fail');
|
||||
return;
|
||||
}
|
||||
if (!createInfo.socketId) {
|
||||
console.log('create fail');
|
||||
return;
|
||||
}
|
||||
|
||||
socketId = createInfo.socketId;
|
||||
|
||||
console.log('chrome.sockets.udp.bind');
|
||||
chrome.sockets.udp.bind(createInfo.socketId, '0.0.0.0', 0, function (bindResult) {
|
||||
|
||||
if (getResultCode(bindResult) != 0) {
|
||||
console.log('bind fail: ' + bindResult);
|
||||
return;
|
||||
}
|
||||
|
||||
var data = stringToArrayBuffer('who is EmbyServer?');
|
||||
|
||||
console.log('chrome.sockets.udp.send');
|
||||
|
||||
chrome.sockets.udp.send(createInfo.socketId, data, '255.255.255.255', port, function (sendResult) {
|
||||
|
||||
if (getResultCode(sendResult) != 0) {
|
||||
console.log('send fail: ' + sendResult);
|
||||
|
||||
} else {
|
||||
chrome.sockets.udp.onReceive.addListener(onReceive);
|
||||
console.log('sendTo: success ' + port);
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
findServers: function (timeoutMs) {
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
|
||||
try {
|
||||
findServersInternal(timeoutMs).then(resolve, function () {
|
||||
|
||||
resolve([]);
|
||||
});
|
||||
|
||||
} catch (err) {
|
||||
resolve([]);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
});
|
@ -14,12 +14,12 @@
|
||||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.4.141",
|
||||
"_release": "1.4.141",
|
||||
"version": "1.4.142",
|
||||
"_release": "1.4.142",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.4.141",
|
||||
"commit": "f04a3dea1a654d41eb586745e1276760025e0ec9"
|
||||
"tag": "1.4.142",
|
||||
"commit": "12659f33236f3a8daf282132ca715d2bbf449bfe"
|
||||
},
|
||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "^1.2.0",
|
||||
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\u0414\u043e\u0431\u0430\u0432\u0438",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Afegeix",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "\u00cdtem desat."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "\u00cdtem desat.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "P\u0159idat",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producent",
|
||||
"Writer": "Napsal",
|
||||
"MessageItemSaved": "Polo\u017eka ulo\u017eena."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Del",
|
||||
"Add": "Tilf\u00f8j",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producent",
|
||||
"Writer": "Forfatter",
|
||||
"MessageItemSaved": "Element gemt."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Element gemt.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Teilen",
|
||||
"Add": "Hinzuf\u00fcgen",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Gaststar",
|
||||
"Producer": "Produzent",
|
||||
"Writer": "Drehbuchautor",
|
||||
"MessageItemSaved": "Element gespeichert"
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Element gespeichert",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.",
|
||||
"InstallingPackage": "Instalando {0}",
|
||||
"PackageInstallFailed": "{0} instalaci\u00f3n fallida.",
|
||||
"PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||
"Share": "Compartir",
|
||||
"Add": "Agregar",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Estrella invitada",
|
||||
"Producer": "Productor",
|
||||
"Writer": "Escritor",
|
||||
"MessageItemSaved": "\u00cdtem guardado."
|
||||
"InstallingPackage": "Instalando {0}",
|
||||
"PackageInstallCompleted": "{0} instalaci\u00f3n completada.",
|
||||
"PackageInstallFailed": "{0} instalaci\u00f3n fallida.",
|
||||
"PackageInstallCancelled": "{0} instalaci\u00f3n cancelada.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "\u00cdtem guardado.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Compartir",
|
||||
"Add": "A\u00f1adir",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Productor",
|
||||
"Writer": "Escritor",
|
||||
"MessageItemSaved": "Elemento grabado."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Elemento grabado.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
|
||||
"Share": "Partager",
|
||||
"Add": "Ajouter",
|
||||
@ -151,7 +129,7 @@
|
||||
"HeaderConfirmRecordingCancellation": "Confirmer l'annulation de l'enregistrement.",
|
||||
"MessageConfirmRecordingCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cet enregistrement?",
|
||||
"Error": "Erreur",
|
||||
"VoiceInput": "Voice Input",
|
||||
"VoiceInput": "Entr\u00e9e vocale",
|
||||
"LabelContentType": "Type de contenu :",
|
||||
"LabelPath": "Chemin",
|
||||
"LabelTitle": "Titre:",
|
||||
@ -231,19 +209,42 @@
|
||||
"Images": "Images",
|
||||
"Keywords": "Mots-cl\u00e9s",
|
||||
"Runtime": "Dur\u00e9e",
|
||||
"ProductionLocations": "Production locations",
|
||||
"BirthLocation": "Birth location",
|
||||
"ProductionLocations": "Sites de production",
|
||||
"BirthLocation": "Lieu de naissance",
|
||||
"ParentalRating": "Classification parentale",
|
||||
"Name": "Nom",
|
||||
"Overview": "R\u00e9sum\u00e9",
|
||||
"LabelType": "Type :",
|
||||
"LabelPersonRole": "R\u00f4le:",
|
||||
"LabelPersonRoleHelp": "Example: Ice cream truck driver",
|
||||
"LabelPersonRoleHelp": "Exemple: Chauffeur de camion de cr\u00e8me glac\u00e9e",
|
||||
"Actor": "Acteur(trice)",
|
||||
"Composer": "Compositeur:",
|
||||
"Director": "R\u00e9alisateur:",
|
||||
"GuestStar": "Invit\u00e9s d'honneur",
|
||||
"Producer": "Producteur",
|
||||
"Writer": "Sc\u00e9nariste",
|
||||
"MessageItemSaved": "Item sauvegard\u00e9."
|
||||
"InstallingPackage": "Installation de {0}",
|
||||
"PackageInstallCompleted": "L'installation de {0} est termin\u00e9e.",
|
||||
"PackageInstallFailed": "L'installation de {0} a \u00e9chou\u00e9.",
|
||||
"PackageInstallCancelled": "L'installation de {0} a \u00e9t\u00e9 annul\u00e9e.",
|
||||
"SeriesYearToPresent": "{0}-Pr\u00e9sent",
|
||||
"ValueOneSong": "1 chanson",
|
||||
"ValueSongCount": "{0} chansons",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueMovieCount": "{0} films",
|
||||
"ValueOneSeries": "1 s\u00e9rie",
|
||||
"ValueSeriesCount": "{0} s\u00e9ries",
|
||||
"ValueOneEpisode": "1 \u00e9pisode",
|
||||
"ValueEpisodeCount": "{0} \u00e9pisodes",
|
||||
"ValueOneGame": "1 jeu",
|
||||
"ValueGameCount": "{0} jeux",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 vid\u00e9o musicale",
|
||||
"ValueMusicVideoCount": "{0} vid\u00e9oclips",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Entrez un ou plusieurs crit\u00e8res de recherche. Retirez des crit\u00e8res pour \u00e9largir les r\u00e9sultats de la recherche.",
|
||||
"PleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.",
|
||||
"MessageItemSaved": "Item sauvegard\u00e9.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\u05d4\u05d5\u05e1\u05e3",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Dodaj",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Hozz\u00e1ad",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "\u00cdr\u00f3",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Aggiungi",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Produttore",
|
||||
"Writer": "Scrittore",
|
||||
"MessageItemSaved": "Elemento salvato."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Elemento salvato.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||
"InstallingPackage": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||
"PackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.",
|
||||
"PackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
|
||||
"Share": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
|
||||
"Add": "\u04ae\u0441\u0442\u0435\u0443",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "\u0428\u0430\u049b\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440",
|
||||
"Producer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440",
|
||||
"Writer": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439\u0448\u0456",
|
||||
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b."
|
||||
"InstallingPackage": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||
"PackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||
"PackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.",
|
||||
"PackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.",
|
||||
"SeriesYearToPresent": "{0} - \u049b\u0430\u0437\u0456\u0440",
|
||||
"ValueOneSong": "1 \u04d9\u0443\u0435\u043d",
|
||||
"ValueSongCount": "{0} \u04d9\u0443\u0435\u043d",
|
||||
"ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c",
|
||||
"ValueMovieCount": "{0} \u0444\u0438\u043b\u044c\u043c",
|
||||
"ValueOneSeries": "1 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f",
|
||||
"ValueSeriesCount": "{0} \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f",
|
||||
"ValueOneEpisode": "1 \u0431\u04e9\u043b\u0456\u043c",
|
||||
"ValueEpisodeCount": "{0} \u0431\u04e9\u043b\u0456\u043c",
|
||||
"ValueOneGame": "1 \u043e\u0439\u044b\u043d",
|
||||
"ValueGameCount": "{0} \u043e\u0439\u044b\u043d",
|
||||
"ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c",
|
||||
"ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c",
|
||||
"ValueOneMusicVideo": "1 \u043c\u0443\u0437. \u0431\u0435\u0439\u043d\u0435",
|
||||
"ValueMusicVideoCount": "{0} \u043c\u0443\u0437. \u0431\u0435\u0439\u043d\u0435",
|
||||
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
||||
"HeaderIdentifyItemHelp": "\u0406\u0437\u0434\u0435\u0443\u0434\u0456\u04a3 \u0431\u0456\u0440 \u043d\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0448\u0430\u0440\u0442\u044b\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456\u043d \u043a\u04e9\u0431\u0435\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u0448\u0430\u0440\u0442\u0442\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
|
||||
"PleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||
"MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\ucd94\uac00",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "\ud504\ub85c\ub4c0\uc11c",
|
||||
"Writer": "\uc791\uac00",
|
||||
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Spesial - {0}",
|
||||
"Share": "Del",
|
||||
"Add": "Legg til",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Gjeste skuespiller",
|
||||
"Producer": "Produsent",
|
||||
"Writer": "Manus",
|
||||
"MessageItemSaved": "Element lagret."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Element lagret.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installatie voltooid.",
|
||||
"InstallingPackage": "Installeren van {0}",
|
||||
"PackageInstallFailed": "{0} installatie is mislukt.",
|
||||
"PackageInstallCancelled": "{0} installatie geannuleerd.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Speciaal - {0}",
|
||||
"Share": "Delen",
|
||||
"Add": "Toevoegen",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Gast ster",
|
||||
"Producer": "Producent",
|
||||
"Writer": "Schrijver",
|
||||
"MessageItemSaved": "Item opgeslagen."
|
||||
"InstallingPackage": "Installeren van {0}",
|
||||
"PackageInstallCompleted": "{0} installatie voltooid.",
|
||||
"PackageInstallFailed": "{0} installatie is mislukt.",
|
||||
"PackageInstallCancelled": "{0} installatie geannuleerd.",
|
||||
"SeriesYearToPresent": "{0}-Aanwezig",
|
||||
"ValueOneSong": "1 nummer",
|
||||
"ValueSongCount": "{0} nummers",
|
||||
"ValueOneMovie": "1 film",
|
||||
"ValueMovieCount": "{0} films",
|
||||
"ValueOneSeries": "1 serie",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 aflevering",
|
||||
"ValueEpisodeCount": "{0} afleveringen",
|
||||
"ValueOneGame": "1 spel",
|
||||
"ValueGameCount": "{0} spellen",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 muziek video",
|
||||
"ValueMusicVideoCount": "{0} muziek video's",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Vul \u00e9\u00e9n of meer zoek criteria in. Verwijder criteria om zoekresultaten te vergroten.",
|
||||
"PleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
||||
"MessageItemSaved": "Item opgeslagen.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Dodaj",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producent",
|
||||
"Writer": "Scenarzysta",
|
||||
"MessageItemSaved": "Obiekt zapisany."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Obiekt zapisany.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "Instala\u00e7\u00e3o completa de {0}",
|
||||
"InstallingPackage": "Instalando {0}",
|
||||
"PackageInstallFailed": "Falha na instala\u00e7\u00e3o de {0}.",
|
||||
"PackageInstallCancelled": "Instala\u00e7\u00e3o cancelada de {0}.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||
"Share": "Compartilhar",
|
||||
"Add": "Adicionar",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Convidado Especial",
|
||||
"Producer": "Produtor",
|
||||
"Writer": "Escritor",
|
||||
"MessageItemSaved": "Item salvo."
|
||||
"InstallingPackage": "Instalando {0}",
|
||||
"PackageInstallCompleted": "Instala\u00e7\u00e3o completa de {0}",
|
||||
"PackageInstallFailed": "Falha na instala\u00e7\u00e3o de {0}.",
|
||||
"PackageInstallCancelled": "Instala\u00e7\u00e3o cancelada de {0}.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item salvo.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Especial - {0}",
|
||||
"Share": "Partilhar",
|
||||
"Add": "Adicionar",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Produtor",
|
||||
"Writer": "Escritor",
|
||||
"MessageItemSaved": "Item salvo."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item salvo.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430.",
|
||||
"InstallingPackage": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}",
|
||||
"PackageInstallFailed": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430.",
|
||||
"PackageInstallCancelled": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"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",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "\u041f\u0440\u0438\u0433\u043b. \u0430\u043a\u0442\u0451\u0440",
|
||||
"Producer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440",
|
||||
"Writer": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442",
|
||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d."
|
||||
"InstallingPackage": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}",
|
||||
"PackageInstallCompleted": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430.",
|
||||
"PackageInstallFailed": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430.",
|
||||
"PackageInstallCancelled": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.",
|
||||
"SeriesYearToPresent": "{0} - \u041d.\u0412.",
|
||||
"ValueOneSong": "1 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f",
|
||||
"ValueSongCount": "{0} \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438(\u0438\/\u0439)",
|
||||
"ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c",
|
||||
"ValueMovieCount": "{0} \u0444\u0438\u043b\u044c\u043c(\u0430\/\u043e\u0432)",
|
||||
"ValueOneSeries": "1 \u0441\u0435\u0440\u0438\u0430\u043b",
|
||||
"ValueSeriesCount": "{0} \u0441\u0435\u0440\u0438\u0430\u043b(\u0430\/\u043e\u0432)",
|
||||
"ValueOneEpisode": "1 \u044d\u043f\u0438\u0437\u043e\u0434",
|
||||
"ValueEpisodeCount": "{0} \u044d\u043f\u0438\u0437\u043e\u0434(\u0430\/\u043e\u0432)",
|
||||
"ValueOneGame": "1 \u0438\u0433\u0440\u0430",
|
||||
"ValueGameCount": "{0} \u0438\u0433\u0440(\u044b)",
|
||||
"ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c",
|
||||
"ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c(\u0430\/\u043e\u0432)",
|
||||
"ValueOneMusicVideo": "1 \u043c\u0443\u0437-\u043e\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||
"ValueMusicVideoCount": "{0} \u043c\u0443\u0437-\u044b\u0445 \u0432\u0438\u0434\u0435\u043e",
|
||||
"ValueMinutes": "{0} \u043c\u0438\u043d",
|
||||
"HeaderIdentifyItemHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043e\u0434\u043d\u043e \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443\u0441\u043b\u043e\u0432\u0438\u0439 \u043f\u043e\u0438\u0441\u043a\u0430. \u0418\u0437\u044b\u043c\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0440\u0430\u0441\u0442\u0438\u0442\u044c \u043d\u0430\u0439\u0434\u0435\u043d\u043d\u044b\u0435 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b.",
|
||||
"PleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.",
|
||||
"InstallingPackage": "Installerar {0}",
|
||||
"PackageInstallFailed": "Installationen av {0} misslyckades.",
|
||||
"PackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Specialavsnitt - {0}",
|
||||
"Share": "Dela",
|
||||
"Add": "L\u00e4gg till",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "G\u00e4stmedverkande",
|
||||
"Producer": "Producent",
|
||||
"Writer": "Manusf\u00f6rfattare",
|
||||
"MessageItemSaved": "Objektet har sparats."
|
||||
"InstallingPackage": "Installerar {0}",
|
||||
"PackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.",
|
||||
"PackageInstallFailed": "Installationen av {0} misslyckades.",
|
||||
"PackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Objektet har sparats.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Ekle",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Add",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "Th\u00eam",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\u6dfb\u52a0",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "\u5236\u7247\u4eba",
|
||||
"Writer": "\u7f16\u5267",
|
||||
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002"
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "Share",
|
||||
"Add": "\u65b0\u589e",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,26 +1,4 @@
|
||||
{
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"Share": "\u5206\u4eab",
|
||||
"Add": "\u6dfb\u52a0",
|
||||
@ -245,5 +223,28 @@
|
||||
"GuestStar": "Guest star",
|
||||
"Producer": "Producer",
|
||||
"Writer": "Writer",
|
||||
"MessageItemSaved": "Item saved."
|
||||
"InstallingPackage": "Installing {0}",
|
||||
"PackageInstallCompleted": "{0} installation completed.",
|
||||
"PackageInstallFailed": "{0} installation failed.",
|
||||
"PackageInstallCancelled": "{0} installation cancelled.",
|
||||
"SeriesYearToPresent": "{0}-Present",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"ValueMinutes": "{0} min",
|
||||
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
|
||||
"PleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"SearchResults": "Search Results"
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "polymer",
|
||||
"version": "1.6.0",
|
||||
"version": "1.6.1",
|
||||
"main": [
|
||||
"polymer.html",
|
||||
"polymer-mini.html",
|
||||
@ -28,15 +28,16 @@
|
||||
"webcomponentsjs": "^0.7.20"
|
||||
},
|
||||
"devDependencies": {
|
||||
"web-component-tester": "*"
|
||||
"web-component-tester": "*",
|
||||
"iron-component-page": "polymerElements/iron-component-page#^1.1.6"
|
||||
},
|
||||
"private": true,
|
||||
"homepage": "https://github.com/Polymer/polymer",
|
||||
"_release": "1.6.0",
|
||||
"_release": "1.6.1",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.6.0",
|
||||
"commit": "8715c83bf04a228de00ec662ed43eb6141e61b91"
|
||||
"tag": "v1.6.1",
|
||||
"commit": "1f197d9d7874b1e5808b2a5c26f34446a7d912fc"
|
||||
},
|
||||
"_source": "git://github.com/Polymer/polymer.git",
|
||||
"_target": "^1.1.0",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "polymer",
|
||||
"version": "1.6.0",
|
||||
"version": "1.6.1",
|
||||
"main": [
|
||||
"polymer.html",
|
||||
"polymer-mini.html",
|
||||
@ -28,7 +28,8 @@
|
||||
"webcomponentsjs": "^0.7.20"
|
||||
},
|
||||
"devDependencies": {
|
||||
"web-component-tester": "*"
|
||||
"web-component-tester": "*",
|
||||
"iron-component-page": "polymerElements/iron-component-page#^1.1.6"
|
||||
},
|
||||
"private": true
|
||||
}
|
||||
|
@ -6,7 +6,11 @@ The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
|
||||
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
|
||||
Code distributed by Google as part of the polymer project is also
|
||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
||||
--><script>(function () {
|
||||
-->
|
||||
|
||||
|
||||
|
||||
<script>(function () {
|
||||
function resolve() {
|
||||
document.body.removeAttribute('unresolved');
|
||||
}
|
||||
@ -22,11 +26,13 @@ addEventListener('DOMContentLoaded', resolve);
|
||||
}());window.Polymer = {
|
||||
Settings: function () {
|
||||
var settings = window.Polymer || {};
|
||||
if (!settings.noUrlSettings) {
|
||||
var parts = location.search.slice(1).split('&');
|
||||
for (var i = 0, o; i < parts.length && (o = parts[i]); i++) {
|
||||
o = o.split('=');
|
||||
o[0] && (settings[o[0]] = o[1] || true);
|
||||
}
|
||||
}
|
||||
settings.wantShadow = settings.dom === 'shadow';
|
||||
settings.hasShadow = Boolean(Element.prototype.createShadowRoot);
|
||||
settings.nativeShadow = settings.hasShadow && !window.ShadowDOMPolyfill;
|
||||
@ -173,8 +179,14 @@ _addFeature: function (feature) {
|
||||
this.extend(this, feature);
|
||||
},
|
||||
registerCallback: function () {
|
||||
if (settings.lazyRegister === 'max') {
|
||||
if (this.beforeRegister) {
|
||||
this.beforeRegister();
|
||||
}
|
||||
} else {
|
||||
this._desugarBehaviors();
|
||||
this._doBehavior('beforeRegister');
|
||||
}
|
||||
this._registerFeatures();
|
||||
if (!settings.lazyRegister) {
|
||||
this.ensureRegisterFinished();
|
||||
@ -193,7 +205,11 @@ ensureRegisterFinished: function () {
|
||||
this._ensureRegisterFinished(this);
|
||||
},
|
||||
_ensureRegisterFinished: function (proto) {
|
||||
if (proto.__hasRegisterFinished !== proto.is) {
|
||||
if (proto.__hasRegisterFinished !== proto.is || !proto.is) {
|
||||
if (settings.lazyRegister === 'max') {
|
||||
proto._desugarBehaviors();
|
||||
proto._doBehaviorOnly('beforeRegister');
|
||||
}
|
||||
proto.__hasRegisterFinished = proto.is;
|
||||
if (proto._finishRegisterFeatures) {
|
||||
proto._finishRegisterFeatures();
|
||||
@ -229,14 +245,14 @@ newValue
|
||||
_attributeChangedImpl: function (name) {
|
||||
this._setAttributeToProperty(this, name);
|
||||
},
|
||||
extend: function (prototype, api) {
|
||||
if (prototype && api) {
|
||||
var n$ = Object.getOwnPropertyNames(api);
|
||||
extend: function (target, source) {
|
||||
if (target && source) {
|
||||
var n$ = Object.getOwnPropertyNames(source);
|
||||
for (var i = 0, n; i < n$.length && (n = n$[i]); i++) {
|
||||
this.copyOwnProperty(n, api, prototype);
|
||||
this.copyOwnProperty(n, source, target);
|
||||
}
|
||||
}
|
||||
return prototype || api;
|
||||
return target || source;
|
||||
},
|
||||
mixin: function (target, source) {
|
||||
for (var i in source) {
|
||||
@ -428,6 +444,11 @@ this._invokeBehavior(this.behaviors[i], name, args);
|
||||
}
|
||||
this._invokeBehavior(this, name, args);
|
||||
},
|
||||
_doBehaviorOnly: function (name, args) {
|
||||
for (var i = 0; i < this.behaviors.length; i++) {
|
||||
this._invokeBehavior(this.behaviors[i], name, args);
|
||||
}
|
||||
},
|
||||
_invokeBehavior: function (b, name, args) {
|
||||
var fn = b[name];
|
||||
if (fn) {
|
||||
@ -679,7 +700,7 @@ default:
|
||||
return value != null ? value : undefined;
|
||||
}
|
||||
}
|
||||
});Polymer.version = '1.6.0';Polymer.Base._addFeature({
|
||||
});Polymer.version = "1.6.1";Polymer.Base._addFeature({
|
||||
_registerFeatures: function () {
|
||||
this._prepIs();
|
||||
this._prepBehaviors();
|
||||
@ -709,7 +730,3 @@ this._marshalBehaviors();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -8,6 +8,8 @@ Code distributed by Google as part of the polymer project is also
|
||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
||||
--><link rel="import" href="polymer-micro.html">
|
||||
|
||||
|
||||
|
||||
<script>Polymer.Base._addFeature({
|
||||
_prepTemplate: function () {
|
||||
if (this._template === undefined) {
|
||||
@ -2160,5 +2162,3 @@ _marshalBehavior: function (b) {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
239
dashboard-ui/bower_components/polymer/polymer.html
vendored
239
dashboard-ui/bower_components/polymer/polymer.html
vendored
@ -16,6 +16,8 @@ Code distributed by Google as part of the polymer project is also
|
||||
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
|
||||
--><link rel="import" href="polymer-mini.html">
|
||||
|
||||
|
||||
|
||||
<script>Polymer.nar = [];
|
||||
Polymer.Annotations = {
|
||||
parseAnnotations: function (template) {
|
||||
@ -254,7 +256,7 @@ at.value = a === 'style' ? resolveCss(v, ownerDocument) : resolve(v, ownerDocume
|
||||
}
|
||||
}
|
||||
function resolve(url, ownerDocument) {
|
||||
if (url && url[0] === '#') {
|
||||
if (url && ABS_URL.test(url)) {
|
||||
return url;
|
||||
}
|
||||
var resolver = getUrlResolver(ownerDocument);
|
||||
@ -285,6 +287,7 @@ var URL_ATTRS = {
|
||||
],
|
||||
form: ['action']
|
||||
};
|
||||
var ABS_URL = /(^\/)|(^#)|(^[\w-\d]*:)/;
|
||||
var BINDING_RX = /\{\{|\[\[/;
|
||||
Polymer.ResolveUrl = {
|
||||
resolveCss: resolveCss,
|
||||
@ -567,6 +570,10 @@ return false;
|
||||
}();
|
||||
var IS_TOUCH_ONLY = navigator.userAgent.match(/iP(?:[oa]d|hone)|Android/);
|
||||
var mouseCanceller = function (mouseEvent) {
|
||||
var sc = mouseEvent.sourceCapabilities;
|
||||
if (sc && !sc.firesTouchEvents) {
|
||||
return;
|
||||
}
|
||||
mouseEvent[HANDLED_OBJ] = { skip: true };
|
||||
if (mouseEvent.type === 'click') {
|
||||
var path = Polymer.dom(mouseEvent).path;
|
||||
@ -768,7 +775,7 @@ prevent = dy > dx;
|
||||
prevent = dx > dy;
|
||||
}
|
||||
if (prevent) {
|
||||
ev.preventDefault();
|
||||
//ev.preventDefault();
|
||||
} else {
|
||||
Gestures.prevent('track');
|
||||
}
|
||||
@ -1433,7 +1440,7 @@ node = node || this;
|
||||
var effects = node._propertyEffects && node._propertyEffects[property];
|
||||
if (effects) {
|
||||
node._propertySetter(property, value, effects, quiet);
|
||||
} else {
|
||||
} else if (node[property] !== value) {
|
||||
node[property] = value;
|
||||
}
|
||||
},
|
||||
@ -1910,9 +1917,6 @@ _applyEffectValue: function (info, value) {
|
||||
var node = this._nodes[info.index];
|
||||
var property = info.name;
|
||||
value = this._computeFinalAnnotationValue(node, property, value, info);
|
||||
if (info.customEvent && node[property] === value) {
|
||||
return;
|
||||
}
|
||||
if (info.kind == 'attribute') {
|
||||
this.serializeValueToAttribute(value, property, node);
|
||||
} else {
|
||||
@ -1980,6 +1984,7 @@ this._configure();
|
||||
},
|
||||
_configure: function () {
|
||||
this._configureAnnotationReferences();
|
||||
this._configureInstanceProperties();
|
||||
this._aboveConfig = this.mixin({}, this._config);
|
||||
var config = {};
|
||||
for (var i = 0; i < this.behaviors.length; i++) {
|
||||
@ -1992,13 +1997,18 @@ if (this._clients && this._clients.length) {
|
||||
this._distributeConfig(this._config);
|
||||
}
|
||||
},
|
||||
_configureInstanceProperties: function () {
|
||||
for (var i in this._propertyEffects) {
|
||||
if (!usePolyfillProto && this.hasOwnProperty(i)) {
|
||||
this._configValue(i, this[i]);
|
||||
delete this[i];
|
||||
}
|
||||
}
|
||||
},
|
||||
_configureProperties: function (properties, config) {
|
||||
for (var i in properties) {
|
||||
var c = properties[i];
|
||||
if (!usePolyfillProto && this.hasOwnProperty(i) && this._propertyEffects && this._propertyEffects[i]) {
|
||||
config[i] = this[i];
|
||||
delete this[i];
|
||||
} else if (c.value !== undefined) {
|
||||
if (c.value !== undefined) {
|
||||
var value = c.value;
|
||||
if (typeof value == 'function') {
|
||||
value = value.call(this, this._config);
|
||||
@ -2699,10 +2709,42 @@ return this.getCssBuildType(dm);
|
||||
getCssBuildType: function (element) {
|
||||
return element.getAttribute('css-build');
|
||||
},
|
||||
_findMatchingParen: function (text, start) {
|
||||
var level = 0;
|
||||
for (var i = start, l = text.length; i < l; i++) {
|
||||
switch (text[i]) {
|
||||
case '(':
|
||||
level++;
|
||||
break;
|
||||
case ')':
|
||||
if (--level === 0) {
|
||||
return i;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
},
|
||||
processVariableAndFallback: function (str, callback) {
|
||||
var start = str.indexOf('var(');
|
||||
if (start === -1) {
|
||||
return callback(str, '', '', '');
|
||||
}
|
||||
var end = this._findMatchingParen(str, start + 3);
|
||||
var inner = str.substring(start + 4, end);
|
||||
var prefix = str.substring(0, start);
|
||||
var suffix = this.processVariableAndFallback(str.substring(end + 1), callback);
|
||||
var comma = inner.indexOf(',');
|
||||
if (comma === -1) {
|
||||
return callback(prefix, inner.trim(), '', suffix);
|
||||
}
|
||||
var value = inner.substring(0, comma).trim();
|
||||
var fallback = inner.substring(comma + 1).trim();
|
||||
return callback(prefix, value, fallback, suffix);
|
||||
},
|
||||
rx: {
|
||||
VAR_ASSIGN: /(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:([^;{]*)|{([^}]*)})(?:(?=[;\s}])|$)/gi,
|
||||
MIXIN_MATCH: /(?:^|\W+)@apply\s*\(?([^);\n]*)\)?/gi,
|
||||
VAR_MATCH: /(^|\W+)var\([\s]*([^,)]*)[\s]*,?[\s]*((?:[^,()]*)|(?:[^;()]*\([^;)]*\)+))[\s]*?\)/gi,
|
||||
VAR_CONSUMED: /(--[\w-]+)\s*([:,;)]|$)/gi,
|
||||
ANIMATION_MATCH: /(animation\s*:)|(animation-name\s*:)/,
|
||||
MEDIA_MATCH: /@media[^(]*(\([^)]*\))/,
|
||||
@ -2997,42 +3039,66 @@ STRIP: /%[^,]*$/
|
||||
var styleUtil = Polymer.StyleUtil;
|
||||
var MIXIN_MATCH = styleUtil.rx.MIXIN_MATCH;
|
||||
var VAR_ASSIGN = styleUtil.rx.VAR_ASSIGN;
|
||||
var VAR_MATCH = styleUtil.rx.VAR_MATCH;
|
||||
var BAD_VAR = /var\(\s*(--[^,]*),\s*(--[^)]*)\)/g;
|
||||
var APPLY_NAME_CLEAN = /;\s*/m;
|
||||
var INITIAL_INHERIT = /^\s*(initial)|(inherit)\s*$/;
|
||||
var MIXIN_VAR_SEP = '_-_';
|
||||
var mixinMap = {};
|
||||
function mapSet(name, prop) {
|
||||
function mapSet(name, props) {
|
||||
name = name.trim();
|
||||
mixinMap[name] = prop;
|
||||
mixinMap[name] = {
|
||||
properties: props,
|
||||
dependants: {}
|
||||
};
|
||||
}
|
||||
function mapGet(name) {
|
||||
name = name.trim();
|
||||
return mixinMap[name];
|
||||
}
|
||||
function replaceInitialOrInherit(property, value) {
|
||||
var match = INITIAL_INHERIT.exec(value);
|
||||
if (match) {
|
||||
if (match[1]) {
|
||||
value = ApplyShim._getInitialValueForProperty(property);
|
||||
} else {
|
||||
value = 'apply-shim-inherit';
|
||||
}
|
||||
}
|
||||
return value;
|
||||
}
|
||||
function cssTextToMap(text) {
|
||||
var props = text.split(';');
|
||||
var property, value;
|
||||
var out = {};
|
||||
for (var i = 0, p, sp; i < props.length; i++) {
|
||||
p = props[i];
|
||||
if (p) {
|
||||
sp = p.split(':');
|
||||
if (sp.length > 1) {
|
||||
out[sp[0].trim()] = sp.slice(1).join(':');
|
||||
property = sp[0].trim();
|
||||
value = replaceInitialOrInherit(property, sp.slice(1).join(':'));
|
||||
out[property] = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
function invalidateMixinEntry(mixinEntry) {
|
||||
var currentProto = ApplyShim.__currentElementProto;
|
||||
var currentElementName = currentProto && currentProto.is;
|
||||
for (var elementName in mixinEntry.dependants) {
|
||||
if (elementName !== currentElementName) {
|
||||
mixinEntry.dependants[elementName].__applyShimInvalid = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
function produceCssProperties(matchText, propertyName, valueProperty, valueMixin) {
|
||||
if (valueProperty) {
|
||||
VAR_MATCH.lastIndex = 0;
|
||||
var m = VAR_MATCH.exec(valueProperty);
|
||||
if (m) {
|
||||
var value = m[2];
|
||||
if (mapGet(value)) {
|
||||
styleUtil.processVariableAndFallback(valueProperty, function (prefix, value) {
|
||||
if (value && mapGet(value)) {
|
||||
valueMixin = '@apply ' + value + ';';
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
if (!valueMixin) {
|
||||
return matchText;
|
||||
@ -3040,44 +3106,57 @@ return matchText;
|
||||
var mixinAsProperties = consumeCssProperties(valueMixin);
|
||||
var prefix = matchText.slice(0, matchText.indexOf('--'));
|
||||
var mixinValues = cssTextToMap(mixinAsProperties);
|
||||
var oldProperties = mapGet(propertyName);
|
||||
var combinedProps = mixinValues;
|
||||
if (oldProperties) {
|
||||
combinedProps = Polymer.Base.mixin(oldProperties, mixinValues);
|
||||
var mixinEntry = mapGet(propertyName);
|
||||
var oldProps = mixinEntry && mixinEntry.properties;
|
||||
if (oldProps) {
|
||||
combinedProps = Object.create(oldProps);
|
||||
combinedProps = Polymer.Base.mixin(combinedProps, mixinValues);
|
||||
} else {
|
||||
mapSet(propertyName, combinedProps);
|
||||
}
|
||||
var out = [];
|
||||
var p, v;
|
||||
var needToInvalidate = false;
|
||||
for (p in combinedProps) {
|
||||
v = mixinValues[p];
|
||||
if (v === undefined) {
|
||||
v = 'initial';
|
||||
}
|
||||
if (oldProps && !(p in oldProps)) {
|
||||
needToInvalidate = true;
|
||||
}
|
||||
out.push(propertyName + MIXIN_VAR_SEP + p + ': ' + v);
|
||||
}
|
||||
if (needToInvalidate) {
|
||||
invalidateMixinEntry(mixinEntry);
|
||||
}
|
||||
if (mixinEntry) {
|
||||
mixinEntry.properties = combinedProps;
|
||||
}
|
||||
if (valueProperty) {
|
||||
prefix = matchText + ';' + prefix;
|
||||
}
|
||||
return prefix + out.join('; ') + ';';
|
||||
}
|
||||
function fixVars(matchText, prefix, value, fallback) {
|
||||
if (!fallback || fallback.indexOf('--') !== 0) {
|
||||
return matchText;
|
||||
}
|
||||
return [
|
||||
prefix,
|
||||
'var(',
|
||||
value,
|
||||
', var(',
|
||||
fallback,
|
||||
'));'
|
||||
].join('');
|
||||
function fixVars(matchText, varA, varB) {
|
||||
return 'var(' + varA + ',' + 'var(' + varB + '));';
|
||||
}
|
||||
function atApplyToCssProperties(mixinName, fallbacks) {
|
||||
mixinName = mixinName.replace(APPLY_NAME_CLEAN, '');
|
||||
var vars = [];
|
||||
var mixinProperties = mapGet(mixinName);
|
||||
if (mixinProperties) {
|
||||
var mixinEntry = mapGet(mixinName);
|
||||
if (!mixinEntry) {
|
||||
mapSet(mixinName, {});
|
||||
mixinEntry = mapGet(mixinName);
|
||||
}
|
||||
if (mixinEntry) {
|
||||
var currentProto = ApplyShim.__currentElementProto;
|
||||
if (currentProto) {
|
||||
mixinEntry.dependants[currentProto.is] = currentProto;
|
||||
}
|
||||
var p, parts, f;
|
||||
for (p in mixinProperties) {
|
||||
for (p in mixinEntry.properties) {
|
||||
f = fallbacks && fallbacks[p];
|
||||
parts = [
|
||||
p,
|
||||
@ -3117,10 +3196,14 @@ MIXIN_MATCH.lastIndex = idx + replacement.length;
|
||||
return text;
|
||||
}
|
||||
var ApplyShim = {
|
||||
_measureElement: null,
|
||||
_map: mixinMap,
|
||||
_separator: MIXIN_VAR_SEP,
|
||||
transform: function (styles) {
|
||||
transform: function (styles, elementProto) {
|
||||
this.__currentElementProto = elementProto;
|
||||
styleUtil.forRulesInStyles(styles, this._boundTransformRule);
|
||||
elementProto.__applyShimInvalid = false;
|
||||
this.__currentElementProto = null;
|
||||
},
|
||||
transformRule: function (rule) {
|
||||
rule.cssText = this.transformCssText(rule.parsedCssText);
|
||||
@ -3129,9 +3212,17 @@ rule.selector = ':host > *';
|
||||
}
|
||||
},
|
||||
transformCssText: function (cssText) {
|
||||
cssText = cssText.replace(VAR_MATCH, fixVars);
|
||||
cssText = cssText.replace(BAD_VAR, fixVars);
|
||||
cssText = cssText.replace(VAR_ASSIGN, produceCssProperties);
|
||||
return consumeCssProperties(cssText);
|
||||
},
|
||||
_getInitialValueForProperty: function (property) {
|
||||
if (!this._measureElement) {
|
||||
this._measureElement = document.createElement('meta');
|
||||
this._measureElement.style.all = 'initial';
|
||||
document.head.appendChild(this._measureElement);
|
||||
}
|
||||
return window.getComputedStyle(this._measureElement).getPropertyValue(property);
|
||||
}
|
||||
};
|
||||
ApplyShim._boundTransformRule = ApplyShim.transformRule.bind(ApplyShim);
|
||||
@ -3168,7 +3259,7 @@ return;
|
||||
}
|
||||
this._styles = this._styles || this._collectStyles();
|
||||
if (settings.useNativeCSSProperties && !this.__cssBuild) {
|
||||
applyShim.transform(this._styles);
|
||||
applyShim.transform(this._styles, this);
|
||||
}
|
||||
var cssText = settings.useNativeCSSProperties && hasTargetedCssBuild ? this._styles.length && this._styles[0].textContent.trim() : styleTransformer.elementStyles(this);
|
||||
this._prepStyleProperties();
|
||||
@ -3256,6 +3347,7 @@ return mo;
|
||||
var matchesSelector = Polymer.DomApi.matchesSelector;
|
||||
var styleUtil = Polymer.StyleUtil;
|
||||
var styleTransformer = Polymer.StyleTransformer;
|
||||
var IS_IE = navigator.userAgent.match('Trident');
|
||||
var settings = Polymer.Settings;
|
||||
return {
|
||||
decorateStyles: function (styles, scope) {
|
||||
@ -3310,9 +3402,13 @@ return true;
|
||||
} else {
|
||||
var m, rx = this.rx.VAR_ASSIGN;
|
||||
var cssText = rule.parsedCssText;
|
||||
var value;
|
||||
var any;
|
||||
while (m = rx.exec(cssText)) {
|
||||
properties[m[1].trim()] = (m[2] || m[3]).trim();
|
||||
value = (m[2] || m[3]).trim();
|
||||
if (value !== 'inherit') {
|
||||
properties[m[1].trim()] = value;
|
||||
}
|
||||
any = true;
|
||||
}
|
||||
return any;
|
||||
@ -3346,11 +3442,16 @@ if (property.indexOf(';') >= 0) {
|
||||
property = this.valueForProperties(property, props);
|
||||
} else {
|
||||
var self = this;
|
||||
var fn = function (all, prefix, value, fallback) {
|
||||
var propertyValue = self.valueForProperty(props[value], props) || self.valueForProperty(props[fallback] || fallback, props) || fallback;
|
||||
return prefix + (propertyValue || '');
|
||||
var fn = function (prefix, value, fallback, suffix) {
|
||||
var propertyValue = self.valueForProperty(props[value], props);
|
||||
if (!propertyValue || propertyValue === 'initial') {
|
||||
propertyValue = self.valueForProperty(props[fallback] || fallback, props) || fallback;
|
||||
} else if (propertyValue === 'apply-shim-inherit') {
|
||||
propertyValue = 'inherit';
|
||||
}
|
||||
return prefix + (propertyValue || '') + suffix;
|
||||
};
|
||||
property = property.replace(this.rx.VAR_MATCH, fn);
|
||||
property = styleUtil.processVariableAndFallback(property, fn);
|
||||
}
|
||||
}
|
||||
return property && property.trim() || '';
|
||||
@ -3448,7 +3549,7 @@ var isRoot = parsedSelector === ':root';
|
||||
var isHost = parsedSelector.indexOf(':host') === 0;
|
||||
var cssBuild = scope.__cssBuild || style.__cssBuild;
|
||||
if (cssBuild === 'shady') {
|
||||
isRoot = parsedSelector === hostScope + '> *.' + hostScope || parsedSelector.indexOf('html') !== -1;
|
||||
isRoot = parsedSelector === hostScope + ' > *.' + hostScope || parsedSelector.indexOf('html') !== -1;
|
||||
isHost = !isRoot && parsedSelector.indexOf(hostScope) === 0;
|
||||
}
|
||||
if (cssBuild === 'shadow') {
|
||||
@ -3463,7 +3564,7 @@ if (isHost) {
|
||||
if (settings.useNativeShadow && !rule.transformedSelector) {
|
||||
rule.transformedSelector = styleTransformer._transformRuleCss(rule, styleTransformer._transformComplexSelector, scope.is, hostScope);
|
||||
}
|
||||
selectorToMatch = rule.transformedSelector || hostScope;
|
||||
selectorToMatch = rule.transformedSelector || rule.parsedSelector;
|
||||
}
|
||||
callback({
|
||||
selector: selectorToMatch,
|
||||
@ -3579,6 +3680,9 @@ style._useCount++;
|
||||
}
|
||||
element._customStyle = style;
|
||||
}
|
||||
if (IS_IE) {
|
||||
style.textContent = style.textContent;
|
||||
}
|
||||
return style;
|
||||
},
|
||||
mixinCustomStyle: function (props, customStyle) {
|
||||
@ -3591,14 +3695,20 @@ props[i] = v;
|
||||
}
|
||||
},
|
||||
updateNativeStyleProperties: function (element, properties) {
|
||||
for (var i = 0; i < element.style.length; i++) {
|
||||
element.style.removeProperty(element.style[i]);
|
||||
var oldPropertyNames = element.__customStyleProperties;
|
||||
if (oldPropertyNames) {
|
||||
for (var i = 0; i < oldPropertyNames.length; i++) {
|
||||
element.style.removeProperty(oldPropertyNames[i]);
|
||||
}
|
||||
}
|
||||
var propertyNames = [];
|
||||
for (var p in properties) {
|
||||
if (properties[p] !== null) {
|
||||
element.style.setProperty(p, properties[p]);
|
||||
propertyNames.push(p);
|
||||
}
|
||||
}
|
||||
element.__customStyleProperties = propertyNames;
|
||||
},
|
||||
rx: styleUtil.rx,
|
||||
XSCOPE_NAME: 'x-scope'
|
||||
@ -3732,6 +3842,23 @@ this._customStyle = null;
|
||||
_needsStyleProperties: function () {
|
||||
return Boolean(!nativeVariables && this._ownStylePropertyNames && this._ownStylePropertyNames.length);
|
||||
},
|
||||
_validateApplyShim: function () {
|
||||
if (this.__applyShimInvalid) {
|
||||
Polymer.ApplyShim.transform(this._styles, this.__proto__);
|
||||
var cssText = styleTransformer.elementStyles(this);
|
||||
if (nativeShadow) {
|
||||
var templateStyle = this._template.content.querySelector('style');
|
||||
if (templateStyle) {
|
||||
templateStyle.textContent = cssText;
|
||||
}
|
||||
} else {
|
||||
var shadyStyle = this._scopeStyle && this._scopeStyle.nextSibling;
|
||||
if (shadyStyle) {
|
||||
shadyStyle.textContent = cssText;
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
_beforeAttached: function () {
|
||||
if ((!this._scopeSelector || this.__stylePropertiesInvalid) && this._needsStyleProperties()) {
|
||||
this.__stylePropertiesInvalid = false;
|
||||
@ -3750,6 +3877,9 @@ return styleDefaults;
|
||||
},
|
||||
_updateStyleProperties: function () {
|
||||
var info, scope = this._findStyleHost();
|
||||
if (!scope._styleProperties) {
|
||||
scope._computeStyleProperties();
|
||||
}
|
||||
if (!scope._styleCache) {
|
||||
scope._styleCache = new Polymer.StyleCache();
|
||||
}
|
||||
@ -3909,6 +4039,7 @@ this._setupDebouncers();
|
||||
this._setupShady();
|
||||
this._registerHost();
|
||||
if (this._template) {
|
||||
this._validateApplyShim();
|
||||
this._poolContent();
|
||||
this._beginHosting();
|
||||
this._stampTemplate();
|
||||
@ -5101,7 +5232,7 @@ this._instance._showHideChildren(hidden);
|
||||
},
|
||||
_forwardParentProp: function (prop, value) {
|
||||
if (this._instance) {
|
||||
this._instance[prop] = value;
|
||||
this._instance.__setProperty(prop, value, true);
|
||||
}
|
||||
},
|
||||
_forwardParentPath: function (path, value) {
|
||||
@ -5157,6 +5288,8 @@ return this.dataHost._scopeElementClass(element, selector);
|
||||
return selector;
|
||||
}
|
||||
},
|
||||
_configureInstanceProperties: function () {
|
||||
},
|
||||
_prepConfigure: function () {
|
||||
var config = {};
|
||||
for (var prop in this._propertyEffects) {
|
||||
@ -5219,8 +5352,6 @@ this.fire('dom-change');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -56,21 +56,29 @@
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top : 100%;
|
||||
/* Above everything, except for the video player and popup overlays */
|
||||
z-index: 1097;
|
||||
color: #fff;
|
||||
background-color: #1C1C1F;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
box-shadow: 0 -2px 2px 0 rgba(0,0,0,.14),-1px 5px 1px rgba(0,0,0,.12);
|
||||
will-change: transform;
|
||||
contain: layout style;
|
||||
height: 100%;
|
||||
transform: translateY(-70px);
|
||||
}
|
||||
|
||||
.hiddenNowPlayingBar .nowPlayingBar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.nowPlayingBarTop {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.mediaButton, .nowPlayingBarUserDataButtons .btnUserItemRating {
|
||||
vertical-align: middle;
|
||||
color: #e8e8e8;
|
||||
@ -100,7 +108,7 @@
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.nowPlayingBar, .nowPlayingImage img {
|
||||
.nowPlayingImage img {
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ h1, h1 a {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.cardImage {
|
||||
.cardImageContainer {
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
define(['datetime', 'userdataButtons', 'itemHelper', 'paper-icon-button-light'], function (datetime, userdataButtons, itemHelper) {
|
||||
define(['datetime', 'userdataButtons', 'itemHelper', 'events', 'browser', 'paper-icon-button-light'], function (datetime, userdataButtons, itemHelper, events, browser) {
|
||||
|
||||
var currentPlayer;
|
||||
|
||||
@ -24,6 +24,7 @@
|
||||
|
||||
html += '<div class="nowPlayingBar hide">';
|
||||
|
||||
html += '<div class="nowPlayingBarTop">';
|
||||
html += '<div class="nowPlayingBarPositionContainer sliderContainer">';
|
||||
html += '<input type="range" is="emby-slider" pin step=".1" min="0" max="100" value="0" class="nowPlayingBarPositionSlider"/>';
|
||||
html += '</div>';
|
||||
@ -66,6 +67,7 @@
|
||||
html += '<button is="paper-icon-button-light" class="remoteControlButton mediaButton autoSize"><i class="md-icon">tablet_android</i></button>';
|
||||
html += '<button is="paper-icon-button-light" class="playlistButton mediaButton autoSize"><i class="md-icon">queue_music</i></button>';
|
||||
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
html += '</div>';
|
||||
@ -73,17 +75,7 @@
|
||||
return html;
|
||||
}
|
||||
|
||||
var height;
|
||||
|
||||
function getHeight(elem) {
|
||||
|
||||
if (!height) {
|
||||
height = elem.offsetHeight;
|
||||
}
|
||||
|
||||
return height + 'px';
|
||||
}
|
||||
|
||||
var translateY = '-70px';
|
||||
function slideDown(elem) {
|
||||
|
||||
if (elem.classList.contains('hide')) {
|
||||
@ -94,15 +86,15 @@
|
||||
elem.classList.add('hide');
|
||||
};
|
||||
|
||||
if (!browserInfo.animate || browserInfo.mobile) {
|
||||
if (!browser.animate || browser.mobile) {
|
||||
onfinish();
|
||||
return;
|
||||
}
|
||||
|
||||
requestAnimationFrame(function () {
|
||||
var keyframes = [
|
||||
{ height: getHeight(elem), offset: 0 },
|
||||
{ height: '0', display: 'none', offset: 1 }];
|
||||
{ transform: 'translateY(' + translateY + ')', offset: 0 },
|
||||
{ transform: 'none', offset: 1 }];
|
||||
var timing = { duration: 200, iterations: 1, fill: 'both', easing: 'ease-out' };
|
||||
elem.animate(keyframes, timing).onfinish = onfinish;
|
||||
});
|
||||
@ -116,15 +108,37 @@
|
||||
|
||||
elem.classList.remove('hide');
|
||||
|
||||
if (!browserInfo.animate || browserInfo.mobile) {
|
||||
if (!browser.animate || browser.mobile) {
|
||||
return;
|
||||
}
|
||||
|
||||
requestAnimationFrame(function () {
|
||||
|
||||
var keyframes = [
|
||||
{ height: '0', offset: 0 },
|
||||
{ height: getHeight(elem), offset: 1 }];
|
||||
{ transform: 'none', offset: 0 },
|
||||
{ transform: 'translateY(' + translateY + ')', offset: 1 }];
|
||||
var timing = { duration: 200, iterations: 1, fill: 'both', easing: 'ease-out' };
|
||||
elem.animate(keyframes, timing);
|
||||
});
|
||||
}
|
||||
|
||||
function slideUpToFullScreen(elem) {
|
||||
|
||||
if (!elem.classList.contains('hide')) {
|
||||
return;
|
||||
}
|
||||
|
||||
elem.classList.remove('hide');
|
||||
|
||||
if (!browser.animate || browser.mobile) {
|
||||
return;
|
||||
}
|
||||
|
||||
requestAnimationFrame(function () {
|
||||
|
||||
var keyframes = [
|
||||
{ transform: 'none', offset: 0 },
|
||||
{ transform: 'translateY(-100%)', offset: 1 }];
|
||||
var timing = { duration: 200, iterations: 1, fill: 'both', easing: 'ease-out' };
|
||||
elem.animate(keyframes, timing);
|
||||
});
|
||||
@ -306,7 +320,7 @@
|
||||
document.body.insertAdjacentHTML('beforeend', getNowPlayingBarHtml());
|
||||
nowPlayingBarElement = document.querySelector('.nowPlayingBar');
|
||||
|
||||
if (browserInfo.safari && browserInfo.mobile) {
|
||||
if (browser.safari && browser.mobile) {
|
||||
// Not handled well here. The wrong elements receive events, bar doesn't update quickly enough, etc.
|
||||
nowPlayingBarElement.classList.add('noMediaProgress');
|
||||
}
|
||||
@ -532,7 +546,7 @@
|
||||
}).join('');
|
||||
|
||||
var url;
|
||||
var imgHeight = 80;
|
||||
var imgHeight = 70;
|
||||
|
||||
var nowPlayingItem = state.NowPlayingItem;
|
||||
|
||||
@ -646,11 +660,11 @@
|
||||
|
||||
if (currentPlayer) {
|
||||
|
||||
Events.off(currentPlayer, 'playbackstart', onPlaybackStart);
|
||||
Events.off(currentPlayer, 'playbackstop', onPlaybackStopped);
|
||||
Events.off(currentPlayer, 'volumechange', onVolumeChanged);
|
||||
Events.off(currentPlayer, 'playstatechange', onStateChanged);
|
||||
Events.off(currentPlayer, 'positionchange', onStateChanged);
|
||||
events.off(currentPlayer, 'playbackstart', onPlaybackStart);
|
||||
events.off(currentPlayer, 'playbackstop', onPlaybackStopped);
|
||||
events.off(currentPlayer, 'volumechange', onVolumeChanged);
|
||||
events.off(currentPlayer, 'playstatechange', onStateChanged);
|
||||
events.off(currentPlayer, 'positionchange', onStateChanged);
|
||||
|
||||
currentPlayer.endPlayerUpdates();
|
||||
currentPlayer = null;
|
||||
@ -690,14 +704,14 @@
|
||||
onStateChanged.call(player, { type: 'init' }, state);
|
||||
});
|
||||
|
||||
Events.on(player, 'playbackstart', onPlaybackStart);
|
||||
Events.on(player, 'playbackstop', onPlaybackStopped);
|
||||
Events.on(player, 'volumechange', onVolumeChanged);
|
||||
Events.on(player, 'playstatechange', onStateChanged);
|
||||
Events.on(player, 'positionchange', onStateChanged);
|
||||
events.on(player, 'playbackstart', onPlaybackStart);
|
||||
events.on(player, 'playbackstop', onPlaybackStopped);
|
||||
events.on(player, 'volumechange', onVolumeChanged);
|
||||
events.on(player, 'playstatechange', onStateChanged);
|
||||
events.on(player, 'positionchange', onStateChanged);
|
||||
}
|
||||
|
||||
Events.on(MediaController, 'playerchange', function () {
|
||||
events.on(MediaController, 'playerchange', function () {
|
||||
|
||||
bindToPlayer(MediaController.getCurrentPlayer());
|
||||
});
|
||||
|
@ -1382,13 +1382,17 @@ var AppInfo = {};
|
||||
|
||||
paths.hlsjs = bowerPath + "/hls.js/dist/hls.min";
|
||||
|
||||
if ((window.chrome && window.chrome.sockets) || Dashboard.isRunningInCordova()) {
|
||||
paths.serverdiscovery = apiClientBowerPath + "/serverdiscovery-chrome";
|
||||
} else {
|
||||
paths.serverdiscovery = apiClientBowerPath + "/serverdiscovery";
|
||||
}
|
||||
|
||||
if (Dashboard.isRunningInCordova()) {
|
||||
paths.sharingMenu = "cordova/sharingwidget";
|
||||
paths.serverdiscovery = "cordova/serverdiscovery";
|
||||
paths.wakeonlan = "cordova/wakeonlan";
|
||||
paths.actionsheet = "cordova/actionsheet";
|
||||
} else {
|
||||
paths.serverdiscovery = apiClientBowerPath + "/serverdiscovery";
|
||||
paths.wakeonlan = apiClientBowerPath + "/wakeonlan";
|
||||
|
||||
define("sharingMenu", [embyWebComponentsBowerPath + "/sharing/sharingmenu"], returnFirstDependency);
|
||||
|
Loading…
Reference in New Issue
Block a user