mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update translations
This commit is contained in:
parent
b70aa4926c
commit
e334a86a01
97 changed files with 2414 additions and 1218 deletions
|
@ -8,12 +8,12 @@
|
|||
|
||||
<div class="libraryViewNav scopedLibraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="new-releases"></iron-icon>${TabLatest}</paper-tab>
|
||||
<paper-tab><iron-icon icon="live-tv"></iron-icon>${TabChannels}</paper-tab>
|
||||
<paper-tab>${TabLatest}</paper-tab>
|
||||
<paper-tab>${TabChannels}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs">
|
||||
<a href="channels.html"><iron-icon icon="new-releases"></iron-icon>${TabLatest}</a>
|
||||
<a href="channels.html?tab=1"><iron-icon icon="live-tv"></iron-icon>${TabChannels}</a>
|
||||
<a href="channels.html">${TabLatest}</a>
|
||||
<a href="channels.html?tab=1">${TabChannels}</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ehsContent fullWidth">
|
||||
|
|
133
dashboard-ui/cordova/ios/tabbar.js
vendored
Normal file
133
dashboard-ui/cordova/ios/tabbar.js
vendored
Normal file
|
@ -0,0 +1,133 @@
|
|||
(function () {
|
||||
|
||||
var initComplete = false;
|
||||
var ignoreNextSelection = false;
|
||||
|
||||
function onTabSelected(name) {
|
||||
|
||||
if (ignoreNextSelection) {
|
||||
ignoreNextSelection = false;
|
||||
return;
|
||||
}
|
||||
|
||||
switch (name) {
|
||||
case 'Featured':
|
||||
Dashboard.navigate('index.html');
|
||||
break;
|
||||
case 'Library':
|
||||
Dashboard.navigate('index.html');
|
||||
break;
|
||||
case 'Search':
|
||||
Dashboard.navigate('index.html');
|
||||
break;
|
||||
case 'NowPlaying':
|
||||
Dashboard.navigate('nowplaying.html');
|
||||
break;
|
||||
case 'Sync':
|
||||
Dashboard.navigate('mysync.html');
|
||||
break;
|
||||
case 'Settings':
|
||||
Dashboard.navigate('mypreferencesmenu.html?userId=' + Dashboard.getCurrentUserId());
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
|
||||
// Use system defined items for this demo
|
||||
// If an image is passed, label is not used
|
||||
|
||||
/**
|
||||
* Create a new tab bar item for use on a previously created tab bar. Use ::showTabBarItems to show the new item on the tab bar.
|
||||
*
|
||||
* If the supplied image name is one of the labels listed below, then this method will construct a tab button
|
||||
* using the standard system buttons. Note that if you use one of the system images, that the \c title you supply will be ignored.
|
||||
* - <b>Tab Buttons</b>
|
||||
* - tabButton:More
|
||||
* - tabButton:Favorites
|
||||
* - tabButton:Featured
|
||||
* - tabButton:TopRated
|
||||
* - tabButton:Recents
|
||||
* - tabButton:Contacts
|
||||
* - tabButton:History
|
||||
* - tabButton:Bookmarks
|
||||
* - tabButton:Search
|
||||
* - tabButton:Downloads
|
||||
* - tabButton:MostRecent
|
||||
* - tabButton:MostViewed
|
||||
* @brief create a tab bar item
|
||||
* @param arguments Parameters used to create the tab bar
|
||||
* -# \c name internal name to refer to this tab by
|
||||
* -# \c title title text to show on the tab, or null if no text should be shown
|
||||
* -# \c image image filename or internal identifier to show, or null if now image should be shown
|
||||
* -# \c tag unique number to be used as an internal reference to this button
|
||||
* @param options Options for customizing the individual tab item
|
||||
* - \c badge value to display in the optional circular badge on the item; if nil or unspecified, the badge will be hidden
|
||||
*/
|
||||
|
||||
var items = [
|
||||
{ name: 'Featured', label: Globalize.translate('ButtonForYou'), image: 'tabButton:Featured', options: {} },
|
||||
{ name: 'Library', label: Globalize.translate('ButtonLibrary'), image: 'tabButton:History', options: {} },
|
||||
{ name: 'Search', label: Globalize.translate('ButtonSearch'), image: 'tabButton:Search', options: {} },
|
||||
{ name: 'NowPlaying', label: Globalize.translate('ButtonNowPlaying'), image: 'tabButton:MostViewed', options: {} },
|
||||
{ name: 'Sync', label: Globalize.translate('ButtonSync'), image: 'tabButton:Downloads', options: {} },
|
||||
{ name: 'Settings', label: Globalize.translate('ButtonSettings'), image: 'tabButton:More', options: {} }
|
||||
];
|
||||
|
||||
for (var i = 0; i < items.length; i++) {
|
||||
var item = items[i];
|
||||
var options = item.options;
|
||||
// set the function to invoke when the item is selected
|
||||
options.onSelect = onTabSelected;
|
||||
TabBar.createItem(item.name, item.label, item.image, item.options);
|
||||
};
|
||||
|
||||
TabBar.showItems();
|
||||
initComplete = true;
|
||||
showTabs();
|
||||
|
||||
ignoreNextSelection = true;
|
||||
TabBar.selectItem('Featured');
|
||||
}
|
||||
|
||||
function showTabs() {
|
||||
|
||||
if (!initComplete) {
|
||||
return;
|
||||
}
|
||||
|
||||
TabBar.show();
|
||||
}
|
||||
|
||||
function hideTabs() {
|
||||
|
||||
if (!initComplete) {
|
||||
return;
|
||||
}
|
||||
|
||||
TabBar.hide();
|
||||
}
|
||||
|
||||
Dashboard.ready(function () {
|
||||
|
||||
init();
|
||||
|
||||
Events.on(ConnectionManager, 'localusersignedin', showTabs);
|
||||
Events.on(ConnectionManager, 'localusersignedout', hideTabs);
|
||||
});
|
||||
|
||||
pageClassOn('pageshowready', "page", function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
if (page.classList.contains('libraryPage')) {
|
||||
showTabs();
|
||||
}
|
||||
else {
|
||||
hideTabs();
|
||||
}
|
||||
});
|
||||
|
||||
})();
|
|
@ -807,7 +807,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
@media all and (max-height: 900px), (max-width: 800px) {
|
||||
|
||||
.itemBackdrop:not(.noBackdrop) {
|
||||
height: 550px;
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
.smallBackdrop:not(.noBackdrop) {
|
||||
|
@ -1212,10 +1212,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
line-height: 1;
|
||||
}
|
||||
|
||||
.bottomSecondaryNav .alphabetPicker {
|
||||
bottom: 55px;
|
||||
}
|
||||
|
||||
.alphabetPicker a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
|
@ -1239,10 +1235,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
|||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.selectionCommands {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.itemSelectionPanel {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
|
|
|
@ -214,11 +214,6 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.bottomSecondaryNav .libraryViewNav {
|
||||
top: initial;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.libraryViewNav::-webkit-scrollbar {
|
||||
height: 0 !important;
|
||||
display: none;
|
||||
|
@ -282,6 +277,28 @@
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.libraryViewNav #tabsContainer {
|
||||
margin: auto;
|
||||
-ms-flex: none;
|
||||
-webkit-flex: none;
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tabs {
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
overflow-x: visible !important;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tab {
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.basicPaperLibraryTabs .libraryViewNav paper-tabs {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -15,20 +15,11 @@
|
|||
position: static;
|
||||
}
|
||||
|
||||
.bottomSecondaryNav .tvGuideHeader {
|
||||
top: 48px;
|
||||
}
|
||||
|
||||
.tvGuideHeader.headroom--unpinned {
|
||||
-webkit-transform: translateY(-98px);
|
||||
transform: translateY(-98px);
|
||||
}
|
||||
|
||||
.bottomSecondaryNav .tvGuideHeader.headroom--unpinned {
|
||||
-webkit-transform: translateY(-48px);
|
||||
transform: translateY(-48px);
|
||||
}
|
||||
|
||||
.tvProgramSectionHeader {
|
||||
margin: 0;
|
||||
}
|
||||
|
|
|
@ -8,16 +8,16 @@
|
|||
|
||||
<div class="libraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="home"></iron-icon>${TabHome}</paper-tab>
|
||||
<paper-tab><iron-icon icon="navigate-next"></iron-icon>${TabNextUp}</paper-tab>
|
||||
<paper-tab><iron-icon icon="favorite"></iron-icon>${TabFavorites}</paper-tab>
|
||||
<paper-tab><iron-icon icon="schedule"></iron-icon>${TabUpcoming}</paper-tab>
|
||||
<paper-tab>${TabHome}</paper-tab>
|
||||
<paper-tab>${TabNextUp}</paper-tab>
|
||||
<paper-tab>${TabFavorites}</paper-tab>
|
||||
<paper-tab>${TabUpcoming}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs">
|
||||
<a href="index.html"><iron-icon icon="home"></iron-icon>${TabHome}</a>
|
||||
<a href="index.html?tab=1"><iron-icon icon="navigate-next"></iron-icon>${TabNextUp}</a>
|
||||
<a href="index.html?tab=2"><iron-icon icon="favorite"></iron-icon>${TabFavorites}</a>
|
||||
<a href="index.html?tab=3"><iron-icon icon="schedule"></iron-icon>${TabUpcoming}</a>
|
||||
<a href="index.html">${TabHome}</a>
|
||||
<a href="index.html?tab=1">${TabNextUp}</a>
|
||||
<a href="index.html?tab=2">${TabFavorites}</a>
|
||||
<a href="index.html?tab=3">${TabUpcoming}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -8,20 +8,20 @@
|
|||
|
||||
<div class="libraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons>
|
||||
<paper-tab><iron-icon icon="info"></iron-icon>${TabSuggestions}</paper-tab>
|
||||
<paper-tab><iron-icon icon="grid-on"></iron-icon>${TabGuide}</paper-tab>
|
||||
<paper-tab><iron-icon icon="live-tv"></iron-icon>${TabChannels}</paper-tab>
|
||||
<paper-tab><iron-icon icon="slideshow"></iron-icon>${TabRecordings}</paper-tab>
|
||||
<paper-tab><iron-icon icon="schedule"></iron-icon>${TabScheduled}</paper-tab>
|
||||
<paper-tab><iron-icon icon="refresh"></iron-icon>${TabSeries}</paper-tab>
|
||||
<paper-tab>${TabSuggestions}</paper-tab>
|
||||
<paper-tab>${TabGuide}</paper-tab>
|
||||
<paper-tab>${TabChannels}</paper-tab>
|
||||
<paper-tab>${TabRecordings}</paper-tab>
|
||||
<paper-tab>${TabScheduled}</paper-tab>
|
||||
<paper-tab>${TabSeries}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs">
|
||||
<a href="livetv.html"><iron-icon icon="info"></iron-icon>${TabSuggestions}</a>
|
||||
<a href="livetv.html?tab=1"><iron-icon icon="grid-on"></iron-icon>${TabGuide}</a>
|
||||
<a href="livetv.html?tab=2"><iron-icon icon="live-tv"></iron-icon>${TabChannels}</a>
|
||||
<a href="livetv.html?tab=3"><iron-icon icon="slideshow"></iron-icon>${TabRecordings}</a>
|
||||
<a href="livetv.html?tab=4"><iron-icon icon="schedule"></iron-icon>${TabScheduled}</a>
|
||||
<a href="livetv.html?tab=5"><iron-icon icon="refresh"></iron-icon>${TabSeries}</a>
|
||||
<a href="livetv.html">${TabSuggestions}</a>
|
||||
<a href="livetv.html?tab=1">${TabGuide}</a>
|
||||
<a href="livetv.html?tab=2">${TabChannels}</a>
|
||||
<a href="livetv.html?tab=3">${TabRecordings}</a>
|
||||
<a href="livetv.html?tab=4">${TabScheduled}</a>
|
||||
<a href="livetv.html?tab=5">${TabSeries}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -8,22 +8,22 @@
|
|||
|
||||
<div class="libraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="info"></iron-icon>${TabSuggestions}</paper-tab>
|
||||
<paper-tab><iron-icon icon="local-movies"></iron-icon>${TabMovies}</paper-tab>
|
||||
<paper-tab class="movieTrailersTab"><iron-icon icon="movie"></iron-icon>${TabTrailers}</paper-tab>
|
||||
<paper-tab><iron-icon icon="video-library"></iron-icon>${TabCollections}</paper-tab>
|
||||
<paper-tab><iron-icon icon="video-library"></iron-icon>${TabGenres}</paper-tab>
|
||||
<paper-tab class="moviePeopleTab"><iron-icon icon="people"></iron-icon>${TabPeople}</paper-tab>
|
||||
<paper-tab class="movieStudiosTab"><iron-icon icon="account-box"></iron-icon>${TabStudios}</paper-tab>
|
||||
<paper-tab>${TabSuggestions}</paper-tab>
|
||||
<paper-tab>${TabMovies}</paper-tab>
|
||||
<paper-tab class="movieTrailersTab">${TabTrailers}</paper-tab>
|
||||
<paper-tab>${TabCollections}</paper-tab>
|
||||
<paper-tab>${TabGenres}</paper-tab>
|
||||
<paper-tab class="moviePeopleTab">${TabPeople}</paper-tab>
|
||||
<paper-tab class="movieStudiosTab">${TabStudios}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs scopedLibraryViewNav">
|
||||
<a href="movies.html"><iron-icon icon="info"></iron-icon>${TabSuggestions}</a>
|
||||
<a href="movies.html?tab=1"><iron-icon icon="local-movies"></iron-icon>${TabMovies}</a>
|
||||
<a href="movies.html?tab=2" class="movieTrailersTab"><iron-icon icon="movie"></iron-icon>${TabTrailers}</a>
|
||||
<a href="movies.html?tab=3"><iron-icon icon="video-library"></iron-icon>${TabCollections}</a>
|
||||
<a href="movies.html?tab=4"><iron-icon icon="video-library"></iron-icon>${TabGenres}</a>
|
||||
<a href="movies.html?tab=5" class="moviePeopleTab"><iron-icon icon="people"></iron-icon>${TabPeople}</a>
|
||||
<a href="movies.html?tab=6" class="movieStudiosTab"><iron-icon icon="account-box"></iron-icon>${TabStudios}</a>
|
||||
<a href="movies.html">${TabSuggestions}</a>
|
||||
<a href="movies.html?tab=1">${TabMovies}</a>
|
||||
<a href="movies.html?tab=2" class="movieTrailersTab">${TabTrailers}</a>
|
||||
<a href="movies.html?tab=3">${TabCollections}</a>
|
||||
<a href="movies.html?tab=4">${TabGenres}</a>
|
||||
<a href="movies.html?tab=5" class="moviePeopleTab">${TabPeople}</a>
|
||||
<a href="movies.html?tab=6" class="movieStudiosTab">${TabStudios}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -66,15 +66,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnMergeVersions" data-mini="true" data-icon="recycle" data-inline="true" title="${ButtonGroupVersions}">${ButtonGroupVersions}</button>
|
||||
<button class="btnAddToCollection" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToCollection}">${ButtonAddToCollection}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="itemsContainer" style="text-align:center;"></div>
|
||||
</div>
|
||||
|
|
|
@ -7,20 +7,20 @@
|
|||
<div id="musicRecommendedPage" data-dom-cache="true" data-role="page" class="page libraryPage backdropPage pageWithAbsoluteTabs" data-backdroptype="musicartist" data-require="jqmpanel,jqmcollapsible,scripts/musicrecommended">
|
||||
<div class="libraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="info"></iron-icon>${TabSuggestions}</paper-tab>
|
||||
<paper-tab><iron-icon icon="album"></iron-icon>${TabAlbums}</paper-tab>
|
||||
<paper-tab><iron-icon icon="music-note"></iron-icon>${TabAlbumArtists}</paper-tab>
|
||||
<paper-tab><iron-icon icon="music-note"></iron-icon>${TabArtists}</paper-tab>
|
||||
<paper-tab><iron-icon icon="music-note"></iron-icon>${TabSongs}</paper-tab>
|
||||
<paper-tab><iron-icon icon="library-music"></iron-icon>${TabGenres}</paper-tab>
|
||||
<paper-tab>${TabSuggestions}</paper-tab>
|
||||
<paper-tab>${TabAlbums}</paper-tab>
|
||||
<paper-tab>${TabAlbumArtists}</paper-tab>
|
||||
<paper-tab>${TabArtists}</paper-tab>
|
||||
<paper-tab>${TabSongs}</paper-tab>
|
||||
<paper-tab>${TabGenres}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs scopedLibraryViewNav">
|
||||
<a href="music.html"><iron-icon icon="info"></iron-icon>${TabSuggestions}</a>
|
||||
<a href="music.html?tab=1"><iron-icon icon="album"></iron-icon>${TabAlbums}</a>
|
||||
<a href="music.html?tab=2"><iron-icon icon="music-note"></iron-icon>${TabAlbumArtists}</a>
|
||||
<a href="music.html?tab=3"><iron-icon icon="music-note"></iron-icon>${TabArtists}</a>
|
||||
<a href="music.html?tab=4"><iron-icon icon="music-note"></iron-icon>${TabSongs}</a>
|
||||
<a href="music.html?tab=5"><iron-icon icon="library-music"></iron-icon>${TabGenres}</a>
|
||||
<a href="music.html">${TabSuggestions}</a>
|
||||
<a href="music.html?tab=1">${TabAlbums}</a>
|
||||
<a href="music.html?tab=2">${TabAlbumArtists}</a>
|
||||
<a href="music.html?tab=3">${TabArtists}</a>
|
||||
<a href="music.html?tab=4">${TabSongs}</a>
|
||||
<a href="music.html?tab=5">${TabGenres}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -65,12 +65,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="items" class="itemsContainer paddedItemsContainer"></div>
|
||||
</div>
|
||||
|
@ -82,12 +76,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="items" class="itemsContainer paddedItemsContainer" style="text-align:center;"></div>
|
||||
</div>
|
||||
|
@ -99,12 +87,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="items" class="itemsContainer paddedItemsContainer" style="text-align:center;"></div>
|
||||
</div>
|
||||
|
@ -123,12 +105,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="items" class="itemsContainer paddedItemsContainer"></div>
|
||||
</div>
|
||||
|
|
|
@ -8,14 +8,14 @@
|
|||
|
||||
<div class="libraryViewNav scopedLibraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="photo-album"></iron-icon>${TabAlbums}</paper-tab>
|
||||
<paper-tab><iron-icon icon="photo"></iron-icon>${TabPhotos}</paper-tab>
|
||||
<paper-tab><iron-icon icon="videocam"></iron-icon>${TabVideos}</paper-tab>
|
||||
<paper-tab>${TabAlbums}</paper-tab>
|
||||
<paper-tab>${TabPhotos}</paper-tab>
|
||||
<paper-tab>${TabVideos}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs">
|
||||
<a href="photos.html" class="lnkPhotoAlbums"><iron-icon icon="photo-album"></iron-icon>${TabAlbums}</a>
|
||||
<a href="photos.html?tab=1" class="lnkPhotos"><iron-icon icon="photo"></iron-icon>${TabPhotos}</a>
|
||||
<a href="photos.html?tab=2" class="lnkVideos"><iron-icon icon="videocam"></iron-icon>${TabVideos}</a>
|
||||
<a href="photos.html" class="lnkPhotoAlbums">${TabAlbums}</a>
|
||||
<a href="photos.html?tab=1" class="lnkPhotos">${TabPhotos}</a>
|
||||
<a href="photos.html?tab=2" class="lnkVideos">${TabVideos}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -59,7 +59,6 @@
|
|||
totalRecordCount: result.TotalRecordCount,
|
||||
viewButton: true,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
viewPanelClass: 'episodesViewPanel',
|
||||
updatePageSizeSetting: false,
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -303,12 +303,7 @@
|
|||
|
||||
if (context == 'tv') {
|
||||
|
||||
if (AppInfo.enableBottomTabs) {
|
||||
$(page).addClass('noSecondaryNavPage');
|
||||
}
|
||||
else {
|
||||
$(page).removeClass('noSecondaryNavPage');
|
||||
}
|
||||
$(page).removeClass('noSecondaryNavPage');
|
||||
|
||||
$('#tvShowsTabs', page).show();
|
||||
LibraryMenu.setMenuButtonVisible(true);
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
},
|
||||
|
||||
enableFullPaperTabs: function () {
|
||||
return true;
|
||||
return AppInfo.isNativeApp;
|
||||
},
|
||||
|
||||
|
@ -2633,7 +2634,7 @@
|
|||
html += '</span>';
|
||||
}
|
||||
|
||||
if (showControls || options.viewButton || options.sortButton || options.addLayoutButton || options.addSelectionButton || options.additionalButtonsHtml) {
|
||||
if (showControls || options.viewButton || options.sortButton || options.addLayoutButton) {
|
||||
|
||||
html += '<div style="display:inline-block;margin-left:10px;">';
|
||||
|
||||
|
@ -2643,12 +2644,6 @@
|
|||
html += '<paper-icon-button class="btnNextPage" icon="arrow-forward" ' + (startIndex + limit >= totalRecordCount ? 'disabled' : '') + '></paper-icon-button>';
|
||||
}
|
||||
|
||||
html += (options.additionalButtonsHtml || '');
|
||||
|
||||
if (options.addSelectionButton) {
|
||||
html += '<paper-icon-button class="btnToggleSelections" icon="check"></paper-icon-button>';
|
||||
}
|
||||
|
||||
if (options.addLayoutButton) {
|
||||
|
||||
html += '<paper-icon-button title="' + Globalize.translate('ButtonSelectView') + '" class="btnChangeLayout" data-layouts="' + (options.layouts || '') + '" onclick="LibraryBrowser.showLayoutMenu(this, \'' + (options.currentLayout || '') + '\');" icon="view-comfy"></paper-icon-button>';
|
||||
|
|
|
@ -169,7 +169,7 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
function onCardTapHold(e) {
|
||||
function onContextMenu(e) {
|
||||
|
||||
var card = parentWithClass(e.target, 'card');
|
||||
|
||||
|
@ -945,9 +945,6 @@
|
|||
preventHover = true;
|
||||
}
|
||||
|
||||
this.off('contextmenu', onCardTapHold);
|
||||
this.on('contextmenu', onCardTapHold);
|
||||
|
||||
this.off('click', onGroupedCardClick);
|
||||
this.on('click', onGroupedCardClick);
|
||||
|
||||
|
@ -957,7 +954,14 @@
|
|||
this.off('click', onListViewPlayButtonClick);
|
||||
this.on('click', onListViewPlayButtonClick);
|
||||
|
||||
if (!AppInfo.isTouchPreferred) {
|
||||
if (AppInfo.isTouchPreferred) {
|
||||
this.off('contextmenu', disableEvent);
|
||||
this.on('contextmenu', disableEvent);
|
||||
}
|
||||
else {
|
||||
this.off('contextmenu', onContextMenu);
|
||||
this.on('contextmenu', onContextMenu);
|
||||
|
||||
this.off('mouseenter', '.card:not(.bannerCard) .cardContent', onHoverIn);
|
||||
this.on('mouseenter', '.card:not(.bannerCard) .cardContent', onHoverIn);
|
||||
|
||||
|
@ -968,9 +972,32 @@
|
|||
this.on("touchstart", '.card:not(.bannerCard) .cardContent', preventTouchHover);
|
||||
}
|
||||
|
||||
for (var i = 0, length = this.length; i < length; i++) {
|
||||
initTapHold(this[i]);
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
function disableEvent(e) {
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
function onTapHold(e) {
|
||||
onContextMenu(e);
|
||||
}
|
||||
|
||||
function initTapHold(element) {
|
||||
|
||||
require(['hammer'], function (Hammer) {
|
||||
|
||||
var hammertime = new Hammer(element);
|
||||
|
||||
hammertime.on('press', onTapHold);
|
||||
});
|
||||
}
|
||||
|
||||
function toggleSelections(page) {
|
||||
|
||||
Dashboard.showLoadingMsg();
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
|
||||
html += '<paper-icon-button icon="' + backIcon + '" class="headerButton headerButtonLeft headerBackButton hide"></paper-icon-button>';
|
||||
|
||||
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
|
||||
if (AppInfo.enableNavDrawer) {
|
||||
html += '<paper-icon-button icon="menu" class="headerButton mainDrawerButton barsMenuButton headerButtonLeft"></paper-icon-button>';
|
||||
}
|
||||
|
||||
html += '<div class="libraryMenuButtonText headerButton">' + Globalize.translate('ButtonHome') + '</div>';
|
||||
|
||||
|
@ -17,14 +19,16 @@
|
|||
html += '<span class="headerSelectedPlayer"></span>';
|
||||
html += '<paper-icon-button icon="cast" class="btnCast headerButton headerButtonRight hide"></paper-icon-button>';
|
||||
|
||||
html += '<paper-icon-button icon="search" class="headerButton headerButtonRight headerSearchButton hide" onclick="Search.showSearchPanel();"></paper-icon-button>';
|
||||
html += '<div class="viewMenuSearch hide">';
|
||||
html += '<form class="viewMenuSearchForm">';
|
||||
html += '<input type="text" data-role="none" data-type="search" class="headerSearchInput" autocomplete="off" spellcheck="off" />';
|
||||
html += '<iron-icon class="searchInputIcon" icon="search"></iron-icon>';
|
||||
html += '<paper-icon-button icon="close" class="btnCloseSearch"></paper-icon-button>';
|
||||
html += '</form>';
|
||||
html += '</div>';
|
||||
if (AppInfo.enableSearchInTopMenu) {
|
||||
html += '<paper-icon-button icon="search" class="headerButton headerButtonRight headerSearchButton hide" onclick="Search.showSearchPanel();"></paper-icon-button>';
|
||||
html += '<div class="viewMenuSearch hide">';
|
||||
html += '<form class="viewMenuSearchForm">';
|
||||
html += '<input type="text" data-role="none" data-type="search" class="headerSearchInput" autocomplete="off" spellcheck="off" />';
|
||||
html += '<iron-icon class="searchInputIcon" icon="search"></iron-icon>';
|
||||
html += '<paper-icon-button icon="close" class="btnCloseSearch"></paper-icon-button>';
|
||||
html += '</form>';
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
html += '<paper-icon-button icon="mic" class="headerButton headerButtonRight headerVoiceButton hide" onclick="VoiceInputManager.startListening();"></paper-icon-button>';
|
||||
|
||||
|
@ -67,9 +71,14 @@
|
|||
|
||||
var header = document.querySelector('.viewMenuBar');
|
||||
|
||||
var headerSearchButton = document.querySelector('.headerSearchButton')
|
||||
|
||||
if (user.localUser) {
|
||||
$('.btnCast', header).visible(true);
|
||||
document.querySelector('.headerSearchButton').classList.remove('hide');
|
||||
|
||||
if (headerSearchButton) {
|
||||
headerSearchButton.classList.remove('hide');
|
||||
}
|
||||
|
||||
requirejs(['voice/voice'], function () {
|
||||
|
||||
|
@ -84,7 +93,9 @@
|
|||
} else {
|
||||
$('.btnCast', header).visible(false);
|
||||
document.querySelector('.headerVoiceButton').classList.add('hide');
|
||||
document.querySelector('.headerSearchButton').classList.add('hide');
|
||||
if (headerSearchButton) {
|
||||
headerSearchButton.classList.add('hide');
|
||||
}
|
||||
}
|
||||
|
||||
var dashboardEntryHeaderButton = document.querySelector('.dashboardEntryHeaderButton');
|
||||
|
@ -867,22 +878,9 @@
|
|||
document.body.classList.remove('dashboardDocument');
|
||||
document.body.classList.remove('hideMainDrawer');
|
||||
|
||||
if (AppInfo.enableBottomTabs) {
|
||||
page.classList.add('noSecondaryNavPage');
|
||||
|
||||
if (page.classList.contains('pageWithAbsoluteTabs')) {
|
||||
document.querySelector('.footer').classList.add('footerOverBottomTabs');
|
||||
}
|
||||
else {
|
||||
document.querySelector('.footer').classList.remove('footerOverBottomTabs');
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
var navs = page.querySelectorAll('.libraryViewNav');
|
||||
for (var i = 0, length = navs.length; i < length; i++) {
|
||||
initHeadRoom(navs[i]);
|
||||
}
|
||||
var navs = page.querySelectorAll('.libraryViewNav');
|
||||
for (var i = 0, length = navs.length; i < length; i++) {
|
||||
initHeadRoom(navs[i]);
|
||||
}
|
||||
}
|
||||
else if (page.classList.contains('type-interior')) {
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
totalRecordCount: result.TotalRecordCount,
|
||||
viewButton: true,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
viewPanelClass: 'movieViewPanel',
|
||||
updatePageSizeSetting: false,
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
limit: query.Limit,
|
||||
totalRecordCount: result.TotalRecordCount,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
viewPanelClass: 'albumArtistsViewPanel',
|
||||
updatePageSizeSetting: false,
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -56,7 +56,6 @@
|
|||
totalRecordCount: result.TotalRecordCount,
|
||||
viewButton: true,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
sortButton: true,
|
||||
viewPanelClass: 'albumsViewPanel',
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
limit: query.Limit,
|
||||
totalRecordCount: result.TotalRecordCount,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
viewPanelClass: 'artistsViewPanel',
|
||||
updatePageSizeSetting: false,
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -327,8 +327,6 @@
|
|||
|
||||
var html = '';
|
||||
|
||||
var cardLayout = AppInfo.hasLowImageBandwidth;
|
||||
|
||||
if (result.Items.length) {
|
||||
html += '<h1 class="listHeader">' + Globalize.translate('HeaderResume') + '</h1>';
|
||||
if (enableScrollX()) {
|
||||
|
@ -340,14 +338,14 @@
|
|||
items: result.Items,
|
||||
preferThumb: true,
|
||||
shape: getThumbShape(),
|
||||
overlayText: screenWidth >= 800 && !cardLayout,
|
||||
overlayText: false,
|
||||
showTitle: true,
|
||||
showParentTitle: true,
|
||||
lazy: true,
|
||||
cardLayout: cardLayout,
|
||||
showDetailsMenu: true,
|
||||
overlayPlayButton: true,
|
||||
context: 'home'
|
||||
context: 'home',
|
||||
centerText: true
|
||||
});
|
||||
html += '</div>';
|
||||
}
|
||||
|
|
|
@ -1566,10 +1566,6 @@ var Dashboard = {
|
|||
|
||||
quality -= 10;
|
||||
|
||||
if (isBackdrop) {
|
||||
quality -= 15;
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
quality -= 40;
|
||||
|
@ -1726,6 +1722,8 @@ var AppInfo = {};
|
|||
AppInfo.enableDetailPageChapters = true;
|
||||
AppInfo.enableDetailsMenuImages = true;
|
||||
AppInfo.enableMovieHomeSuggestions = true;
|
||||
AppInfo.enableNavDrawer = true;
|
||||
AppInfo.enableSearchInTopMenu = true;
|
||||
|
||||
AppInfo.enableAppStorePolicy = isCordova;
|
||||
|
||||
|
@ -1740,8 +1738,9 @@ var AppInfo = {};
|
|||
}
|
||||
|
||||
if (isCordova) {
|
||||
AppInfo.enableBottomTabs = true;
|
||||
//AppInfo.enableSectionTransitions = true;
|
||||
AppInfo.enableNavDrawer = false;
|
||||
AppInfo.enableSearchInTopMenu = false;
|
||||
|
||||
} else {
|
||||
if (isMobile) {
|
||||
|
@ -1884,10 +1883,6 @@ var AppInfo = {};
|
|||
|
||||
var elem = document.documentElement;
|
||||
|
||||
if (AppInfo.enableBottomTabs) {
|
||||
elem.classList.add('bottomSecondaryNav');
|
||||
}
|
||||
|
||||
if (AppInfo.isTouchPreferred) {
|
||||
elem.classList.add('touch');
|
||||
}
|
||||
|
@ -1932,6 +1927,7 @@ var AppInfo = {};
|
|||
Dashboard.importCss('themes/ios.css');
|
||||
}
|
||||
}
|
||||
Dashboard.importCss('themes/ios.css');
|
||||
|
||||
if ($.browser.msie && $.browser.tv && ($.browser.version || 11) <= 10) {
|
||||
Dashboard.importCss('thirdparty/paper-ie10.css');
|
||||
|
@ -2191,7 +2187,7 @@ var AppInfo = {};
|
|||
|
||||
drawer.drawerWidth = drawerWidth + "px";
|
||||
|
||||
if ($.browser.safari && !AppInfo.isNativeApp) {
|
||||
if ($.browser.safari) {
|
||||
drawer.disableEdgeSwipe = true;
|
||||
}
|
||||
|
||||
|
@ -2284,16 +2280,21 @@ var AppInfo = {};
|
|||
|
||||
function onAppReady(deferred) {
|
||||
onDocumentReady();
|
||||
Dashboard.initPromiseDone = true;
|
||||
$.mobile.initializePage();
|
||||
deferred.resolve();
|
||||
|
||||
if (AppInfo.isNativeApp && !$.browser.android) {
|
||||
require(['localsync']);
|
||||
}
|
||||
var deps = [];
|
||||
|
||||
if (AppInfo.isNativeApp && $.browser.safari) {
|
||||
require(['cordova/ios/backgroundfetch']);
|
||||
deps.push('cordova/ios/backgroundfetch');
|
||||
deps.push('cordova/ios/tabbar');
|
||||
deps.push('localsync');
|
||||
}
|
||||
|
||||
require(deps, function () {
|
||||
|
||||
Dashboard.initPromiseDone = true;
|
||||
$.mobile.initializePage();
|
||||
deferred.resolve();
|
||||
});
|
||||
//require(['localsync']);
|
||||
}
|
||||
|
||||
|
|
|
@ -59,7 +59,6 @@
|
|||
totalRecordCount: result.TotalRecordCount,
|
||||
viewButton: true,
|
||||
showLimit: false,
|
||||
addSelectionButton: true,
|
||||
viewPanelClass: 'seriesViewPanel',
|
||||
updatePageSizeSetting: false,
|
||||
addLayoutButton: true,
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u0649",
|
||||
"LabelYoureDone": "\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a. \u0644\u0644\u0628\u062f\u0621, \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0644\u063a\u062a\u0643 \u0627\u0644\u0645\u0641\u0636\u0644\u0629.",
|
||||
"TellUsAboutYourself": "\u0627\u062e\u0628\u0631\u0646\u0627 \u0639\u0646 \u0646\u0641\u0633\u0643",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u0649",
|
||||
"OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u0649",
|
||||
"OptionRuntime": "\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"OptionDatePlayed": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"OptionDateAdded": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
|
||||
"LabelYoureDone": "\u0413\u043e\u0442\u043e\u0432\u0438 \u0441\u0442\u0435!",
|
||||
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "\u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 Emby!",
|
||||
"ThisWizardWillGuideYou": "\u0422\u043e\u0437\u0438 \u043c\u0430\u0433\u044c\u043e\u0441\u043d\u0438\u043a \u0449\u0435 \u0432\u0438 \u043d\u0430\u043f\u044a\u0442\u0441\u0442\u0432\u0430 \u043f\u0440\u0435\u0437 \u043f\u0440\u043e\u0446\u0435\u0441\u0430 \u043d\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f. \u0417\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435, \u043c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u043e\u0442 \u0432\u0430\u0441 \u0435\u0437\u0438\u043a.",
|
||||
"TellUsAboutYourself": "\u0420\u0430\u0437\u043a\u0430\u0436\u0435\u0442\u0435 \u0437\u0430 \u0441\u0435\u0431\u0435 \u0441\u0438",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0444\u0438\u043b\u043c\u043e\u0432\u0438 \u0434\u0438\u0441\u043f\u043b\u0435\u0438",
|
||||
"LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f, \u0444\u0438\u043b\u043c\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0430\u043f\u043a\u0438, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u0438 \u0442\u0440\u0435\u0439\u043b\u044a\u0440\u0438, \u0435\u043a\u0441\u0442\u0440\u0438, \u0430\u043a\u0442\u044c\u043e\u0440\u0438\u0442\u0435, \u0435\u043a\u0438\u043f\u0430, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0440\u0443\u0433\u043e \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.",
|
||||
"HeaderSyncJobInfo": "\u0421\u0438\u043d\u0445\u0440. \u0417\u0430\u0434\u0430\u0447\u0430",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438",
|
||||
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
|
||||
"FolderTypeAdultVideos": "\u041a\u043b\u0438\u043f\u043e\u0432\u0435 \u0437\u0430 \u0432\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449",
|
||||
"OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449",
|
||||
"OptionRuntime": "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435",
|
||||
"OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f",
|
||||
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435",
|
||||
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438",
|
||||
"ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438",
|
||||
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0439 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435",
|
||||
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430",
|
||||
"PismoMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Pismo File Mount \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
|
||||
"TangibleSoftwareMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Tangible Solutions Java\/C# converters \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
|
||||
"HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u0415\u043a\u0438\u043f",
|
||||
"HeaderAdditionalParts": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u0427\u0430\u0441\u0442\u0438",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -514,64 +522,64 @@
|
|||
"OptionHighSpeedTranscodingHelp": "Lower quality, but faster encoding",
|
||||
"OptionHighQualityTranscodingHelp": "Higher quality, but slower encoding",
|
||||
"OptionMaxQualityTranscodingHelp": "Best quality with slower encoding and high CPU usage",
|
||||
"OptionHighSpeedTranscoding": "Higher speed",
|
||||
"OptionHighQualityTranscoding": "Higher quality",
|
||||
"OptionMaxQualityTranscoding": "Max quality",
|
||||
"OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging",
|
||||
"OptionHighSpeedTranscoding": "\u041f\u043e-\u0432\u0438\u0441\u043e\u043a\u0430 \u0441\u043a\u043e\u0440\u043e\u0441\u0442",
|
||||
"OptionHighQualityTranscoding": "\u041f\u043e-\u0432\u0438\u0441\u043e\u043a\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e",
|
||||
"OptionMaxQualityTranscoding": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e",
|
||||
"OptionEnableDebugTranscodingLogging": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u043b\u043e\u0433\u0438\u043d\u0433 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0438 \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u043d\u0433\u0430",
|
||||
"OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.",
|
||||
"EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.",
|
||||
"HeaderAddTitles": "Add Titles",
|
||||
"LabelEnableDlnaPlayTo": "Enable DLNA Play To",
|
||||
"HeaderAddTitles": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
|
||||
"LabelEnableDlnaPlayTo": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 DLNA Play To",
|
||||
"LabelEnableDlnaPlayToHelp": "\u0415mby \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u0441\u0438\u0447\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0432\u0438 \u0438 \u0434\u0430 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0437\u0430 \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430\u0434 \u0442\u044f\u0445.",
|
||||
"LabelEnableDlnaDebugLogging": "Enable DLNA debug logging",
|
||||
"LabelEnableDlnaDebugLogging": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u043b\u043e\u0433\u0438\u043d\u0433 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0438 \u043d\u0430 DLNA",
|
||||
"LabelEnableDlnaDebugLoggingHelp": "This will create large log files and should only be used as needed for troubleshooting purposes.",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "Client discovery interval (seconds)",
|
||||
"LabelEnableDlnaClientDiscoveryInterval": "\u0418\u043d\u0442\u0435\u0440\u0432\u0430\u043b \u0437\u0430 \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 (\u0441\u0435\u043a\u0443\u043d\u0434\u0438)",
|
||||
"LabelEnableDlnaClientDiscoveryIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435\u0442\u043e \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0438 \u043c\u0435\u0436\u0434\u0443 SSDP \u0442\u044a\u0440\u0441\u0435\u043d\u0438\u044f \u043d\u0430\u043f\u0440\u0430\u0432\u0435\u043d\u0438 \u043e\u0442 Emby.",
|
||||
"HeaderCustomDlnaProfiles": "Custom Profiles",
|
||||
"HeaderSystemDlnaProfiles": "System Profiles",
|
||||
"HeaderCustomDlnaProfiles": "\u0421\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u0438",
|
||||
"HeaderSystemDlnaProfiles": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u0438",
|
||||
"CustomDlnaProfilesHelp": "Create a custom profile to target a new device or override a system profile.",
|
||||
"SystemDlnaProfilesHelp": "System profiles are read-only. Changes to a system profile will be saved to a new custom profile.",
|
||||
"TitleDashboard": "Dashboard",
|
||||
"TabHome": "Home",
|
||||
"TabInfo": "Info",
|
||||
"HeaderLinks": "Links",
|
||||
"HeaderSystemPaths": "System Paths",
|
||||
"LinkCommunity": "Community",
|
||||
"TitleDashboard": "\u0413\u043b\u0430\u0432\u0435\u043d \u043f\u0430\u043d\u0435\u043b",
|
||||
"TabHome": "\u0412\u043a\u044a\u0449\u0438",
|
||||
"TabInfo": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
|
||||
"HeaderLinks": "\u041b\u0438\u043d\u043a\u043e\u0432\u0435",
|
||||
"HeaderSystemPaths": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438 \u043f\u044a\u0442\u0438\u0449\u0430",
|
||||
"LinkCommunity": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u043e",
|
||||
"LinkGithub": "Github",
|
||||
"LinkApi": "API",
|
||||
"LinkApiDocumentation": "API \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
|
||||
"LabelFriendlyServerName": "\u0418\u043c\u0435 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430:",
|
||||
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
|
||||
"LabelPreferredDisplayLanguage": "Preferred display language:",
|
||||
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
|
||||
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
|
||||
"HeaderNewCollection": "New Collection",
|
||||
"ButtonSubmit": "Submit",
|
||||
"ButtonCreate": "Create",
|
||||
"LabelCustomCss": "Custom css:",
|
||||
"LabelCustomCssHelp": "Apply your own custom css to the web interface.",
|
||||
"LabelLocalHttpServerPortNumber": "Local http port number:",
|
||||
"LabelPreferredDisplayLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0435:",
|
||||
"LabelPreferredDisplayLanguageHelp": "\u041f\u0440\u0435\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 Emby \u0435 \u0442\u0435\u043a\u0443\u0449 \u043f\u0440\u043e\u0435\u043a\u0442.",
|
||||
"LabelReadHowYouCanContribute": "\u041d\u0430\u0443\u0447\u0435\u0442\u0435 \u043a\u0430\u043a \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0434\u043e\u043f\u0440\u0438\u043d\u0435\u0441\u0435\u0442\u0435",
|
||||
"HeaderNewCollection": "\u041d\u043e\u0432\u0430 \u041a\u043e\u043b\u0435\u043a\u0446\u0438\u044f",
|
||||
"ButtonSubmit": "\u0418\u0437\u043f\u0440\u0430\u0442\u0438",
|
||||
"ButtonCreate": "\u0421\u044a\u0437\u0434\u0430\u0439",
|
||||
"LabelCustomCss": "CSS \u043f\u043e \u0438\u0437\u0431\u043e\u0440:",
|
||||
"LabelCustomCssHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d CSS \u043a\u044a\u043c \u0443\u0435\u0431 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430.",
|
||||
"LabelLocalHttpServerPortNumber": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
|
||||
"LabelLocalHttpServerPortNumberHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTP \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
|
||||
"LabelPublicHttpPort": "Public http port number:",
|
||||
"LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
|
||||
"LabelPublicHttpsPort": "Public https port number:",
|
||||
"LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
|
||||
"LabelEnableHttps": "Report https as external address",
|
||||
"LabelPublicHttpPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
|
||||
"LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTP \u043f\u043e\u0440\u0442.",
|
||||
"LabelPublicHttpsPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
|
||||
"LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTPS \u043f\u043e\u0440\u0442.",
|
||||
"LabelEnableHttps": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439 HTTPS \u043a\u0430\u0442\u043e \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
|
||||
"LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
|
||||
"LabelHttpsPort": "Local https port number:",
|
||||
"LabelHttpsPort": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
|
||||
"LabelHttpsPortHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTPS \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
|
||||
"LabelWebSocketPortNumber": "Web socket port number:",
|
||||
"LabelEnableAutomaticPortMap": "Enable automatic port mapping",
|
||||
"LabelWebSocketPortNumber": "\u0423\u0435\u0431 \u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442:",
|
||||
"LabelEnableAutomaticPortMap": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u043c\u0430\u043f\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435",
|
||||
"LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
|
||||
"LabelExternalDDNS": "External WAN Address:",
|
||||
"LabelExternalDDNS": "\u0412\u044a\u043d\u0448\u0435\u043d WAN \u0430\u0434\u0440\u0435\u0441:",
|
||||
"LabelExternalDDNSHelp": "\u0410\u043a\u043e \u0438\u043c\u0430\u0442\u0435 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u043d DNS \u0433\u043e \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0442\u0443\u043a. Emby \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0442\u0430 \u0449\u0435 \u0433\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u0440\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435.",
|
||||
"TabResume": "Resume",
|
||||
"TabWeather": "Weather",
|
||||
"TitleAppSettings": "App Settings",
|
||||
"LabelMinResumePercentage": "Min resume percentage:",
|
||||
"LabelMaxResumePercentage": "Max resume percentage:",
|
||||
"LabelMinResumeDuration": "Min resume duration (seconds):",
|
||||
"LabelMinResumePercentageHelp": "Titles are assumed unplayed if stopped before this time",
|
||||
"TabResume": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438",
|
||||
"TabWeather": "\u0412\u0440\u0435\u043c\u0435\u0442\u043e",
|
||||
"TitleAppSettings": "App \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
|
||||
"LabelMinResumePercentage": "\u041c\u0438\u043d \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0437\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435:",
|
||||
"LabelMaxResumePercentage": "\u041c\u0430\u043a\u0441 \u043f\u0440\u043e\u0446\u0435\u043d\u0442 \u0437\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435:",
|
||||
"LabelMinResumeDuration": "\u041c\u0438\u043d \u0432\u0440\u0435\u043c\u0435 \u0437\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0435\u043d\u0438\u0435 (\u0441\u0435\u043a\u0443\u043d\u0434\u0438):",
|
||||
"LabelMinResumePercentageHelp": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f\u0442\u0430 \u0441\u0435 \u0441\u0447\u0438\u0442\u0430\u0442 \u0437\u0430 \u043d\u0435\u043f\u0443\u0441\u043a\u0430\u043d\u0438 \u0430\u043a\u043e \u0431\u044a\u0434\u0430\u0442 \u0441\u043f\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435.",
|
||||
"LabelMaxResumePercentageHelp": "Titles are assumed fully played if stopped after this time",
|
||||
"LabelMinResumeDurationHelp": "Titles shorter than this will not be resumable",
|
||||
"TitleAutoOrganize": "Auto-Organize",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "\u0422\u044f\u0445\u043d\u043e\u0442\u043e Emby \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043a\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 \u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441:",
|
||||
"LabelConnectUserName": "Emby \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043a\u0441\u043a\u043e \u0438\u043c\u0435\/\u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Seg\u00fcent",
|
||||
"LabelYoureDone": "Ja est\u00e0!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Expliqui'ns sobre vost\u00e8",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Dal\u0161\u00ed",
|
||||
"LabelYoureDone": "Hotovo!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "V\u00edtejte v Emby!",
|
||||
"ThisWizardWillGuideYou": "Tento pr\u016fvodce V\u00e1m pom\u016f\u017ee proj\u00edt procesem nastaven\u00ed. Pro za\u010d\u00e1tek vyberte jazyk.",
|
||||
"TellUsAboutYourself": "\u0158ekn\u011bte n\u00e1m n\u011bco o sob\u011b",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Vzestupn\u011b",
|
||||
"OptionDescending": "Sestupn\u011b",
|
||||
"OptionRuntime": "D\u00e9lka",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Po\u010det p\u0159ehr\u00e1n\u00ed",
|
||||
"OptionDatePlayed": "Datum p\u0159ehr\u00e1n\u00ed",
|
||||
"OptionDateAdded": "Datum p\u0159id\u00e1n\u00ed",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metask\u00f3re",
|
||||
"ButtonSelect": "Vybrat",
|
||||
"ButtonGroupVersions": "Skupinov\u00e9 verze",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Herci a obsazen\u00ed",
|
||||
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
|
||||
"ButtonSplitVersionsApart": "Rozd\u011blit verze od sebe",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Chyb\u00ed",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienti",
|
||||
"LabelCompleted": "Hotovo",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "P\u0159esko\u010deno",
|
||||
"HeaderEpisodeOrganization": "Organizace epizod",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigace",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Sc\u00e9ny",
|
||||
"ButtonSubtitles": "Titulky",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "N\u00e6ste",
|
||||
"LabelYoureDone": "Du er f\u00e6rdig!",
|
||||
"ButtonAddToCollection": "Tilf\u00f8j til samling",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Velkommen til Emby!",
|
||||
"ThisWizardWillGuideYou": "Denne guide vil hj\u00e6lpe dig igennem ops\u00e6tningen. For at begynde, v\u00e6lg venligst dit fortrukne sprog.",
|
||||
"TellUsAboutYourself": "Fort\u00e6l os lidt om dig selv",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Konfigurer pinkode",
|
||||
"HeaderAdultsReadHere": "Voksne l\u00e6s her!",
|
||||
"RegisterWithPayPal": "Registrer med PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync kr\u00e6ver medlemsskab",
|
||||
"HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
|
||||
"LabelSyncTempPath": "Sti for midlertidige filer:",
|
||||
"LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
|
||||
"LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Udgivelsesdato",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Fejlet",
|
||||
"LabelSeries": "Serier",
|
||||
"ButtonFullscreen": "Skift fuldsk\u00e6rm",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonPreviousTrack": "Forrige spor",
|
||||
"ButtonNextTrack": "N\u00e6ste spor",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"FolderTypeMovies": "FIlm",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Voksenfilm",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Stigende",
|
||||
"OptionDescending": "Faldende",
|
||||
"OptionRuntime": "Varighed",
|
||||
"OptionReleaseDate": "Udgivelsesdato",
|
||||
"OptionPlayCount": "Gange afspillet",
|
||||
"OptionDatePlayed": "Dato for afspilning",
|
||||
"OptionDateAdded": "Dato for tilf\u00f8jelse",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "V\u00e6lg",
|
||||
"ButtonGroupVersions": "Grupp\u00e9r versioner",
|
||||
"ButtonAddToCollection": "Tilf\u00f8j til samling",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Anerkendelser",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Medvirkende",
|
||||
"HeaderAdditionalParts": "Andre stier:",
|
||||
"ButtonSplitVersionsApart": "Opdel versioner",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Mangler",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Stisubstitutioner bruges til at \u00e6ndre en sti p\u00e5 serveren til en sti klienterne kan tilg\u00e5. Ved at tillade klienterne direkte adgang til medier p\u00e5 serveren, kan de m\u00e5ske afpille dem direkte over netv\u00e6rket uden at skulle bruge serverens ressourcer til at streame og transkode dem.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienter",
|
||||
"LabelCompleted": "F\u00e6rdig",
|
||||
"LabelFailed": "Fejlet",
|
||||
"LabelSkipped": "Oversprunget",
|
||||
"HeaderEpisodeOrganization": "Organisation af episoder",
|
||||
"LabelSeries": "Serier",
|
||||
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
|
||||
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
|
||||
"HeaderSupportTheTeam": "St\u00f8t Emby-holdet",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Spiller nu",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Kontroller",
|
||||
"ButtonFullscreen": "Skift fuldsk\u00e6rm",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonPreviousTrack": "Forrige spor",
|
||||
"ButtonNextTrack": "N\u00e6ste spor",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "N\u00e6ste",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Uidentificeret",
|
||||
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
|
||||
"OptionStub": "P\u00e5begyndt",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"OptionSeason0": "S\u00e6son 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Sange",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Kommende film",
|
||||
"HeaderUpcomingSports": "Kommende sportsudsendelser",
|
||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
|
||||
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
|
||||
"OptionEnableTranscodingThrottle": "Aktiver neddrosling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Gemischter Inhalt",
|
||||
"LabelNext": "N\u00e4chstes",
|
||||
"LabelYoureDone": "Du bist fertig!",
|
||||
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
|
||||
"ButtonMoreItems": "Mehr",
|
||||
"WelcomeToProject": "Willkommen bei Emby!",
|
||||
"ThisWizardWillGuideYou": "Dieser Assistent wird dich durch den Einrichtungsprozess f\u00fchren. Um zu beginnen, w\u00e4hle bitte deine bevorzugte Sprache.",
|
||||
"TellUsAboutYourself": "Sag uns etwas \u00fcber dich selbst",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "PIN Code festlegen",
|
||||
"HeaderAdultsReadHere": "Eltern, bitte lesen!",
|
||||
"RegisterWithPayPal": "Registrieren mit PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine Supporter-Mitgliedschaft",
|
||||
"HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
|
||||
"LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
|
||||
"LabelSyncTempPathHelp": "Legen Sie ein eigenes Synchronisations-Arbeits Verzeichnis fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
|
||||
"LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
|
||||
"HeaderSyncJobInfo": "Synchronisations-Aufgabe",
|
||||
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Fehlgeschlagen",
|
||||
"LabelSeries": "Serien:",
|
||||
"ButtonFullscreen": "Vollbild umschalten",
|
||||
"ButtonAudioTracks": "Audiospuren",
|
||||
"ButtonPreviousTrack": "Vorheriges St\u00fcck",
|
||||
"ButtonNextTrack": "N\u00e4chstes St\u00fcck",
|
||||
"HeaderEpisodes": "Episoden:",
|
||||
"FolderTypeMovies": "Filme",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Aufsteigend",
|
||||
"OptionDescending": "Absteigend",
|
||||
"OptionRuntime": "Dauer",
|
||||
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||
"OptionPlayCount": "Z\u00e4hler",
|
||||
"OptionDatePlayed": "Abgespielt am",
|
||||
"OptionDateAdded": "Hinzugef\u00fcgt am",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Ausw\u00e4hlen",
|
||||
"ButtonGroupVersions": "Gruppiere Versionen",
|
||||
"ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
|
||||
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
|
||||
"TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
|
||||
"HeaderCredits": "Herausgeber",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Besetzung & Crew",
|
||||
"HeaderAdditionalParts": "Zus\u00e4tzliche Teile",
|
||||
"ButtonSplitVersionsApart": "Spalte Versionen ab",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Fehlend",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Pfadsubstitutionen werden zum Ersetzen eines Serverpfades durch einen Netzwerkpfad genutzt, auf den die Clients direkt zugreifen k\u00f6nnen. Weil Clients direkten Zugang zu den Medien auf dem Server haben, sind diese in der Lage die Medien direkt \u00fcber das Netzwerk zu spielen und dabei vermeiden sie die Nutzung von Server-Ressourcen f\u00fcr das transkodieren von Streams.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programm",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Fertiggestellt",
|
||||
"LabelFailed": "Fehlgeschlagen",
|
||||
"LabelSkipped": "\u00dcbersprungen",
|
||||
"HeaderEpisodeOrganization": "Episodensortierung",
|
||||
"LabelSeries": "Serien:",
|
||||
"LabelEndingEpisodeNumber": "Nummer der letzten Episode:",
|
||||
"LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden",
|
||||
"HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Aktuelle Wiedergabe",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Vollbild umschalten",
|
||||
"ButtonScenes": "Szenen",
|
||||
"ButtonSubtitles": "Untertitel",
|
||||
"ButtonAudioTracks": "Audiospuren",
|
||||
"ButtonPreviousTrack": "Vorheriges St\u00fcck",
|
||||
"ButtonNextTrack": "N\u00e4chstes St\u00fcck",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "N\u00e4chstes",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Undefiniert",
|
||||
"OptionMissingParentalRating": "Fehlende Altersfreigabe",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episoden:",
|
||||
"OptionSeason0": "Staffel 0",
|
||||
"LabelReport": "Bericht:",
|
||||
"OptionReportSongs": "Lieder",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Bevorstehende Filme",
|
||||
"HeaderUpcomingSports": "Folgende Sportveranstaltungen",
|
||||
"HeaderUpcomingPrograms": "Bevorstehende Programme",
|
||||
"ButtonMoreItems": "Mehr",
|
||||
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
|
||||
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
|
||||
"OptionEnableTranscodingThrottle": "aktiviere Drosselung",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Aktiviere Bild per Bild Videoanalyse.",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extrahiere detaillierte Videoinformationen um die Videotranskodierung so effizient wie m\u00f6glich zu machen. Das Erstellen der Bibliothek wird dadurch l\u00e4nger dauern. ",
|
||||
"LabelVideoFrameAnalysisLimit": "Limitiere die Bild per Bild Analyse auf weniger als:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware Video Dekoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
|
||||
"LabelYoureDone": "\u0395\u03af\u03c3\u03c4\u03b5 \u0388\u03c4\u03bf\u03b9\u03bc\u03bf\u03b9!",
|
||||
"ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "\u039a\u03b1\u03bb\u03c9\u03c2 \u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Emby!",
|
||||
"ThisWizardWillGuideYou": "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03bf\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b8\u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2. \u0393\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2.",
|
||||
"TellUsAboutYourself": "\u03a0\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
|
||||
"OptionReleaseDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
|
||||
"FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae",
|
||||
"FolderTypeAdultVideos": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2 \u0395\u03bd\u03b7\u03bb\u03af\u03ba\u03c9\u03bd",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2",
|
||||
"OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||
"OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||
"OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1",
|
||||
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u0397\u03b8\u03bf\u03c0\u03bf\u03b9\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b5\u03c1\u03b3\u03b5\u03af\u03bf",
|
||||
"HeaderAdditionalParts": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u039c\u03ad\u03c1\u03b7",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "\u0395\u03ba\u03c4\u03cc\u03c2",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Next",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organisation",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Next",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1525,5 +1525,5 @@
|
|||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only, and will revert to default when unavailable."
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Next",
|
||||
"LabelYoureDone": "Ha terminado!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Bienvenidos a Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Contenido mezclado",
|
||||
"LabelNext": "Siguiente",
|
||||
"LabelYoureDone": "Ha Terminado!",
|
||||
"ButtonAddToCollection": "Agregar a Colecci\u00f3n",
|
||||
"ButtonMoreItems": "Mas",
|
||||
"WelcomeToProject": "Bienvenido a Emby!",
|
||||
"ThisWizardWillGuideYou": "Este asistente le guiar\u00e1 a trav\u00e9s del proceso de instalaci\u00f3n. Para comenzar, por favor seleccione su lenguaje preferido.",
|
||||
"TellUsAboutYourself": "D\u00edganos sobre usted",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||
"HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
|
||||
"RegisterWithPayPal": "Registrar con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado activa.",
|
||||
"HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
|
||||
"LabelSyncTempPath": "Trayectoria de archivos temporales:",
|
||||
"LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Habilitar visualizaci\u00f3n mejorada de pel\u00edculas",
|
||||
"LabelEnableEnhancedMoviesHelp": "Cuando se activa, la pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco y equipo, y otros contenidos relacionados.",
|
||||
"HeaderSyncJobInfo": "Trabajo de Sinc",
|
||||
"OptionReleaseDate": "Fecha de Liberaci\u00f3n",
|
||||
"ButtonPlayTrailer": "Tr\u00e1iler",
|
||||
"LabelFailed": "Fallido",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Cambiar a pantalla completa",
|
||||
"ButtonAudioTracks": "Pistas de audio",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"HeaderEpisodes": "Episodios:",
|
||||
"FolderTypeMovies": "Pel\u00edculas",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "Videos para adultos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Duraci\u00f3n",
|
||||
"OptionReleaseDate": "Fecha de Liberaci\u00f3n",
|
||||
"OptionPlayCount": "Contador",
|
||||
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
|
||||
"OptionDateAdded": "Fecha de Adici\u00f3n",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Seleccionar",
|
||||
"ButtonGroupVersions": "Agrupar Versiones",
|
||||
"ButtonAddToCollection": "Agregar a Colecci\u00f3n",
|
||||
"PismoMessage": "Utilizando Pismo File Mount a trav\u00e9s de una licencia donada.",
|
||||
"TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.",
|
||||
"HeaderCredits": "Cr\u00e9ditos",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Reparto y Personal",
|
||||
"HeaderAdditionalParts": "Partes Adicionales",
|
||||
"ButtonSplitVersionsApart": "Separar Versiones",
|
||||
"ButtonPlayTrailer": "Tr\u00e1iler",
|
||||
"LabelMissing": "Falta",
|
||||
"LabelOffline": "Desconectado",
|
||||
"PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que los clientes puedan acceder. Al permitir a los clientes acceder directamente a los medios en el servidor podr\u00e1n reproducirlos directamente a trav\u00e9s de la red evitando el uso de recursos del servidor para transmitirlos y transcodificarlos.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programa",
|
||||
"HeaderClients": "Clientes",
|
||||
"LabelCompleted": "Completado",
|
||||
"LabelFailed": "Fallido",
|
||||
"LabelSkipped": "Omitido",
|
||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||
"HeaderSupportTheTeam": "Apoye al equipo de Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
|
||||
"TabNavigation": "Navegaci\u00f3n",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Cambiar a pantalla completa",
|
||||
"ButtonScenes": "Escenas",
|
||||
"ButtonSubtitles": "Subt\u00edtulos",
|
||||
"ButtonAudioTracks": "Pistas de audio",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"ButtonStop": "Detener",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Siguiente",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "No Identificado",
|
||||
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
|
||||
"OptionStub": "Plantilla",
|
||||
"HeaderEpisodes": "Episodios:",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Reporte:",
|
||||
"OptionReportSongs": "Canciones",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
|
||||
"HeaderUpcomingSports": "Deportes por Estrenar",
|
||||
"HeaderUpcomingPrograms": "Programas por Estrenar",
|
||||
"ButtonMoreItems": "Mas",
|
||||
"LabelShowLibraryTileNames": "Mostrar nombres de t\u00edtulo de las bibliotecas",
|
||||
"LabelShowLibraryTileNamesHelp": "Determina si se desplegar\u00e1n etiquetas debajo de los t\u00edtulos de las bibliotecas con la p\u00e1gina principal",
|
||||
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lisis de video cuadro por cuadro",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extrae informaci\u00f3n detallada de los videos que puede ser empleada para hacer la transcodificaci\u00f3n lo m\u00e1s eficiente posible. Esto ocasionar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limitar el an\u00e1lisis cuadro por cuadro a videos menores a:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Decodificador de video de hardware:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Siguiente",
|
||||
"LabelYoureDone": "Ha Terminado!",
|
||||
"ButtonAddToCollection": "Agregar a la colecci\u00f3n",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Bienvenidos a Emby!",
|
||||
"ThisWizardWillGuideYou": "Este asistente lo guiar\u00e1 en el proceso de instalaci\u00f3n. Para comenzar, seleccione su idioma preferido.",
|
||||
"TellUsAboutYourself": "D\u00edganos acerca de usted",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configurar contrase\u00f1a",
|
||||
"HeaderAdultsReadHere": "Adultos Leer Aqui!",
|
||||
"RegisterWithPayPal": "Registrese con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requiere membres\u00eda de partidario",
|
||||
"HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
|
||||
"LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
|
||||
"LabelSyncTempPathHelp": "Especificar una carpeta personalizada para achivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas",
|
||||
"LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las peliculas seran mostradas como folderes para incluir trailers, extras, elenco y equipo, y otros contenidos relacionados.",
|
||||
"HeaderSyncJobInfo": "Trabajo de Sync",
|
||||
"OptionReleaseDate": "Fecha de Lanzamiento",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Error",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Pistas de Audio",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Peliculas",
|
||||
"FolderTypeMusic": "Musica",
|
||||
"FolderTypeAdultVideos": "Videos para adultos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Tiempo",
|
||||
"OptionReleaseDate": "Fecha de Lanzamiento",
|
||||
"OptionPlayCount": "N\u00famero de reproducc.",
|
||||
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
|
||||
"OptionDateAdded": "A\u00f1adido el",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metavalor",
|
||||
"ButtonSelect": "Seleccionar",
|
||||
"ButtonGroupVersions": "Versiones de Grupo",
|
||||
"ButtonAddToCollection": "Agregar a la colecci\u00f3n",
|
||||
"PismoMessage": "Usando Pismo File Mount a trav\u00e9s de una licencia donada.",
|
||||
"TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.",
|
||||
"HeaderCredits": "Cr\u00e9ditos",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Reparto y equipo t\u00e9cnico",
|
||||
"HeaderAdditionalParts": "Partes adicionales",
|
||||
"ButtonSplitVersionsApart": "Dividir versiones aparte",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Falta",
|
||||
"LabelOffline": "Apagado",
|
||||
"PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que los clientes puedan acceder. El permitir que los clientes se conecten directamente a trav\u00e9s de la red y puedan reproducir los medios directamente, evita utilizar recursos del servidor para la transcodificaci\u00f3n y el stream,",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programa",
|
||||
"HeaderClients": "Clientes",
|
||||
"LabelCompleted": "Completado",
|
||||
"LabelFailed": "Error",
|
||||
"LabelSkipped": "Omitido",
|
||||
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
|
||||
"HeaderSupportTheTeam": "Apoye al equipo de Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Reproduciendo ahora",
|
||||
"TabNavigation": "Navegaci\u00f3n",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Escenas",
|
||||
"ButtonSubtitles": "Subt\u00edtulos",
|
||||
"ButtonAudioTracks": "Pistas de Audio",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"ButtonStop": "Detener",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonNext": "Siguiente",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Seuraava",
|
||||
"LabelYoureDone": "Olet valmis!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "T\u00e4m\u00e4 ty\u00f6kalu auttaa sinua asennus prosessin aikana. loittaaksesi valitse kieli.",
|
||||
"TellUsAboutYourself": "Kerro meille itsest\u00e4si",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Contenu m\u00e9lang\u00e9",
|
||||
"LabelNext": "Suivant",
|
||||
"LabelYoureDone": "Vous avez Termin\u00e9!",
|
||||
"ButtonAddToCollection": "Ajouter \u00e0 une collection",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"WelcomeToProject": "Bienvenue dans Emby !",
|
||||
"ThisWizardWillGuideYou": "Cet assistant vous guidera dans le processus de configuration. Pour commencer, merci de s\u00e9lectionner votre langue pr\u00e9f\u00e9r\u00e9e.",
|
||||
"TellUsAboutYourself": "Parlez-nous de vous",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configurer le code PIN",
|
||||
"HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
|
||||
"RegisterWithPayPal": "S'enregistrer avec PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "La synchronisation n\u00e9cessite un abonnement actif comme supporteur.",
|
||||
"HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
|
||||
"LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :",
|
||||
"LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Activer le mode d'affichage \u00e9tendu des films",
|
||||
"LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les extras, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.",
|
||||
"HeaderSyncJobInfo": "T\u00e2che de synchronisation",
|
||||
"OptionReleaseDate": "Date de sortie",
|
||||
"ButtonPlayTrailer": "Bande-annonce",
|
||||
"LabelFailed": "\u00c9chou\u00e9",
|
||||
"LabelSeries": "S\u00e9ries :",
|
||||
"ButtonFullscreen": "Basculer en plein \u00e9cran",
|
||||
"ButtonAudioTracks": "Pistes audio",
|
||||
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
|
||||
"ButtonNextTrack": "Piste suivante",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Films",
|
||||
"FolderTypeMusic": "Musique",
|
||||
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascendant",
|
||||
"OptionDescending": "Descendant",
|
||||
"OptionRuntime": "Dur\u00e9e",
|
||||
"OptionReleaseDate": "Date de sortie",
|
||||
"OptionPlayCount": "Nombre de lectures",
|
||||
"OptionDatePlayed": "Date lu",
|
||||
"OptionDateAdded": "Date d'ajout",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "S\u00e9lectionner",
|
||||
"ButtonGroupVersions": "Versions des groupes",
|
||||
"ButtonAddToCollection": "Ajouter \u00e0 une collection",
|
||||
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
|
||||
"TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
|
||||
"HeaderCredits": "Cr\u00e9dits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u00c9quipe de tournage",
|
||||
"HeaderAdditionalParts": "Parties Additionelles",
|
||||
"ButtonSplitVersionsApart": "S\u00e9parer les versions",
|
||||
"ButtonPlayTrailer": "Bande-annonce",
|
||||
"LabelMissing": "Manquant(s)",
|
||||
"LabelOffline": "Hors ligne",
|
||||
"PathSubstitutionHelp": "Les substitutions de chemins d'acc\u00e8s sont utilis\u00e9es pour faire correspondre un chemin d'acc\u00e8s du serveur \u00e0 un chemin d'acc\u00e8s accessible par les clients. En autorisant un acc\u00e8s direct aux m\u00e9dias du serveur, les clients pourront les lire directement du r\u00e9seau et \u00e9viter l'utilisation inutiles des ressources du serveur en demandant du transcodage.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programme",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
|
||||
"LabelFailed": "\u00c9chou\u00e9",
|
||||
"LabelSkipped": "Saut\u00e9",
|
||||
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
|
||||
"LabelSeries": "S\u00e9ries :",
|
||||
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
|
||||
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
|
||||
"HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Lecture en cours",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Contr\u00f4les",
|
||||
"ButtonFullscreen": "Basculer en plein \u00e9cran",
|
||||
"ButtonScenes": "Sc\u00e8nes",
|
||||
"ButtonSubtitles": "Sous-titres",
|
||||
"ButtonAudioTracks": "Pistes audio",
|
||||
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
|
||||
"ButtonNextTrack": "Piste suivante",
|
||||
"ButtonStop": "Arr\u00eat",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Suivant",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Non identifi\u00e9",
|
||||
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
|
||||
"OptionStub": "Coupure",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Saison 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Chansons",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Films \u00e0 venir",
|
||||
"HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
|
||||
"HeaderUpcomingPrograms": "Programmes \u00e0 venir",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"LabelShowLibraryTileNames": "Voir les noms des affiches de la biblioth\u00e8que",
|
||||
"LabelShowLibraryTileNamesHelp": "D\u00e9termine si les noms doivent \u00eatre affich\u00e9s en dessous des affiches de la biblioth\u00e8que sur la page d'accueil",
|
||||
"OptionEnableTranscodingThrottle": "Activer le throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Activer l'analyse vid\u00e9o image par image",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extraire des informations d\u00e9taill\u00e9es sur les vid\u00e9os pour rendre le transcodage le plus efficace possible. Cette option ralentira le scan de la biblioth\u00e8que.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limiter l'analyse image par image aux vid\u00e9os inf\u00e9rieures \u00e0 :",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "D\u00e9codeur vid\u00e9o mat\u00e9riel:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "N\u00f6chst",
|
||||
"LabelYoureDone": "Du besch fertig!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Willkomme bi Emby!",
|
||||
"ThisWizardWillGuideYou": "De Assistent hilft der dur de Installations Prozess. Zum afange, w\u00e4hl bitte dini Sproch us.",
|
||||
"TellUsAboutYourself": "Verzell was \u00fcber dech selber",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Konfigurier de Pin Code",
|
||||
"HeaderAdultsReadHere": "Erwachseni bitte do lese!",
|
||||
"RegisterWithPayPal": "Registrier di mit PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisierig brucht en Supporter Mitgliedschaft",
|
||||
"HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
|
||||
"LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:",
|
||||
"LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte",
|
||||
"LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Ziit:",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Film",
|
||||
"FolderTypeMusic": "Musig",
|
||||
"FolderTypeAdultVideos": "Erwachseni Film",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ufstiigend",
|
||||
"OptionDescending": "Abstiigend",
|
||||
"OptionRuntime": "Laufziit",
|
||||
"OptionReleaseDate": "Release Ziit:",
|
||||
"OptionPlayCount": "Z\u00e4hler",
|
||||
"OptionDatePlayed": "Abgspellt am",
|
||||
"OptionDateAdded": "Dezue gf\u00fcegt am",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u05d4\u05d1\u05d0",
|
||||
"LabelYoureDone": "\u05e1\u05d9\u05d9\u05de\u05ea!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "\u05d0\u05e9\u05e3 \u05d6\u05d4 \u05d9\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05d1\u05d4\u05ea\u05dc\u05d9\u05da \u05d4\u05d4\u05ea\u05e7\u05e0\u05d4.",
|
||||
"TellUsAboutYourself": "\u05e1\u05e4\u05e8 \u05dc\u05e0\u05d5 \u05e2\u05dc \u05e2\u05e6\u05de\u05da",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4",
|
||||
"OptionDescending": "\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3",
|
||||
"OptionRuntime": "\u05de\u05e9\u05da",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea",
|
||||
"OptionDatePlayed": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df",
|
||||
"OptionDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "\u05d1\u05d7\u05e8",
|
||||
"ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u05e9\u05d7\u05e7\u05e0\u05d9\u05dd \u05d5\u05e6\u05d5\u05d5\u05ea",
|
||||
"HeaderAdditionalParts": "\u05d7\u05dc\u05e7\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd",
|
||||
"ButtonSplitVersionsApart": "\u05e4\u05e6\u05dc \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d1\u05e0\u05e4\u05e8\u05d3",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "\u05d7\u05e1\u05e8",
|
||||
"LabelOffline": "\u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df",
|
||||
"PathSubstitutionHelp": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d7\u05dc\u05d5\u05e4\u05d9\u05d9\u05dd \u05d4\u05dd \u05dc\u05e6\u05d5\u05e8\u05da \u05de\u05d9\u05e4\u05d5\u05d9 \u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d1\u05e9\u05e8\u05ea \u05dc\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05e9\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d2\u05e9\u05ea \u05d0\u05dc\u05d9\u05d4\u05dd. \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05de\u05d3\u05d9\u05d4 \u05d1\u05e9\u05e8\u05ea \u05d0\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05e0\u05d2\u05df \u05d0\u05ea \u05d4\u05e7\u05d1\u05e6\u05d9\u05dd \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05e2\u05dc \u05d2\u05d1\u05d9 \u05d4\u05e8\u05e9\u05ea \u05d5\u05dc\u05d4\u05d9\u05de\u05e0\u05e2 \u05de\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05e9\u05d0\u05d1\u05d9 \u05d4\u05e9\u05e8\u05ea \u05dc\u05e6\u05d5\u05e8\u05da \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d5\u05e9\u05d9\u05d3\u05d5\u05e8.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
|
||||
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
|
||||
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
|
||||
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:",
|
||||
"LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Sljede\u0107i",
|
||||
"LabelYoureDone": "Zavr\u0161eno!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "Ovaj pomo\u0107nik \u0107e Vas voditi kroz proces pode\u0161avanja. Za po\u010detak, odaberite \u017eeljeni jezik.",
|
||||
"TellUsAboutYourself": "Recite nam ne\u0161to o sebi",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Uzlazno",
|
||||
"OptionDescending": "Silazno",
|
||||
"OptionRuntime": "Trajanje",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Broju izvo\u0111enja",
|
||||
"OptionDatePlayed": "Datumu izvo\u0111enja",
|
||||
"OptionDateAdded": "Datumu dodavanja",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Odaberi",
|
||||
"ButtonGroupVersions": "Verzija grupe",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Glumci i ekipa",
|
||||
"HeaderAdditionalParts": "Dodatni djelovi",
|
||||
"ButtonSplitVersionsApart": "Razdvoji verzije",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Nedostaje",
|
||||
"LabelOffline": "Nedostupno",
|
||||
"PathSubstitutionHelp": "Zamjenske putanje se koriste za mapiranje putanja na serveru na putanje kojima \u0107e kljenti mo\u0107i pristupiti. Dupu\u0161taju\u0107i kljentima direktan pristup medijima na serveru imaju mogu\u0107nost izvoditi sadr\u017eaj direktno preko mre\u017ee i tako ne iskori\u0161tavati resurse servera za koverziju i reprodukciju istih.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Kljenti",
|
||||
"LabelCompleted": "Zavr\u0161eno",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Presko\u010deno",
|
||||
"HeaderEpisodeOrganization": "Organizacija epizoda",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Broj kraja epizode:",
|
||||
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Sad se izvodi",
|
||||
"TabNavigation": "Navigacija",
|
||||
"TabControls": "Kontrole",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scene",
|
||||
"ButtonSubtitles": "Titlovi",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pauza",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "contenuto misto",
|
||||
"LabelNext": "Prossimo",
|
||||
"LabelYoureDone": "Hai Finito!",
|
||||
"ButtonAddToCollection": "Aggiungi alla collezione",
|
||||
"ButtonMoreItems": "Dettagli",
|
||||
"WelcomeToProject": "Benvenuto in Emby!",
|
||||
"ThisWizardWillGuideYou": "Questa procedura ti guider\u00e0 durante il processo di installazione. Per iniziare, per favore seleziona la tua lingua preferita",
|
||||
"TellUsAboutYourself": "Parlaci di te",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configura codice pin",
|
||||
"HeaderAdultsReadHere": "Adulti leggete qui!",
|
||||
"RegisterWithPayPal": "Registrati con PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede un'iscrizione come supporter",
|
||||
"HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
|
||||
"LabelSyncTempPath": "Percorso file temporanei:",
|
||||
"LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Abilita le visuali film migliorate",
|
||||
"LabelEnableEnhancedMoviesHelp": "Quando abilitato, i film verranno mostrati come cartelle che includono i trailer, gli extra, il cast & crew, e altri contenuti correlati.",
|
||||
"HeaderSyncJobInfo": "Attiv. di Sinc.",
|
||||
"OptionReleaseDate": "Data di rilascio",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Fallito",
|
||||
"LabelSeries": "Serie:",
|
||||
"ButtonFullscreen": "Tutto Schermo",
|
||||
"ButtonAudioTracks": "Tracce audio",
|
||||
"ButtonPreviousTrack": "Traccia Precedente",
|
||||
"ButtonNextTrack": "Traccia Successiva",
|
||||
"HeaderEpisodes": "Episodi:",
|
||||
"FolderTypeMovies": "Film",
|
||||
"FolderTypeMusic": "Musica",
|
||||
"FolderTypeAdultVideos": "Video per adulti",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Discentente",
|
||||
"OptionRuntime": "Durata",
|
||||
"OptionReleaseDate": "Data di rilascio",
|
||||
"OptionPlayCount": "Visto N\u00b0",
|
||||
"OptionDatePlayed": "Visto il",
|
||||
"OptionDateAdded": "Aggiunto il",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Punteggio",
|
||||
"ButtonSelect": "Seleziona",
|
||||
"ButtonGroupVersions": "Versione Gruppo",
|
||||
"ButtonAddToCollection": "Aggiungi alla collezione",
|
||||
"PismoMessage": "Dona per avere una licenza di Pismo",
|
||||
"TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
|
||||
"HeaderCredits": "Crediti",
|
||||
|
@ -352,7 +361,7 @@
|
|||
"LabelImagesByNamePath": "Percorso immagini per nome:",
|
||||
"LabelImagesByNamePathHelp": "Specificare un percorso personalizzato per le immagini di attori, artisti, generi e case cinematografiche scaricate.",
|
||||
"LabelMetadataPath": "Percorso dei file con i metadati:",
|
||||
"LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati, se non si desidera salvarli nelle cartelle multimediali.",
|
||||
"LabelMetadataPathHelp": "Specificare un percorso personalizzato per le immagini e i metadati scaricati.",
|
||||
"LabelTranscodingTempPath": "Cartella temporanea per la trascodifica:",
|
||||
"LabelTranscodingTempPathHelp": "Questa cartella contiene i file di lavoro utilizzati dal transcoder. Specificare un percorso personalizzato, oppure lasciare vuoto per utilizzare l'impostazione predefinita all'interno della cartella dei dati del server.",
|
||||
"TabBasics": "Base",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Parti addizionali",
|
||||
"ButtonSplitVersionsApart": "Separa Versioni",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Mancante",
|
||||
"LabelOffline": "Spento",
|
||||
"PathSubstitutionHelp": "La sostituzione percorsi viene utilizzata per mappare un percorso sul server, su uno a cui i client sono in grado di accedere. Consentendo ai client l'accesso diretto ai media sul server possono essere in grado di riprodurli direttamente attraverso la rete ed evitare di utilizzare le risorse del server per lo streaming e la transcodifica.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programma",
|
||||
"HeaderClients": "Dispositivi",
|
||||
"LabelCompleted": "Completato",
|
||||
"LabelFailed": "Fallito",
|
||||
"LabelSkipped": "Saltato",
|
||||
"HeaderEpisodeOrganization": "Organizzazione Episodi",
|
||||
"LabelSeries": "Serie:",
|
||||
"LabelEndingEpisodeNumber": "Numero ultimo episodio:",
|
||||
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
|
||||
"HeaderSupportTheTeam": "Supporta il Team di Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "In esecuzione",
|
||||
"TabNavigation": "Navigazione",
|
||||
"TabControls": "Controlli",
|
||||
"ButtonFullscreen": "Tutto Schermo",
|
||||
"ButtonScenes": "Scene",
|
||||
"ButtonSubtitles": "Sottotitoli",
|
||||
"ButtonAudioTracks": "Tracce audio",
|
||||
"ButtonPreviousTrack": "Traccia Precedente",
|
||||
"ButtonNextTrack": "Traccia Successiva",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonNext": "Prossimo",
|
||||
|
@ -894,9 +896,9 @@
|
|||
"LabelHomePageSection2": "Pagina Iniziale Sezione 2:",
|
||||
"LabelHomePageSection3": "Pagina Iniziale Sezione 3:",
|
||||
"LabelHomePageSection4": "Pagina Iniziale Sezione 4:",
|
||||
"OptionMyMediaButtons": "I mei media (pulsanti)",
|
||||
"OptionMyMedia": "I mei media",
|
||||
"OptionMyMediaSmall": "I mei media (piccolo)",
|
||||
"OptionMyMediaButtons": "I miei media (pulsanti)",
|
||||
"OptionMyMedia": "I miei media",
|
||||
"OptionMyMediaSmall": "I miei media (piccolo)",
|
||||
"OptionResumablemedia": "Riprendi",
|
||||
"OptionLatestMedia": "Ultimi media",
|
||||
"OptionLatestChannelMedia": "Ultime voci del canale",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Non identificata",
|
||||
"OptionMissingParentalRating": "Voto genitori mancante",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodi:",
|
||||
"OptionSeason0": "Stagione 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Canzoni",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Film in arrivo",
|
||||
"HeaderUpcomingSports": "Sport in arrivo",
|
||||
"HeaderUpcomingPrograms": "Programmi in arrivo",
|
||||
"ButtonMoreItems": "Dettagli",
|
||||
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
|
||||
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
|
||||
"OptionEnableTranscodingThrottle": "Abilita il throttling",
|
||||
|
@ -1409,7 +1409,7 @@
|
|||
"OptionAllowVideoPlaybackTranscoding": "Abilita la riproduzione di video che necessita di transcodifica",
|
||||
"OptionAllowMediaPlaybackTranscodingHelp": "Gli utenti riceveranno messaggi esplicativi quando il contenuto non \u00e8 riproducibile a causa della policy.",
|
||||
"TabStreaming": "Streaming",
|
||||
"LabelRemoteClientBitrateLimit": "Bitrate limite del client remoto (Mbps):",
|
||||
"LabelRemoteClientBitrateLimit": "Bitrate limite per lo streaming via internet (Mbps):",
|
||||
"LabelRemoteClientBitrateLimitHelp": "Limite opzionale al bitrate dello streaming per tutti i client remoti. E' utile per evitare che i client richiedano un bitrate superiore a quello che la tua connessione \u00e8 in grado di gestire.",
|
||||
"LabelConversionCpuCoreLimit": "Limite della CPU:",
|
||||
"LabelConversionCpuCoreLimitHelp": "Limiita il numero di CPU da utilizzare durante l'operazione di sincronizzazione.",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Abilita fotogramma per fotogramma analisi video",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Estrarre informazioni dettagliate sui video che possono essere usati per fare la transcodifica il pi\u00f9 efficiente possibile. Questo far\u00e0 s\u00ec che le scansioni di libreria a richiedere pi\u00f9 tempo.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limitare fotogramma per fotogramma analisi a video inferiore a:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
|
||||
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
|
||||
"LabelYoureDone": "\u0411\u04d9\u0440\u0456 \u0434\u0430\u0439\u044b\u043d!",
|
||||
"ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443",
|
||||
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||
"WelcomeToProject": "Emby \u04af\u0448\u0456\u043d \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
|
||||
"ThisWizardWillGuideYou": "\u0411\u04b1\u043b \u043a\u043e\u043c\u0435\u043a\u0448\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u0441\u0430\u0442\u044b\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u04e9\u0442\u043a\u0456\u0437\u0435\u0434\u0456. \u0411\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
|
||||
"TellUsAboutYourself": "\u04e8\u0437\u0456\u04a3\u0456\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443",
|
||||
"HeaderAdultsReadHere": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440, \u043c\u044b\u043d\u0430\u043d\u044b \u043e\u049b\u044b\u04a3\u044b\u0437!",
|
||||
"RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.",
|
||||
"HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437",
|
||||
"LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:",
|
||||
"LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443",
|
||||
"LabelEnableEnhancedMoviesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456, \u049b\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440\u0434\u044b, \u0442\u04af\u0441\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u049b\u0430\u043d\u0434\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u049b\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u0430\u043c\u0442\u0443 \u04af\u0448\u0456\u043d, \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u049b\u0430\u043b\u0442\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456",
|
||||
"HeaderSyncJobInfo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b",
|
||||
"OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435",
|
||||
"LabelFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437",
|
||||
"LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:",
|
||||
"ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0493\u0430",
|
||||
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
|
||||
"ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
|
||||
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||
"FolderTypeAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u0410\u0440\u0442\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionDescending": "\u041a\u0435\u043c\u0443\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionRuntime": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b",
|
||||
"OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
|
||||
"OptionPlayCount": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0435\u0441\u0435\u0431\u0456",
|
||||
"OptionDatePlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456",
|
||||
"OptionDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
|
||||
"ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443",
|
||||
"ButtonGroupVersions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443",
|
||||
"PismoMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Pismo File Mount \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
|
||||
"TangibleSoftwareMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Tangible Solutions Java\/C# \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
|
||||
"HeaderCredits": "\u049a\u04b1\u049b\u044b\u049b \u0438\u0435\u043b\u0435\u043d\u0443\u0448\u0456\u043b\u0435\u0440",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u0422\u04af\u0441\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u049b\u0430\u043d\u0434\u0430\u0440",
|
||||
"HeaderAdditionalParts": "\u0416\u0430\u043b\u0493\u0430\u0441\u0430\u0442\u044b\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
|
||||
"ButtonSplitVersionsApart": "\u041d\u04af\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0431\u04e9\u043b\u0443",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435",
|
||||
"LabelMissing": "\u0416\u043e\u049b",
|
||||
"LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441",
|
||||
"PathSubstitutionHelp": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u043b\u0430\u0440\u044b\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u043e\u043b\u043c\u0435\u043d \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0433\u0435\u043d\u0434\u0435, \u0431\u04b1\u043b\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0442\u044b \u0436\u0435\u043b\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u043d \u0436\u0430\u043b\u0442\u0430\u0440\u0430\u0434\u044b.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "\u0411\u0435\u0440\u0456\u043b\u0456\u043c",
|
||||
"HeaderClients": "\u041a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440",
|
||||
"LabelCompleted": "\u0410\u044f\u049b\u0442\u0430\u043b\u0493\u0430\u043d",
|
||||
"LabelFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437",
|
||||
"LabelSkipped": "\u04e8\u0442\u043a\u0456\u0437\u0456\u043b\u0433\u0435\u043d",
|
||||
"HeaderEpisodeOrganization": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
|
||||
"LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:",
|
||||
"LabelEndingEpisodeNumber": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:",
|
||||
"LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d",
|
||||
"HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||
"TabNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443",
|
||||
"TabControls": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456",
|
||||
"ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0493\u0430",
|
||||
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
||||
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
|
||||
"ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
|
||||
"ButtonPause": "\u04ae\u0437\u0443",
|
||||
"ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d\u0434\u0430\u0440",
|
||||
"OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b",
|
||||
"OptionStub": "\u0422\u044b\u0493\u044b\u043d",
|
||||
"HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
|
||||
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
|
||||
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
|
||||
"OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
|
||||
"HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442",
|
||||
"HeaderUpcomingPrograms": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u043b\u0456\u043c\u0434\u0435\u0440",
|
||||
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||
"LabelShowLibraryTileNames": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443",
|
||||
"LabelShowLibraryTileNamesHelp": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0442\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b \u0430\u0441\u0442\u044b\u043d\u0434\u0430 \u0436\u0430\u0437\u0443\u043b\u0430\u0440 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435 \u043c\u0435 \u0435\u043a\u0435\u043d\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
|
||||
"OptionEnableTranscodingThrottle": "\u0420\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "\u0411\u0435\u0439\u043d\u0435\u043d\u0456 \u0434\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0448\u0435 \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0456 \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b\u043d\u0430 \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b.",
|
||||
"LabelVideoFrameAnalysisLimit": "\u0414\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u043c\u044b\u043d\u0430\u0434\u0430\u043d \u043a\u0435\u043c \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "\u0416\u0430\u0431\u0434\u044b\u049b\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u0434\u0435\u043a\u043e\u0434\u0435\u0440:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Next",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Seterusnya",
|
||||
"LabelYoureDone": "Kamu Selesai!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Blandet innhold",
|
||||
"LabelNext": "Neste",
|
||||
"LabelYoureDone": "Ferdig!",
|
||||
"ButtonAddToCollection": "Legg til samling",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Velkommen til Emby",
|
||||
"ThisWizardWillGuideYou": "Denne wizarden vil guide deg gjennom server-konfigurasjonen. For \u00e5 begynne, vennligst velg spr\u00e5k.",
|
||||
"TellUsAboutYourself": "Fortell om deg selv",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Konfigurer PIN-kode",
|
||||
"HeaderAdultsReadHere": "Voksne les her!",
|
||||
"RegisterWithPayPal": "Registrer med PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever st\u00f8ttemedlemskap",
|
||||
"HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
|
||||
"LabelSyncTempPath": "Midlertidig fil-sti:",
|
||||
"LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Aktiver forbedrede filmvisning",
|
||||
"LabelEnableEnhancedMoviesHelp": "N\u00e5r den er aktivert, vil filmene bli vist som mapper for \u00e5 inkludere trailere, statister, cast og crew, og annet relatert innhold.",
|
||||
"HeaderSyncJobInfo": "Synk.jobb",
|
||||
"OptionReleaseDate": "Uttgitt dato",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Feilet",
|
||||
"LabelSeries": "Serie:",
|
||||
"ButtonFullscreen": "Veksle fullskjerm",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonPreviousTrack": "Forrige Spor",
|
||||
"ButtonNextTrack": "Neste Spor",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
"FolderTypeMusic": "Musikk",
|
||||
"FolderTypeAdultVideos": "Voksen-videoer",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u00d8kende",
|
||||
"OptionDescending": "Synkende",
|
||||
"OptionRuntime": "Spilletid",
|
||||
"OptionReleaseDate": "Uttgitt dato",
|
||||
"OptionPlayCount": "Antall avspillinger",
|
||||
"OptionDatePlayed": "Dato spilt",
|
||||
"OptionDateAdded": "Dato lagt til",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Velg",
|
||||
"ButtonGroupVersions": "Gruppeversjoner",
|
||||
"ButtonAddToCollection": "Legg til samling",
|
||||
"PismoMessage": "Utnytte Pismo File Mount gjennom en donert lisens.",
|
||||
"TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Mannskap",
|
||||
"HeaderAdditionalParts": "Tilleggsdeler",
|
||||
"ButtonSplitVersionsApart": "Splitt versjoner fra hverandre",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Mangler",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Sti erstatninger er brukt for \u00e5 koble en katalog p\u00e5 serveren til en katalog som brukeren har tilgang til. Ved \u00e5 gi brukerne direkte tilgang til media p\u00e5 serveren kan de v\u00e6re i stand til \u00e5 spille dem direkte over nettverket, og unng\u00e5 \u00e5 bruke serverens ressurser til \u00e5 streame og transcode dem.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienter",
|
||||
"LabelCompleted": "Fullf\u00f8rt",
|
||||
"LabelFailed": "Feilet",
|
||||
"LabelSkipped": "Hoppet over",
|
||||
"HeaderEpisodeOrganization": "Organisering av episoder",
|
||||
"LabelSeries": "Serie:",
|
||||
"LabelEndingEpisodeNumber": "Ending av episode nummer:",
|
||||
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for multi-episode filer",
|
||||
"HeaderSupportTheTeam": "St\u00f8tt Emby teamet!",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Spilles Av",
|
||||
"TabNavigation": "Navigering",
|
||||
"TabControls": "Kontrollerer",
|
||||
"ButtonFullscreen": "Veksle fullskjerm",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonPreviousTrack": "Forrige Spor",
|
||||
"ButtonNextTrack": "Neste Spor",
|
||||
"ButtonStop": "Stopp",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Neste",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "uidentifisert",
|
||||
"OptionMissingParentalRating": "Mangler foreldresensur",
|
||||
"OptionStub": "stump",
|
||||
"HeaderEpisodes": "Episoder:",
|
||||
"OptionSeason0": "Sesong 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Sanger:",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Kommende filmer",
|
||||
"HeaderUpcomingSports": "Kommende sport",
|
||||
"HeaderUpcomingPrograms": "Kommende programmer",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Aktiver struping",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Gemengde inhoud",
|
||||
"LabelNext": "Volgende",
|
||||
"LabelYoureDone": "Gereed!",
|
||||
"ButtonAddToCollection": "Toevoegen aan Collectie",
|
||||
"ButtonMoreItems": "Meer",
|
||||
"WelcomeToProject": "Welkom bij Emby!",
|
||||
"ThisWizardWillGuideYou": "Deze wizard helpt u door het setup-proces.",
|
||||
"TellUsAboutYourself": "Vertel ons over uzelf",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configureer pincode",
|
||||
"HeaderAdultsReadHere": "Volwassenen Lees hier!",
|
||||
"RegisterWithPayPal": "Registreer met PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een Supporter lidmaatschap",
|
||||
"HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
|
||||
"LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
|
||||
"LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Verbeterde film displays inschakelen",
|
||||
"LabelEnableEnhancedMoviesHelp": "Wanneer ingeschakeld, zullen films worden weergegeven als mappen inclusief trailers, extra's, cast & crew en andere gerelateerde inhoud.",
|
||||
"HeaderSyncJobInfo": "Sync Opdrachten",
|
||||
"OptionReleaseDate": "Uitgave datum",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Mislukt",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Schakelen tussen volledig scherm ",
|
||||
"ButtonAudioTracks": "Geluidssporen",
|
||||
"ButtonPreviousTrack": "Vorige track",
|
||||
"ButtonNextTrack": "Volgende track",
|
||||
"HeaderEpisodes": "Afleveringen:",
|
||||
"FolderTypeMovies": "Films",
|
||||
"FolderTypeMusic": "Muziek",
|
||||
"FolderTypeAdultVideos": "Adult video's",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Oplopend",
|
||||
"OptionDescending": "Aflopend",
|
||||
"OptionRuntime": "Speelduur",
|
||||
"OptionReleaseDate": "Uitgave datum",
|
||||
"OptionPlayCount": "Afspeel telling",
|
||||
"OptionDatePlayed": "Datum afgespeeld",
|
||||
"OptionDateAdded": "Datum toegevoegd",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecteer",
|
||||
"ButtonGroupVersions": "Groepeer Versies",
|
||||
"ButtonAddToCollection": "Toevoegen aan Collectie",
|
||||
"PismoMessage": "Pismo File Mount (met een geschonken licentie).",
|
||||
"TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Extra onderdelen",
|
||||
"ButtonSplitVersionsApart": "Splits Versies Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Ontbreekt",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Pad vervangen worden gebruikt voor het in kaart brengen van een pad op de server naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programma",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Compleet",
|
||||
"LabelFailed": "Mislukt",
|
||||
"LabelSkipped": "Overgeslagen",
|
||||
"HeaderEpisodeOrganization": "Afleveringen Organisatie",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
|
||||
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
|
||||
"HeaderSupportTheTeam": "Ondersteun het Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Wordt nu afgespeeld",
|
||||
"TabNavigation": "Navigatie",
|
||||
"TabControls": "Besturing",
|
||||
"ButtonFullscreen": "Schakelen tussen volledig scherm ",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Ondertiteling",
|
||||
"ButtonAudioTracks": "Geluidssporen",
|
||||
"ButtonPreviousTrack": "Vorige track",
|
||||
"ButtonNextTrack": "Volgende track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pauze",
|
||||
"ButtonNext": "Volgende",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Onge\u00efdentificeerd",
|
||||
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Afleveringen:",
|
||||
"OptionSeason0": "Seizoen 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "Nummers",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Films binnenkort",
|
||||
"HeaderUpcomingSports": "Sport binnenkort",
|
||||
"HeaderUpcomingPrograms": "Programma's binnenkort",
|
||||
"ButtonMoreItems": "Meer",
|
||||
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
|
||||
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
|
||||
"OptionEnableTranscodingThrottle": "Throtteling inschakelen",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Frame voor frame video-analyse inschakelen",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extraheer informatie over video die gebruikt kan worden om transcodering zo effici\u00ebnt mogelijk te maken. Dit zal leiden tot langer durende bibliotheek scans .",
|
||||
"LabelVideoFrameAnalysisLimit": "Beperk frame voor frame analyse voor video's kleiner dan:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Dalej",
|
||||
"LabelYoureDone": "Sko\u0144czy\u0142e\u015b!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "Asystent pomo\u017ce Ci podczas instalacji. Na pocz\u0105tku, wybierz tw\u00f3j preferowany j\u0119zyk.",
|
||||
"TellUsAboutYourself": "Opowiedz nam o sobie",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Rosn\u0105co",
|
||||
"OptionDescending": "Malej\u0105co",
|
||||
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
|
||||
"OptionDatePlayed": "Data odtworzenia",
|
||||
"OptionDateAdded": "Data dodania",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Conte\u00fado misto",
|
||||
"LabelNext": "Pr\u00f3ximo",
|
||||
"LabelYoureDone": "Pronto!",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"WelcomeToProject": "Bem vindo ao Emby!",
|
||||
"ThisWizardWillGuideYou": "Este assistente ir\u00e1 gui\u00e1-lo pelo processo de instala\u00e7\u00e3o. Para come\u00e7ar, por favor selecione seu idioma preferido.",
|
||||
"TellUsAboutYourself": "Conte-nos sobre voc\u00ea",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
|
||||
"HeaderAdultsReadHere": "Adultos Leiam Aqui!",
|
||||
"RegisterWithPayPal": "Registrar com PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma Ades\u00e3o de Colaborador do Emby ativa.",
|
||||
"HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
|
||||
"LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
|
||||
"LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Ativar exibi\u00e7\u00f5es de filme avan\u00e7adas",
|
||||
"LabelEnableEnhancedMoviesHelp": "Quando ativado, os filmes ser\u00e3o exibidos como pastas para incluir trailers, extras, elenco & equipe e outros conte\u00fados relacionados.",
|
||||
"HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Falhou",
|
||||
"LabelSeries": "S\u00e9rie:",
|
||||
"ButtonFullscreen": "Alternar para tela cheia",
|
||||
"ButtonAudioTracks": "Faixas de \u00e1udio",
|
||||
"ButtonPreviousTrack": "Faixa anterior",
|
||||
"ButtonNextTrack": "Faixa seguinte",
|
||||
"HeaderEpisodes": "Epis\u00f3dios",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Crescente",
|
||||
"OptionDescending": "Decrescente",
|
||||
"OptionRuntime": "Dura\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento",
|
||||
"OptionPlayCount": "N\u00famero Reprodu\u00e7\u00f5es",
|
||||
"OptionDatePlayed": "Data da Reprodu\u00e7\u00e3o",
|
||||
"OptionDateAdded": "Data da Adi\u00e7\u00e3o",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecionar",
|
||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"PismoMessage": "Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o",
|
||||
"TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.",
|
||||
"HeaderCredits": "Cr\u00e9ditos",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Elenco & Equipe",
|
||||
"HeaderAdditionalParts": "Partes Adicionais",
|
||||
"ButtonSplitVersionsApart": "Separar Vers\u00f5es",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Faltando",
|
||||
"LabelOffline": "Desconectado",
|
||||
"PathSubstitutionHelp": "Substitui\u00e7\u00f5es de caminho s\u00e3o usadas para mapear um caminho no servidor que possa ser acessado pelos clientes. Ao permitir o acesso dos clientes \u00e0 m\u00eddia no servidor, eles podem reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programa",
|
||||
"HeaderClients": "Clientes",
|
||||
"LabelCompleted": "Conclu\u00eddo",
|
||||
"LabelFailed": "Falhou",
|
||||
"LabelSkipped": "Ignorada",
|
||||
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o do Epis\u00f3dio",
|
||||
"LabelSeries": "S\u00e9rie:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
|
||||
"HeaderSupportTheTeam": "Colabore com o Time do Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Reproduzindo Agora",
|
||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||
"TabControls": "Controles",
|
||||
"ButtonFullscreen": "Alternar para tela cheia",
|
||||
"ButtonScenes": "Cenas",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonAudioTracks": "Faixas de \u00e1udio",
|
||||
"ButtonPreviousTrack": "Faixa anterior",
|
||||
"ButtonNextTrack": "Faixa seguinte",
|
||||
"ButtonStop": "Parar",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Pr\u00f3xima",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "N\u00e3o identificada",
|
||||
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Epis\u00f3dios",
|
||||
"OptionSeason0": "Temporada 0",
|
||||
"LabelReport": "Relat\u00f3rio:",
|
||||
"OptionReportSongs": "M\u00fasicas",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Filmes Por Estrear",
|
||||
"HeaderUpcomingSports": "Esportes Por Estrear",
|
||||
"HeaderUpcomingPrograms": "Programas Por Estrear",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
|
||||
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
|
||||
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extrair informa\u00e7\u00f5es detalhadas sobre v\u00eddeos que podem ser usadas para tornar a transcodifica\u00e7\u00e3o mais eficiente. Os exames da biblioteca demorar\u00e3o mais tempo.",
|
||||
"LabelVideoFrameAnalysisLimit": "Habilitar an\u00e1lise quadro a quadro apenas para v\u00eddeos menores que:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Decodificador de v\u00eddeo de hardware:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Seguinte",
|
||||
"LabelYoureDone": "Concluiu!",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Bem-vindo ao Emby!",
|
||||
"ThisWizardWillGuideYou": "Este assistente ir\u00e1 ajud\u00e1-lo durante o processo de configura\u00e7\u00e3o. Para come\u00e7ar, selecione o idioma.",
|
||||
"TellUsAboutYourself": "Fale-nos sobre si",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "Registar com PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "A sincroniza\u00e7\u00e3o necessita de uma conta de Apoiante",
|
||||
"HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
|
||||
"LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
|
||||
"LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento:",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Falhou",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Faixas de \u00e1udio",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Filmes",
|
||||
"FolderTypeMusic": "M\u00fasica",
|
||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionRuntime": "Dura\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de Lan\u00e7amento:",
|
||||
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
|
||||
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
|
||||
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Selecionar",
|
||||
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
|
||||
"ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
|
||||
"PismoMessage": "Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.",
|
||||
"TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.",
|
||||
"HeaderCredits": "Cr\u00e9ditos",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Elenco e Equipa",
|
||||
"HeaderAdditionalParts": "Partes Adicionais",
|
||||
"ButtonSplitVersionsApart": "Separar Vers\u00f5es",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Em falta",
|
||||
"LabelOffline": "Desconectado",
|
||||
"PathSubstitutionHelp": "Substitui\u00e7\u00f5es de localiza\u00e7\u00e3o s\u00e3o usadas para mapear uma localiza\u00e7\u00e3o no servidor que possa ser acedido pelos clientes. Ao permitir o acesso dos clientes ao conte\u00fado multim\u00e9dia no servidor, permite-lhes reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Programa",
|
||||
"HeaderClients": "Clientes",
|
||||
"LabelCompleted": "Terminado",
|
||||
"LabelFailed": "Falhou",
|
||||
"LabelSkipped": "Ignorado",
|
||||
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
|
||||
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
|
||||
"HeaderSupportTheTeam": "Suporte a Equipa do Emby",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "A reproduzir agora",
|
||||
"TabNavigation": "Navega\u00e7\u00e3o",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Cenas",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonAudioTracks": "Faixas de \u00e1udio",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Parar",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Urmatorul",
|
||||
"LabelYoureDone": "Esti Gata!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Bine a\u021bi venit la Emby!",
|
||||
"ThisWizardWillGuideYou": "Acest asistent v\u0103 va ajuta s\u0103 va ghidati prin procesul de configurare. Pentru a \u00eencepe, v\u0103 rug\u0103m s\u0103 selecta\u021bi limba preferat\u0103.",
|
||||
"TellUsAboutYourself": "Spune-ne despre tine",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configureaza codul pin",
|
||||
"HeaderAdultsReadHere": "Adultii Cititi Aici!",
|
||||
"RegisterWithPayPal": "Inregistreaza-te cu PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincronizarea necesita a fi Membru Cotizant",
|
||||
"HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
|
||||
"LabelSyncTempPath": "Cale fisier temporara",
|
||||
"LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor",
|
||||
"LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.",
|
||||
"HeaderSyncJobInfo": "Activitate de sincronizare",
|
||||
"OptionReleaseDate": "Data Aparitie",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Filme",
|
||||
"FolderTypeMusic": "Muzica",
|
||||
"FolderTypeAdultVideos": "Filme Porno",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Crescator",
|
||||
"OptionDescending": "Descrescator",
|
||||
"OptionRuntime": "Timp Rulare",
|
||||
"OptionReleaseDate": "Data Aparitie",
|
||||
"OptionPlayCount": "Contorizari rulari",
|
||||
"OptionDatePlayed": "Data Rulare",
|
||||
"OptionDateAdded": "Data Adaugare",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "\u0420\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
|
||||
"LabelYoureDone": "\u0412\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u043b\u0438!",
|
||||
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e",
|
||||
"ButtonMoreItems": "\u0415\u0449\u0451...",
|
||||
"WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
|
||||
"ThisWizardWillGuideYou": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a.",
|
||||
"TellUsAboutYourself": "\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043e \u0441\u0435\u0431\u0435",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
|
||||
"HeaderAdultsReadHere": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435, \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u044d\u0442\u043e!",
|
||||
"RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby.",
|
||||
"HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439",
|
||||
"LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443:",
|
||||
"LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
|
||||
"LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0438\u043b\u044c\u043c\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0441\u044a\u0451\u043c\u043e\u043a \u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0441\u043e\u043f\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.",
|
||||
"HeaderSyncJobInfo": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...",
|
||||
"LabelFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e",
|
||||
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
|
||||
"ButtonFullscreen": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
|
||||
"ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
|
||||
"ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
|
||||
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
|
||||
"FolderTypeMovies": "\u041a\u0438\u043d\u043e",
|
||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u044e\u0449\u0438\u0439",
|
||||
"OptionDescending": "\u0423\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439",
|
||||
"OptionRuntime": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
|
||||
"OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439",
|
||||
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
|
||||
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "\u041e\u0446\u0435\u043d\u043a\u0430 Metascore",
|
||||
"ButtonSelect": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c",
|
||||
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438",
|
||||
"ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e",
|
||||
"PismoMessage": "Pismo File Mount \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
||||
"TangibleSoftwareMessage": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0435\u0440\u044b Java\/C# \u043e\u0442 Tangible Solutions \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
|
||||
"HeaderCredits": "\u041f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b\u0438",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u0441\u044a\u0451\u043c\u043e\u043a",
|
||||
"HeaderAdditionalParts": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u0438",
|
||||
"ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u043e\u0440\u043e\u0437\u043d\u044c",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...",
|
||||
"LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442",
|
||||
"LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
|
||||
"PathSubstitutionHelp": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0441 \u043f\u0443\u0442\u0451\u043c, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0443\u0442\u0451\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u0442\u0435 \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e \u0441\u0435\u0442\u0438, \u0438 \u0438\u0437\u0431\u0435\u0433\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u043d\u0430 \u0438\u0445 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044e \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430",
|
||||
"HeaderClients": "\u041a\u043b\u0438\u0435\u043d\u0442\u044b",
|
||||
"LabelCompleted": "\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e",
|
||||
"LabelFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e",
|
||||
"LabelSkipped": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043e",
|
||||
"HeaderEpisodeOrganization": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
|
||||
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
|
||||
"LabelEndingEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430:",
|
||||
"LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
|
||||
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
|
||||
|
@ -650,7 +656,7 @@
|
|||
"LabelSupporterEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0431\u044b\u043b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d \u0434\u043b\u044f \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u044f \u043a\u043b\u044e\u0447\u0430.",
|
||||
"ButtonRetrieveKey": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043b\u044e\u0447",
|
||||
"LabelSupporterKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 (\u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0438\u0437 \u043f\u0438\u0441\u044c\u043c\u0430 \u043f\u043e \u042d-\u043f\u043e\u0447\u0442\u0435)",
|
||||
"LabelSupporterKeyHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u043b\u043e\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430\u043c\u0438, \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043d\u043d\u044b\u043c\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u043c \u0434\u043b\u044f Emby.",
|
||||
"LabelSupporterKeyHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0430\u043b\u043e \u0434\u043b\u044f Emby.",
|
||||
"MessageInvalidKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c.",
|
||||
"ErrorMessageInvalidKey": "\u0414\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043b\u044e\u0431\u043e\u0435 \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u0442\u0430\u043a\u0436\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby. \u0421\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u0438 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u0434\u0430\u043b\u044c\u043d\u0435\u0439\u0448\u0435\u0435 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u0435 \u043e\u0441\u043d\u043e\u0432\u043e\u043f\u043e\u043b\u0430\u0433\u0430\u044e\u0449\u0435\u0433\u043e \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0430.",
|
||||
"HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435",
|
||||
"TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
|
||||
"TabControls": "\u0420\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"ButtonFullscreen": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
|
||||
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
|
||||
"ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
|
||||
"ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
|
||||
"ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||
"ButtonPause": "\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
|
||||
"ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435",
|
||||
"OptionMissingParentalRating": "\u041d\u0435\u0442 \u0432\u043e\u0437\u0440\u0430\u0441\u0442. \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
|
||||
"OptionStub": "\u0417\u0430\u0433\u043b\u0443\u0448\u043a\u0430",
|
||||
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
|
||||
"OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0",
|
||||
"LabelReport": "\u041e\u0442\u0447\u0451\u0442:",
|
||||
"OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
|
||||
|
@ -1114,8 +1115,8 @@
|
|||
"ScheduledTaskFailedWithName": "{0} - \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430",
|
||||
"ItemAddedWithName": "{0} (\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443)",
|
||||
"ItemRemovedWithName": "{0} (\u0438\u0437\u044a\u044f\u0442\u043e \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438)",
|
||||
"DeviceOnlineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
||||
"UserOnlineFromDevice": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0441 {1} \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
||||
"DeviceOnlineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0443\u0441\u0442-\u043d\u043e",
|
||||
"UserOnlineFromDevice": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0441 {1} \u0443\u0441\u0442-\u043d\u043e",
|
||||
"DeviceOfflineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e",
|
||||
"UserOfflineFromDevice": "{0} - \u043f\u043e\u0434\u043a\u043b. \u0441 {1} \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e",
|
||||
"SubtitlesDownloadedForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0434\u043b\u044f {0} \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u043b\u0438\u0441\u044c",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b",
|
||||
"HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0438\u0437 \u0441\u043f\u043e\u0440\u0442\u0430",
|
||||
"HeaderUpcomingPrograms": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438",
|
||||
"ButtonMoreItems": "\u0415\u0449\u0451...",
|
||||
"LabelShowLibraryTileNames": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u043b\u0438\u0442\u043e\u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
||||
"LabelShowLibraryTileNamesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0431\u0443\u0434\u0443\u0442 \u043b\u0438 \u043d\u0430\u0434\u043f\u0438\u0441\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u043e\u0434 \u043f\u043b\u0438\u0442\u043a\u0430\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435.",
|
||||
"OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
|
||||
|
@ -1426,7 +1426,7 @@
|
|||
"ButtonSkip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
|
||||
"TextConnectToServerManually": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0432\u0440\u0443\u0447\u043d\u0443\u044e",
|
||||
"ButtonSignInWithConnect": "\u0412\u043e\u0439\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Connect",
|
||||
"ButtonConnect": "\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c",
|
||||
"ButtonConnect": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435",
|
||||
"LabelServerHost": "\u0425\u043e\u0441\u0442:",
|
||||
"LabelServerHostHelp": "192.168.1.100 \u0438\u043b\u0438 https:\/\/myserver.com",
|
||||
"LabelServerPort": "\u041f\u043e\u0440\u0442:",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0432\u0438\u0434\u0435\u043e",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438.",
|
||||
"LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u0439 \u0432\u0438\u0434\u0435\u043e \u0434\u0435\u043a\u043e\u0434\u0435\u0440:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Next",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "N\u00e4sta",
|
||||
"LabelYoureDone": "Klart!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "Den h\u00e4r guiden hj\u00e4lper dig att g\u00f6ra de f\u00f6rsta inst\u00e4llningarna. F\u00f6r att b\u00f6rja var v\u00e4nlig v\u00e4lj \u00f6nskat spr\u00e5k.",
|
||||
"TellUsAboutYourself": "Ber\u00e4tta om dig sj\u00e4lv",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Synk jobb",
|
||||
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Misslyckades",
|
||||
"LabelSeries": "Serie:",
|
||||
"ButtonFullscreen": "V\u00e4xla fullsk\u00e4rmsl\u00e4ge",
|
||||
"ButtonAudioTracks": "Ljudsp\u00e5r",
|
||||
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
|
||||
"ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
|
||||
"HeaderEpisodes": "Avsnitt:",
|
||||
"FolderTypeMovies": "Filmer",
|
||||
"FolderTypeMusic": "Musik",
|
||||
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Stigande",
|
||||
"OptionDescending": "Sjunkande",
|
||||
"OptionRuntime": "Speltid",
|
||||
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||
"OptionPlayCount": "Antal visningar",
|
||||
"OptionDatePlayed": "Senast visad",
|
||||
"OptionDateAdded": "Inlagd den",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metabetyg",
|
||||
"ButtonSelect": "V\u00e4lj",
|
||||
"ButtonGroupVersions": "Gruppera versioner",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Anv\u00e4nder Pismo File Mount baserat p\u00e5 en sk\u00e4nkt licens",
|
||||
"TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.",
|
||||
"HeaderCredits": "Tack till",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Rollista & bes\u00e4ttning",
|
||||
"HeaderAdditionalParts": "Ytterligare delar",
|
||||
"ButtonSplitVersionsApart": "Hantera olika versioner separat",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Saknas",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "S\u00f6kv\u00e4gsutbyte betyder att en plats p\u00e5 servern kopplas till en lokal fils\u00f6kv\u00e4g p\u00e5 en klient. P\u00e5 s\u00e5 s\u00e4tt f\u00e5r klienten direkt tillg\u00e5ng till material p\u00e5 servern och kan spela upp det direkt via n\u00e4tverket utan att f\u00f6rbruka serverresurser f\u00f6r str\u00f6mning och omkodning.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Klienter",
|
||||
"LabelCompleted": "Klar",
|
||||
"LabelFailed": "Misslyckades",
|
||||
"LabelSkipped": "Hoppades \u00f6ver",
|
||||
"HeaderEpisodeOrganization": "Katalogisering av avsnitt",
|
||||
"LabelSeries": "Serie:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Nu spelas",
|
||||
"TabNavigation": "Navigering",
|
||||
"TabControls": "Kontroller",
|
||||
"ButtonFullscreen": "V\u00e4xla fullsk\u00e4rmsl\u00e4ge",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonSubtitles": "Undertexter",
|
||||
"ButtonAudioTracks": "Ljudsp\u00e5r",
|
||||
"ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
|
||||
"ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
|
||||
"ButtonStop": "Stopp",
|
||||
"ButtonPause": "Paus",
|
||||
"ButtonNext": "N\u00e4sta",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Oidentifierad",
|
||||
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
|
||||
"OptionStub": "Stump",
|
||||
"HeaderEpisodes": "Avsnitt:",
|
||||
"OptionSeason0": "S\u00e4song 0",
|
||||
"LabelReport": "Rapport:",
|
||||
"OptionReportSongs": "L\u00e5tar",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "Om aktiverat extraheras kapitelbildrutor n\u00e4r videor importeras vid genoms\u00f6kning av biblioteket. Om avaktiverat kommer extrahering att ske vid schemalagd kapitelbildrutebehandling, f\u00f6r att snabba upp den regelbundna genoms\u00f6kningen av biblioteket.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "Externa uppspelare:",
|
||||
"LabelExternalPlayersHelp": "Visa knappar f\u00f6r att spela upp inneh\u00e5ll i externa uppspelare. Detta ar enbart tillg\u00e4ngligt p\u00e5 enheter som st\u00f6djer url-scheman, i allm\u00e4nhet Android och iOS. Externa uppspelare har normalt ej st\u00f6d f\u00f6r fj\u00e4rrkontroll eller \u00e5terupptagande.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Sonraki",
|
||||
"LabelYoureDone": "Haz\u0131rs\u0131n!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "Bu sihirbaz kurulum i\u015flemi boyunca size yard\u0131mc\u0131 olacakt\u0131r. Ba\u015flamak i\u00e7in, tercih etti\u011finiz dili se\u00e7iniz.",
|
||||
"TellUsAboutYourself": "Kendinizden Bahsedin",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Y\u00fckselen",
|
||||
"OptionDescending": "D\u00fc\u015fen",
|
||||
"OptionRuntime": "\u00c7al\u0131\u015fma s\u00fcresi",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Oynatma sayac\u0131",
|
||||
"OptionDatePlayed": "Oynatma Tarihi",
|
||||
"OptionDateAdded": "Eklenme Tarihi",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Se\u00e7im",
|
||||
"ButtonGroupVersions": "Grup Versionlar\u0131",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Kay\u0131p",
|
||||
"LabelOffline": "\u00c7evrimd\u0131\u015f\u0131",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
|
||||
"TabNavigation": "Navigasyon",
|
||||
"TabControls": "Kontrol",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Sahneler",
|
||||
"ButtonSubtitles": "Altyaz\u0131lar",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Durdur",
|
||||
"ButtonPause": "Duraklat",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434",
|
||||
"LabelYoureDone": "You're Done!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "Tell us about yourself",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
|
||||
"FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "Ti\u1ebfp theo",
|
||||
"LabelYoureDone": "B\u1ea1n \u0111\u00e3 ho\u00e0n th\u00e0nh!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "Th\u1ee7 thu\u1eadt n\u00e0y s\u1ebd h\u01b0\u1edbng d\u1eabn qu\u00e1 tr\u00ecnh c\u00e0i \u0111\u1eb7t cho b\u1ea1n. \u0110\u1ec3 b\u1eaft \u0111\u1ea7u, vui l\u00f2ng l\u1ef1a ch\u1ecdn ng\u00f4n ng\u1eef b\u1ea1n \u01b0a th\u00edch.",
|
||||
"TellUsAboutYourself": "N\u00f3i cho ch\u00fang t\u00f4i bi\u1ebft \u0111\u00f4i \u0111i\u1ec1u v\u1ec1 B\u1ea1n",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Th\u1eddi gian ph\u00e1t",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "S\u1ed1 l\u1ea7n ph\u00e1t",
|
||||
"OptionDatePlayed": "Ng\u00e0y ph\u00e1t",
|
||||
"OptionDateAdded": "Ng\u00e0y th\u00eam",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "L\u1ef1a ch\u1ecdn",
|
||||
"ButtonGroupVersions": "Group Versions",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "Cast & Crew",
|
||||
"HeaderAdditionalParts": "Additional Parts",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "Missing",
|
||||
"LabelOffline": "Offline",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Ch\u01b0\u01a1ng tr\u00ecnh",
|
||||
"HeaderClients": "C\u00e1c m\u00e1y kh\u00e1ch",
|
||||
"LabelCompleted": "Ho\u00e0n th\u00e0nh",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "B\u1ecf qua",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u4e0b\u4e00\u4e2a",
|
||||
"LabelYoureDone": "\u5b8c\u6210\uff01",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "\u8be5\u5411\u5bfc\u5c06\u6307\u5bfc\u4f60\u5b8c\u6210\u5b89\u88c5\u8fc7\u7a0b\u3002\u9996\u5148\uff0c\u8bf7\u9009\u62e9\u4f60\u7684\u9996\u9009\u8bed\u8a00\u3002",
|
||||
"TellUsAboutYourself": "\u8bf7\u4ecb\u7ecd\u4e00\u4e0b\u4f60\u81ea\u5df1",
|
||||
|
@ -76,7 +78,7 @@
|
|||
"ButtonConfigurePinCode": "Configure pin code",
|
||||
"HeaderAdultsReadHere": "Adults Read Here!",
|
||||
"RegisterWithPayPal": "\u6ce8\u518cPayPal",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u652f\u6301\u8005\u4f1a\u5458",
|
||||
"HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
|
||||
"LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a",
|
||||
"LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "\u540c\u6b65\u4f5c\u4e1a",
|
||||
"OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
|
||||
"ButtonPlayTrailer": "\u9884\u544a\u7247",
|
||||
"LabelFailed": "\u5931\u8d25",
|
||||
"LabelSeries": "\u7535\u89c6\u5267\uff1a",
|
||||
"ButtonFullscreen": "\u5207\u6362\u5168\u5c4f",
|
||||
"ButtonAudioTracks": "\u97f3\u8f68",
|
||||
"ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
|
||||
"ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "\u7535\u5f71",
|
||||
"FolderTypeMusic": "\u97f3\u4e50",
|
||||
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u5347\u5e8f",
|
||||
"OptionDescending": "\u964d\u5e8f",
|
||||
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
|
||||
"OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
|
||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "\u8bc4\u5206",
|
||||
"ButtonSelect": "\u9009\u62e9",
|
||||
"ButtonGroupVersions": "\u7248\u672c\u53f7",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "\u901a\u8fc7\u6350\u8d60\u83b7\u53d6Pismo File Mount\u7684\u4f7f\u7528\u6388\u6743\u3002",
|
||||
"TangibleSoftwareMessage": "\u901a\u8fc7\u6350\u8d60\u7684\u8bb8\u53ef\u8bc1\u4f7f\u7528Java \/ C\uff03\u8f6c\u6362\u5668\u5207\u5b9e\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002",
|
||||
"HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
|
||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
|
||||
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
|
||||
"ButtonPlayTrailer": "\u9884\u544a\u7247",
|
||||
"LabelMissing": "\u7f3a\u5931",
|
||||
"LabelOffline": "\u79bb\u7ebf",
|
||||
"PathSubstitutionHelp": "\u8def\u5f84\u66ff\u6362\u7528\u4e8e\u628a\u670d\u52a1\u5668\u4e0a\u7684\u8def\u5f84\u6620\u5c04\u5230\u5ba2\u6237\u7aef\u80fd\u591f\u8bbf\u95ee\u7684\u8def\u5f84\u3002\u5141\u8bb8\u7528\u6237\u76f4\u63a5\u8bbf\u95ee\u670d\u52a1\u5668\u4e0a\u7684\u5a92\u4f53\uff0c\u5e76\u80fd\u591f\u76f4\u63a5\u901a\u8fc7\u7f51\u7edc\u4e0a\u64ad\u653e\uff0c\u53ef\u4ee5\u4e0d\u8fdb\u884c\u8f6c\u6d41\u548c\u8f6c\u7801\uff0c\u4ece\u800c\u8282\u7ea6\u670d\u52a1\u5668\u8d44\u6e90\u3002",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "\u7a0b\u5e8f",
|
||||
"HeaderClients": "\u5ba2\u6237\u7aef",
|
||||
"LabelCompleted": "\u5b8c\u6210",
|
||||
"LabelFailed": "\u5931\u8d25",
|
||||
"LabelSkipped": "\u8df3\u8fc7",
|
||||
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
|
||||
"LabelSeries": "\u7535\u89c6\u5267\uff1a",
|
||||
"LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a",
|
||||
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
|
||||
"TabNavigation": "\u5bfc\u822a",
|
||||
"TabControls": "\u63a7\u5236",
|
||||
"ButtonFullscreen": "\u5207\u6362\u5168\u5c4f",
|
||||
"ButtonScenes": "\u573a\u666f",
|
||||
"ButtonSubtitles": "\u5b57\u5e55",
|
||||
"ButtonAudioTracks": "\u97f3\u8f68",
|
||||
"ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
|
||||
"ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
|
||||
"ButtonStop": "\u505c\u6b62",
|
||||
"ButtonPause": "\u6682\u505c",
|
||||
"ButtonNext": "\u4e0b\u4e00\u4e2a",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684",
|
||||
"OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7",
|
||||
"OptionStub": "\u5b58\u6839",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "0\u5b63",
|
||||
"LabelReport": "\u62a5\u544a\uff1a",
|
||||
"OptionReportSongs": "\u6b4c\u66f2",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u5a92\u4f53\u5e93\u5bfc\u5165\u89c6\u9891\u5e76\u626b\u63cf\u65f6\uff0c\u5c06\u63d0\u53d6\u7ae0\u8282\u56fe\u50cf\u3002\u5982\u679c\u7981\u7528\uff0c\u7ae0\u8282\u56fe\u50cf\u5c06\u5728\u4e4b\u540e\u7684\u8ba1\u5212\u4efb\u52a1\u63d0\u53d6\uff0c\u800c\u5a92\u4f53\u5e93\u4f1a\u66f4\u5feb\u5b8c\u6210\u626b\u63cf\u3002",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "\u5916\u90e8\u64ad\u653e\u5668\uff1a",
|
||||
"LabelExternalPlayersHelp": "\u663e\u793a\u5728\u5916\u90e8\u64ad\u653e\u5668\u4e0a\u64ad\u653e\u7684\u6309\u94ae\u3002\u8fd9\u4ec5\u9002\u7528\u4e8e\u652f\u6301URL\u65b9\u6848\u7684Android\u548ciOS\u8bbe\u5907\u3002\u5916\u90e8\u64ad\u653e\u5668\u901a\u5e38\u4e0d\u652f\u6301\u8fdb\u884c\u8fdc\u7a0b\u63a7\u5236\u6216\u6062\u590d\u64ad\u653e\u3002",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -14,15 +14,17 @@
|
|||
"LabelPrevious": "\u524d\u4e00\u500b",
|
||||
"LabelFinish": "\u5b8c\u6210",
|
||||
"FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
|
||||
"LabelNext": "\u5f8c\u4e00\u500b",
|
||||
"LabelNext": "\u4e0b\u4e00\u500b",
|
||||
"LabelYoureDone": "\u5927\u529f\u544a\u6210\uff01",
|
||||
"WelcomeToProject": "\u6b61\u8fce\u5230 Emby\uff01",
|
||||
"ThisWizardWillGuideYou": "\u6b64\u6559\u5b78\u5c07\u5f15\u5c0e\u60a8\u5b8c\u6210\u5b89\u88dd\u904e\u7a0b\u3002\u9996\u5148\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u8a9e\u8a00\u3002",
|
||||
"ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "\u6b61\u8fce\u4f86\u5230 Emby\uff01",
|
||||
"ThisWizardWillGuideYou": "\u6b64\u6559\u5b78\u5354\u52a9\u60a8\u5b8c\u6210\u5b89\u88dd\u904e\u7a0b\u3002\u9996\u5148\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u8a9e\u8a00\u3002",
|
||||
"TellUsAboutYourself": "\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1",
|
||||
"ButtonQuickStartGuide": "\u5feb\u901f\u5165\u9580\u6307\u5357",
|
||||
"LabelYourFirstName": "\u60a8\u7684\u540d\u5b57\u662f\uff1a",
|
||||
"MoreUsersCanBeAddedLater": "\u66f4\u591a\u7528\u6236\u53ef\u4ee5\u4e4b\u5f8c\u5728\u63a7\u5236\u53f0\u6dfb\u52a0\u3002",
|
||||
"UserProfilesIntro": "Emby \u5df2\u5167\u7f6e\u652f\u63f4\u7528\u6236\u8a2d\u7f6e\u6587\u4ef6\uff0c\u8b93\u6bcf\u500b\u7528\u6236\u90fd\u6709\u81ea\u5df1\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u60c5\u6cc1\u548c\u5bb6\u9577\u63a7\u5236\u3002",
|
||||
"UserProfilesIntro": "Emby \u5df2\u5167\u7f6e\u652f\u63f4\u7528\u6236\u8a2d\u7f6e\u6587\u4ef6\uff0c\u8b93\u6bcf\u500b\u7528\u6236\u90fd\u6709\u81ea\u5df1\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u60c5\u6cc1\u548c\u5bb6\u9577\u76e3\u8b77\u3002",
|
||||
"LabelWindowsService": "Windows \u670d\u52d9",
|
||||
"AWindowsServiceHasBeenInstalled": "\u5df2\u5b89\u88dd Windows \u670d\u52d9\u3002",
|
||||
"WindowsServiceIntro1": "Emby \u4f3a\u670d\u5668\u901a\u5e38\u904b\u884c\u65bc\u4e00\u500b\u5713\u5f62\u5716\u6a19\u7684\u684c\u9762\u61c9\u7528\u7a0b\u5f0f\uff0c\u4f46\u5982\u679c\u60a8\u559c\u6b61\u628a\u5b83\u4f5c\u70ba\u5f8c\u53f0\u670d\u52d9\uff0c\u53ef\u4ee5\u5728Windows \u670d\u52d9\u63a7\u5236\u53f0\u5167\u53d6\u4ee3\u3002",
|
||||
|
@ -49,19 +51,19 @@
|
|||
"ButtonConvertMedia": "\u8f49\u63db\u5a92\u9ad4",
|
||||
"ButtonOrganize": "\u6574\u7406",
|
||||
"LinkedToEmbyConnect": "\u9023\u63a5 Emby Connect",
|
||||
"HeaderSupporterBenefits": "\u8d0a\u52a9\u512a\u52e2",
|
||||
"HeaderSupporterBenefits": "\u6703\u54e1\u512a\u52e2",
|
||||
"HeaderAddUser": "\u6dfb\u52a0\u7528\u6236",
|
||||
"LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u4ed6\u5011\u7684\u5e33\u6236\uff0c\u7531\u500b\u4eba\u5e33\u6236\u8cc7\u6599\u9801\u9762\u9023\u63a5\u5230 Emby Connect \u3002",
|
||||
"LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u4ed6\u5011\u7684\u5e33\u6236\uff0c\u7531\u500b\u4eba\u5e33\u6236\u8cc7\u6599\u9801\u9023\u63a5\u5230 Emby Connect \u3002",
|
||||
"LabelPinCode": "PIN \u78bc\uff1a",
|
||||
"OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9",
|
||||
"HeaderSync": "Sync",
|
||||
"ButtonOk": "Ok",
|
||||
"ButtonCancel": "Cancel",
|
||||
"HeaderSync": "\u540c\u6b65",
|
||||
"ButtonOk": "\u78ba\u5b9a",
|
||||
"ButtonCancel": "\u53d6\u6d88",
|
||||
"ButtonExit": "\u96e2\u958b",
|
||||
"ButtonNew": "New",
|
||||
"ButtonNew": "\u6700\u65b0",
|
||||
"HeaderTV": "\u96fb\u8996",
|
||||
"HeaderAudio": "Audio",
|
||||
"HeaderVideo": "Video",
|
||||
"HeaderAudio": "\u97f3\u8a0a",
|
||||
"HeaderVideo": "\u5f71\u7247",
|
||||
"HeaderPaths": "\u8def\u5f91",
|
||||
"CategorySync": "\u540c\u6b65",
|
||||
"TabPlaylist": "\u64ad\u653e\u6e05\u55ae",
|
||||
|
@ -76,61 +78,70 @@
|
|||
"ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
|
||||
"HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
|
||||
"RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u4e00\u500b Emby \u751f\u6548\u6703\u54e1\u3002",
|
||||
"HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
|
||||
"LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a",
|
||||
"LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002",
|
||||
"LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a",
|
||||
"LabelCustomCertificatePathHelp": "\u63d0\u4f9b\u81ea\u5df1\u7684 SSL \u8b49\u66f8 .pfx \u6587\u4ef6\u3002\u5982\u679c\u5ffd\u7565\uff0c\u4f3a\u670d\u5668\u5c07\u5efa\u7acb\u4e00\u500b\u81ea\u5bb6\u7c3d\u540d\u8b49\u66f8\u3002",
|
||||
"TitleNotifications": "Notifications",
|
||||
"TitleNotifications": "\u901a\u77e5",
|
||||
"ButtonDonateWithPayPal": "\u5f9e PayPal \u6350\u8d08",
|
||||
"OptionDetectArchiveFilesAsMedia": "\u5075\u6e2c\u6a94\u6848\u6587\u4ef6\u70ba\u5a92\u9ad4",
|
||||
"OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u64f4\u5c55\u540d\u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u6587\u4ef6\u3002",
|
||||
"OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002",
|
||||
"LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a",
|
||||
"LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8 Emby \u5728\u7dda\u5e33\u6236\u7684\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\u3002",
|
||||
"LabelEnableEnhancedMovies": "\u555f\u7528\u96fb\u5f71\u589e\u5f37\u5c55\u793a",
|
||||
"LabelEnableEnhancedMoviesHelp": "\u7576\u555f\u7528\u6642\uff0c\u96fb\u5f71\u5c07\u6703\u986f\u793a\u70ba\u6587\u4ef6\u593e\uff0c\u5305\u62ec\u9810\u544a\u7247\uff0c\u5de5\u4f5c\u4eba\u54e1\uff0c\u6f14\u54e1\u9663\u5bb9\u7b49\u76f8\u95dc\u5167\u5bb9\u3002",
|
||||
"LabelEnableEnhancedMoviesHelp": "\u7576\u555f\u7528\u6642\uff0c\u96fb\u5f71\u5c07\u6703\u986f\u793a\u6210\u6587\u4ef6\u593e\uff0c\u5305\u62ec\u9810\u544a\uff0c\u5de5\u4f5c\u4eba\u54e1\uff0c\u6f14\u54e1\u9663\u5bb9\u7b49\u76f8\u95dc\u5167\u5bb9\u3002",
|
||||
"HeaderSyncJobInfo": "\u540c\u6b65\u4efb\u52d9",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
"FolderTypePhotos": "Photos",
|
||||
"FolderTypeMusicVideos": "Music videos",
|
||||
"FolderTypeHomeVideos": "Home videos",
|
||||
"FolderTypeGames": "Games",
|
||||
"FolderTypeBooks": "Books",
|
||||
"FolderTypeTvShows": "TV",
|
||||
"OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
|
||||
"ButtonPlayTrailer": "\u9810\u544a\u7247",
|
||||
"LabelFailed": "\u5931\u6557",
|
||||
"LabelSeries": "\u96fb\u8996\u5287\uff1a",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "\u96fb\u5f71",
|
||||
"FolderTypeMusic": "\u97f3\u6a02",
|
||||
"FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
||||
"FolderTypePhotos": "\u76f8\u7247",
|
||||
"FolderTypeMusicVideos": "\u97f3\u6a02\u5f71\u7247",
|
||||
"FolderTypeHomeVideos": "\u9996\u9801\u5f71\u7247",
|
||||
"FolderTypeGames": "\u904a\u6232",
|
||||
"FolderTypeBooks": "\u66f8\u85c9",
|
||||
"FolderTypeTvShows": "\u96fb\u8996\u7bc0\u76ee",
|
||||
"FolderTypeInherit": "\u7e7c\u627f",
|
||||
"LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a",
|
||||
"TitleScheduledTasks": "\u4efb\u52d9\u6642\u9593\u8868",
|
||||
"HeaderSetupLibrary": "\u8a2d\u7f6e\u60a8\u7684\u5a92\u9ad4\u5eab",
|
||||
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e",
|
||||
"LabelFolderType": "\u6587\u4ef6\u593e\u985e\u578b\uff1a",
|
||||
"ReferToMediaLibraryWiki": "\u8acb\u53c3\u95b1 Wiki \u7684\u5a92\u9ad4\u5eab\u3002",
|
||||
"ReferToMediaLibraryWiki": "\u8acb\u53c3\u95b1\u5a92\u9ad4\u5eab\u7684\u7dad\u57fa \u3002",
|
||||
"LabelCountry": "\u570b\u5bb6\uff1a",
|
||||
"LabelLanguage": "\u8a9e\u8a00\uff1a",
|
||||
"LabelTimeLimitHours": "\u6642\u9650\uff08\u5c0f\u6642\uff09\uff1a",
|
||||
"ButtonJoinTheDevelopmentTeam": "\u52a0\u5165\u6211\u5011\u7684\u767c\u5c55\u5718\u968a",
|
||||
"HeaderPreferredMetadataLanguage": "\u9996\u9078\u8cc7\u6599\u5c6c\u6027\u7684\u8a9e\u8a00\uff1a",
|
||||
"LabelSaveLocalMetadata": "\u4fdd\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u4e26\u653e\u5230\u5a92\u9ad4\u6587\u4ef6\u593e\u5167",
|
||||
"LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u4fdd\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u5230\u5a92\u9ad4\u6587\u4ef6\u593e\u5167\uff0c\u4ed6\u5011\u5c31\u6703\u653e\u5728\u5f88\u5bb9\u6613\u7de8\u8f2f\u7684\u5730\u65b9\u3002",
|
||||
"LabelSaveLocalMetadata": "\u5132\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u5230\u5a92\u9ad4\u6587\u4ef6\u593e",
|
||||
"LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u5132\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u5230\u5a92\u9ad4\u6587\u4ef6\u593e\uff0c\u5b83\u5011\u5c31\u6703\u5f88\u5bb9\u6613\u7de8\u8f2f\u3002",
|
||||
"LabelDownloadInternetMetadata": "\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027",
|
||||
"LabelDownloadInternetMetadataHelp": "Emby \u670d\u52d9\u5668\u53ef\u4ee5\u4e0b\u8f09\u6709\u95dc\u60a8\u7684\u5a92\u9ad4\u8cc7\u8a0a\uff0c\u4ee5\u986f\u793a\u8c50\u5bcc\u5a92\u9ad4\u5c55\u793a\u3002",
|
||||
"LabelDownloadInternetMetadataHelp": "Emby \u4f3a\u670d\u5668\u53ef\u4ee5\u4e0b\u8f09\u6709\u95dc\u60a8\u7684\u5a92\u9ad4\u8cc7\u8a0a\uff0c\u4ee5\u986f\u793a\u8c50\u5bcc\u5a92\u9ad4\u5c55\u793a\u3002",
|
||||
"TabPreferences": "\u504f\u597d",
|
||||
"TabPassword": "\u5bc6\u78bc",
|
||||
"TabLibraryAccess": "\u5a92\u9ad4\u5eab\u901a\u884c\u8b49",
|
||||
"TabAccess": "\u53ef\u4ee5\u901a\u884c",
|
||||
"TabImage": "\u5716\u50cf",
|
||||
"TabProfile": "\u7c21\u4ecb",
|
||||
"TabMetadata": "Metadata",
|
||||
"TabMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
|
||||
"TabImages": "Images",
|
||||
"TabNotifications": "Notifications",
|
||||
"TabNotifications": "\u901a\u77e5",
|
||||
"TabCollectionTitles": "\u6a19\u984c",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
"OptionEnableAccessFromAllDevices": "\u555f\u7528\u6240\u6709\u8a2d\u5099\u901a\u884c\u8b49",
|
||||
"OptionEnableAccessToAllChannels": "\u5141\u8a31\u6240\u6709\u901a\u9053\u901a\u884c\u8b49",
|
||||
"OptionEnableAccessToAllLibraries": "\u5141\u8a31\u6240\u6709\u8cc7\u6599\u5eab\u901a\u884c\u8b49",
|
||||
"DeviceAccessHelp": "\u53ea\u9069\u7528\u65bc\u552f\u4e00\u8fa8\u8b58\u65b9\u6cd5\u7684\u88dd\u7f6e\uff0c\u4e26\u4e0d\u6703\u963b\u6b62\u700f\u89bd\u5668\u8a2a\u554f\u3002\u5df2\u904e\u6ffe\u7684\u7528\u6236\u8a2d\u5099\u6703\u88ab\u963b\u6b62\u8a2a\u554f\uff0c\u76f4\u5230\u4ed6\u5011\u4f7f\u7528\u5df2\u6279\u51c6\u65b0\u88dd\u7f6e\u3002",
|
||||
"HeaderDeviceAccess": "\u5141\u8a31\u88dd\u7f6e\u901a\u884c",
|
||||
"OptionEnableAccessFromAllDevices": "\u555f\u7528\u6240\u6709\u88dd\u5099\u901a\u884c\u8b49",
|
||||
"OptionEnableAccessToAllChannels": "\u5141\u8a31\u6240\u6709\u983b\u9053\u901a\u884c",
|
||||
"OptionEnableAccessToAllLibraries": "\u5141\u8a31\u6240\u6709\u5a92\u9ad4\u5eab\u901a\u884c",
|
||||
"DeviceAccessHelp": "\u53ea\u9069\u7528\u65bc\u552f\u4e00\u8fa8\u8b58\u65b9\u6cd5\u7684\u88dd\u7f6e\uff0c\u4e26\u4e0d\u6703\u963b\u6b62\u700f\u89bd\u5668\u8a2a\u554f\u3002\u5df2\u904e\u6ffe\u7684\u7528\u6236\u8a2d\u5099\u6703\u88ab\u963b\u6b62\u8a2a\u554f\uff0c\u76f4\u5230\u4ed6\u5011\u4f7f\u7528\u5df2\u6279\u51c6\u88dd\u7f6e\u3002",
|
||||
"LabelDisplayMissingEpisodesWithinSeasons": "\u986f\u793a\u907a\u5931\u7bc0\u76ee\u5b63\u5ea6\u8cc7\u6599",
|
||||
"LabelUnairedMissingEpisodesWithinSeasons": "\u986f\u793a\u5c1a\u672a\u64ad\u51fa\u7bc0\u76ee\u5b63\u5ea6\u8cc7\u6599",
|
||||
"HeaderVideoPlaybackSettings": "\u5f71\u7247\u64ad\u653e\u8a2d\u7f6e",
|
||||
|
@ -150,15 +161,15 @@
|
|||
"ButtonAddUser": "\u6dfb\u52a0\u7528\u6236",
|
||||
"ButtonAddLocalUser": "\u6dfb\u52a0\u672c\u5730\u7528\u6236",
|
||||
"ButtonInviteUser": "\u9080\u8acb\u7528\u6236",
|
||||
"ButtonSave": "Save",
|
||||
"ButtonSave": "\u5132\u5b58",
|
||||
"ButtonResetPassword": "\u91cd\u8a2d\u5bc6\u78bc",
|
||||
"LabelNewPassword": "\u65b0\u5bc6\u78bc\uff1a",
|
||||
"LabelNewPasswordConfirm": "\u65b0\u5bc6\u78bc\u78ba\u8a8d\uff1a",
|
||||
"HeaderCreatePassword": "\u5efa\u7acb\u5bc6\u78bc",
|
||||
"LabelCurrentPassword": "\u76ee\u524d\u5bc6\u78bc\uff1a",
|
||||
"LabelMaxParentalRating": "\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u50f9\uff1a",
|
||||
"MaxParentalRatingHelp": "\u5177\u6709\u8f03\u9ad8\u8a55\u50f9\u7684\u5bb6\u9577\u8a55\u50f9\u5167\u5bb9\u5c07\u7531\u6b64\u7528\u6236\u88ab\u96b1\u85cf\u3002",
|
||||
"LibraryAccessHelp": "\u9078\u64c7\u8207\u6b64\u7528\u6236\u5171\u4eab\u7684\u5a92\u9ad4\u6587\u4ef6\u593e\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u700f\u89bd\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
|
||||
"LabelMaxParentalRating": "\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u7d1a\uff1a",
|
||||
"MaxParentalRatingHelp": "\u6b64\u7528\u6236\u6703\u88ab\u96b1\u85cf\u5177\u6709\u8f03\u9ad8\u8a55\u50f9\u7684\u5bb6\u9577\u8a55\u7d1a\u5167\u5bb9\u3002",
|
||||
"LibraryAccessHelp": "\u9078\u64c7\u8207\u6b64\u7528\u6236\u5171\u4eab\u5a92\u9ad4\u6587\u4ef6\u593e\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u700f\u89bd\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
|
||||
"ChannelAccessHelp": "\u9078\u64c7\u6b64\u7528\u6236\u5171\u4eab\u983b\u9053\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u8cc7\u6599\u7ba1\u7406\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
|
||||
"ButtonDeleteImage": "\u522a\u9664\u5716\u50cf",
|
||||
"LabelSelectUsers": "\u9078\u64c7\u7528\u6236\uff1a",
|
||||
|
@ -173,13 +184,13 @@
|
|||
"TabLatest": "\u6700\u65b0",
|
||||
"TabUpcoming": "\u5373\u5c07\u767c\u4f48",
|
||||
"TabShows": "\u7bc0\u76ee",
|
||||
"TabEpisodes": "Episodes",
|
||||
"TabEpisodes": "\u5287\u96c6",
|
||||
"TabGenres": "\u98a8\u683c",
|
||||
"TabPeople": "\u4eba\u7269",
|
||||
"TabNetworks": "\u7db2\u7d61",
|
||||
"HeaderUsers": "Users",
|
||||
"HeaderUsers": "\u7528\u6236",
|
||||
"HeaderFilters": "\u904e\u6ffe\u5668\uff1a",
|
||||
"ButtonFilter": "Filter",
|
||||
"ButtonFilter": "\u904e\u6ffe",
|
||||
"OptionFavorite": "\u6211\u7684\u6700\u611b",
|
||||
"OptionLikes": "\u6b63\u8a55",
|
||||
"OptionDislikes": "\u8ca0\u8a55",
|
||||
|
@ -188,61 +199,60 @@
|
|||
"OptionDirectors": "\u5c0e\u6f14",
|
||||
"OptionWriters": "\u4f5c\u8005",
|
||||
"OptionProducers": "\u88fd\u4f5c\u8005",
|
||||
"HeaderResume": "Resume",
|
||||
"HeaderResume": "\u6062\u5fa9\u64ad\u653e",
|
||||
"HeaderNextUp": "\u63a5\u4e0b\u4f86",
|
||||
"NoNextUpItemsMessage": "\u7121\u767c\u73fe\u3002\u958b\u59cb\u770b\u60a8\u7684\u7bc0\u76ee\uff01",
|
||||
"NoNextUpItemsMessage": "\u672a\u6709\u767c\u73fe\u3002\u958b\u59cb\u6b23\u8cde\u60a8\u7684\u7bc0\u76ee\uff01",
|
||||
"HeaderLatestEpisodes": "\u6700\u65b0\u5287\u96c6",
|
||||
"HeaderPersonTypes": "\u4eba\u7269\u985e\u578b\uff1a",
|
||||
"TabSongs": "Songs",
|
||||
"TabAlbums": "Albums",
|
||||
"TabSongs": "\u6b4c\u66f2",
|
||||
"TabAlbums": "\u5c08\u8f2f",
|
||||
"TabArtists": "\u6b4c\u624b",
|
||||
"TabAlbumArtists": "\u5c08\u8f2f\u6b4c\u624b",
|
||||
"TabMusicVideos": "Music Videos",
|
||||
"ButtonSort": "Sort",
|
||||
"HeaderSortBy": "Sort By:",
|
||||
"HeaderSortOrder": "Sort Order:",
|
||||
"TabAlbumArtists": "\u5531\u7247\u6b4c\u624b",
|
||||
"TabMusicVideos": "\u97f3\u6a02\u5f71\u7247",
|
||||
"ButtonSort": "\u6392\u5e8f",
|
||||
"HeaderSortBy": "\u6392\u5e8f\u65b9\u5f0f\uff1a",
|
||||
"HeaderSortOrder": "\u6392\u5e8f\uff1a",
|
||||
"OptionPlayed": "\u5df2\u64ad\u653e",
|
||||
"OptionUnplayed": "\u672a\u64ad\u653e",
|
||||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionRuntime": "Runtime",
|
||||
"OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
|
||||
"OptionPlayCount": "Play Count",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
"OptionAlbumArtist": "Album Artist",
|
||||
"OptionArtist": "Artist",
|
||||
"OptionAlbum": "Album",
|
||||
"OptionTrackName": "Track Name",
|
||||
"OptionCommunityRating": "Community Rating",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionAscending": "\u905e\u5347",
|
||||
"OptionDescending": "\u905e\u964d",
|
||||
"OptionRuntime": "\u904b\u884c\u6642\u9593",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
||||
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
|
||||
"OptionAlbumArtist": "\u5531\u7247\u6b4c\u624b",
|
||||
"OptionArtist": "\u6b4c\u624b",
|
||||
"OptionAlbum": "\u5531\u7247",
|
||||
"OptionTrackName": "\u66f2\u76ee\u540d\u7a31",
|
||||
"OptionCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
|
||||
"OptionNameSort": "\u540d\u7a31",
|
||||
"OptionFolderSort": "\u6587\u4ef6\u593e",
|
||||
"OptionBudget": "Budget",
|
||||
"OptionRevenue": "Revenue",
|
||||
"OptionPoster": "Poster",
|
||||
"OptionPosterCard": "Poster card",
|
||||
"OptionBudget": "\u9810\u7b97",
|
||||
"OptionRevenue": "\u6536\u5165",
|
||||
"OptionPoster": "\u6d77\u5831",
|
||||
"OptionPosterCard": "\u6d77\u5831\u5361\u7247",
|
||||
"OptionBackdrop": "\u80cc\u666f",
|
||||
"OptionTimeline": "Timeline",
|
||||
"OptionThumb": "Thumb",
|
||||
"OptionThumbCard": "Thumb card",
|
||||
"OptionBanner": "Banner",
|
||||
"OptionCriticRating": "Critic Rating",
|
||||
"OptionVideoBitrate": "Video Bitrate",
|
||||
"OptionResumable": "\u53ef\u6062\u5fa9",
|
||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||
"OptionThumb": "\u7e2e\u5716",
|
||||
"OptionThumbCard": "\u7e2e\u5716\u5361\u7247",
|
||||
"OptionBanner": "\u65d7\u5e5f",
|
||||
"OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u5206",
|
||||
"OptionVideoBitrate": "\u5f71\u7247\u6bd4\u7279\u7387",
|
||||
"OptionResumable": "\u80fd\u5920\u6062\u5fa9",
|
||||
"ScheduledTasksHelp": "\u9ede\u64ca\u4efb\u52d9\u4f86\u8abf\u6574\u5b83\u7684\u6642\u9593\u8868\u3002",
|
||||
"ScheduledTasksTitle": "\u4efb\u52d9\u6642\u9593\u8868",
|
||||
"TabMyPlugins": "\u6211\u7684\u63d2\u4ef6",
|
||||
"TabCatalog": "\u76ee\u9304",
|
||||
"TitlePlugins": "Plugins",
|
||||
"TitlePlugins": "\u63d2\u4ef6",
|
||||
"HeaderAutomaticUpdates": "\u81ea\u52d5\u66f4\u65b0",
|
||||
"HeaderNowPlaying": "\u6b63\u5728\u64ad\u653e",
|
||||
"HeaderLatestAlbums": "\u6700\u65b0\u5c08\u8f2f",
|
||||
"HeaderLatestSongs": "\u6700\u65b0\u6b4c\u66f2",
|
||||
"HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e",
|
||||
"HeaderFrequentlyPlayed": "\u7d93\u5e38\u64ad\u653e",
|
||||
"DevBuildWarning": "\u958b\u767c\u7248\u672c\u6703\u662f\u6700\u65b0\u3002\u4e26\u7d93\u5e38\u767c\u5e03\uff0c\u9019\u4e9b\u7248\u672c\u90fd\u6c92\u6709\u7d93\u904e\u6e2c\u8a66\u3002\u9019\u4e9b\u61c9\u7528\u7a0b\u5f0f\u53ef\u80fd\u6703\u7121\u6cd5\u4f7f\u7528\u5168\u90e8\u529f\u80fd\u6216\u5d29\u6f70\u3002",
|
||||
"DevBuildWarning": "\u958b\u767c\u7248\u672c\u6703\u662f\u6700\u65b0\u3002\u4e26\u7d93\u5e38\u767c\u5e03\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u90fd\u6c92\u6709\u7d93\u904e\u6e2c\u8a66\u3002\u9019\u53ef\u80fd\u6703\u7121\u6cd5\u4f7f\u7528\u5168\u90e8\u529f\u80fd\u6216\u5d29\u6f70\u3002",
|
||||
"LabelVideoType": "\u5f71\u7247\u985e\u578b\uff1a",
|
||||
"OptionBluray": "Blu-ray",
|
||||
"OptionBluray": "\u85cd\u5149",
|
||||
"OptionDvd": "DVD",
|
||||
"OptionIso": "Iso",
|
||||
"Option3D": "3D",
|
||||
|
@ -255,57 +265,57 @@
|
|||
"OptionHasTrailer": "\u9810\u544a\u7247",
|
||||
"OptionHasThemeSong": "\u4e3b\u984c\u66f2",
|
||||
"OptionHasThemeVideo": "\u4e3b\u984c\u5f71\u7247",
|
||||
"TabMovies": "Movies",
|
||||
"TabMovies": "\u96fb\u5f71",
|
||||
"TabStudios": "\u5de5\u4f5c\u5ba4",
|
||||
"TabTrailers": "Trailers",
|
||||
"TabTrailers": "\u9810\u544a",
|
||||
"LabelArtists": "\u85dd\u4eba\uff1a",
|
||||
"LabelArtistsHelp": "\u5206\u958b\u591a\u91cd\u4f7f\u7528",
|
||||
"HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71",
|
||||
"HeaderLatestTrailers": "\u6700\u65b0\u9810\u544a",
|
||||
"OptionHasSpecialFeatures": "\u7279\u8272",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionParentalRating": "Parental Rating",
|
||||
"OptionImdbRating": "IMDB \u8a55\u5206",
|
||||
"OptionParentalRating": "\u5bb6\u9577\u8a55\u7d1a",
|
||||
"OptionPremiereDate": "\u9996\u6620\u65e5\u671f",
|
||||
"TabBasic": "\u57fa\u672c",
|
||||
"TabAdvanced": "Advanced",
|
||||
"TabAdvanced": "\u9032\u968e",
|
||||
"HeaderStatus": "\u72c0\u614b",
|
||||
"OptionContinuing": "Continuing",
|
||||
"OptionEnded": "Ended",
|
||||
"OptionContinuing": "\u7e7c\u7e8c",
|
||||
"OptionEnded": "\u5b8c\u6210",
|
||||
"HeaderAirDays": "\u64ad\u653e\u65e5\u5b50",
|
||||
"OptionSunday": "Sunday",
|
||||
"OptionMonday": "Monday",
|
||||
"OptionTuesday": "Tuesday",
|
||||
"OptionWednesday": "Wednesday",
|
||||
"OptionThursday": "Thursday",
|
||||
"OptionFriday": "Friday",
|
||||
"OptionSaturday": "Saturday",
|
||||
"OptionSunday": "\u661f\u671f\u65e5",
|
||||
"OptionMonday": "\u661f\u671f\u4e00",
|
||||
"OptionTuesday": "\u661f\u671f\u4e8c",
|
||||
"OptionWednesday": "\u661f\u671f\u4e09",
|
||||
"OptionThursday": "\u661f\u671f\u56db",
|
||||
"OptionFriday": "\u661f\u671f\u4e94",
|
||||
"OptionSaturday": "\u661f\u671f\u516d",
|
||||
"HeaderManagement": "\u7ba1\u7406",
|
||||
"LabelManagement": "\u7ba1\u7406\uff1a",
|
||||
"OptionMissingImdbId": "\u7f3a\u5c11 IMDB \u7de8\u865f",
|
||||
"OptionMissingTvdbId": "\u7f3a\u5c11 TheTVDB \u7de8\u865f",
|
||||
"OptionMissingOverview": "\u7f3a\u5c11\u6982\u8ff0",
|
||||
"OptionMissingOverview": "\u7f3a\u5c11\u6982\u6cc1",
|
||||
"OptionFileMetadataYearMismatch": "\u6a94\u6848\/\u8cc7\u6599\u5e74\u4efd\u5c6c\u6027\u4e0d\u5339\u914d",
|
||||
"TabGeneral": "\u4e00\u822c",
|
||||
"TitleSupport": "\u652f\u63f4",
|
||||
"LabelSeasonNumber": "\u5b63\u5ea6\u6578\u76ee",
|
||||
"LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578",
|
||||
"TabLog": "\u65e5\u8a8c",
|
||||
"LabelEpisodeNumber": "\u5287\u96c6\u6578\u76ee",
|
||||
"LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578",
|
||||
"TabAbout": "\u95dc\u65bc",
|
||||
"TabSupporterKey": "\u8d0a\u52a9\u8005\u9396\u5319",
|
||||
"TabBecomeSupporter": "\u6210\u70ba\u8d0a\u52a9\u8005",
|
||||
"ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u8c50\u5bcc\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002",
|
||||
"CheckoutKnowledgeBase": "\u770b\u770b\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u6703\u5e6b\u52a9\u60a8\u5f97\u5230\u6700\u597d\u7684 Emby \u9ad4\u9a57\u3002",
|
||||
"TabSupporterKey": "\u6703\u54e1\u9396\u5319",
|
||||
"TabBecomeSupporter": "\u6210\u70ba\u6703\u54e1",
|
||||
"ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u9f90\u5927\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002",
|
||||
"CheckoutKnowledgeBase": "\u67e5\u770b\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u6703\u5e6b\u52a9\u60a8\u5f97\u5230\u6700\u597d Emby \u7684\u9ad4\u9a57\u3002",
|
||||
"SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab",
|
||||
"VisitTheCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
|
||||
"VisitProjectWebsite": "\u8a2a\u554f Emby \u7db2\u7ad9",
|
||||
"VisitProjectWebsiteLong": "\u6355\u6349 Emby \u6700\u65b0\u52d5\u614b\uff0c\u4e26\u8ddf\u968f\u958b\u767c\u8005\u7684 Blog \u3002",
|
||||
"VisitProjectWebsiteLong": "\u6355\u6349 Emby \u6700\u65b0\u52d5\u614b\uff0c\u4e26\u8ffd\u968f\u958b\u767c\u8005\u7684 Blog \u3002",
|
||||
"OptionHideUser": "\u7531\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236",
|
||||
"OptionHideUserFromLoginHelp": "\u6709\u653e\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u4e26\u767b\u9304\u3002",
|
||||
"OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002",
|
||||
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236",
|
||||
"OptionDisableUserHelp": "\u5982\u679c\u7981\u7528\u6b64\u4f3a\u670d\u5668\uff0c\u5c07\u4e0d\u5141\u8a31\u6b64\u7528\u6236\u7684\u4efb\u4f55\u9023\u63a5\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002",
|
||||
"HeaderAdvancedControl": "\u9032\u968e\u63a7\u5236",
|
||||
"LabelName": "Name:",
|
||||
"ButtonHelp": "Help",
|
||||
"LabelName": "\u540d\u7a31\uff1a",
|
||||
"ButtonHelp": "\u5e6b\u52a9",
|
||||
"OptionAllowUserToManageServer": "\u5141\u8a31\u6b64\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668",
|
||||
"HeaderFeatureAccess": "\u53ef\u4ee5\u4f7f\u7528\u7684\u529f\u80fd",
|
||||
"OptionAllowMediaPlayback": "\u5141\u8a31\u5a92\u9ad4\u64ad\u653e",
|
||||
|
@ -314,30 +324,29 @@
|
|||
"OptionAllowManageLiveTv": "\u5141\u8a31\u7ba1\u7406\u96fb\u8996\u76f4\u64ad\u9304\u5f71",
|
||||
"OptionAllowRemoteControlOthers": "\u5141\u8a31\u9060\u7a0b\u63a7\u5236\u5176\u4ed6\u7528\u6236",
|
||||
"OptionAllowRemoteSharedDevices": "\u5141\u8a31\u9060\u7a0b\u63a7\u5236\u5171\u4eab\u88dd\u7f6e",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA \u88dd\u7f6e\u6703\u88ab\u8a8d\u70ba\u662f\u5171\u4eab\uff0c\u76f4\u81f3\u7528\u6236\u958b\u59cb\u63a7\u5236\u5b83\u3002",
|
||||
"OptionAllowRemoteSharedDevicesHelp": "DLNA \u88dd\u7f6e\u6703\u88ab\u8a8d\u70ba\u662f\u5171\u4eab\uff0c\u76f4\u5230\u7528\u6236\u9032\u884c\u63a7\u5236\u3002",
|
||||
"OptionAllowLinkSharing": "\u5141\u8a31\u793e\u4ea4\u5a92\u9ad4\u5206\u4eab",
|
||||
"OptionAllowLinkSharingHelp": "\u5171\u4eab\u53ea\u6709\u5305\u542b\u5a92\u9ad4\u4fe1\u606f\u7684\u7db2\u9801\u3002\u5a92\u9ad4\u6587\u4ef6\u5f9e\u672a\u516c\u958b\u5206\u4eab\u3002\u5206\u4eab\u662f\u6709\u6642\u9650\uff0c\u5230\u671f\u662f\u57fa\u65bc\u670d\u52d9\u5668\u7684\u5206\u4eab\u8a2d\u7f6e\u3002",
|
||||
"OptionAllowLinkSharingHelp": "\u5171\u4eab\u53ea\u6709\u5305\u542b\u5a92\u9ad4\u4fe1\u606f\u7684\u7db2\u9801\u3002\u5a92\u9ad4\u6587\u4ef6\u5f9e\u672a\u516c\u958b\u5206\u4eab\u3002\u5171\u4eab\u662f\u6709\u6642\u9650\uff0c\u671f\u6eff\u662f\u57fa\u65bc\u4f3a\u670d\u5668\u7684\u5206\u4eab\u8a2d\u7f6e\u3002",
|
||||
"HeaderSharing": "\u5206\u4eab",
|
||||
"HeaderRemoteControl": "\u9059\u63a7\u5668",
|
||||
"OptionMissingTmdbId": "\u7f3a\u5c11 TMDB \u7de8\u865f",
|
||||
"OptionIsHD": "\u9ad8\u6e05",
|
||||
"OptionIsSD": "\u6a19\u6e05",
|
||||
"OptionMetascore": "Metascore",
|
||||
"ButtonSelect": "Select",
|
||||
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
|
||||
"ButtonSelect": "\u9078\u64c7",
|
||||
"ButtonGroupVersions": "\u7248\u672c",
|
||||
"ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf",
|
||||
"PismoMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528 Pismo File Mount \u3002",
|
||||
"TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u65b9\u6848\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002",
|
||||
"TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002",
|
||||
"HeaderCredits": "\u7a4d\u5206",
|
||||
"PleaseSupportOtherProduces": "\u8acb\u5927\u5bb6\u652f\u6301\u6211\u5011\u5176\u4ed6\u514d\u8cbb\u7522\u54c1\uff1a",
|
||||
"VersionNumber": "\u7248\u672c {0}",
|
||||
"TabPaths": "\u8def\u5f91",
|
||||
"TabServer": "Server",
|
||||
"TabServer": "\u4f3a\u670d\u5668",
|
||||
"TabTranscoding": "\u8f49\u78bc\u4e2d",
|
||||
"TitleAdvanced": "\u9032\u968e",
|
||||
"OptionRelease": "Official Release",
|
||||
"OptionBeta": "Beta",
|
||||
"OptionDev": "Dev (Unstable)",
|
||||
"OptionRelease": "\u5b98\u65b9\u767c\u4f48",
|
||||
"OptionBeta": "\u516c\u6e2c",
|
||||
"OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09",
|
||||
"LabelAllowServerAutoRestart": "\u5141\u8a31\u81ea\u52d5\u91cd\u555f\u4f86\u66f4\u65b0\u4f3a\u670d\u5668",
|
||||
"LabelAllowServerAutoRestartHelp": "\u4f3a\u670d\u5668\u5c07\u53ea\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u548c\u7a7a\u6a94\u671f\u91cd\u555f\u3002",
|
||||
"LabelEnableDebugLogging": "\u555f\u7528\u8a18\u9304\u9664\u932f\u65e5\u8a8c",
|
||||
|
@ -352,17 +361,17 @@
|
|||
"LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
|
||||
"LabelImagesByNamePathHelp": "\u9078\u64c7\u6f14\u54e1\u3001\u98a8\u683c\u548c\u5de5\u4f5c\u5ba4\u5716\u50cf\u4e0b\u8f09\u7684\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u3002",
|
||||
"LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u8def\u5f91\uff1a",
|
||||
"LabelMetadataPathHelp": "\u9078\u64c7\u85dd\u8853\u4f5c\u54c1\u548c\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u4e0b\u8f09\u7684\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\uff0c\u5982\u679c\u4e0d\u662f\u5728\u5a92\u9ad4\u6587\u4ef6\u593e\u4e2d\u7bc0\u7701\u3002",
|
||||
"LabelMetadataPathHelp": "\u9078\u64c7\u85dd\u8853\u4f5c\u54c1\u548c\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u4e0b\u8f09\u7684\u81ea\u5b9a\u4f4d\u7f6e\u3002",
|
||||
"LabelTranscodingTempPath": "\u81e8\u6642\u8f49\u78bc\u8def\u5f91\uff1a",
|
||||
"LabelTranscodingTempPathHelp": "\u6b64\u6587\u4ef6\u593e\u5305\u542b\u8f49\u63db\u5668\u9700\u8981\u7684\u6587\u4ef6\u3002\u9078\u64c7\u81ea\u5b9a\u7fa9\u8def\u5f91\uff0c\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u4f3a\u670d\u5668\u7684\u6578\u64da\u6587\u4ef6\u593e\u3002",
|
||||
"LabelTranscodingTempPathHelp": "\u6b64\u6587\u4ef6\u593e\u5305\u542b\u8f49\u63db\u5668\u9700\u8981\u7684\u6587\u4ef6\u3002\u9078\u64c7\u81ea\u5b9a\u8def\u5f91\uff0c\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u4f3a\u670d\u5668\u7684\u6578\u64da\u6587\u4ef6\u593e\u3002",
|
||||
"TabBasics": "\u57fa\u672c",
|
||||
"TabTV": "\u96fb\u8996\u7bc0\u76ee",
|
||||
"TabGames": "Games",
|
||||
"TabGames": "\u904a\u6232",
|
||||
"TabMusic": "\u97f3\u6a02",
|
||||
"TabOthers": "\u5176\u4ed6",
|
||||
"HeaderExtractChapterImagesFor": "\u5f9e\u4ee5\u4e0b\u5a92\u9ad4\u63d0\u53d6\u7ae0\u7bc0\u622a\u5716\uff1a",
|
||||
"OptionMovies": "Movies",
|
||||
"OptionEpisodes": "Episodes",
|
||||
"OptionMovies": "\u96fb\u5f71",
|
||||
"OptionEpisodes": "\u5287\u96c6",
|
||||
"OptionOtherVideos": "\u5176\u4ed6\u5f71\u50cf",
|
||||
"TitleMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
|
||||
"LabelAutomaticUpdates": "\u555f\u7528\u81ea\u52d5\u66f4\u65b0",
|
||||
|
@ -376,8 +385,8 @@
|
|||
"ExtractChapterImagesHelp": "\u7ae0\u7bc0\u5716\u50cf\u63d0\u53d6\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u5f62\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u5f15\u81f4CPU\u8ca0\u8f09\uff0c\u4e26\u53ef\u80fd\u9700\u8981\u5e7eGB\u7684\u7a7a\u9593\u3002\u5b83\u904b\u884c\u6642\u5f71\u50cf\u6703\u88ab\u767c\u73fe\uff0c\u540c\u6642\u4e5f\u53ef\u4f5c\u70ba\u591c\u9593\u4efb\u52d9\u6642\u9593\u8868\u3002\u9019\u5728\u8a08\u5283\u4efb\u52d9\u5340\u57df\u8a2d\u7f6e\u3002\u9019\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u4f7f\u7528\u6642\u9593\u904b\u884c\u3002",
|
||||
"LabelMetadataDownloadLanguage": "\u504f\u597d\u4e0b\u8f09\u8a9e\u8a00\uff1a",
|
||||
"ButtonAutoScroll": "\u81ea\u52d5\u6efe\u52d5",
|
||||
"LabelImageSavingConvention": "\u5716\u50cf\u4fdd\u5b58\u547d\u540d\u898f\u5247\uff1a",
|
||||
"LabelImageSavingConventionHelp": "Emby \u8b58\u5225\u7531\u5927\u90e8\u5206\u4e3b\u8981\u5a92\u9ad4\u61c9\u7528\u7a0b\u5f0f\u7684\u5716\u50cf\u3002\u5982\u679c\u60a8\u9084\u4f7f\u7528\u5176\u4ed6\u7522\u54c1\uff0c\u60a8\u9078\u64c7\u4e0b\u8f09\u7684\u5b89\u6392\u662f\u6709\u6548\u3002",
|
||||
"LabelImageSavingConvention": "\u5716\u50cf\u5132\u5b58\u898f\u5247\uff1a",
|
||||
"LabelImageSavingConventionHelp": "Emby \u8b58\u5225\u7531\u5927\u90e8\u5206\u4e3b\u8981\u5a92\u9ad4\u61c9\u7528\u7a0b\u5f0f\u7684\u5716\u50cf\u3002\u5982\u679c\u60a8\u9084\u4f7f\u7528\u5176\u4ed6\u7522\u54c1\uff0c\u8acb\u9078\u64c7\u6709\u6548\u4e0b\u8f09\u5b89\u6392\u3002",
|
||||
"OptionImageSavingCompatible": "\u76f8\u5bb9\u6027 - Emby\/Kodi\/Plex",
|
||||
"OptionImageSavingStandard": "\u6a19\u6e96 - MB2",
|
||||
"ButtonSignIn": "\u767b\u5165",
|
||||
|
@ -390,10 +399,10 @@
|
|||
"TabGuide": "\u6307\u5357",
|
||||
"TabChannels": "\u983b\u9053",
|
||||
"TabCollections": "\u6536\u85cf",
|
||||
"HeaderChannels": "Channels",
|
||||
"HeaderChannels": "\u983b\u9053",
|
||||
"TabRecordings": "\u9304\u5f71",
|
||||
"TabScheduled": "\u9810\u5b9a",
|
||||
"TabSeries": "Series",
|
||||
"TabSeries": "\u96fb\u8996\u5287",
|
||||
"TabFavorites": "\u6211\u7684\u6700\u53d7",
|
||||
"TabMyLibrary": "\u6211\u7684\u5a92\u9ad4\u5eab",
|
||||
"ButtonCancelRecording": "\u53d6\u6d88\u9304\u5f71",
|
||||
|
@ -404,11 +413,11 @@
|
|||
"OptionPostPaddingRequired": "\u5f8c\u88dc\u5145\u662f\u5fc5\u9700\u7684\uff0c\u4ee5\u4fbf\u8a18\u9304\u3002",
|
||||
"HeaderWhatsOnTV": "\u6b63\u5728\u64ad\u653e\u7684\u7bc0\u76ee",
|
||||
"HeaderUpcomingTV": "\u5373\u5c07\u767c\u4f48\u7684\u96fb\u8996\u7bc0\u76ee",
|
||||
"TabStatus": "\u58ef\u6cc1",
|
||||
"TabStatus": "\u72c0\u6cc1",
|
||||
"TabSettings": "\u8a2d\u5b9a",
|
||||
"ButtonRefreshGuideData": "\u5237\u65b0\u96fb\u8996\u6307\u5357\u8cc7\u6599",
|
||||
"ButtonRefresh": "Refresh",
|
||||
"ButtonAdvancedRefresh": "Advanced Refresh",
|
||||
"ButtonRefreshGuideData": "\u91cd\u65b0\u6574\u7406\u96fb\u8996\u6307\u5357\u8cc7\u6599",
|
||||
"ButtonRefresh": "\u91cd\u65b0\u6574\u7406",
|
||||
"ButtonAdvancedRefresh": "\u9032\u968e\u91cd\u65b0\u6574\u7406",
|
||||
"OptionPriority": "\u512a\u5148\u5ea6",
|
||||
"OptionRecordOnAllChannels": "\u8a18\u9304\u6240\u6709\u983b\u9053",
|
||||
"OptionRecordAnytime": "\u6bcf\u4e00\u6b21\u8a18\u9304",
|
||||
|
@ -417,20 +426,20 @@
|
|||
"HeaderDays": "\u9304\u5f71\u65e5",
|
||||
"HeaderActiveRecordings": "\u6b63\u5728\u9304\u5f71\u7684\u7bc0\u76ee",
|
||||
"HeaderLatestRecordings": "\u6700\u8fd1\u9304\u5f71\u7684\u7bc0\u76ee",
|
||||
"HeaderAllRecordings": "All Recordings",
|
||||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonRecord": "Record",
|
||||
"ButtonDelete": "Delete",
|
||||
"ButtonRemove": "Remove",
|
||||
"HeaderAllRecordings": "\u6240\u6709\u9304\u5f71",
|
||||
"ButtonPlay": "\u64ad\u653e",
|
||||
"ButtonEdit": "\u7de8\u8f2f",
|
||||
"ButtonRecord": "\u9304\u5f71",
|
||||
"ButtonDelete": "\u5220\u9664",
|
||||
"ButtonRemove": "\u6e05\u9664",
|
||||
"OptionRecordSeries": "\u9304\u5f71\u96fb\u8996\u5287",
|
||||
"HeaderDetails": "\u8a73\u60c5",
|
||||
"TitleLiveTV": "Live TV",
|
||||
"TitleLiveTV": "\u96fb\u8996\u76f4\u64ad",
|
||||
"LabelNumberOfGuideDays": "\u4e0b\u8f09\u96fb\u8996\u6307\u5357\u65e5\u6578",
|
||||
"LabelNumberOfGuideDaysHelp": "\u4e0b\u8f09\u66f4\u591a\u96fb\u8996\u6307\u5357\u8cc7\u6599\u6703\u63d0\u4f9b\u9032\u968e\u67e5\u770b\u6642\u9593\u8868\u80fd\u529b\uff0c\u4f46\u5b83\u5c07\u9700\u8981\u66f4\u9577\u7684\u4e0b\u8f09\u6642\u9593\u3002\u81ea\u52d5\u57fa\u65bc\u983b\u9053\u6578\u76ee\u4f86\u9078\u64c7\u3002",
|
||||
"OptionAutomatic": "Auto",
|
||||
"LabelNumberOfGuideDaysHelp": "\u4e0b\u8f09\u66f4\u591a\u96fb\u8996\u6307\u5357\u8cc7\u6599\u6703\u63d0\u4f9b\u66f4\u597d\u6642\u9593\u8868\u67e5\u770b\u80fd\u529b\uff0c\u4f46\u5c07\u9700\u8981\u66f4\u9577\u7684\u4e0b\u8f09\u6642\u9593\u3002\u81ea\u52d5\u57fa\u65bc\u983b\u9053\u6578\u76ee\u4f86\u9078\u64c7\u3002",
|
||||
"OptionAutomatic": "\u81ea\u52d5",
|
||||
"HeaderServices": "\u670d\u52d9",
|
||||
"LiveTvPluginRequired": "\u81f3\u5c11\u9700\u8981\u5b89\u88dd\u4e00\u500b\u96fb\u8996\u529f\u80fd\u63d2\u4ef6\u4f86\u7e7c\u7e8c",
|
||||
"LiveTvPluginRequired": "\u9700\u8981\u81f3\u5c11\u5b89\u88dd\u4e00\u500b\u96fb\u8996\u529f\u80fd\u63d2\u4ef6\u4f86\u7e7c\u7e8c",
|
||||
"LiveTvPluginRequiredHelp": "\u8acb\u5b89\u88dd\u4e00\u500b\u7531\u6211\u5011\u63d0\u4f9b\u7684\u63d2\u4ef6\uff0c\u5982 Next Pvr \u6216 ServerWmc\u3002",
|
||||
"LabelCustomizeOptionsPerMediaType": "\u81ea\u8a02\u5a92\u9ad4\u985e\u578b\uff1a",
|
||||
"OptionDownloadThumbImage": "\u7e2e\u5716",
|
||||
|
@ -451,7 +460,7 @@
|
|||
"LabelMinScreenshotDownloadWidth": "\u6700\u5c0f\u4e0b\u8f09\u622a\u5716\u5bec\u5ea6\uff1a",
|
||||
"ButtonAddScheduledTaskTrigger": "\u65b0\u589e\u89f8\u767c",
|
||||
"HeaderAddScheduledTaskTrigger": "\u65b0\u589e\u89f8\u767c",
|
||||
"ButtonAdd": "Add",
|
||||
"ButtonAdd": "\u65b0\u589e",
|
||||
"LabelTriggerType": "\u89f8\u767c\u985e\u578b\uff1a",
|
||||
"OptionDaily": "\u6bcf\u65e5",
|
||||
"OptionWeekly": "\u6bcf\u9031",
|
||||
|
@ -462,7 +471,7 @@
|
|||
"LabelTime": "\u6642\u9593\uff1a",
|
||||
"LabelEvent": "\u4e8b\u4ef6\uff1a",
|
||||
"OptionWakeFromSleep": "\u5f9e\u4f11\u7720\u4e2d\u6062\u5fa9",
|
||||
"LabelEveryXMinutes": "\u6bcf\uff1a",
|
||||
"LabelEveryXMinutes": "\u6bcf\u6b21\uff1a",
|
||||
"HeaderTvTuners": "\u8abf\u8ae7\u5668",
|
||||
"HeaderGallery": "\u756b\u5eca",
|
||||
"HeaderLatestGames": "\u6700\u65b0\u904a\u6232",
|
||||
|
@ -473,7 +482,7 @@
|
|||
"TabPathSubstitution": "\u4ee3\u66ff\u8def\u5f91",
|
||||
"LabelSeasonZeroDisplayName": "\u9996\u5b63\u7684\u986f\u793a\u540d\u7a31\uff1a",
|
||||
"LabelEnableRealtimeMonitor": "\u555f\u7528\u5be6\u6642\u76e3\u63a7",
|
||||
"LabelEnableRealtimeMonitorHelp": "\u652f\u63f4\u6587\u4ef6\u7cfb\u7d71\u4e0a\u7684\u6539\u8b8a\uff0c\u5c07\u6703\u7acb\u5373\u8655\u7406\u3002",
|
||||
"LabelEnableRealtimeMonitorHelp": "\u652f\u63f4\u7acb\u5373\u8655\u7406\u6587\u4ef6\u7cfb\u7d71\u4e0a\u7684\u6539\u8b8a",
|
||||
"ButtonScanLibrary": "\u6383\u63cf\u5a92\u9ad4\u5eab",
|
||||
"HeaderNumberOfPlayers": "\u73a9\u5bb6\u4eba\u6578\uff1a",
|
||||
"OptionAnyNumberOfPlayers": "\u4efb\u4f55",
|
||||
|
@ -481,10 +490,10 @@
|
|||
"Option2Player": "2+",
|
||||
"Option3Player": "3+",
|
||||
"Option4Player": "4+",
|
||||
"HeaderMediaFolders": "Media Folders",
|
||||
"HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e",
|
||||
"HeaderThemeVideos": "\u4e3b\u984c\u5f71\u7247",
|
||||
"HeaderThemeSongs": "\u4e3b\u984c\u66f2",
|
||||
"HeaderScenes": "Scenes",
|
||||
"HeaderScenes": "\u5834\u666f",
|
||||
"HeaderAwardsAndReviews": "\u734e\u9805\u8207\u8a55\u8ad6",
|
||||
"HeaderSoundtracks": "\u539f\u8072\u97f3\u6a02",
|
||||
"HeaderMusicVideos": "\u97f3\u6a02\u5f71\u7247",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
|
||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
|
||||
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
|
||||
"ButtonPlayTrailer": "\u9810\u544a\u7247",
|
||||
"LabelMissing": "\u7f3a\u5c11",
|
||||
"LabelOffline": "\u96e2\u7dda",
|
||||
"PathSubstitutionHelp": "\u66ff\u4ee3\u8def\u5f91\u7528\u65bc\u4f3a\u670d\u5668\u4e0a\u7684\u8def\u5f91\u4f86\u6620\u5c04\u5230\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u7684\u8def\u5f91\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u8a2a\u554f\u5a92\u9ad4\u4f3a\u670d\u5668\uff0c\u5b83\u5011\u662f\u80fd\u5920\u76f4\u63a5\u901a\u904e\u7db2\u7d61\u64ad\u653e\u4f86\u907f\u514d\u4f7f\u7528\u4f3a\u670d\u5668\u8cc7\u6e90\u7528\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002",
|
||||
|
@ -513,13 +521,13 @@
|
|||
"OptionAutomaticTranscodingHelp": "\u4f3a\u670d\u5668\u5c07\u6c7a\u5b9a\u8cea\u7d20\u548c\u901f\u5ea6",
|
||||
"OptionHighSpeedTranscodingHelp": "\u4f4e\u8cea\uff0c\u4f46\u7de8\u78bc\u901f\u5ea6\u5feb",
|
||||
"OptionHighQualityTranscodingHelp": "\u9ad8\u8cea\uff0c\u4f46\u7de8\u78bc\u901f\u5ea6\u6162",
|
||||
"OptionMaxQualityTranscodingHelp": "\u6700\u9ad8\u8cea\u7d20\uff0c\u4f46\u7de8\u78bc\u901f\u5ea6\u6700\u6162\uff0cCPU\u4f7f\u7528\u7387\u6975\u9ad8",
|
||||
"OptionMaxQualityTranscodingHelp": "\u6700\u9ad8\u8cea\u7d20\uff0c\u4f46\u7de8\u78bc\u901f\u5ea6\u6700\u6162\uff0c\u6975\u9ad8CPU\u4f7f\u7528\u7387",
|
||||
"OptionHighSpeedTranscoding": "\u9ad8\u901f",
|
||||
"OptionHighQualityTranscoding": "\u9ad8\u8cea",
|
||||
"OptionMaxQualityTranscoding": "\u6700\u9ad8\u8cea\u7d20",
|
||||
"OptionEnableDebugTranscodingLogging": "\u8a18\u9304\u8f49\u78bc\u9664\u932f\u4fe1\u606f\u5230\u65e5\u8a8c",
|
||||
"OptionEnableDebugTranscodingLoggingHelp": "\u9019\u5c07\u5efa\u7acb\u4e00\u500b\u5de8\u5927\u7684\u65e5\u8a8c\u6587\u4ef6\uff0c\u5efa\u8b70\u53ea\u9700\u9032\u884c\u6545\u969c\u6392\u9664\u6642\u555f\u52d5\u3002",
|
||||
"EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u9019\u5408\u96c6\u4e2d\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u7c3f\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002",
|
||||
"OptionEnableDebugTranscodingLoggingHelp": "\u9019\u6703\u5efa\u7acb\u4e00\u500b\u9f90\u5927\u7684\u65e5\u8a8c\u6587\u4ef6\uff0c\u5efa\u8b70\u53ea\u9700\u9032\u884c\u6545\u969c\u6392\u9664\u6642\u555f\u52d5\u3002",
|
||||
"EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u6b64\u6536\u85cf\u5eab\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u7c3f\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002",
|
||||
"HeaderAddTitles": "\u65b0\u589e\u6a19\u984c",
|
||||
"LabelEnableDlnaPlayTo": "\u555f\u7528\u64ad\u653e\u5230 DLNA \u8a2d\u5099",
|
||||
"LabelEnableDlnaPlayToHelp": "Emby \u53ef\u4ee5\u5728\u7db2\u7d61\u5167\u6aa2\u6e2c\u88dd\u7f6e\uff0c\u4e26\u63d0\u4f9b\u9060\u7a0b\u63a7\u5236\u5b83\u5011\u7684\u80fd\u529b\u3002",
|
||||
|
@ -533,7 +541,7 @@
|
|||
"SystemDlnaProfilesHelp": "\u7cfb\u7d71\u914d\u7f6e\u6587\u4ef6\u662f\u552f\u8b80\u7684\u3002\u66f4\u6539\u7cfb\u7d71\u914d\u7f6e\u6587\u4ef6\u5c07\u88ab\u4fdd\u5b58\u5230\u4e00\u500b\u81ea\u5b9a\u65b0\u914d\u7f6e\u6587\u4ef6\u3002",
|
||||
"TitleDashboard": "\u63a7\u5236\u53f0",
|
||||
"TabHome": "\u9996\u9801",
|
||||
"TabInfo": "Info",
|
||||
"TabInfo": "\u8cc7\u8a0a",
|
||||
"HeaderLinks": "\u93c8\u7d50",
|
||||
"HeaderSystemPaths": "\u7cfb\u7d71\u8def\u5f91",
|
||||
"LinkCommunity": "\u8a0e\u8ad6\u5340",
|
||||
|
@ -544,9 +552,9 @@
|
|||
"LabelFriendlyServerNameHelp": "\u6b64\u540d\u7a31\u5c07\u7528\u65bc\u8fa8\u8b58\u4f3a\u670d\u5668\u3002\u5982\u679c\u7559\u7a7a\uff0c\u5c07\u4f7f\u7528\u96fb\u8166\u540d\u7a31\u3002",
|
||||
"LabelPreferredDisplayLanguage": "\u9996\u9078\u986f\u793a\u8a9e\u8a00\uff1a",
|
||||
"LabelPreferredDisplayLanguageHelp": "\u7ffb\u8b6f Emby \u662f\u4e00\u500b\u9032\u884c\u4e2d\u7684\u9805\u76ee\u3002",
|
||||
"LabelReadHowYouCanContribute": "\u60a8\u4e86\u89e3\u5982\u4f55\u624d\u80fd\u4f5c\u51fa\u8ca2\u737b\u3002",
|
||||
"HeaderNewCollection": "\u65b0\u5408\u96c6",
|
||||
"ButtonSubmit": "Submit",
|
||||
"LabelReadHowYouCanContribute": "\u4e86\u89e3\u5982\u4f55\u53ef\u4ee5\u4f5c\u51fa\u8ca2\u737b\u3002",
|
||||
"HeaderNewCollection": "\u65b0\u6536\u85cf\u5eab",
|
||||
"ButtonSubmit": "\u63d0\u4ea4",
|
||||
"ButtonCreate": "\u5efa\u7acb",
|
||||
"LabelCustomCss": "\u81ea\u8a02 CSS\uff1a",
|
||||
"LabelCustomCssHelp": "\u61c9\u7528\u81ea\u5b9a CSS Web \u754c\u9762\u3002",
|
||||
|
@ -576,56 +584,54 @@
|
|||
"LabelMinResumeDurationHelp": "\u5a92\u9ad4\u6bd4\u6b64\u66f4\u77ed\u5c07\u4e0d\u53ef\u6062\u5fa9\u64ad\u653e",
|
||||
"TitleAutoOrganize": "\u81ea\u52d5\u6574\u7406",
|
||||
"TabActivityLog": "\u6d3b\u52d5\u65e5\u8a8c",
|
||||
"HeaderName": "Name",
|
||||
"HeaderName": "\u540d\u7a31",
|
||||
"HeaderDate": "\u65e5\u671f",
|
||||
"HeaderSource": "\u4f86\u6e90",
|
||||
"HeaderDestination": "\u76ee\u7684\u5730",
|
||||
"HeaderProgram": "\u7a0b\u5f0f",
|
||||
"HeaderClients": "\u5ba2\u6236\u7aef",
|
||||
"LabelCompleted": "\u5df2\u5b8c\u6210",
|
||||
"LabelFailed": "\u5931\u6557",
|
||||
"LabelSkipped": "\u7565\u904e",
|
||||
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
|
||||
"LabelSeries": "\u96fb\u8996\u5287\uff1a",
|
||||
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u5287\u96c6\u6578\u76ee\uff1a",
|
||||
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
|
||||
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
"HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a",
|
||||
"LabelSupportAmount": "\u91d1\u984d\uff08\u7f8e\u5143\uff09",
|
||||
"HeaderSupportTheTeamHelp": "\u78ba\u4fdd\u6301\u7e8c\u5e6b\u52a9\u6350\u8d08\u9805\u76ee\u7684\u767c\u5c55\u3002\u4e00\u90e8\u5206\u7684\u6350\u6b3e\u6703\u6210\u70ba\u6211\u5011\u8ca2\u737b\u65bc\u5176\u4ed6\u514d\u8cbb\u5de5\u5177\u3002",
|
||||
"ButtonEnterSupporterKey": "\u8f38\u5165\u8d0a\u52a9\u8005\u9396\u5319",
|
||||
"DonationNextStep": "\u4e00\u65e6\u5b8c\u6210\uff0c\u8acb\u8fd4\u56de\u4e26\u8f38\u5165\u60a8\u7684\u8d0a\u52a9\u8005\u9396\u5319\uff0c\u60a8\u5c07\u6703\u6536\u5230\u96fb\u5b50\u90f5\u4ef6\u3002",
|
||||
"HeaderSupportTheTeamHelp": "\u8acb\u78ba\u4fdd\u6301\u7e8c\u652f\u6301\u6350\u8d08\u9805\u76ee\u7684\u767c\u5c55\u3002\u90e8\u5206\u6350\u6b3e\u6703\u6210\u70ba\u6211\u5011\u8ca2\u737b\u66f4\u591a\u514d\u8cbb\u9805\u76ee\u7684\u52d5\u529b\u3002",
|
||||
"ButtonEnterSupporterKey": "\u8f38\u5165\u6703\u54e1\u9396\u5319",
|
||||
"DonationNextStep": "\u4e00\u65e6\u5b8c\u6210\uff0c\u8acb\u8fd4\u56de\u4e26\u8f38\u5165\u60a8\u7684\u6703\u54e1\u9396\u5319\uff0c\u60a8\u5c07\u6703\u6536\u5230\u96fb\u5b50\u90f5\u4ef6\u3002",
|
||||
"AutoOrganizeHelp": "\u81ea\u52d5\u6574\u7406\u6703\u76e3\u6e2c\u60a8\u7684\u4e0b\u8f09\u6587\u4ef6\u593e\u5167\u65b0\u6587\u4ef6\uff0c\u4e26\u5c07\u6703\u79fb\u52d5\u5230\u60a8\u7684\u5a92\u9ad4\u76ee\u9304\u3002",
|
||||
"AutoOrganizeTvHelp": "TV file organizing will only add episodes to existing series. It will not create new series folders.",
|
||||
"OptionEnableEpisodeOrganization": "Enable new episode organization",
|
||||
"LabelWatchFolder": "Watch folder:",
|
||||
"LabelWatchFolderHelp": "The server will poll this folder during the 'Organize new media files' scheduled task.",
|
||||
"ButtonViewScheduledTasks": "View scheduled tasks",
|
||||
"LabelMinFileSizeForOrganize": "Minimum file size (MB):",
|
||||
"LabelMinFileSizeForOrganizeHelp": "Files under this size will be ignored.",
|
||||
"LabelSeasonFolderPattern": "Season folder pattern:",
|
||||
"LabelSeasonZeroFolderName": "Season zero folder name:",
|
||||
"HeaderEpisodeFilePattern": "Episode file pattern",
|
||||
"LabelEpisodePattern": "Episode pattern:",
|
||||
"LabelMultiEpisodePattern": "Multi-Episode pattern:",
|
||||
"HeaderSupportedPatterns": "Supported Patterns",
|
||||
"HeaderTerm": "Term",
|
||||
"HeaderPattern": "Pattern",
|
||||
"HeaderResult": "Result",
|
||||
"LabelDeleteEmptyFolders": "Delete empty folders after organizing",
|
||||
"LabelDeleteEmptyFoldersHelp": "Enable this to keep the download directory clean.",
|
||||
"LabelDeleteLeftOverFiles": "Delete left over files with the following extensions:",
|
||||
"LabelDeleteLeftOverFilesHelp": "Separate with ;. For example: .nfo;.txt",
|
||||
"OptionOverwriteExistingEpisodes": "Overwrite existing episodes",
|
||||
"LabelTransferMethod": "Transfer method",
|
||||
"OptionCopy": "Copy",
|
||||
"OptionMove": "Move",
|
||||
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
|
||||
"HeaderLatestNews": "Latest News",
|
||||
"HeaderHelpImproveProject": "Help Improve Emby",
|
||||
"HeaderRunningTasks": "Running Tasks",
|
||||
"HeaderActiveDevices": "Active Devices",
|
||||
"HeaderPendingInstallations": "Pending Installations",
|
||||
"HeaderServerInformation": "Server Information",
|
||||
"AutoOrganizeTvHelp": "\u96fb\u8996\u7bc0\u76ee\u6574\u7406\u53ea\u6703\u6dfb\u52a0\u6232\u96c6\u5230\u73fe\u6709\u7bc0\u76ee\u7cfb\u5217\u3002\u5b83\u4e0d\u6703\u7522\u751f\u65b0\u7cfb\u5217\u7684\u6587\u4ef6\u593e\u3002",
|
||||
"OptionEnableEpisodeOrganization": "\u555f\u7528\u65b0\u6232\u96c6\u6574\u7406",
|
||||
"LabelWatchFolder": "\u76e3\u8996\u6587\u4ef6\u593e\uff1a",
|
||||
"LabelWatchFolderHelp": "\u4f3a\u670d\u5668\u5c07\u5728\u201c\u65b0\u5a92\u9ad4\u6587\u4ef6\u6574\u7406\u201d\u4efb\u52d9\u6642\u67e5\u8a62\u8a72\u6587\u4ef6\u593e\u3002",
|
||||
"ButtonViewScheduledTasks": "\u67e5\u770b\u4efb\u52d9\u6642\u9593\u8868",
|
||||
"LabelMinFileSizeForOrganize": "\u6700\u5c0f\u6587\u4ef6\u5927\u5c0f\uff08MB\uff09\uff1a",
|
||||
"LabelMinFileSizeForOrganizeHelp": "\u6839\u64da\u6b64\u5927\u5c0f\u4ee5\u4e0b\u7684\u6587\u4ef6\u5c07\u88ab\u5ffd\u7565\u3002",
|
||||
"LabelSeasonFolderPattern": "\u5b63\u5ea6\u6232\u96c6\u6587\u4ef6\u593e\u6a21\u5f0f\uff1a",
|
||||
"LabelSeasonZeroFolderName": "\u9996\u5b63\u6232\u96c6\u6587\u4ef6\u593e\u540d\u7a31\uff1a",
|
||||
"HeaderEpisodeFilePattern": "\u6232\u96c6\u6587\u4ef6\u593e\u6a21\u5f0f",
|
||||
"LabelEpisodePattern": "\u6232\u96c6\u6a21\u5f0f",
|
||||
"LabelMultiEpisodePattern": "\u591a\u91cd\u6232\u96c6\u6a21\u5f0f",
|
||||
"HeaderSupportedPatterns": "\u652f\u63f4\u6a21\u5f0f",
|
||||
"HeaderTerm": "\u689d\u4ef6",
|
||||
"HeaderPattern": "\u6a21\u5f0f",
|
||||
"HeaderResult": "\u7d50\u679c",
|
||||
"LabelDeleteEmptyFolders": "\u6574\u7406\u5f8c\u522a\u9664\u7a7a\u6587\u4ef6\u593e",
|
||||
"LabelDeleteEmptyFoldersHelp": "\u555f\u7528\u6b64\u4fdd\u6301\u4e0b\u8f09\u76ee\u9304\u6e05\u7a7a\u3002",
|
||||
"LabelDeleteLeftOverFiles": "\u522a\u9664\u6709\u9019\u4e9b\u64f4\u5c55\u540d\u7684\u907a\u7559\u6587\u4ef6\uff1a",
|
||||
"LabelDeleteLeftOverFilesHelp": "\u9019\u4e9b\u9664\u5916 ;. \u4f8b\u5982\uff1a.nfo;.txt",
|
||||
"OptionOverwriteExistingEpisodes": "\u8986\u5beb\u5b58\u5728\u6232\u96c6",
|
||||
"LabelTransferMethod": "\u50b3\u905e\u65b9\u6cd5",
|
||||
"OptionCopy": "\u8907\u88fd",
|
||||
"OptionMove": "\u79fb\u52d5",
|
||||
"LabelTransferMethodHelp": "\u5f9e\u76e3\u8996\u6587\u4ef6\u593e\u8907\u88fd\u6216\u79fb\u52d5\u6587\u4ef6",
|
||||
"HeaderLatestNews": "\u6700\u65b0\u6d88\u606f",
|
||||
"HeaderHelpImproveProject": "\u5e6b\u52a9\u6539\u5584 Emby",
|
||||
"HeaderRunningTasks": "\u904b\u884c\u4efb\u52d9",
|
||||
"HeaderActiveDevices": "\u751f\u6548\u88dd\u7f6e",
|
||||
"HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88dd",
|
||||
"HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a",
|
||||
"ButtonRestartNow": "Restart Now",
|
||||
"ButtonRestart": "Restart",
|
||||
"ButtonShutdown": "Shutdown",
|
||||
|
@ -639,18 +645,18 @@
|
|||
"LabelDownMixAudioScale": "Audio boost when downmixing:",
|
||||
"LabelDownMixAudioScaleHelp": "Boost audio when downmixing. Set to 1 to preserve original volume value.",
|
||||
"ButtonLinkKeys": "Transfer Key",
|
||||
"LabelOldSupporterKey": "Old supporter key",
|
||||
"LabelNewSupporterKey": "New supporter key",
|
||||
"LabelOldSupporterKey": "\u820a\u6703\u54e1\u9396\u5319",
|
||||
"LabelNewSupporterKey": "\u65b0\u6703\u54e1\u9396\u5319",
|
||||
"HeaderMultipleKeyLinking": "Transfer to New Key",
|
||||
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.",
|
||||
"MultipleKeyLinkingHelp": "\u5982\u679c\u60a8\u6536\u5230\u4e86\u65b0\u6703\u54e1\u9396\u5319\uff0c\u8acb\u4f7f\u7528\u6b64\u8868\u4f86\u8f49\u79fb\u820a\u9396\u5319\u81f3\u65b0\u9396\u5319\u3002",
|
||||
"LabelCurrentEmailAddress": "Current email address",
|
||||
"LabelCurrentEmailAddressHelp": "The current email address to which your new key was sent.",
|
||||
"HeaderForgotKey": "Forgot Key",
|
||||
"LabelEmailAddress": "Email address",
|
||||
"LabelSupporterEmailAddress": "The email address that was used to purchase the key.",
|
||||
"LabelSupporterEmailAddress": "\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u5c07\u88ab\u7528\u4f5c\u8cfc\u8cb7\u6703\u54e1\u9396\u5319\u3002",
|
||||
"ButtonRetrieveKey": "Retrieve Key",
|
||||
"LabelSupporterKey": "Supporter Key (paste from email)",
|
||||
"LabelSupporterKeyHelp": "Enter your supporter key to start enjoying additional benefits the community has developed for Emby.",
|
||||
"LabelSupporterKey": "\u6703\u54e1\u9396\u5319\uff08\u5f9e\u96fb\u5b50\u90f5\u4ef6\u8cbc\u4e0a\uff09",
|
||||
"LabelSupporterKeyHelp": "\u8acb\u8f38\u5165\u60a8\u7684\u6703\u54e1\u9396\u5319\uff0c\u4eab\u53d7\u5df2\u958b\u767c Emby \u984d\u5916\u597d\u8655\u3002",
|
||||
"MessageInvalidKey": "Supporter key is missing or invalid.",
|
||||
"ErrorMessageInvalidKey": "In order for any premium content to be registered, you must also be an Emby Supporter. Please donate and support the continued development of the core product. Thank you.",
|
||||
"HeaderDisplaySettings": "Display Settings",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -16,6 +16,8 @@
|
|||
"FolderTypeMixed": "Mixed content",
|
||||
"LabelNext": "\u4e0b\u4e00\u500b",
|
||||
"LabelYoureDone": "\u5b8c\u6210!",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"ButtonMoreItems": "More",
|
||||
"WelcomeToProject": "Welcome to Emby!",
|
||||
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
|
||||
"TellUsAboutYourself": "\u8acb\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1",
|
||||
|
@ -91,6 +93,15 @@
|
|||
"LabelEnableEnhancedMovies": "Enable enhanced movie displays",
|
||||
"LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
|
||||
"HeaderSyncJobInfo": "Sync Job",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSeries": "Series:",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"FolderTypeMovies": "Movies",
|
||||
"FolderTypeMusic": "Music",
|
||||
"FolderTypeAdultVideos": "Adult videos",
|
||||
|
@ -206,7 +217,6 @@
|
|||
"OptionAscending": "\u5347\u5e8f",
|
||||
"OptionDescending": "\u964d\u5e8f",
|
||||
"OptionRuntime": "\u64ad\u653e\u9577\u5ea6",
|
||||
"OptionReleaseDate": "Release Date",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u6dfb\u52a0\u65e5\u671f",
|
||||
|
@ -325,7 +335,6 @@
|
|||
"OptionMetascore": "\u8a55\u5206",
|
||||
"ButtonSelect": "\u9078\u64c7",
|
||||
"ButtonGroupVersions": "\u7248\u672c",
|
||||
"ButtonAddToCollection": "Add to Collection",
|
||||
"PismoMessage": "\u901a\u904e\u6350\u8d08\u7684\u8edf\u4ef6\u8a31\u53ef\u8b49\u4f7f\u7528Pismo File Mount\u3002",
|
||||
"TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
|
||||
"HeaderCredits": "Credits",
|
||||
|
@ -492,7 +501,6 @@
|
|||
"HeaderCastCrew": "\u62cd\u651d\u4eba\u54e1\u53ca\u6f14\u54e1",
|
||||
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
|
||||
"ButtonSplitVersionsApart": "Split Versions Apart",
|
||||
"ButtonPlayTrailer": "Trailer",
|
||||
"LabelMissing": "\u7f3a\u5c11",
|
||||
"LabelOffline": "\u96e2\u7dda",
|
||||
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
|
||||
|
@ -583,10 +591,8 @@
|
|||
"HeaderProgram": "Program",
|
||||
"HeaderClients": "Clients",
|
||||
"LabelCompleted": "Completed",
|
||||
"LabelFailed": "Failed",
|
||||
"LabelSkipped": "Skipped",
|
||||
"HeaderEpisodeOrganization": "Episode Organization",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelEndingEpisodeNumber": "Ending episode number:",
|
||||
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
|
||||
"HeaderSupportTheTeam": "Support the Emby Team",
|
||||
|
@ -730,12 +736,8 @@
|
|||
"TabNowPlaying": "Now Playing",
|
||||
"TabNavigation": "Navigation",
|
||||
"TabControls": "Controls",
|
||||
"ButtonFullscreen": "Toggle fullscreen",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonAudioTracks": "Audio tracks",
|
||||
"ButtonPreviousTrack": "Previous track",
|
||||
"ButtonNextTrack": "Next track",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonNext": "Next",
|
||||
|
@ -1086,7 +1088,6 @@
|
|||
"OptionUnidentified": "Unidentified",
|
||||
"OptionMissingParentalRating": "Missing parental rating",
|
||||
"OptionStub": "Stub",
|
||||
"HeaderEpisodes": "Episodes:",
|
||||
"OptionSeason0": "Season 0",
|
||||
"LabelReport": "Report:",
|
||||
"OptionReportSongs": "Songs",
|
||||
|
@ -1261,7 +1262,7 @@
|
|||
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
|
||||
"LabelConnectGuestUserName": "Their Emby username or email address:",
|
||||
"LabelConnectUserName": "Emby username\/email:",
|
||||
"LabelConnectUserNameHelp": "Connect this user to an Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
|
||||
"ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
|
||||
"LabelExternalPlayers": "External players:",
|
||||
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
|
||||
|
@ -1397,7 +1398,6 @@
|
|||
"HeaderUpcomingMovies": "Upcoming Movies",
|
||||
"HeaderUpcomingSports": "Upcoming Sports",
|
||||
"HeaderUpcomingPrograms": "Upcoming Programs",
|
||||
"ButtonMoreItems": "More",
|
||||
"LabelShowLibraryTileNames": "Show library tile names",
|
||||
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
|
||||
"OptionEnableTranscodingThrottle": "Enable throttling",
|
||||
|
@ -1524,5 +1524,6 @@
|
|||
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
|
||||
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
|
||||
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:"
|
||||
"LabelHardwareVideoDecoder": "Hardware video decoder:",
|
||||
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u0649",
|
||||
"OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u0649",
|
||||
"OptionNameSort": "\u0627\u0633\u0645",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0639\u0631\u0636",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
|
||||
"OptionDateAdded": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u044a\u043f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0442\u0430",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u041f\u0443\u0441\u043d\u0438",
|
||||
"ButtonEdit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -429,7 +428,7 @@
|
|||
"ButtonAddToPlaylist": "Add to playlist",
|
||||
"HeaderAddToPlaylist": "Add to Playlist",
|
||||
"LabelName": "\u0418\u043c\u0435:",
|
||||
"ButtonSubmit": "Submit",
|
||||
"ButtonSubmit": "\u0418\u0437\u043f\u0440\u0430\u0442\u0438",
|
||||
"LabelSelectPlaylist": "Playlist:",
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -773,7 +773,7 @@
|
|||
"HeaderNewServer": "New Server",
|
||||
"MyDevice": "My Device",
|
||||
"ButtonRemote": "Remote",
|
||||
"TabInfo": "Info",
|
||||
"TabInfo": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
|
||||
"TabCast": "Cast",
|
||||
"TabScenes": "Scenes",
|
||||
"HeaderUnlockApp": "Unlock App",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449",
|
||||
"OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u0435\u043c\u0438\u0435\u0440\u0430",
|
||||
"OptionImdbRating": "IMDb \u0420\u0435\u0439\u0442\u0438\u043d\u0433",
|
||||
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435",
|
||||
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Hudebn\u00ed video",
|
||||
"LabelEpisode": "Epizoda",
|
||||
"LabelSeries": "Series",
|
||||
"LabelSeries": "S\u00e9rie",
|
||||
"LabelStopping": "Stopping",
|
||||
"LabelCancelled": "(zru\u0161eno)",
|
||||
"LabelFailed": "(failed)",
|
||||
"LabelFailed": "(ne\u00fasp\u011b\u0161n\u00e9)",
|
||||
"ButtonHelp": "Help",
|
||||
"ButtonSave": "Ulo\u017eit",
|
||||
"ButtonDownload": "St\u00e1hnout",
|
||||
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "P\u0159ehr\u00e1t",
|
||||
"ButtonEdit": "Upravit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Vzestupn\u011b",
|
||||
"OptionDescending": "Sestupn\u011b",
|
||||
"OptionNameSort": "N\u00e1zev",
|
||||
"OptionTvdbRating": "Tvdb hodnocen\u00ed",
|
||||
"OptionPremiereDate": "Datum premi\u00e9ry",
|
||||
"OptionImdbRating": "Hodnocen\u00ed IMDb",
|
||||
"OptionDatePlayed": "Datum p\u0159ehr\u00e1n\u00ed",
|
||||
"OptionDateAdded": "Datum p\u0159id\u00e1n\u00ed",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Hled\u00e1n\u00ed",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Tilf\u00f8jelser",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Tag en rundvisning for at se hvad der er nyt",
|
||||
"MessageNoSyncJobsFound": "Intet sync job blev fundet. Opret sync jobs ved at benytte Sync knapper som findes gennem web-interfacet.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Adgang til biblioteker",
|
||||
"HeaderChannelAccess": "Adgang til kanaler",
|
||||
"HeaderDeviceAccess": "Enhedsadgang",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Afspil",
|
||||
"ButtonEdit": "Rediger",
|
||||
"ButtonQueue": "K\u00f8",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Afspilningsliste",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Sl\u00e5et til",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "Season number:",
|
||||
"HeaderChannels": "Kanaler",
|
||||
"HeaderMediaFolders": "Mediemapper",
|
||||
"HeaderBlockItemsWithNoRating": "Bloker indhold uden bed\u00f8mmelser:",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
|
||||
"OptionBlockOthers": "Andre",
|
||||
"OptionBlockTvShows": "TV serier",
|
||||
"OptionBlockTrailers": "Trailere",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "N\u00e6ste side",
|
||||
"ButtonPreviousPage": "Forrige side",
|
||||
"ButtonMoveLeft": "Flyt til venstre",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Flyt til h\u00f8jre",
|
||||
"ButtonBrowseOnlineImages": "Gennemse online billeder",
|
||||
"HeaderDeleteItem": "Slet element",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Titelvisningsorden:",
|
||||
"OptionSortName": "Sorteringsnavn",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disk nummer",
|
||||
"LabelParentNumber": "Parent nummer",
|
||||
"LabelTrackNumber": "Spor nummer:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync kr\u00e6ver medlemsskab",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sync",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Stigende",
|
||||
"OptionDescending": "Faldende",
|
||||
"OptionNameSort": "Navn",
|
||||
"OptionTvdbRating": "Tvdb bed\u00f8mmelse",
|
||||
"OptionPremiereDate": "Pr\u00e6mieredato",
|
||||
"OptionImdbRating": "IMDd bed\u00f8mmelse",
|
||||
"OptionDatePlayed": "Dato for afspilning",
|
||||
"OptionDateAdded": "Dato for tilf\u00f8jelse",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "S\u00f8g",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -39,7 +39,7 @@
|
|||
"TextEnjoyBonusFeatures": "Erleben Sie Bonus Funktionen",
|
||||
"TitleLiveTV": "Live-TV",
|
||||
"ButtonCancelSyncJob": "Synchronisationsjob abbrechen",
|
||||
"ButtonSelectView": "Select view",
|
||||
"ButtonSelectView": "Ansicht w\u00e4hlen",
|
||||
"TitleSync": "Synchronisation",
|
||||
"OptionAutomatic": "Auto",
|
||||
"HeaderSelectDate": "Datum w\u00e4hlen",
|
||||
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Musikvideo",
|
||||
"LabelEpisode": "Episode",
|
||||
"LabelSeries": "Serien:",
|
||||
"LabelSeries": "Serie",
|
||||
"LabelStopping": "Stoppe",
|
||||
"LabelCancelled": "(abgebrochen)",
|
||||
"LabelFailed": "Fehlgeschlagen",
|
||||
"LabelFailed": "(fehlgeschlagen)",
|
||||
"ButtonHelp": "Hilfe",
|
||||
"ButtonSave": "Speichern",
|
||||
"ButtonDownload": "Download",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Gehen Sie auf Erkundung und erfahren Sie was neu ist",
|
||||
"MessageNoSyncJobsFound": "Keine Synchronisierungs-Aufgaben gefunden. Um Synchronisierungs-Aufgaben zu erstellen verwenden Sie die dazugeh\u00f6rige Funktion im Web-Interface.",
|
||||
"ButtonPlayTrailer": "Trailer abspielen",
|
||||
"HeaderLibraryAccess": "Bibliothekszugriff",
|
||||
"HeaderChannelAccess": "Channelzugriff",
|
||||
"HeaderDeviceAccess": "Ger\u00e4te Zugang",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Abspielen",
|
||||
"ButtonEdit": "Bearbeiten",
|
||||
"ButtonQueue": "Warteschlange",
|
||||
"ButtonPlayTrailer": "Trailer abspielen",
|
||||
"ButtonPlaylist": "Wiedergabeliste",
|
||||
"ButtonPreviousTrack": "Vorheriger Titel",
|
||||
"LabelEnabled": "Aktivieren",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Meine Ansichten",
|
||||
"HeaderLibraryFolders": "Medienverzeichnisse",
|
||||
"HeaderLatestMedia": "Neueste Medien",
|
||||
"ButtonMoreItems": "Mehr",
|
||||
"ButtonMoreItems": "Mehr...",
|
||||
"ButtonMore": "Mehr",
|
||||
"HeaderFavoriteMovies": "Lieblingsfilme",
|
||||
"HeaderFavoriteShows": "Lieblingsserien",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "Staffelnummer:",
|
||||
"HeaderChannels": "Kan\u00e4le",
|
||||
"HeaderMediaFolders": "Medienverzeichnisse",
|
||||
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte ohne Altersfreigabe:",
|
||||
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit fehlender Altersfreigabe",
|
||||
"OptionBlockOthers": "Andere",
|
||||
"OptionBlockTvShows": "TV Serien",
|
||||
"OptionBlockTrailers": "Trailer",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "N\u00e4chste Seite",
|
||||
"ButtonPreviousPage": "Vorherige Seite",
|
||||
"ButtonMoveLeft": "Nach links",
|
||||
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||
"ButtonMoveRight": "Nach rechts",
|
||||
"ButtonBrowseOnlineImages": "Durchsuche Onlinebilder",
|
||||
"HeaderDeleteItem": "L\u00f6sche Element",
|
||||
|
@ -415,7 +414,7 @@
|
|||
"TabAdvanced": "Erweitert",
|
||||
"TabHelp": "Hilfe",
|
||||
"TabScheduledTasks": "Geplante Aufgaben",
|
||||
"ButtonFullscreen": "Vollbild umschalten",
|
||||
"ButtonFullscreen": "Vollbild",
|
||||
"ButtonAudioTracks": "Audiospuren",
|
||||
"ButtonSubtitles": "Untertitel",
|
||||
"ButtonScenes": "Szenen",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Reihenfolge Titeldarstellung:",
|
||||
"OptionSortName": "Sortiername",
|
||||
"OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
|
||||
"LabelDiscNumber": "Disc Nummer",
|
||||
"LabelParentNumber": "Ursprungsnummer",
|
||||
"LabelTrackNumber": "St\u00fcck Nummer:",
|
||||
|
@ -707,7 +707,7 @@
|
|||
"MessageRefreshQueued": "Warteschlange aktualisieren",
|
||||
"TabDevices": "Ger\u00e4te",
|
||||
"TabExtras": "Extras",
|
||||
"HeaderUploadImage": "Upload Image",
|
||||
"HeaderUploadImage": "Bild hochladen",
|
||||
"DeviceLastUsedByUserName": "Zuletzt genutzt von {0}",
|
||||
"HeaderDeleteDevice": "Ger\u00e4t l\u00f6schen",
|
||||
"DeleteDeviceConfirmation": "Bist du dir sicher dieses Ger\u00e4t l\u00f6schen zu wollen? Es wird wieder angezeigt werden, sobald sich ein Uder dar\u00fcber einloggt.",
|
||||
|
@ -802,11 +802,11 @@
|
|||
"MessageIfYouBlockedVoice": "Wenn Sie die Sprachsteuerung f\u00fcr die App nicht erlaubt haben so m\u00fcssen Sie dies zuvor \u00e4ndern bevor Sie es erneut probieren.",
|
||||
"MessageNoItemsFound": "Keine Eintr\u00e4ge gefunden.",
|
||||
"ButtonManageServer": "Konfiguriere Server",
|
||||
"ButtonEditSubtitles": "Edit subtitles",
|
||||
"ButtonEditSubtitles": "Untertitel bearbeiten",
|
||||
"ButtonPreferences": "Einstellungen",
|
||||
"ButtonViewArtist": "Zeige Darsteller",
|
||||
"ButtonViewAlbum": "Zeige Album",
|
||||
"ButtonEditImages": "Edit images",
|
||||
"ButtonEditImages": "Bilder bearbeiten",
|
||||
"ErrorMessagePasswordNotMatchConfirm": "Das Passwort und die Passwort-Best\u00e4tigung m\u00fcssen \u00fcbereinstimmen.",
|
||||
"ErrorMessageUsernameInUse": "Der Benutzername wird bereits verwenden. Bitte w\u00e4hlen Sie einen neuen Namen und versuchen Sie es erneut.",
|
||||
"ErrorMessageEmailInUse": "Die Emailadresse wird bereits verwendet. Bitte verwenden Sie eine neue Emailadresse und versuchen Sie es erneut oder benutzen Sie die \"Passwort vergessen\" Funktion.",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Wussten Sie es schon? Wenn Sie ein Emby Unterst\u00fctzer sind k\u00f6nnen Sie den Komfort von Emby mit Funktionen wie dem Kino Modus erweitern.",
|
||||
"MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.",
|
||||
"OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine Supporter-Mitgliedschaft",
|
||||
"HeaderSyncRequiresSupporterMembership": "Die Synchronisation ben\u00f6tigt eine aktive Emby Unterst\u00fctzer-Mitgliedschaft.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Die Synchronisation ben\u00f6tigt eine Verbindung zu einem Server mit einer aktiven Unterst\u00fctzer-Mitgliedschaft.",
|
||||
"ErrorValidatingSupporterInfo": "Ein Fehler trat bei der Pr\u00fcfung Ihrer Emby Unterst\u00fctzer-Mitgliedschaft auf. Bitte versuchen Sie es sp\u00e4ter erneut.",
|
||||
"HeaderSync": "Synchronisation",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Aufsteigend",
|
||||
"OptionDescending": "Absteigend",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Bewertung",
|
||||
"OptionPremiereDate": "Premiere",
|
||||
"OptionImdbRating": "IMDb Bewertung",
|
||||
"OptionDatePlayed": "Abgespielt am",
|
||||
"OptionDateAdded": "Hinzugef\u00fcgt am",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "M\u00f6chten Sie die App auf dem entfernten Ger\u00e4t beenden?",
|
||||
"ButtonYes": "Ja",
|
||||
"ButtonNo": "Nein",
|
||||
"ButtonRestorePreviousPurchase": "Kauf wiederherstellen"
|
||||
"ButtonRestorePreviousPurchase": "Kauf wiederherstellen",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Suche",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
|
||||
"OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
|
||||
"OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "P\u00e1gina siguiente",
|
||||
"ButtonPreviousPage": "P\u00e1gina anterior",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -39,14 +39,14 @@
|
|||
"TextEnjoyBonusFeatures": "Disfruta de Caracter\u00edsticas Premium",
|
||||
"TitleLiveTV": "TV en Vivo",
|
||||
"ButtonCancelSyncJob": "Cancelar trabajo de Sinc.",
|
||||
"ButtonSelectView": "Select view",
|
||||
"ButtonSelectView": "Seleccionar vista",
|
||||
"TitleSync": "Sinc",
|
||||
"OptionAutomatic": "Auto",
|
||||
"HeaderSelectDate": "Seleccionar fecha",
|
||||
"ButtonDonate": "Donar",
|
||||
"LabelRecurringDonationCanBeCancelledHelp": "Las donaciones recurrentes pueden ser canceladas en cualquier momento desde su cuenta PayPal.",
|
||||
"HeaderMyMedia": "Mis Medios",
|
||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||
"ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n",
|
||||
"LabelAutomaticUpdateLevel": "Nivel de actualizaci\u00f3n autom\u00e1tico:",
|
||||
"LabelAutomaticUpdateLevelForPlugins": "Nivel de actualizaci\u00f3n autom\u00e1tico para complementos:",
|
||||
"TitleNotifications": "Notificaciones",
|
||||
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Pel\u00edcula",
|
||||
"LabelMusicVideo": "Video Musical",
|
||||
"LabelEpisode": "Episodio",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeries": "Series",
|
||||
"LabelStopping": "Deteniendo",
|
||||
"LabelCancelled": "(cancelado)",
|
||||
"LabelFailed": "Fallido",
|
||||
"LabelFailed": "(fall\u00f3)",
|
||||
"ButtonHelp": "Ayuda",
|
||||
"ButtonSave": "Guardar",
|
||||
"ButtonDownload": "Descargar",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Complementos",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Inice el tour para ver que hay de nuevo",
|
||||
"MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cree trabajos de sincronizaci\u00f3n empleando los botones de Sinc que se encuentran en la intergface web.",
|
||||
"ButtonPlayTrailer": "Reproducir Avance",
|
||||
"HeaderLibraryAccess": "Acceso a la Biblioteca",
|
||||
"HeaderChannelAccess": "Acceso a los Canales",
|
||||
"HeaderDeviceAccess": "Acceso a Dispositivos",
|
||||
|
@ -147,13 +146,14 @@
|
|||
"ButtonMute": "Mudo",
|
||||
"ButtonUnmute": "Quitar mudo",
|
||||
"ButtonStop": "Detener",
|
||||
"ButtonNextTrack": "Pista siguiente",
|
||||
"ButtonNextTrack": "Siguiente Pista",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonPlay": "Reproducir",
|
||||
"ButtonEdit": "Editar",
|
||||
"ButtonQueue": "A cola",
|
||||
"ButtonPlayTrailer": "Reproducir Avance",
|
||||
"ButtonPlaylist": "Lista de Reprod.",
|
||||
"ButtonPreviousTrack": "Pista anterior",
|
||||
"ButtonPreviousTrack": "Pista Previa",
|
||||
"LabelEnabled": "Habilitado",
|
||||
"LabelDisabled": "Desactivado",
|
||||
"ButtonMoreInformation": "Mas Informaci\u00f3n",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Mis Vistas",
|
||||
"HeaderLibraryFolders": "Carpetas de Medios",
|
||||
"HeaderLatestMedia": "Agregadas Recientemente",
|
||||
"ButtonMoreItems": "M\u00e1s",
|
||||
"ButtonMoreItems": "Mas...",
|
||||
"ButtonMore": "M\u00e1s",
|
||||
"HeaderFavoriteMovies": "Pel\u00edculas Preferidas",
|
||||
"HeaderFavoriteShows": "Programas Preferidos",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "P\u00e1gina Siguiente",
|
||||
"ButtonPreviousPage": "P\u00e1gina Anterior",
|
||||
"ButtonMoveLeft": "Mover a la izquierda",
|
||||
"OptionReleaseDate": "Fecha de estreno",
|
||||
"ButtonMoveRight": "Mover a la derecha",
|
||||
"ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea",
|
||||
"HeaderDeleteItem": "Eliminar \u00cdtem",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "Avanzado",
|
||||
"TabHelp": "Ayuda",
|
||||
"TabScheduledTasks": "Tareas Programadas",
|
||||
"ButtonFullscreen": "Alternar pantalla completa",
|
||||
"ButtonAudioTracks": "Pistas de audio",
|
||||
"ButtonFullscreen": "Pantalla completa",
|
||||
"ButtonAudioTracks": "Pistas de Sonido",
|
||||
"ButtonSubtitles": "Subt\u00edtulos",
|
||||
"ButtonScenes": "Escenas",
|
||||
"ButtonQuality": "Calidad",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Persona",
|
||||
"LabelTitleDisplayOrder": "Ordenamiento de despliegue de t\u00edtulos:",
|
||||
"OptionSortName": "Nombre para ordenar",
|
||||
"OptionReleaseDate": "Fecha de estreno",
|
||||
"LabelDiscNumber": "N\u00famero de disco",
|
||||
"LabelParentNumber": "N\u00famero antecesor",
|
||||
"LabelTrackNumber": "N\u00famero de Pista:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "\u00c1lbumes",
|
||||
"HeaderGames": "Juegos",
|
||||
"HeaderBooks": "Libros",
|
||||
"HeaderEpisodes": "Episodios:",
|
||||
"HeaderEpisodes": "Episodios",
|
||||
"HeaderSeasons": "Temporadas",
|
||||
"HeaderTracks": "Pistas",
|
||||
"HeaderItems": "\u00cdtems",
|
||||
|
@ -707,7 +707,7 @@
|
|||
"MessageRefreshQueued": "Actualizaci\u00f3n programada",
|
||||
"TabDevices": "Dispositivos",
|
||||
"TabExtras": "Extras",
|
||||
"HeaderUploadImage": "Upload Image",
|
||||
"HeaderUploadImage": "Subir im\u00e1gen",
|
||||
"DeviceLastUsedByUserName": "\u00daltimo usado por {0}",
|
||||
"HeaderDeleteDevice": "Eliminar Dispositivo",
|
||||
"DeleteDeviceConfirmation": "\u00bfEst\u00e1 seguro de querer eliminar este dispositivo? Volver\u00e1 a aparecer la siguiente vez que un usuario inicie sesi\u00f3n en \u00e9l.",
|
||||
|
@ -802,11 +802,11 @@
|
|||
"MessageIfYouBlockedVoice": "Si ha negado el acceso a la voz a la aplicaci\u00f3n necesitara reconfigurar antes de intentarlo de nuevo.",
|
||||
"MessageNoItemsFound": "No se encontraron \u00edtems.",
|
||||
"ButtonManageServer": "Administrar Servidor",
|
||||
"ButtonEditSubtitles": "Edit subtitles",
|
||||
"ButtonEditSubtitles": "Editar subt\u00edtulos",
|
||||
"ButtonPreferences": "Preferencias",
|
||||
"ButtonViewArtist": "Ver artista",
|
||||
"ButtonViewAlbum": "Ver album",
|
||||
"ButtonEditImages": "Edit images",
|
||||
"ButtonEditImages": "Editar im\u00e1genes",
|
||||
"ErrorMessagePasswordNotMatchConfirm": "La Contrase\u00f1a y la confirmaci\u00f3n de la contrase\u00f1a deben coincidir.",
|
||||
"ErrorMessageUsernameInUse": "El Nombre de Usuario ya esta en uso. Por favor seleccione un nuevo nombre e intente de nuevo.",
|
||||
"ErrorMessageEmailInUse": "La direcci\u00f3n de correo electr\u00f3nico ya esta en uso. Por favor ingrese un correo electr\u00f3nico nuevo e intente de nuevo, o si olvido la contrase\u00f1a use la opci\u00f3n \"Olvide mi contrase\u00f1a\".",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "\u00bfSabia que volvi\u00e9ndose un Fan\u00e1tico Emby, puede mejorar su experiencia con caracter\u00edsticas como el Modo Cine?",
|
||||
"MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.",
|
||||
"OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado Emby activa.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere estar conectado a un Servidor Emby con una cuenta de Aficionado Emby.",
|
||||
"ErrorValidatingSupporterInfo": "Hubo un error al validar su informaci\u00f3n de su cuenta de Aficionado Emby. Por favor intente de nuevo mas tarde.",
|
||||
"HeaderSync": "Sinc",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionNameSort": "Nombre",
|
||||
"OptionTvdbRating": "Calificaci\u00f3n de Tvdb",
|
||||
"OptionPremiereDate": "Fecha de Estreno",
|
||||
"OptionImdbRating": "Calificaci\u00f3n de IMDb",
|
||||
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
|
||||
"OptionDateAdded": "Fecha de Adici\u00f3n",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "\u00bfDesea detener la app en el dispositivo remoto?",
|
||||
"ButtonYes": "Si",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restaurar Compra"
|
||||
"ButtonRestorePreviousPurchase": "Restaurar Compra",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "B\u00fasqueda",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -78,7 +78,7 @@
|
|||
"LabelSeries": "Series",
|
||||
"LabelStopping": "Deteniendo",
|
||||
"LabelCancelled": "(cancelado)",
|
||||
"LabelFailed": "(failed)",
|
||||
"LabelFailed": "(fracasado)",
|
||||
"ButtonHelp": "Ayuda",
|
||||
"ButtonSave": "Grabar",
|
||||
"ButtonDownload": "Descargar",
|
||||
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "Una membres\u00eda de soporte provee beneficios adicionales como acceso a Sync (Sincronizar), extensiones premium, contenidos de canales por internet, y mas. {0}Aprender m\u00e1s{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Complementos",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Acceso de Equipo",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Reproducir",
|
||||
"ButtonEdit": "Editar",
|
||||
"ButtonQueue": "En cola",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Lista de reproducci\u00f3n",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Activado",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "P\u00e1gina siguiente",
|
||||
"ButtonPreviousPage": "P\u00e1gina anterior",
|
||||
"ButtonMoveLeft": "Mover izquierda",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Mover derecha",
|
||||
"ButtonBrowseOnlineImages": "Navegar im\u00e1genes online",
|
||||
"HeaderDeleteItem": "Borrar elemento",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requiere membres\u00eda de partidario",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sincronizar",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionNameSort": "Nombre",
|
||||
"OptionTvdbRating": "Valoraci\u00f3n tvdb",
|
||||
"OptionPremiereDate": "Fecha de estreno",
|
||||
"OptionImdbRating": "Valoraci\u00f3n IMDb",
|
||||
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
|
||||
"OptionDateAdded": "A\u00f1adido el",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Buscar",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Clip vid\u00e9o",
|
||||
"LabelEpisode": "\u00c9pisode",
|
||||
"LabelSeries": "S\u00e9ries :",
|
||||
"LabelSeries": "S\u00e9ries",
|
||||
"LabelStopping": "En cours d'arr\u00eat",
|
||||
"LabelCancelled": "(annul\u00e9)",
|
||||
"LabelFailed": "Echec",
|
||||
"LabelFailed": "(\u00e9chou\u00e9)",
|
||||
"ButtonHelp": "Aide",
|
||||
"ButtonSave": "Sauvegarder",
|
||||
"ButtonDownload": "T\u00e9l\u00e9chargement",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Suivez le guide pour d\u00e9couvrir les nouveaut\u00e9s",
|
||||
"MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons 'Synchroniser' partout dans l'interface web.",
|
||||
"ButtonPlayTrailer": "Lire la bande-annonce",
|
||||
"HeaderLibraryAccess": "Acc\u00e8s \u00e0 la librairie",
|
||||
"HeaderChannelAccess": "Acc\u00e8s Cha\u00eene",
|
||||
"HeaderDeviceAccess": "Acc\u00e8s \u00e0 l'appareil",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Lire",
|
||||
"ButtonEdit": "Modifier",
|
||||
"ButtonQueue": "En file d'attente",
|
||||
"ButtonPlayTrailer": "Lire la bande-annonce",
|
||||
"ButtonPlaylist": "Liste de lecture",
|
||||
"ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
|
||||
"LabelEnabled": "Activ\u00e9",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Mes affichages",
|
||||
"HeaderLibraryFolders": "R\u00e9pertoires de m\u00e9dias",
|
||||
"HeaderLatestMedia": "Derniers m\u00e9dias",
|
||||
"ButtonMoreItems": "Plus",
|
||||
"ButtonMoreItems": "Plus...",
|
||||
"ButtonMore": "Voir la suite",
|
||||
"HeaderFavoriteMovies": "Films favoris",
|
||||
"HeaderFavoriteShows": "S\u00e9ries favorites",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "Num\u00e9ro de saison :",
|
||||
"HeaderChannels": "Cha\u00eenes",
|
||||
"HeaderMediaFolders": "R\u00e9pertoires de m\u00e9dias",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquer le contenu ne comportant aucune information de classement :",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquer le contenu ne comportant aucune information de classement:",
|
||||
"OptionBlockOthers": "Autres",
|
||||
"OptionBlockTvShows": "S\u00e9ries TV",
|
||||
"OptionBlockTrailers": "Bandes-annonces",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Page suivante",
|
||||
"ButtonPreviousPage": "Page pr\u00e9c\u00e9dente",
|
||||
"ButtonMoveLeft": "D\u00e9placer \u00e0 gauche",
|
||||
"OptionReleaseDate": "Date de diffusion",
|
||||
"ButtonMoveRight": "D\u00e9placer \u00e0 droite",
|
||||
"ButtonBrowseOnlineImages": "Parcourir les images en ligne",
|
||||
"HeaderDeleteItem": "Supprimer l'\u00e9l\u00e9ment",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Personne",
|
||||
"LabelTitleDisplayOrder": "Ordre d'affichage des titres:",
|
||||
"OptionSortName": "Clef de tri",
|
||||
"OptionReleaseDate": "Date de diffusion",
|
||||
"LabelDiscNumber": "Num\u00e9ro de disque",
|
||||
"LabelParentNumber": "Num\u00e9ro parent",
|
||||
"LabelTrackNumber": "Num\u00e9ro de piste:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Jeux",
|
||||
"HeaderBooks": "Livres",
|
||||
"HeaderEpisodes": "\u00c9pisodes :",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Saisons",
|
||||
"HeaderTracks": "Pistes",
|
||||
"HeaderItems": "El\u00e9ments",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Saviez-vous qu'en devenant membre supporteur Emby, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur avec des fonctionnalit\u00e9s comme le mode Cin\u00e9ma ?",
|
||||
"MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.",
|
||||
"OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync n\u00e9cessite un abonnement actif comme supporteur",
|
||||
"HeaderSyncRequiresSupporterMembership": "La synchronisation requiert d'\u00eatre membre supporteur actif d'Emby",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "La synchronisation n\u00e9cessite de se connecter \u00e0 un serveur Emby avec une adh\u00e9sion supporteur actif.",
|
||||
"ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations de membre supporteur actif d'Emby. Veuillez r\u00e9essayer ult\u00e9rieurement.",
|
||||
"HeaderSync": "Sync",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascendant",
|
||||
"OptionDescending": "Descendant",
|
||||
"OptionNameSort": "Nom",
|
||||
"OptionTvdbRating": "Note d'\u00e9valuation Tvdb",
|
||||
"OptionPremiereDate": "Date de la premi\u00e8re",
|
||||
"OptionImdbRating": "Note IMDb",
|
||||
"OptionDatePlayed": "Date lu",
|
||||
"OptionDateAdded": "Date d'ajout",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Voulez-vous \u00e9teindre l'application sur l'appareil distant",
|
||||
"ButtonYes": "Oui",
|
||||
"ButtonNo": "Non",
|
||||
"ButtonRestorePreviousPurchase": "Restaurer l'achat"
|
||||
"ButtonRestorePreviousPurchase": "Restaurer l'achat",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Recherche",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "En Supporter-Mitgliedschaft git dir zues\u00e4tzlichi M\u00f6glichkeite wie de Zuegriff uf Synchronisierig, Premium Plugins, Internet Kan\u00e4l und meh. {0}Meh erfahre{1}",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Gr\u00e4t Zuegriff",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisierig brucht en Supporter Mitgliedschaft",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "synchronisiere",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ufstiigend",
|
||||
"OptionDescending": "Abstiigend",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Datum",
|
||||
"OptionImdbRating": "IMDB Bewertig",
|
||||
"OptionDatePlayed": "Abgspellt am",
|
||||
"OptionDateAdded": "Dezue gf\u00fcegt am",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u05e0\u05d2\u05df",
|
||||
"ButtonEdit": "\u05e2\u05e8\u05d5\u05da",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4",
|
||||
"OptionDescending": "\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3",
|
||||
"OptionNameSort": "\u05e9\u05dd",
|
||||
"OptionTvdbRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 Tvdb",
|
||||
"OptionPremiereDate": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d3\u05d5\u05e8 \u05e8\u05d0\u05e9\u05d5\u05df",
|
||||
"OptionImdbRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 IMDb",
|
||||
"OptionDatePlayed": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df",
|
||||
"OptionDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Pokreni",
|
||||
"ButtonEdit": "Izmjeni",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Uzlazno",
|
||||
"OptionDescending": "Silazno",
|
||||
"OptionNameSort": "Nazivu",
|
||||
"OptionTvdbRating": "Ocjeni Tvdb",
|
||||
"OptionPremiereDate": "Datum premijere",
|
||||
"OptionImdbRating": "IMDb ocjena",
|
||||
"OptionDatePlayed": "Datumu izvo\u0111enja",
|
||||
"OptionDateAdded": "Datumu dodavanja",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Tra\u017ei",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -45,7 +45,7 @@
|
|||
"HeaderSelectDate": "Seleziona la data",
|
||||
"ButtonDonate": "Donazione",
|
||||
"LabelRecurringDonationCanBeCancelledHelp": "Donazioni ricorrenti possono essere cancellati in qualsiasi momento dal tuo conto PayPal.",
|
||||
"HeaderMyMedia": "I mei media",
|
||||
"HeaderMyMedia": "I miei media",
|
||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
|
||||
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Video Musicali",
|
||||
"LabelEpisode": "Episodio",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeries": "Serie",
|
||||
"LabelStopping": "Sto fermando",
|
||||
"LabelCancelled": "(cancellato)",
|
||||
"LabelFailed": "Fallito",
|
||||
"LabelFailed": "(fallito)",
|
||||
"ButtonHelp": "Aiuto",
|
||||
"ButtonSave": "Salva",
|
||||
"ButtonDownload": "Download",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugin",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Fai un tour per vedere cosa \u00e8 cambiato",
|
||||
"MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti sull'interfaccia web",
|
||||
"ButtonPlayTrailer": "Visualizza Trailer",
|
||||
"HeaderLibraryAccess": "Accesso libreria",
|
||||
"HeaderChannelAccess": "Accesso canali",
|
||||
"HeaderDeviceAccess": "Accesso al dispositivo",
|
||||
|
@ -147,13 +146,14 @@
|
|||
"ButtonMute": "Muto",
|
||||
"ButtonUnmute": "Togli muto",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonNextTrack": "Traccia Successiva",
|
||||
"ButtonNextTrack": "Traccia successiva",
|
||||
"ButtonPause": "Pausa",
|
||||
"ButtonPlay": "Riproduci",
|
||||
"ButtonEdit": "Modifica",
|
||||
"ButtonQueue": "In coda",
|
||||
"ButtonPlayTrailer": "Visualizza Trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Traccia Precedente",
|
||||
"ButtonPreviousTrack": "Traccia precedente",
|
||||
"LabelEnabled": "Abilitato",
|
||||
"LabelDisabled": "Disabilitato",
|
||||
"ButtonMoreInformation": "Maggiori informazioni",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Mie viste",
|
||||
"HeaderLibraryFolders": "Cartelle dei mediati",
|
||||
"HeaderLatestMedia": "Ultimi Media",
|
||||
"ButtonMoreItems": "Piu",
|
||||
"ButtonMoreItems": "Pi\u00f9...",
|
||||
"ButtonMore": "Dettagli",
|
||||
"HeaderFavoriteMovies": "Film preferiti",
|
||||
"HeaderFavoriteShows": "Show preferiti",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "Stagione N\u00b0:",
|
||||
"HeaderChannels": "Canali",
|
||||
"HeaderMediaFolders": "Cartelle dei media",
|
||||
"HeaderBlockItemsWithNoRating": "Bloccare i contenuti senza informazioni valutazione:",
|
||||
"HeaderBlockItemsWithNoRating": "Bloccare i contenuti senza valutazione:",
|
||||
"OptionBlockOthers": "Altri",
|
||||
"OptionBlockTvShows": "Serie TV",
|
||||
"OptionBlockTrailers": "Trailer",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Prossima pagina",
|
||||
"ButtonPreviousPage": "Pagina precedente",
|
||||
"ButtonMoveLeft": "Muovi a sinistra",
|
||||
"OptionReleaseDate": "data di rilascio",
|
||||
"ButtonMoveRight": "Muovi a destra",
|
||||
"ButtonBrowseOnlineImages": "Sfoglia le immagini Online",
|
||||
"HeaderDeleteItem": "Elimina elemento",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "Avanzato",
|
||||
"TabHelp": "Aiuto",
|
||||
"TabScheduledTasks": "Operazioni pianificate",
|
||||
"ButtonFullscreen": "Passare a schermo intero",
|
||||
"ButtonAudioTracks": "tracce audio",
|
||||
"ButtonFullscreen": "Tutto schermo",
|
||||
"ButtonAudioTracks": "Tracce audio",
|
||||
"ButtonSubtitles": "Sottotitoli",
|
||||
"ButtonScenes": "Scene",
|
||||
"ButtonQuality": "Qualit\u00e0",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Persona",
|
||||
"LabelTitleDisplayOrder": "Titolo mostrato in ordine:",
|
||||
"OptionSortName": "Nome ordinato",
|
||||
"OptionReleaseDate": "data di rilascio",
|
||||
"LabelDiscNumber": "Disco numero",
|
||||
"LabelParentNumber": "Numero superiore",
|
||||
"LabelTrackNumber": "Traccia numero:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Lo sapevi che diventando un Emby Supporter, puoi aumentare la tua esperienza con le funzioni come la Modalit\u00e0 Cinema?",
|
||||
"MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede un'iscrizione come supporter",
|
||||
"HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede di essere un membro attivo di Emby Supporter.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sincronizza",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Discentente",
|
||||
"OptionNameSort": "Nome",
|
||||
"OptionTvdbRating": "Voto Tvdb",
|
||||
"OptionPremiereDate": "Data della prima",
|
||||
"OptionImdbRating": "Voto IMDB",
|
||||
"OptionDatePlayed": "Visto il",
|
||||
"OptionDateAdded": "Aggiunto il",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Volete arresto l'applicazione sul dispositivo remoto?",
|
||||
"ButtonYes": "Si",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Cerca",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -893,5 +893,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
||||
|
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "\u0424\u0438\u043b\u044c\u043c",
|
||||
"LabelMusicVideo": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435",
|
||||
"LabelEpisode": "\u0411\u04e9\u043b\u0456\u043c",
|
||||
"LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440;",
|
||||
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b",
|
||||
"LabelStopping": "\u0422\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
||||
"LabelCancelled": "(\u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b)",
|
||||
"LabelFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437",
|
||||
"LabelFailed": "(\u0441\u04d9\u0442\u0441\u0456\u0437)",
|
||||
"ButtonHelp": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u0433\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u0493\u0430",
|
||||
"ButtonSave": "\u0421\u0430\u049b\u0442\u0430\u0443",
|
||||
"ButtonDownload": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "\u0411\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443",
|
||||
"MessageNoSyncJobsFound": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0412\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||
"HeaderLibraryAccess": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
|
||||
"HeaderChannelAccess": "\u0410\u0440\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
|
||||
"HeaderDeviceAccess": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
|
||||
|
@ -147,13 +146,14 @@
|
|||
"ButtonMute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0448\u0456\u0440\u0443",
|
||||
"ButtonUnmute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u049b\u043e\u0441\u0443",
|
||||
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
|
||||
"ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b",
|
||||
"ButtonPause": "\u04ae\u0437\u0443",
|
||||
"ButtonPlay": "\u041e\u0439\u043d\u0430\u0442\u0443",
|
||||
"ButtonEdit": "\u04e8\u04a3\u0434\u0435\u0443",
|
||||
"ButtonQueue": "\u041a\u0435\u0437\u0435\u043a\u043a\u0435",
|
||||
"ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||
"ButtonPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456",
|
||||
"ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
|
||||
"ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b",
|
||||
"LabelEnabled": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d",
|
||||
"LabelDisabled": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d",
|
||||
"ButtonMoreInformation": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c",
|
||||
"HeaderLibraryFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b",
|
||||
"HeaderLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
|
||||
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||
"ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a...",
|
||||
"ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
|
||||
"HeaderFavoriteMovies": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
|
||||
"HeaderFavoriteShows": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456:",
|
||||
"HeaderChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
|
||||
"HeaderMediaFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b",
|
||||
"HeaderBlockItemsWithNoRating": "\u0416\u0430\u0441\u0442\u044b\u049b \u0441\u0430\u043d\u0430\u0442\u044b \u0436\u043e\u049b \u043c\u0430\u0437\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
|
||||
"HeaderBlockItemsWithNoRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b \u0436\u043e\u049b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
|
||||
"OptionBlockOthers": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440",
|
||||
"OptionBlockTvShows": "\u0422\u0414 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440\u0456",
|
||||
"OptionBlockTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0435\u0442\u043a\u0435",
|
||||
"ButtonPreviousPage": "\u0410\u043b\u0434\u044b\u043d\u0493\u044b \u0431\u0435\u0442\u043a\u0435",
|
||||
"ButtonMoveLeft": "\u0421\u043e\u043b\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
|
||||
"OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
|
||||
"ButtonMoveRight": "\u041e\u04a3\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
|
||||
"ButtonBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443",
|
||||
"HeaderDeleteItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u044e",
|
||||
|
@ -416,7 +415,7 @@
|
|||
"TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430",
|
||||
"TabScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b",
|
||||
"ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d",
|
||||
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
|
||||
"ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
|
||||
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
|
||||
"ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "\u0422\u04b1\u043b\u0493\u0430",
|
||||
"LabelTitleDisplayOrder": "\u0422\u0443\u044b\u043d\u0434\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0440\u0435\u0442\u0456:",
|
||||
"OptionSortName": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0430\u0442\u044b",
|
||||
"OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
|
||||
"LabelDiscNumber": "\u0414\u0438\u0441\u043a\u0456 \u043d\u04e9\u043c\u0456\u0440\u0456",
|
||||
"LabelParentNumber": "\u0422\u0435\u043a\u0442\u0456\u043a \u043d\u04e9\u043c\u0456\u0440:",
|
||||
"LabelTrackNumber": "\u0416\u043e\u043b\u0448\u044b\u049b \u043d\u04e9\u043c\u0456\u0440\u0456:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
|
||||
"HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
|
||||
"HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440",
|
||||
"HeaderEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
|
||||
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u0442\u0430\u0440",
|
||||
"HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440",
|
||||
"HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440",
|
||||
"HeaderItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0430\u0442\u0430\u043d\u044b\u043f, \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0430\u0440\u0442\u0442\u044b\u0440\u0443 \u0431\u043e\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?",
|
||||
"MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043c\u0435\u043d \u043a\u0438\u043d\u043e \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
||||
"OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u043a \u049b\u0430\u0436\u0435\u0442",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442.",
|
||||
"ErrorValidatingSupporterInfo": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||
"HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u0410\u0440\u0442\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionDescending": "\u041a\u0435\u043c\u0443\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430",
|
||||
"OptionNameSort": "\u0410\u0442\u044b",
|
||||
"OptionTvdbRating": "Tvdb \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
|
||||
"OptionPremiereDate": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440 \u043a\u04af\u043d-\u0430\u0439\u044b",
|
||||
"OptionImdbRating": "IMDb \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
|
||||
"OptionDatePlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456",
|
||||
"OptionDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u0493\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u04b1\u043c\u044b\u0441\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?",
|
||||
"ButtonYes": "\u0418\u04d9",
|
||||
"ButtonNo": "\u0416\u043e\u049b",
|
||||
"ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443"
|
||||
"ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Musikk Video",
|
||||
"LabelEpisode": "Episode",
|
||||
"LabelSeries": "Series",
|
||||
"LabelSeries": "Serier",
|
||||
"LabelStopping": "Stoppe",
|
||||
"LabelCancelled": "(kansellert)",
|
||||
"LabelFailed": "(failed)",
|
||||
"LabelFailed": "(feilet)",
|
||||
"ButtonHelp": "Hjelp",
|
||||
"ButtonSave": "Lagre",
|
||||
"ButtonDownload": "Nedlasting",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Programtillegg",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Ta en titt p\u00e5 hva som er nytt",
|
||||
"MessageNoSyncJobsFound": "Ingen synkroniseringsjobber funnet. Opprett en synkroniseringsjobb ved hjelp av Synkroniseringsknappene i biblioteket",
|
||||
"ButtonPlayTrailer": "Spill trailer",
|
||||
"HeaderLibraryAccess": "Bibliotek tilgang",
|
||||
"HeaderChannelAccess": "Kanal tilgang",
|
||||
"HeaderDeviceAccess": "Enhetstilgang",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Spill",
|
||||
"ButtonEdit": "Rediger",
|
||||
"ButtonQueue": "K\u00f8",
|
||||
"ButtonPlayTrailer": "Spill trailer",
|
||||
"ButtonPlaylist": "Spilleliste",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Aktivert",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "Season number:",
|
||||
"HeaderChannels": "Kanaler",
|
||||
"HeaderMediaFolders": "Mediemapper",
|
||||
"HeaderBlockItemsWithNoRating": "Blokker innhold uten rating:",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
|
||||
"OptionBlockOthers": "Andre",
|
||||
"OptionBlockTvShows": "TV Serier",
|
||||
"OptionBlockTrailers": "Trailere",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Neste Side",
|
||||
"ButtonPreviousPage": "Forrige Side",
|
||||
"ButtonMoveLeft": "Flytt til venstre",
|
||||
"OptionReleaseDate": "Utgivelsesdato",
|
||||
"ButtonMoveRight": "Flytt til h\u00f8yre",
|
||||
"ButtonBrowseOnlineImages": "Bla igjennom bilder online",
|
||||
"HeaderDeleteItem": "Slett element",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "Avansert",
|
||||
"TabHelp": "Hjelp",
|
||||
"TabScheduledTasks": "Planlagte Oppgaver",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonFullscreen": "Fullskjerm",
|
||||
"ButtonAudioTracks": "Lydspor",
|
||||
"ButtonSubtitles": "Undertekster",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonQuality": "Kvalitet",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Tittel visnings rekkef\u00f8lge:",
|
||||
"OptionSortName": "Sorterings navn",
|
||||
"OptionReleaseDate": "Utgivelsesdato",
|
||||
"LabelDiscNumber": "Disk nummer",
|
||||
"LabelParentNumber": "Forelder-ID",
|
||||
"LabelTrackNumber": "Spor nummer:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "Albumer",
|
||||
"HeaderGames": "Spill",
|
||||
"HeaderBooks": "B\u00f8ker",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderEpisodes": "Episoder",
|
||||
"HeaderSeasons": "Sesonger",
|
||||
"HeaderTracks": "Spor",
|
||||
"HeaderItems": "Elementer",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synkronisering krever st\u00f8ttemedlemskap",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Synk.",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u00d8kende",
|
||||
"OptionDescending": "Synkende",
|
||||
"OptionNameSort": "Navn",
|
||||
"OptionTvdbRating": "Tvdb Rangering",
|
||||
"OptionPremiereDate": "Premieredato",
|
||||
"OptionImdbRating": "IMDb Rangering",
|
||||
"OptionDatePlayed": "Dato spilt",
|
||||
"OptionDateAdded": "Dato lagt til",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "S\u00f8k",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -39,14 +39,14 @@
|
|||
"TextEnjoyBonusFeatures": "Profiteer van extra mogelijkheden",
|
||||
"TitleLiveTV": "Live TV",
|
||||
"ButtonCancelSyncJob": "Annuleer synchronisatie opdracht",
|
||||
"ButtonSelectView": "Select view",
|
||||
"ButtonSelectView": "Selecteer weergave",
|
||||
"TitleSync": "Synchroniseer",
|
||||
"OptionAutomatic": "Automatisch",
|
||||
"HeaderSelectDate": "Selecteer Datum",
|
||||
"ButtonDonate": "Doneren",
|
||||
"LabelRecurringDonationCanBeCancelledHelp": "Terugkerende donaties kunnen op elk moment stop gezet worden in uw PayPal account.",
|
||||
"HeaderMyMedia": "Mijn media",
|
||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||
"ButtonRemoveFromCollection": "Verwijder uit collectie",
|
||||
"LabelAutomaticUpdateLevel": "Niveau automatische update:",
|
||||
"LabelAutomaticUpdateLevelForPlugins": "Niveau automatische update voor plugins:",
|
||||
"TitleNotifications": "Meldingen",
|
||||
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Muziek Video",
|
||||
"LabelEpisode": "Aflevering",
|
||||
"LabelSeries": "Series:",
|
||||
"LabelSeries": "Series",
|
||||
"LabelStopping": "Stoppen",
|
||||
"LabelCancelled": "(Geannuleerd)",
|
||||
"LabelFailed": "Mislukt",
|
||||
"LabelFailed": "(Mislukt)",
|
||||
"ButtonHelp": "Hulp",
|
||||
"ButtonSave": "Opslaan",
|
||||
"ButtonDownload": "Downloaden",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Volg de tour om te zien wat nieuw is",
|
||||
"MessageNoSyncJobsFound": "Geen sync opdrachten gevonden. Maak sync opdrachten via de Synchronisatie knoppen in de web interface.",
|
||||
"ButtonPlayTrailer": "Trailer afspelen",
|
||||
"HeaderLibraryAccess": "Bibliotheek toegang",
|
||||
"HeaderChannelAccess": "Kanaal toegang",
|
||||
"HeaderDeviceAccess": "Apparaat Toegang",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Afspelen",
|
||||
"ButtonEdit": "Bewerken",
|
||||
"ButtonQueue": "Wachtrij",
|
||||
"ButtonPlayTrailer": "Trailer afspelen",
|
||||
"ButtonPlaylist": "Afspeellijst",
|
||||
"ButtonPreviousTrack": "Vorig nummer",
|
||||
"LabelEnabled": "Ingeschakeld",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Mijn Overzichten",
|
||||
"HeaderLibraryFolders": "Media Mappen",
|
||||
"HeaderLatestMedia": "Nieuw in bibliotheek",
|
||||
"ButtonMoreItems": "Meer",
|
||||
"ButtonMoreItems": "Meer...",
|
||||
"ButtonMore": "Meer",
|
||||
"HeaderFavoriteMovies": "Favoriete Films",
|
||||
"HeaderFavoriteShows": "Favoriete Shows",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Volgende pagina",
|
||||
"ButtonPreviousPage": "Vorige Pagina",
|
||||
"ButtonMoveLeft": "Verplaats naar links",
|
||||
"OptionReleaseDate": "Uitgave datum",
|
||||
"ButtonMoveRight": "Verplaats naar rechts",
|
||||
"ButtonBrowseOnlineImages": "Blader door online afbeeldingen",
|
||||
"HeaderDeleteItem": "Item verwijderen",
|
||||
|
@ -415,7 +414,7 @@
|
|||
"TabAdvanced": "Geavanceerd",
|
||||
"TabHelp": "Hulp",
|
||||
"TabScheduledTasks": "Geplande taken",
|
||||
"ButtonFullscreen": "Schakelen tussen volledig scherm",
|
||||
"ButtonFullscreen": "Volledig scherm",
|
||||
"ButtonAudioTracks": "Geluidssporen",
|
||||
"ButtonSubtitles": "Ondertiteling",
|
||||
"ButtonScenes": "Scenes",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Persoon",
|
||||
"LabelTitleDisplayOrder": "Titel weergave volgorde:",
|
||||
"OptionSortName": "Sorteerbaar",
|
||||
"OptionReleaseDate": "Uitgave datum",
|
||||
"LabelDiscNumber": "Disc nummer",
|
||||
"LabelParentNumber": "Bovenliggend nummer",
|
||||
"LabelTrackNumber": "Tracknummer:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Spellen",
|
||||
"HeaderBooks": "Boeken",
|
||||
"HeaderEpisodes": "Afleveringen:",
|
||||
"HeaderEpisodes": "Afleveringen",
|
||||
"HeaderSeasons": "Seizoenen",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
|
@ -707,7 +707,7 @@
|
|||
"MessageRefreshQueued": "Vernieuwen wachtrij",
|
||||
"TabDevices": "Apparaten",
|
||||
"TabExtras": "Extra's",
|
||||
"HeaderUploadImage": "Upload Image",
|
||||
"HeaderUploadImage": "Afbeelding uploaden",
|
||||
"DeviceLastUsedByUserName": "Het laatste gebruikt door {0}",
|
||||
"HeaderDeleteDevice": "Verwijder apparaat",
|
||||
"DeleteDeviceConfirmation": "Weet u zeker dat u dit apparaat wilt verwijderen? Het zal opnieuw verschijnen als een gebruiker zich hiermee aanmeldt.",
|
||||
|
@ -802,11 +802,11 @@
|
|||
"MessageIfYouBlockedVoice": "Als u spraak toegang uitgeschakeld heeft moet u dit opnieuw configureren voordat u verder gaat.",
|
||||
"MessageNoItemsFound": "Geen items gevonden.",
|
||||
"ButtonManageServer": "Beheer server",
|
||||
"ButtonEditSubtitles": "Edit subtitles",
|
||||
"ButtonEditSubtitles": "Bewerk ondertiteling",
|
||||
"ButtonPreferences": "Voorkeuren",
|
||||
"ButtonViewArtist": "Bekijk artiest",
|
||||
"ButtonViewAlbum": "Bekijk album",
|
||||
"ButtonEditImages": "Edit images",
|
||||
"ButtonEditImages": "Bewerk afbeeldingen",
|
||||
"ErrorMessagePasswordNotMatchConfirm": "Het wachtwoord en de wachtwoordbevestiging moeten overeenkomen.",
|
||||
"ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.",
|
||||
"ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Weet u dat als u een Emby Supoorter wordt, u de ervaring kan verbeteren met functies zoals de Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.",
|
||||
"OptionEnableDisplayMirroring": "Schakel beeld spiegeling in",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync Vereist een Supporter lidmaatschap",
|
||||
"HeaderSyncRequiresSupporterMembership": "Synchronisatie vereist een actief Emby Supporter lidmaatschap.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronisatie vereist het verbinden met een Emby Server met een actief Emby Supporter lidmaatschap.",
|
||||
"ErrorValidatingSupporterInfo": "Er was een out bij het valideren van uw Emby Supporter informatie. Probeer het later nog eens.",
|
||||
"HeaderSync": "Sync",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Oplopend",
|
||||
"OptionDescending": "Aflopend",
|
||||
"OptionNameSort": "Naam",
|
||||
"OptionTvdbRating": "Tvdb Waardering",
|
||||
"OptionPremiereDate": "Premi\u00e8re Datum",
|
||||
"OptionImdbRating": "IMDb Waardering",
|
||||
"OptionDatePlayed": "Datum afgespeeld",
|
||||
"OptionDateAdded": "Datum toegevoegd",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Wilt u de app op het externe apparaat afsluiten?",
|
||||
"ButtonYes": "Ja",
|
||||
"ButtonNo": "Nee",
|
||||
"ButtonRestorePreviousPurchase": "Herstel aankoop"
|
||||
"ButtonRestorePreviousPurchase": "Herstel aankoop",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Zoeken",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Rosn\u0105co",
|
||||
"OptionDescending": "Malej\u0105co",
|
||||
"OptionNameSort": "Nazwa",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Data premiery",
|
||||
"OptionImdbRating": "Ocena IMDb",
|
||||
"OptionDatePlayed": "Data odtworzenia",
|
||||
"OptionDateAdded": "Data dodania",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Filme",
|
||||
"LabelMusicVideo": "V\u00eddeo Musical",
|
||||
"LabelEpisode": "Epis\u00f3dio",
|
||||
"LabelSeries": "S\u00e9rie:",
|
||||
"LabelSeries": "S\u00e9ries",
|
||||
"LabelStopping": "Parando",
|
||||
"LabelCancelled": "(cancelado)",
|
||||
"LabelFailed": "Falhou",
|
||||
"LabelFailed": "(falhou)",
|
||||
"ButtonHelp": "Ajuda",
|
||||
"ButtonSave": "Salvar",
|
||||
"ButtonDownload": "Download",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
||||
"MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.",
|
||||
"ButtonPlayTrailer": "Reproduzir trailer",
|
||||
"HeaderLibraryAccess": "Acesso \u00e0 Biblioteca",
|
||||
"HeaderChannelAccess": "Acesso ao Canal",
|
||||
"HeaderDeviceAccess": "Acesso ao Dispositivo",
|
||||
|
@ -147,13 +146,14 @@
|
|||
"ButtonMute": "Mudo",
|
||||
"ButtonUnmute": "Remover Mudo",
|
||||
"ButtonStop": "Parar",
|
||||
"ButtonNextTrack": "Faixa seguinte",
|
||||
"ButtonNextTrack": "Pr\u00f3xima Faixa",
|
||||
"ButtonPause": "Pausar",
|
||||
"ButtonPlay": "Reproduzir",
|
||||
"ButtonEdit": "Editar",
|
||||
"ButtonQueue": "Adicionar \u00e0 fila",
|
||||
"ButtonPlayTrailer": "Reproduzir trailer",
|
||||
"ButtonPlaylist": "Lista de reprodu\u00e7\u00e3o",
|
||||
"ButtonPreviousTrack": "Faixa anterior",
|
||||
"ButtonPreviousTrack": "Faixa Anterior",
|
||||
"LabelEnabled": "Ativada",
|
||||
"LabelDisabled": "Desativada",
|
||||
"ButtonMoreInformation": "Mais informa\u00e7\u00f5es",
|
||||
|
@ -216,7 +216,7 @@
|
|||
"HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es",
|
||||
"HeaderLibraryFolders": "Pastas de M\u00eddias",
|
||||
"HeaderLatestMedia": "M\u00eddias Recentes",
|
||||
"ButtonMoreItems": "Mais",
|
||||
"ButtonMoreItems": "Mais...",
|
||||
"ButtonMore": "Mais",
|
||||
"HeaderFavoriteMovies": "Filmes Favoritos",
|
||||
"HeaderFavoriteShows": "S\u00e9ries Favoritas",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "N\u00famero da temporada:",
|
||||
"HeaderChannels": "Canais",
|
||||
"HeaderMediaFolders": "Pastas de M\u00eddia",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado sem informa\u00e7\u00e3o de classifica\u00e7\u00e3o:",
|
||||
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o:",
|
||||
"OptionBlockOthers": "Outros",
|
||||
"OptionBlockTvShows": "S\u00e9ries de TV",
|
||||
"OptionBlockTrailers": "Trailers",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Pr\u00f3xima P\u00e1gina",
|
||||
"ButtonPreviousPage": "P\u00e1gina Anterior",
|
||||
"ButtonMoveLeft": "Mover \u00e0 esquerda",
|
||||
"OptionReleaseDate": "Data de lan\u00e7amento",
|
||||
"ButtonMoveRight": "Mover \u00e0 direita",
|
||||
"ButtonBrowseOnlineImages": "Procurar imagens online",
|
||||
"HeaderDeleteItem": "Excluir item",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "Avan\u00e7ado",
|
||||
"TabHelp": "Ajuda",
|
||||
"TabScheduledTasks": "Tarefas Agendadas",
|
||||
"ButtonFullscreen": "Alternar para o modo tela cheia",
|
||||
"ButtonAudioTracks": "Faixas de \u00e1udio",
|
||||
"ButtonFullscreen": "Tela Cheia",
|
||||
"ButtonAudioTracks": "Faixas de \u00c1udio",
|
||||
"ButtonSubtitles": "Legendas",
|
||||
"ButtonScenes": "Cenas",
|
||||
"ButtonQuality": "Qualidade",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Pessoa",
|
||||
"LabelTitleDisplayOrder": "Ordem de exibi\u00e7\u00e3o do t\u00edtulo: ",
|
||||
"OptionSortName": "Nome para ordena\u00e7\u00e3o",
|
||||
"OptionReleaseDate": "Data de lan\u00e7amento",
|
||||
"LabelDiscNumber": "N\u00famero do disco",
|
||||
"LabelParentNumber": "N\u00famero do superior",
|
||||
"LabelTrackNumber": "N\u00famero da faixa:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "\u00c1lbuns",
|
||||
"HeaderGames": "Jogos",
|
||||
"HeaderBooks": "Livros",
|
||||
"HeaderEpisodes": "Epis\u00f3dios:",
|
||||
"HeaderEpisodes": "Epis\u00f3dios",
|
||||
"HeaderSeasons": "Temporadas",
|
||||
"HeaderTracks": "Faixas",
|
||||
"HeaderItems": "Itens",
|
||||
|
@ -707,7 +707,7 @@
|
|||
"MessageRefreshQueued": "Atualiza\u00e7\u00e3o iniciada",
|
||||
"TabDevices": "Dispositivos",
|
||||
"TabExtras": "Extras",
|
||||
"HeaderUploadImage": "Upload Image",
|
||||
"HeaderUploadImage": "Subir Imagem",
|
||||
"DeviceLastUsedByUserName": "Utilizado por \u00faltimo por {0}",
|
||||
"HeaderDeleteDevice": "Excluir Dispositivo",
|
||||
"DeleteDeviceConfirmation": "Deseja realmente excluir este dispositivo? Ele reaparecer\u00e1 da pr\u00f3xima vez que um usu\u00e1rio utiliz\u00e1-lo.",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que ao se tornar um Colaborador do Emby, voc\u00ea pode melhorar sua experi\u00eancia com funcionalidades como o Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers, intros personalizadas, antes do filme principal.",
|
||||
"OptionEnableDisplayMirroring": "Ativar espelhamento da tela",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o Necessita de uma Ades\u00e3o de Colaborador",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma ades\u00e3o de Colaborador do Emby ativa.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sincroniza\u00e7\u00e3o requer se conectar a um Servidor Emby com uma ades\u00e3o de Colaborador do Emby ativa.",
|
||||
"ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar a sua informa\u00e7\u00e3o de Colaborador do Emby. Por favor, tente novamente mais tarde.",
|
||||
"HeaderSync": "Sincroniza\u00e7\u00e3o",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Crescente",
|
||||
"OptionDescending": "Decrescente",
|
||||
"OptionNameSort": "Nome",
|
||||
"OptionTvdbRating": "Avalia\u00e7\u00e3o Tvdb",
|
||||
"OptionPremiereDate": "Data da Estr\u00e9ia",
|
||||
"OptionImdbRating": "Avalia\u00e7\u00e3o IMDb",
|
||||
"OptionDatePlayed": "Data da Reprodu\u00e7\u00e3o",
|
||||
"OptionDateAdded": "Data da Adi\u00e7\u00e3o",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Voc\u00ea deseja fechar o app no dispositivo remoto?",
|
||||
"ButtonYes": "Sim",
|
||||
"ButtonNo": "N\u00e3o",
|
||||
"ButtonRestorePreviousPurchase": "Restaurar Compra"
|
||||
"ButtonRestorePreviousPurchase": "Restaurar Compra",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Busca",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "Uma conta de Apoiante fornece benef\u00edcios adicionais como acesso \u00e0 sincroniza\u00e7\u00e3o, extens\u00f5es premium, conte\u00fados de canais da internet e mais. {0}Saiba mais{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Extens\u00f5es",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Reproduzir",
|
||||
"ButtonEdit": "Editar",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "A sincroniza\u00e7\u00e3o necessita de uma conta de Apoiante",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sincroniza\u00e7\u00e3o",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascendente",
|
||||
"OptionDescending": "Descendente",
|
||||
"OptionNameSort": "Nome",
|
||||
"OptionTvdbRating": "Classifica\u00e7\u00e3o no Tvdb",
|
||||
"OptionPremiereDate": "Data de Estreia",
|
||||
"OptionImdbRating": "Classifica\u00e7\u00e3o no IMDb",
|
||||
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
|
||||
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Procurar",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "Un membru sus\u021bin\u0103tor ofer\u0103 beneficii suplimentare, cum ar fi accesul la sincronizare, plugin-uri premium, con\u021binut internet, \u0219i multe altele. {0} Afla\u021bi mai multe {1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugin-uri",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Accesul Dispozitivelor",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sincronizarea necesita a fi Membru Cotizant",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sincronizeaza",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Crescator",
|
||||
"OptionDescending": "Descrescator",
|
||||
"OptionNameSort": "Nume",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Data Premierei",
|
||||
"OptionImdbRating": "Rating IMDb",
|
||||
"OptionDatePlayed": "Data Rulare",
|
||||
"OptionDateAdded": "Data Adaugare",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "\u0424\u0438\u043b\u044c\u043c",
|
||||
"LabelMusicVideo": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||
"LabelEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434",
|
||||
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
|
||||
"LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b",
|
||||
"LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430",
|
||||
"LabelCancelled": "(\u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e)",
|
||||
"LabelFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e",
|
||||
"LabelFailed": "(\u043d\u0435\u0443\u0434\u0430\u0447\u043d\u043e)",
|
||||
"ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...",
|
||||
"ButtonSave": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
|
||||
"ButtonDownload": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c\u0438",
|
||||
"MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043d\u043e\u043f\u043e\u043a \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u0432\u0435\u0431-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.",
|
||||
"ButtonPlayTrailer": "\u0412\u043e\u0441\u043f\u0440. \u0442\u0440\u0435\u0439\u043b\u0435\u0440",
|
||||
"HeaderLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435",
|
||||
"HeaderChannelAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u043a\u0430\u043d\u0430\u043b\u0430\u043c",
|
||||
"HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u0412\u043e\u0441\u043f\u0440.",
|
||||
"ButtonEdit": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c",
|
||||
"ButtonQueue": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c...",
|
||||
"ButtonPlayTrailer": "\u0412\u043e\u0441\u043f\u0440. \u0442\u0440\u0435\u0439\u043b\u0435\u0440",
|
||||
"ButtonPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...",
|
||||
"ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
|
||||
"LabelEnabled": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e",
|
||||
|
@ -320,7 +320,7 @@
|
|||
"LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430:",
|
||||
"HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
|
||||
"HeaderMediaFolders": "\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438",
|
||||
"HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0431\u0435\u0437 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:",
|
||||
"HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:",
|
||||
"OptionBlockOthers": "\u0414\u0440\u0443\u0433\u0438\u0435",
|
||||
"OptionBlockTvShows": "\u0422\u0412-\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b",
|
||||
"OptionBlockTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430...",
|
||||
"ButtonPreviousPage": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430...",
|
||||
"ButtonMoveLeft": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043b\u0435\u0432\u043e",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
|
||||
"ButtonMoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e",
|
||||
"ButtonBrowseOnlineImages": "\u0421\u043c. \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0441\u0435\u0442\u0438",
|
||||
"HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435",
|
||||
"TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430",
|
||||
"TabScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a",
|
||||
"ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d...",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
|
||||
"ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d",
|
||||
"ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e \u0434\u043e\u0440\u043e\u0436\u043a\u0438",
|
||||
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...",
|
||||
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
|
||||
"ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430",
|
||||
"LabelTitleDisplayOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439:",
|
||||
"OptionSortName": "\u0418\u043c\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438",
|
||||
"OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
|
||||
"LabelDiscNumber": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430",
|
||||
"LabelParentNumber": "\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u043d\u043e\u043c\u0435\u0440",
|
||||
"LabelTrackNumber": "\u041d\u043e\u043c\u0435\u0440 \u0434\u043e\u0440\u043e\u0436\u043a\u0438:",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
|
||||
"HeaderGames": "\u0418\u0433\u0440\u044b",
|
||||
"HeaderBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
|
||||
"HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||
"HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b",
|
||||
"HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438",
|
||||
"HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0441\u044c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0441\u0438\u043b\u0438\u0442\u044c \u0441\u0432\u043e\u0438 \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0440\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?",
|
||||
"MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0435 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u043a\u0438\u043d\u043e \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.",
|
||||
"OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e\u043c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.",
|
||||
"ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0432\u0430\u0448\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0435 Emby. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.",
|
||||
"HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||
|
@ -855,11 +855,13 @@
|
|||
"OptionAscending": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u044e\u0449\u0438\u0439",
|
||||
"OptionDescending": "\u0423\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439",
|
||||
"OptionNameSort": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
|
||||
"OptionTvdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 TVDb",
|
||||
"OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b",
|
||||
"OptionImdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 IMDb",
|
||||
"OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
|
||||
"OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
|
||||
"OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439",
|
||||
"ButtonDisconnect": "\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c",
|
||||
"ButtonDisconnect": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435",
|
||||
"OptionAlbumArtist": "\u0418\u0441\u043f-\u043b\u044c \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
|
||||
"OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c",
|
||||
"OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
|
||||
|
@ -877,9 +879,13 @@
|
|||
"ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b.",
|
||||
"ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434",
|
||||
"ButtonRecordedTv": "\u0417\u0430\u043f\u0438\u0441\u0430\u043d\u043d\u043e\u0435 \u0422\u0412",
|
||||
"HeaderDisconnectFromPlayer": "\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"HeaderDisconnectFromPlayer": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f",
|
||||
"ConfirmEndPlayerSession": "\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435?",
|
||||
"ButtonYes": "\u0414\u0430",
|
||||
"ButtonNo": "\u041d\u0435\u0442",
|
||||
"ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435"
|
||||
"ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "Name",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -75,10 +75,10 @@
|
|||
"LabelMovie": "Film",
|
||||
"LabelMusicVideo": "Musikvideo",
|
||||
"LabelEpisode": "Avsnitt",
|
||||
"LabelSeries": "Series",
|
||||
"LabelSeries": "Serie",
|
||||
"LabelStopping": "Avbryter",
|
||||
"LabelCancelled": "(avbr\u00f6ts)",
|
||||
"LabelFailed": "(failed)",
|
||||
"LabelFailed": "(misslyckades)",
|
||||
"ButtonHelp": "Hj\u00e4lp",
|
||||
"ButtonSave": "Spara",
|
||||
"ButtonDownload": "Ladda ned",
|
||||
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "Inga synkjobb hittades. Skapa synkjobb med hj\u00e4lp av Synk-knapparna som finns i hela gr\u00e4nssnittet.",
|
||||
"ButtonPlayTrailer": "Visa trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Enhets\u00e5tkomst",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Spela upp",
|
||||
"ButtonEdit": "\u00c4ndra",
|
||||
"ButtonQueue": "K\u00f6",
|
||||
"ButtonPlayTrailer": "Visa trailer",
|
||||
"ButtonPlaylist": "Spellista",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Aktiverad",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "N\u00e4sta sida",
|
||||
"ButtonPreviousPage": "F\u00f6reg\u00e5ende sida",
|
||||
"ButtonMoveLeft": "V\u00e4nster",
|
||||
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||
"ButtonMoveRight": "H\u00f6ger",
|
||||
"ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
|
||||
"HeaderDeleteItem": "Radera objekt",
|
||||
|
@ -415,8 +414,8 @@
|
|||
"TabAdvanced": "Avancerat",
|
||||
"TabHelp": "Hj\u00e4lp",
|
||||
"TabScheduledTasks": "Schemalagda aktiviteter",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonFullscreen": "Fullsk\u00e4rm",
|
||||
"ButtonAudioTracks": "Ljudsp\u00e5r",
|
||||
"ButtonSubtitles": "Undertexter",
|
||||
"ButtonScenes": "Scener",
|
||||
"ButtonQuality": "Kvalitet",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Visningsordning f\u00f6r titlar",
|
||||
"OptionSortName": "Sorteringstitel",
|
||||
"OptionReleaseDate": "Premi\u00e4rdatum",
|
||||
"LabelDiscNumber": "Skiva nr",
|
||||
"LabelParentNumber": "F\u00f6r\u00e4lder nr",
|
||||
"LabelTrackNumber": "Sp\u00e5r nr",
|
||||
|
@ -630,7 +630,7 @@
|
|||
"HeaderAlbums": "Album",
|
||||
"HeaderGames": "Spel",
|
||||
"HeaderBooks": "B\u00f6cker",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderEpisodes": "Avsnitt",
|
||||
"HeaderSeasons": "S\u00e4songer",
|
||||
"HeaderTracks": "Sp\u00e5r",
|
||||
"HeaderItems": "Objekt",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Stigande",
|
||||
"OptionDescending": "Sjunkande",
|
||||
"OptionNameSort": "Namn",
|
||||
"OptionTvdbRating": "TVDB-betyg",
|
||||
"OptionPremiereDate": "Premi\u00e4rdatum",
|
||||
"OptionImdbRating": "Betyg p\u00e5 IMDB",
|
||||
"OptionDatePlayed": "Senast visad",
|
||||
"OptionDateAdded": "Inlagd den",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "S\u00f6k",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u00c7al",
|
||||
"ButtonEdit": "D\u00fczenle",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Y\u00fckselen",
|
||||
"OptionDescending": "D\u00fc\u015fen",
|
||||
"OptionNameSort": "\u0130sim",
|
||||
"OptionTvdbRating": "Tvdb Reyting",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "\u0130MDb Reyting",
|
||||
"OptionDatePlayed": "Oynatma Tarihi",
|
||||
"OptionDateAdded": "Eklenme Tarihi",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Arama",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "\u0406\u043c\u2019\u044f",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "IMDb Rating",
|
||||
"OptionDatePlayed": "Date Played",
|
||||
"OptionDateAdded": "Date Added",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "Play",
|
||||
"ButtonEdit": "Edit",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "Ascending",
|
||||
"OptionDescending": "Descending",
|
||||
"OptionNameSort": "T\u00ean",
|
||||
"OptionTvdbRating": "Tvdb Rating",
|
||||
"OptionPremiereDate": "Premiere Date",
|
||||
"OptionImdbRating": "\u0110\u00e1nh gi\u00e1 IMDb",
|
||||
"OptionDatePlayed": "Ng\u00e0y ph\u00e1t",
|
||||
"OptionDateAdded": "Ng\u00e0y th\u00eam",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "T\u00ecm ki\u1ebfm",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "\u8fdb\u884c\u53c2\u89c2\uff0c\u770b\u770b\u6709\u4ec0\u4e48\u65b0\u4e1c\u897f",
|
||||
"MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528Web\u754c\u9762\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "\u8bbe\u5907\u8bbf\u95ee",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u64ad\u653e",
|
||||
"ButtonEdit": "\u7f16\u8f91",
|
||||
"ButtonQueue": "\u52a0\u5165\u961f\u5217",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "\u64ad\u653e\u5217\u8868",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "\u5df2\u542f\u7528",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "\u4e0b\u4e00\u9875",
|
||||
"ButtonPreviousPage": "\u524d\u4e00\u9875",
|
||||
"ButtonMoveLeft": "\u5de6\u79fb",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "\u53f3\u79fb",
|
||||
"ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
|
||||
"HeaderDeleteItem": "\u5220\u9664\u9879\u76ee",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "\u4eba\u7269",
|
||||
"LabelTitleDisplayOrder": "\u6807\u9898\u663e\u793a\u7684\u987a\u5e8f\uff1a",
|
||||
"OptionSortName": "\u6392\u5e8f\u540d\u79f0",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "\u5149\u76d8\u53f7",
|
||||
"LabelParentNumber": "\u6bcd\u5e26\u53f7",
|
||||
"LabelTrackNumber": "\u97f3\u8f68\u53f7\u7801\uff1a",
|
||||
|
@ -831,7 +831,7 @@
|
|||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u652f\u6301\u8005\u4f1a\u5458",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "Sync",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u5347\u5e8f",
|
||||
"OptionDescending": "\u964d\u5e8f",
|
||||
"OptionNameSort": "\u540d\u5b57",
|
||||
"OptionTvdbRating": "Tvdb \u8bc4\u5206",
|
||||
"OptionPremiereDate": "\u9996\u6620\u65e5\u671f",
|
||||
"OptionImdbRating": "IMDb \u8bc4\u5206",
|
||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "\u641c\u7d22",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
891
dashboard-ui/strings/javascript/zh-HK.json
Normal file
891
dashboard-ui/strings/javascript/zh-HK.json
Normal file
|
@ -0,0 +1,891 @@
|
|||
{
|
||||
"SettingsSaved": "Settings saved.",
|
||||
"AddUser": "Add User",
|
||||
"Users": "Users",
|
||||
"Delete": "Delete",
|
||||
"Administrator": "Administrator",
|
||||
"Password": "Password",
|
||||
"DeleteImage": "Delete Image",
|
||||
"MessageThankYouForSupporting": "Thank you for supporting Emby.",
|
||||
"MessagePleaseSupportProject": "Please support Emby.",
|
||||
"DeleteImageConfirmation": "Are you sure you wish to delete this image?",
|
||||
"FileReadCancelled": "The file read has been canceled.",
|
||||
"FileNotFound": "File not found.",
|
||||
"FileReadError": "An error occurred while reading the file.",
|
||||
"DeleteUser": "Delete User",
|
||||
"DeleteUserConfirmation": "Are you sure you wish to delete this user?",
|
||||
"PasswordResetHeader": "Reset Password",
|
||||
"PasswordResetComplete": "The password has been reset.",
|
||||
"PinCodeResetComplete": "The pin code has been reset.",
|
||||
"PasswordResetConfirmation": "Are you sure you wish to reset the password?",
|
||||
"PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?",
|
||||
"HeaderPinCodeReset": "Reset Pin Code",
|
||||
"PasswordSaved": "Password saved.",
|
||||
"PasswordMatchError": "Password and password confirmation must match.",
|
||||
"OptionRelease": "\u5b98\u65b9\u767c\u4f48",
|
||||
"OptionBeta": "\u516c\u6e2c",
|
||||
"OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09",
|
||||
"UninstallPluginHeader": "Uninstall Plugin",
|
||||
"UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?",
|
||||
"NoPluginConfigurationMessage": "This plugin has nothing to configure.",
|
||||
"NoPluginsInstalledMessage": "You have no plugins installed.",
|
||||
"BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.",
|
||||
"MessageKeyEmailedTo": "Key emailed to {0}.",
|
||||
"MessageKeysLinked": "Keys linked.",
|
||||
"HeaderConfirmation": "Confirmation",
|
||||
"MessageKeyUpdated": "Thank you. Your supporter key has been updated.",
|
||||
"MessageKeyRemoved": "Thank you. Your supporter key has been removed.",
|
||||
"HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a",
|
||||
"TextEnjoyBonusFeatures": "\u4eab\u53d7\u984d\u5916\u529f\u80fd",
|
||||
"TitleLiveTV": "\u96fb\u8996\u76f4\u64ad",
|
||||
"ButtonCancelSyncJob": "Cancel sync job",
|
||||
"ButtonSelectView": "Select view",
|
||||
"TitleSync": "Sync",
|
||||
"OptionAutomatic": "\u81ea\u52d5",
|
||||
"HeaderSelectDate": "\u9078\u64c7\u65e5\u671f",
|
||||
"ButtonDonate": "Donate",
|
||||
"LabelRecurringDonationCanBeCancelledHelp": "\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u6642\u9593\u65bc PayPal \u8cec\u6236\u5167\u53d6\u6d88\u5b9a\u671f\u6350\u8d08\u3002",
|
||||
"HeaderMyMedia": "My Media",
|
||||
"ButtonRemoveFromCollection": "Remove from Collection",
|
||||
"LabelAutomaticUpdateLevel": "Automatic update level:",
|
||||
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
|
||||
"TitleNotifications": "\u901a\u77e5",
|
||||
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
|
||||
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.",
|
||||
"MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:",
|
||||
"HeaderConfirmRemoveUser": "Remove User",
|
||||
"MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.",
|
||||
"MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?",
|
||||
"ValueTimeLimitSingleHour": "Time limit: 1 hour",
|
||||
"ValueTimeLimitMultiHour": "Time limit: {0} hours",
|
||||
"HeaderUsers": "\u7528\u6236",
|
||||
"PluginCategoryGeneral": "General",
|
||||
"PluginCategoryContentProvider": "Content Providers",
|
||||
"PluginCategoryScreenSaver": "Screen Savers",
|
||||
"PluginCategoryTheme": "Themes",
|
||||
"PluginCategorySync": "Sync",
|
||||
"PluginCategorySocialIntegration": "Social Networks",
|
||||
"PluginCategoryNotifications": "Notifications",
|
||||
"PluginCategoryMetadata": "Metadata",
|
||||
"PluginCategoryLiveTV": "Live TV",
|
||||
"PluginCategoryChannel": "Channels",
|
||||
"HeaderSearch": "Search",
|
||||
"ValueDateCreated": "Date created: {0}",
|
||||
"LabelArtist": "Artist",
|
||||
"LabelMovie": "Movie",
|
||||
"LabelMusicVideo": "Music Video",
|
||||
"LabelEpisode": "Episode",
|
||||
"LabelSeries": "Series",
|
||||
"LabelStopping": "Stopping",
|
||||
"LabelCancelled": "(cancelled)",
|
||||
"LabelFailed": "(failed)",
|
||||
"ButtonHelp": "\u5e6b\u52a9",
|
||||
"ButtonSave": "\u5132\u5b58",
|
||||
"ButtonDownload": "Download",
|
||||
"SyncJobStatusQueued": "Queued",
|
||||
"SyncJobStatusConverting": "Converting",
|
||||
"SyncJobStatusFailed": "Failed",
|
||||
"SyncJobStatusCancelled": "Cancelled",
|
||||
"SyncJobStatusCompleted": "Synced",
|
||||
"SyncJobStatusReadyToTransfer": "Ready to Transfer",
|
||||
"SyncJobStatusTransferring": "Transferring",
|
||||
"SyncJobStatusCompletedWithError": "Synced with errors",
|
||||
"SyncJobItemStatusReadyToTransfer": "Ready to Transfer",
|
||||
"LabelCollection": "Collection",
|
||||
"HeaderAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab",
|
||||
"NewCollectionNameExample": "\u4f8b\u5982\uff1a\u661f\u7403\u5927\u6230\u6536\u85cf\u5eab",
|
||||
"OptionSearchForInternetMetadata": "\u5f9e\u4e92\u806f\u7db2\u641c\u5c0b\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027",
|
||||
"LabelSelectCollection": "\u9078\u64c7\u6536\u85cf\u5eab",
|
||||
"HeaderDevices": "Devices",
|
||||
"ButtonScheduledTasks": "Scheduled tasks",
|
||||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "\u6703\u54e1\u53ef\u4ee5\u4eab\u53d7\u66f4\u591a\u597d\u8655\uff0c\u5982\u5141\u8a31\u540c\u6b65\uff0c\u9ad8\u7d1a\u63d2\u4ef6\uff0c\u4e92\u806f\u7db2\u983b\u9053\u5167\u5bb9\u7b49\u3002 {0}\u4e86\u89e3\u8a73\u60c5{1}\u3002",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
"HeaderWelcomeToProjectWebClient": "Welcome to Emby",
|
||||
"ButtonTakeTheTour": "\u6aa2\u67e5\u72c0\u6cc1",
|
||||
"HeaderWelcomeBack": "Welcome back!",
|
||||
"TitlePlugins": "\u63d2\u4ef6",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "\u5141\u8a31\u88dd\u7f6e\u901a\u884c",
|
||||
"HeaderSelectDevices": "Select Devices",
|
||||
"ButtonCancelItem": "Cancel item",
|
||||
"ButtonQueueForRetry": "Queue for retry",
|
||||
"ButtonReenable": "Re-enable",
|
||||
"ButtonLearnMore": "Learn more",
|
||||
"SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal",
|
||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||
"HeaderTaskTriggers": "Task Triggers",
|
||||
"MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?",
|
||||
"MessageNoPluginsInstalled": "You have no plugins installed.",
|
||||
"LabelVersionInstalled": "{0} installed",
|
||||
"LabelNumberReviews": "{0} Reviews",
|
||||
"LabelFree": "Free",
|
||||
"HeaderPlaybackError": "Playback Error",
|
||||
"MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.",
|
||||
"MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.",
|
||||
"MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.",
|
||||
"MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.",
|
||||
"HeaderSelectAudio": "Select Audio",
|
||||
"HeaderSelectSubtitles": "Select Subtitles",
|
||||
"ButtonMarkForRemoval": "Remove from device",
|
||||
"ButtonUnmarkForRemoval": "Cancel removal from device",
|
||||
"LabelDefaultStream": "(Default)",
|
||||
"LabelForcedStream": "(Forced)",
|
||||
"LabelDefaultForcedStream": "(Default\/Forced)",
|
||||
"LabelUnknownLanguage": "Unknown language",
|
||||
"MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?",
|
||||
"ButtonMute": "Mute",
|
||||
"ButtonUnmute": "Unmute",
|
||||
"ButtonStop": "Stop",
|
||||
"ButtonNextTrack": "Next Track",
|
||||
"ButtonPause": "Pause",
|
||||
"ButtonPlay": "\u64ad\u653e",
|
||||
"ButtonEdit": "\u7de8\u8f2f",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
"LabelDisabled": "Disabled",
|
||||
"ButtonMoreInformation": "More Information",
|
||||
"LabelNoUnreadNotifications": "No unread notifications.",
|
||||
"ButtonViewNotifications": "View notifications",
|
||||
"ButtonMarkTheseRead": "Mark these read",
|
||||
"ButtonClose": "Close",
|
||||
"LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.",
|
||||
"MessageInvalidUser": "Invalid username or password. Please try again.",
|
||||
"HeaderLoginFailure": "Login Failure",
|
||||
"HeaderAllRecordings": "\u6240\u6709\u9304\u5f71",
|
||||
"RecommendationBecauseYouLike": "Because you like {0}",
|
||||
"RecommendationBecauseYouWatched": "Because you watched {0}",
|
||||
"RecommendationDirectedBy": "Directed by {0}",
|
||||
"RecommendationStarring": "Starring {0}",
|
||||
"HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation",
|
||||
"MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?",
|
||||
"MessageRecordingCancelled": "Recording cancelled.",
|
||||
"HeaderConfirmSeriesCancellation": "Confirm Series Cancellation",
|
||||
"MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?",
|
||||
"MessageSeriesCancelled": "Series cancelled.",
|
||||
"HeaderConfirmRecordingDeletion": "Confirm Recording Deletion",
|
||||
"MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?",
|
||||
"MessageRecordingDeleted": "Recording deleted.",
|
||||
"ButonCancelRecording": "Cancel Recording",
|
||||
"MessageRecordingSaved": "Recording saved.",
|
||||
"OptionSunday": "\u661f\u671f\u65e5",
|
||||
"OptionMonday": "\u661f\u671f\u4e00",
|
||||
"OptionTuesday": "\u661f\u671f\u4e8c",
|
||||
"OptionWednesday": "\u661f\u671f\u4e09",
|
||||
"OptionThursday": "\u661f\u671f\u56db",
|
||||
"OptionFriday": "\u661f\u671f\u4e94",
|
||||
"OptionSaturday": "\u661f\u671f\u516d",
|
||||
"OptionEveryday": "Every day",
|
||||
"OptionWeekend": "Weekends",
|
||||
"OptionWeekday": "Weekdays",
|
||||
"HeaderConfirmDeletion": "Confirm Deletion",
|
||||
"MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?",
|
||||
"LiveTvUpdateAvailable": "(Update available)",
|
||||
"LabelVersionUpToDate": "Up to date!",
|
||||
"ButtonResetTuner": "Reset tuner",
|
||||
"HeaderResetTuner": "Reset Tuner",
|
||||
"MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.",
|
||||
"ButtonCancelSeries": "Cancel Series",
|
||||
"HeaderSeriesRecordings": "Series Recordings",
|
||||
"LabelAnytime": "Any time",
|
||||
"StatusRecording": "Recording",
|
||||
"StatusWatching": "Watching",
|
||||
"StatusRecordingProgram": "Recording {0}",
|
||||
"StatusWatchingProgram": "Watching {0}",
|
||||
"HeaderSplitMedia": "Split Media Apart",
|
||||
"MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?",
|
||||
"HeaderError": "Error",
|
||||
"MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.",
|
||||
"MessagePleaseSelectOneItem": "Please select at least one item.",
|
||||
"MessagePleaseSelectTwoItems": "Please select at least two items.",
|
||||
"MessageTheFollowingItemsWillBeGrouped": "The following titles will be grouped into one item:",
|
||||
"MessageConfirmItemGrouping": "Emby apps will automatically choose the optimal version to play based on device and network performance. Are you sure you wish to continue?",
|
||||
"HeaderResume": "\u6062\u5fa9\u64ad\u653e",
|
||||
"HeaderMyViews": "My Views",
|
||||
"HeaderLibraryFolders": "Media Folders",
|
||||
"HeaderLatestMedia": "Latest Media",
|
||||
"ButtonMoreItems": "More...",
|
||||
"ButtonMore": "More",
|
||||
"HeaderFavoriteMovies": "Favorite Movies",
|
||||
"HeaderFavoriteShows": "Favorite Shows",
|
||||
"HeaderFavoriteEpisodes": "Favorite Episodes",
|
||||
"HeaderFavoriteGames": "Favorite Games",
|
||||
"HeaderRatingsDownloads": "Rating \/ Downloads",
|
||||
"HeaderConfirmProfileDeletion": "Confirm Profile Deletion",
|
||||
"MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?",
|
||||
"HeaderSelectServerCachePath": "Select Server Cache Path",
|
||||
"HeaderSelectTranscodingPath": "Select Transcoding Temporary Path",
|
||||
"HeaderSelectImagesByNamePath": "Select Images By Name Path",
|
||||
"HeaderSelectMetadataPath": "Select Metadata Path",
|
||||
"HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.",
|
||||
"HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.",
|
||||
"HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.",
|
||||
"HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.",
|
||||
"HeaderSelectChannelDownloadPath": "Select Channel Download Path",
|
||||
"HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.",
|
||||
"OptionNewCollection": "New...",
|
||||
"ButtonAdd": "\u65b0\u589e",
|
||||
"ButtonRemove": "\u6e05\u9664",
|
||||
"LabelChapterDownloaders": "Chapter downloaders:",
|
||||
"LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.",
|
||||
"HeaderFavoriteAlbums": "Favorite Albums",
|
||||
"HeaderLatestChannelMedia": "Latest Channel Items",
|
||||
"ButtonOrganizeFile": "Organize File",
|
||||
"ButtonDeleteFile": "Delete File",
|
||||
"HeaderOrganizeFile": "Organize File",
|
||||
"HeaderDeleteFile": "Delete File",
|
||||
"StatusSkipped": "Skipped",
|
||||
"StatusFailed": "Failed",
|
||||
"StatusSuccess": "Success",
|
||||
"MessageFileWillBeDeleted": "The following file will be deleted:",
|
||||
"MessageSureYouWishToProceed": "Are you sure you wish to proceed?",
|
||||
"MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:",
|
||||
"MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:",
|
||||
"MessageDestinationTo": "to:",
|
||||
"HeaderSelectWatchFolder": "Select Watch Folder",
|
||||
"HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.",
|
||||
"OrganizePatternResult": "Result: {0}",
|
||||
"HeaderRestart": "Restart",
|
||||
"HeaderShutdown": "Shutdown",
|
||||
"MessageConfirmRestart": "Are you sure you wish to restart Emby Server?",
|
||||
"MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?",
|
||||
"ButtonUpdateNow": "Update Now",
|
||||
"ValueItemCount": "{0} item",
|
||||
"ValueItemCountPlural": "{0} items",
|
||||
"NewVersionOfSomethingAvailable": "A new version of {0} is available!",
|
||||
"VersionXIsAvailableForDownload": "Version {0} is now available for download.",
|
||||
"LabelVersionNumber": "Version {0}",
|
||||
"LabelPlayMethodTranscoding": "Transcoding",
|
||||
"LabelPlayMethodDirectStream": "Direct Streaming",
|
||||
"LabelPlayMethodDirectPlay": "Direct Playing",
|
||||
"LabelEpisodeNumber": "Episode number:",
|
||||
"LabelAudioCodec": "Audio: {0}",
|
||||
"LabelVideoCodec": "Video: {0}",
|
||||
"LabelLocalAccessUrl": "Local access: {0}",
|
||||
"LabelRemoteAccessUrl": "Remote access: {0}",
|
||||
"LabelRunningOnPort": "Running on http port {0}.",
|
||||
"LabelRunningOnPorts": "Running on http port {0}, and https port {1}.",
|
||||
"HeaderLatestFromChannel": "Latest from {0}",
|
||||
"LabelUnknownLanaguage": "Unknown language",
|
||||
"HeaderCurrentSubtitles": "Current Subtitles",
|
||||
"MessageDownloadQueued": "The download has been queued.",
|
||||
"MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?",
|
||||
"ButtonRemoteControl": "Remote Control",
|
||||
"HeaderLatestTvRecordings": "Latest Recordings",
|
||||
"ButtonOk": "\u78ba\u5b9a",
|
||||
"ButtonCancel": "\u53d6\u6d88",
|
||||
"ButtonRefresh": "\u91cd\u65b0\u6574\u7406",
|
||||
"LabelCurrentPath": "Current path:",
|
||||
"HeaderSelectMediaPath": "Select Media Path",
|
||||
"HeaderSelectPath": "Select Path",
|
||||
"ButtonNetwork": "Network",
|
||||
"MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.",
|
||||
"MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.",
|
||||
"HeaderMenu": "Menu",
|
||||
"ButtonOpen": "Open",
|
||||
"ButtonOpenInNewTab": "Open in new tab",
|
||||
"ButtonShuffle": "Shuffle",
|
||||
"ButtonInstantMix": "Instant mix",
|
||||
"ButtonResume": "Resume",
|
||||
"HeaderScenes": "\u5834\u666f",
|
||||
"HeaderAudioTracks": "Audio Tracks",
|
||||
"HeaderLibraries": "Libraries",
|
||||
"HeaderSubtitles": "Subtitles",
|
||||
"HeaderVideoQuality": "Video Quality",
|
||||
"MessageErrorPlayingVideo": "There was an error playing the video.",
|
||||
"MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.",
|
||||
"ButtonHome": "Home",
|
||||
"ButtonDashboard": "Dashboard",
|
||||
"ButtonReports": "Reports",
|
||||
"ButtonMetadataManager": "Metadata Manager",
|
||||
"HeaderTime": "Time",
|
||||
"HeaderName": "\u540d\u7a31",
|
||||
"HeaderAlbum": "Album",
|
||||
"HeaderAlbumArtist": "Album Artist",
|
||||
"HeaderArtist": "Artist",
|
||||
"LabelAddedOnDate": "Added {0}",
|
||||
"ButtonStart": "Start",
|
||||
"LabelSeasonNumber": "Season number:",
|
||||
"HeaderChannels": "\u983b\u9053",
|
||||
"HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e",
|
||||
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
|
||||
"OptionBlockOthers": "Others",
|
||||
"OptionBlockTvShows": "TV Shows",
|
||||
"OptionBlockTrailers": "Trailers",
|
||||
"OptionBlockMusic": "Music",
|
||||
"OptionBlockMovies": "Movies",
|
||||
"OptionBlockBooks": "Books",
|
||||
"OptionBlockGames": "Games",
|
||||
"OptionBlockLiveTvPrograms": "Live TV Programs",
|
||||
"OptionBlockLiveTvChannels": "Live TV Channels",
|
||||
"OptionBlockChannelContent": "Internet Channel Content",
|
||||
"ButtonRevoke": "Revoke",
|
||||
"MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.",
|
||||
"HeaderConfirmRevokeApiKey": "Revoke Api Key",
|
||||
"ValueContainer": "Container: {0}",
|
||||
"ValueAudioCodec": "Audio Codec: {0}",
|
||||
"ValueVideoCodec": "Video Codec: {0}",
|
||||
"ValueCodec": "Codec: {0}",
|
||||
"ValueConditions": "Conditions: {0}",
|
||||
"LabelAll": "All",
|
||||
"HeaderDeleteImage": "Delete Image",
|
||||
"MessageFileNotFound": "File not found.",
|
||||
"MessageFileReadError": "An error occurred reading this file.",
|
||||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||
"MessageItemSaved": "Item saved.",
|
||||
"MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.",
|
||||
"OptionEnded": "\u5b8c\u6210",
|
||||
"OptionContinuing": "\u7e7c\u7e8c",
|
||||
"OptionOff": "Off",
|
||||
"OptionOn": "On",
|
||||
"ButtonSettings": "Settings",
|
||||
"ButtonUninstall": "Uninstall",
|
||||
"HeaderEnabledFields": "Enabled Fields",
|
||||
"HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.",
|
||||
"HeaderLiveTV": "Live TV",
|
||||
"MissingLocalTrailer": "Missing local trailer.",
|
||||
"MissingPrimaryImage": "Missing primary image.",
|
||||
"MissingBackdropImage": "Missing backdrop image.",
|
||||
"MissingLogoImage": "Missing logo image.",
|
||||
"MissingEpisode": "Missing episode.",
|
||||
"OptionScreenshots": "Screenshots",
|
||||
"OptionBackdrops": "Backdrops",
|
||||
"OptionImages": "Images",
|
||||
"OptionKeywords": "Keywords",
|
||||
"OptionTags": "Tags",
|
||||
"OptionStudios": "Studios",
|
||||
"OptionName": "Name",
|
||||
"OptionOverview": "Overview",
|
||||
"OptionGenres": "Genres",
|
||||
"OptionParentalRating": "\u5bb6\u9577\u8a55\u7d1a",
|
||||
"OptionPeople": "People",
|
||||
"OptionRuntime": "\u904b\u884c\u6642\u9593",
|
||||
"OptionProductionLocations": "Production Locations",
|
||||
"OptionBirthLocation": "Birth Location",
|
||||
"LabelAllChannels": "All channels",
|
||||
"LabelLiveProgram": "LIVE",
|
||||
"LabelNewProgram": "NEW",
|
||||
"LabelPremiereProgram": "PREMIERE",
|
||||
"LabelHDProgram": "HD",
|
||||
"HeaderChangeFolderType": "Change Content Type",
|
||||
"HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the folder with the new type.",
|
||||
"HeaderAlert": "Alert",
|
||||
"MessagePleaseRestart": "Please restart to finish updating.",
|
||||
"ButtonRestart": "Restart",
|
||||
"MessagePleaseRefreshPage": "Please refresh this page to receive new updates from the server.",
|
||||
"ButtonHide": "Hide",
|
||||
"MessageSettingsSaved": "Settings saved.",
|
||||
"ButtonSignOut": "Sign Out",
|
||||
"ButtonMyProfile": "My Profile",
|
||||
"ButtonMyPreferences": "My Preferences",
|
||||
"MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.",
|
||||
"LabelInstallingPackage": "Installing {0}",
|
||||
"LabelPackageInstallCompleted": "{0} installation completed.",
|
||||
"LabelPackageInstallFailed": "{0} installation failed.",
|
||||
"LabelPackageInstallCancelled": "{0} installation cancelled.",
|
||||
"TabServer": "\u4f3a\u670d\u5668",
|
||||
"TabUsers": "Users",
|
||||
"TabLibrary": "Library",
|
||||
"TabMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
|
||||
"TabDLNA": "DLNA",
|
||||
"TabLiveTV": "Live TV",
|
||||
"TabAutoOrganize": "Auto-Organize",
|
||||
"TabPlugins": "Plugins",
|
||||
"TabAdvanced": "\u9032\u968e",
|
||||
"TabHelp": "Help",
|
||||
"TabScheduledTasks": "Scheduled Tasks",
|
||||
"ButtonFullscreen": "Fullscreen",
|
||||
"ButtonAudioTracks": "Audio Tracks",
|
||||
"ButtonSubtitles": "Subtitles",
|
||||
"ButtonScenes": "Scenes",
|
||||
"ButtonQuality": "Quality",
|
||||
"HeaderNotifications": "Notifications",
|
||||
"HeaderSelectPlayer": "Select Player",
|
||||
"ButtonSelect": "\u9078\u64c7",
|
||||
"ButtonNew": "\u6700\u65b0",
|
||||
"MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.",
|
||||
"HeaderVideoError": "Video Error",
|
||||
"ButtonAddToPlaylist": "Add to playlist",
|
||||
"HeaderAddToPlaylist": "Add to Playlist",
|
||||
"LabelName": "\u540d\u7a31\uff1a",
|
||||
"ButtonSubmit": "\u63d0\u4ea4",
|
||||
"LabelSelectPlaylist": "Playlist:",
|
||||
"OptionNewPlaylist": "New playlist...",
|
||||
"MessageAddedToPlaylistSuccess": "Ok",
|
||||
"ButtonView": "View",
|
||||
"ButtonViewSeriesRecording": "View series recording",
|
||||
"ValueOriginalAirDate": "Original air date: {0}",
|
||||
"ButtonRemoveFromPlaylist": "Remove from playlist",
|
||||
"HeaderSpecials": "Specials",
|
||||
"HeaderTrailers": "Trailers",
|
||||
"HeaderAudio": "\u97f3\u8a0a",
|
||||
"HeaderResolution": "Resolution",
|
||||
"HeaderVideo": "\u5f71\u7247",
|
||||
"HeaderRuntime": "Runtime",
|
||||
"HeaderCommunityRating": "Community rating",
|
||||
"HeaderPasswordReset": "Password Reset",
|
||||
"HeaderParentalRating": "Parental rating",
|
||||
"HeaderReleaseDate": "Release date",
|
||||
"HeaderDateAdded": "Date added",
|
||||
"HeaderSeries": "Series",
|
||||
"HeaderSeason": "Season",
|
||||
"HeaderSeasonNumber": "Season number",
|
||||
"HeaderNetwork": "Network",
|
||||
"HeaderYear": "Year",
|
||||
"HeaderGameSystem": "Game system",
|
||||
"HeaderPlayers": "Players",
|
||||
"HeaderEmbeddedImage": "Embedded image",
|
||||
"HeaderTrack": "Track",
|
||||
"HeaderDisc": "Disc",
|
||||
"OptionMovies": "\u96fb\u5f71",
|
||||
"OptionCollections": "Collections",
|
||||
"OptionSeries": "Series",
|
||||
"OptionSeasons": "Seasons",
|
||||
"OptionEpisodes": "\u5287\u96c6",
|
||||
"OptionGames": "Games",
|
||||
"OptionGameSystems": "Game systems",
|
||||
"OptionMusicArtists": "Music artists",
|
||||
"OptionMusicAlbums": "Music albums",
|
||||
"OptionMusicVideos": "Music videos",
|
||||
"OptionSongs": "Songs",
|
||||
"OptionHomeVideos": "Home videos",
|
||||
"OptionBooks": "Books",
|
||||
"OptionAdultVideos": "Adult videos",
|
||||
"ButtonUp": "Up",
|
||||
"ButtonDown": "Down",
|
||||
"LabelMetadataReaders": "Metadata readers:",
|
||||
"LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.",
|
||||
"LabelMetadataDownloaders": "Metadata downloaders:",
|
||||
"LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.",
|
||||
"LabelMetadataSavers": "Metadata savers:",
|
||||
"LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.",
|
||||
"LabelImageFetchers": "Image fetchers:",
|
||||
"LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.",
|
||||
"ButtonQueueAllFromHere": "Queue all from here",
|
||||
"ButtonPlayAllFromHere": "Play all from here",
|
||||
"LabelDynamicExternalId": "{0} Id:",
|
||||
"HeaderIdentify": "Identify Item",
|
||||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
"LabelNumber": "Number:",
|
||||
"LabelReleaseDate": "Release date:",
|
||||
"LabelEndDate": "End date:",
|
||||
"LabelYear": "Year:",
|
||||
"LabelDateOfBirth": "Date of birth:",
|
||||
"LabelBirthYear": "Birth year:",
|
||||
"LabelBirthDate": "Birth date:",
|
||||
"LabelDeathDate": "Death date:",
|
||||
"HeaderRemoveMediaLocation": "Remove Media Location",
|
||||
"MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?",
|
||||
"HeaderRenameMediaFolder": "Rename Media Folder",
|
||||
"LabelNewName": "New name:",
|
||||
"HeaderAddMediaFolder": "Add Media Folder",
|
||||
"HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):",
|
||||
"HeaderRemoveMediaFolder": "Remove Media Folder",
|
||||
"MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:",
|
||||
"MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?",
|
||||
"ButtonRename": "Rename",
|
||||
"ButtonChangeType": "Change type",
|
||||
"HeaderMediaLocations": "Media Locations",
|
||||
"LabelContentTypeValue": "Content type: {0}",
|
||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||
"FolderTypeUnset": "Unset (mixed content)",
|
||||
"FolderTypeMovies": "\u96fb\u5f71",
|
||||
"FolderTypeMusic": "\u97f3\u6a02",
|
||||
"FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
|
||||
"FolderTypePhotos": "\u76f8\u7247",
|
||||
"FolderTypeMusicVideos": "\u97f3\u6a02\u5f71\u7247",
|
||||
"FolderTypeHomeVideos": "\u9996\u9801\u5f71\u7247",
|
||||
"FolderTypeGames": "\u904a\u6232",
|
||||
"FolderTypeBooks": "\u66f8\u85c9",
|
||||
"FolderTypeTvShows": "\u96fb\u8996\u7bc0\u76ee",
|
||||
"TabMovies": "\u96fb\u5f71",
|
||||
"TabSeries": "\u96fb\u8996\u5287",
|
||||
"TabEpisodes": "\u5287\u96c6",
|
||||
"TabTrailers": "\u9810\u544a",
|
||||
"TabGames": "\u904a\u6232",
|
||||
"TabAlbums": "\u5c08\u8f2f",
|
||||
"TabSongs": "\u6b4c\u66f2",
|
||||
"TabMusicVideos": "\u97f3\u6a02\u5f71\u7247",
|
||||
"BirthPlaceValue": "Birth place: {0}",
|
||||
"DeathDateValue": "Died: {0}",
|
||||
"BirthDateValue": "Born: {0}",
|
||||
"HeaderLatestReviews": "Latest Reviews",
|
||||
"HeaderPluginInstallation": "Plugin Installation",
|
||||
"MessageAlreadyInstalled": "This version is already installed.",
|
||||
"ValueReviewCount": "{0} Reviews",
|
||||
"MessageYouHaveVersionInstalled": "You currently have version {0} installed.",
|
||||
"MessageTrialExpired": "The trial period for this feature has expired",
|
||||
"MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)",
|
||||
"MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.",
|
||||
"ValuePriceUSD": "Price: {0} (USD)",
|
||||
"MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.",
|
||||
"MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.",
|
||||
"MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.",
|
||||
"MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.",
|
||||
"MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.",
|
||||
"ButtonDelete": "\u5220\u9664",
|
||||
"HeaderEmbyAccountAdded": "Emby Account Added",
|
||||
"MessageEmbyAccountAdded": "The Emby account has been added to this user.",
|
||||
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
|
||||
"HeaderEmbyAccountRemoved": "Emby Account Removed",
|
||||
"MessageEmbyAccontRemoved": "The Emby account has been removed from this user.",
|
||||
"TooltipLinkedToEmbyConnect": "Linked to Emby Connect",
|
||||
"HeaderUnrated": "Unrated",
|
||||
"ValueDiscNumber": "Disc {0}",
|
||||
"HeaderUnknownDate": "Unknown Date",
|
||||
"HeaderUnknownYear": "Unknown Year",
|
||||
"ValueMinutes": "{0} min",
|
||||
"ButtonPlayExternalPlayer": "Play with external player",
|
||||
"HeaderSelectExternalPlayer": "Select External Player",
|
||||
"HeaderExternalPlayerPlayback": "External Player Playback",
|
||||
"ButtonImDone": "I'm Done",
|
||||
"OptionWatched": "Watched",
|
||||
"OptionUnwatched": "Unwatched",
|
||||
"ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.",
|
||||
"LabelMarkAs": "Mark as:",
|
||||
"OptionInProgress": "In-Progress",
|
||||
"LabelResumePoint": "Resume point:",
|
||||
"ValueOneMovie": "1 movie",
|
||||
"ValueMovieCount": "{0} movies",
|
||||
"ValueOneTrailer": "1 trailer",
|
||||
"ValueTrailerCount": "{0} trailers",
|
||||
"ValueOneSeries": "1 series",
|
||||
"ValueSeriesCount": "{0} series",
|
||||
"ValueOneEpisode": "1 episode",
|
||||
"ValueEpisodeCount": "{0} episodes",
|
||||
"ValueOneGame": "1 game",
|
||||
"ValueGameCount": "{0} games",
|
||||
"ValueOneAlbum": "1 album",
|
||||
"ValueAlbumCount": "{0} albums",
|
||||
"ValueOneSong": "1 song",
|
||||
"ValueSongCount": "{0} songs",
|
||||
"ValueOneMusicVideo": "1 music video",
|
||||
"ValueMusicVideoCount": "{0} music videos",
|
||||
"HeaderOffline": "Offline",
|
||||
"HeaderUnaired": "Unaired",
|
||||
"HeaderMissing": "Missing",
|
||||
"ButtonWebsite": "Website",
|
||||
"TooltipFavorite": "Favorite",
|
||||
"TooltipLike": "Like",
|
||||
"TooltipDislike": "Dislike",
|
||||
"TooltipPlayed": "Played",
|
||||
"ValueSeriesYearToPresent": "{0}-Present",
|
||||
"ValueAwards": "Awards: {0}",
|
||||
"ValueBudget": "Budget: {0}",
|
||||
"ValueRevenue": "Revenue: {0}",
|
||||
"ValuePremiered": "Premiered {0}",
|
||||
"ValuePremieres": "Premieres {0}",
|
||||
"ValueStudio": "Studio: {0}",
|
||||
"ValueStudios": "Studios: {0}",
|
||||
"ValueStatus": "Status: {0}",
|
||||
"ValueSpecialEpisodeName": "Special - {0}",
|
||||
"LabelLimit": "Limit:",
|
||||
"ValueLinks": "Links: {0}",
|
||||
"HeaderPeople": "People",
|
||||
"HeaderCastAndCrew": "Cast & Crew",
|
||||
"ValueArtist": "Artist: {0}",
|
||||
"ValueArtists": "Artists: {0}",
|
||||
"HeaderTags": "Tags",
|
||||
"MediaInfoCameraMake": "Camera make",
|
||||
"MediaInfoCameraModel": "Camera model",
|
||||
"MediaInfoAltitude": "Altitude",
|
||||
"MediaInfoAperture": "Aperture",
|
||||
"MediaInfoExposureTime": "Exposure time",
|
||||
"MediaInfoFocalLength": "Focal length",
|
||||
"MediaInfoOrientation": "Orientation",
|
||||
"MediaInfoIsoSpeedRating": "Iso speed rating",
|
||||
"MediaInfoLatitude": "Latitude",
|
||||
"MediaInfoLongitude": "Longitude",
|
||||
"MediaInfoShutterSpeed": "Shutter speed",
|
||||
"MediaInfoSoftware": "Software",
|
||||
"HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...",
|
||||
"HeaderPlotKeywords": "Plot Keywords",
|
||||
"HeaderMovies": "Movies",
|
||||
"HeaderAlbums": "Albums",
|
||||
"HeaderGames": "Games",
|
||||
"HeaderBooks": "Books",
|
||||
"HeaderEpisodes": "Episodes",
|
||||
"HeaderSeasons": "Seasons",
|
||||
"HeaderTracks": "Tracks",
|
||||
"HeaderItems": "Items",
|
||||
"HeaderOtherItems": "Other Items",
|
||||
"ButtonFullReview": "Full review",
|
||||
"ValueAsRole": "as {0}",
|
||||
"ValueGuestStar": "Guest star",
|
||||
"MediaInfoSize": "Size",
|
||||
"MediaInfoPath": "Path",
|
||||
"MediaInfoFormat": "Format",
|
||||
"MediaInfoContainer": "Container",
|
||||
"MediaInfoDefault": "Default",
|
||||
"MediaInfoForced": "Forced",
|
||||
"MediaInfoExternal": "External",
|
||||
"MediaInfoTimestamp": "Timestamp",
|
||||
"MediaInfoPixelFormat": "Pixel format",
|
||||
"MediaInfoBitDepth": "Bit depth",
|
||||
"MediaInfoSampleRate": "Sample rate",
|
||||
"MediaInfoBitrate": "Bitrate",
|
||||
"MediaInfoChannels": "Channels",
|
||||
"MediaInfoLayout": "Layout",
|
||||
"MediaInfoLanguage": "Language",
|
||||
"MediaInfoCodec": "Codec",
|
||||
"MediaInfoProfile": "Profile",
|
||||
"MediaInfoLevel": "Level",
|
||||
"MediaInfoAspectRatio": "Aspect ratio",
|
||||
"MediaInfoResolution": "Resolution",
|
||||
"MediaInfoAnamorphic": "Anamorphic",
|
||||
"MediaInfoInterlaced": "Interlaced",
|
||||
"MediaInfoFramerate": "Framerate",
|
||||
"MediaInfoStreamTypeAudio": "Audio",
|
||||
"MediaInfoStreamTypeData": "Data",
|
||||
"MediaInfoStreamTypeVideo": "Video",
|
||||
"MediaInfoStreamTypeSubtitle": "Subtitle",
|
||||
"MediaInfoStreamTypeEmbeddedImage": "Embedded Image",
|
||||
"MediaInfoRefFrames": "Ref frames",
|
||||
"TabPlayback": "Playback",
|
||||
"TabNotifications": "\u901a\u77e5",
|
||||
"TabExpert": "Expert",
|
||||
"HeaderSelectCustomIntrosPath": "Select Custom Intros Path",
|
||||
"HeaderRateAndReview": "Rate and Review",
|
||||
"HeaderThankYou": "Thank You",
|
||||
"MessageThankYouForYourReview": "Thank you for your review.",
|
||||
"LabelYourRating": "Your rating:",
|
||||
"LabelFullReview": "Full review:",
|
||||
"LabelShortRatingDescription": "Short rating summary:",
|
||||
"OptionIRecommendThisItem": "I recommend this item",
|
||||
"WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.",
|
||||
"WebClientTourMovies": "Play movies, trailers and more from any device with a web browser",
|
||||
"WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information",
|
||||
"WebClientTourTapHold": "Tap and hold or right click any poster for a context menu",
|
||||
"WebClientTourMetadataManager": "Click edit to open the metadata manager",
|
||||
"WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device",
|
||||
"WebClientTourCollections": "Create movie collections to group box sets together",
|
||||
"WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps",
|
||||
"WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app",
|
||||
"WebClientTourUserPreferences3": "Design the web client home page to your liking",
|
||||
"WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players",
|
||||
"WebClientTourMobile1": "The web client works great on smartphones and tablets...",
|
||||
"WebClientTourMobile2": "and easily controls other devices and Emby apps",
|
||||
"WebClientTourMySync": "Sync your personal media to your devices for offline viewing.",
|
||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
||||
"DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.",
|
||||
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||
"DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.",
|
||||
"DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
|
||||
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||
"DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.",
|
||||
"DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.",
|
||||
"DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.",
|
||||
"DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.",
|
||||
"DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.",
|
||||
"DashboardTourSync": "Sync your personal media to your devices for offline viewing.",
|
||||
"MessageRefreshQueued": "Refresh queued",
|
||||
"TabDevices": "Devices",
|
||||
"TabExtras": "Extras",
|
||||
"HeaderUploadImage": "Upload Image",
|
||||
"DeviceLastUsedByUserName": "Last used by {0}",
|
||||
"HeaderDeleteDevice": "Delete Device",
|
||||
"DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.",
|
||||
"LabelEnableCameraUploadFor": "Enable camera upload for:",
|
||||
"HeaderSelectUploadPath": "Select Upload Path",
|
||||
"LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.",
|
||||
"ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.",
|
||||
"ButtonLibraryAccess": "Library access",
|
||||
"ButtonParentalControl": "Parental control",
|
||||
"HeaderInvitationSent": "Invitation Sent",
|
||||
"MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.",
|
||||
"MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.",
|
||||
"HeaderConnectionFailure": "Connection Failure",
|
||||
"MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.",
|
||||
"ButtonSelectServer": "Select Server",
|
||||
"MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.",
|
||||
"MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.",
|
||||
"DefaultErrorMessage": "There was an error processing the request. Please try again later.",
|
||||
"ButtonAccept": "Accept",
|
||||
"ButtonReject": "Reject",
|
||||
"HeaderForgotPassword": "Forgot Password",
|
||||
"MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.",
|
||||
"MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.",
|
||||
"MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:",
|
||||
"MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.",
|
||||
"MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.",
|
||||
"MessagePasswordResetForUsers": "Passwords have been removed for the following users:",
|
||||
"HeaderInviteGuest": "Invite Guest",
|
||||
"ButtonLinkMyEmbyAccount": "Link my account now",
|
||||
"MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.",
|
||||
"ButtonSync": "Sync",
|
||||
"SyncMedia": "Sync Media",
|
||||
"HeaderCancelSyncJob": "Cancel Sync",
|
||||
"CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?",
|
||||
"TabSync": "Sync",
|
||||
"MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.",
|
||||
"MessageSyncJobCreated": "Sync job created.",
|
||||
"LabelSyncTo": "Sync to:",
|
||||
"LabelSyncJobName": "Sync job name:",
|
||||
"LabelQuality": "Quality:",
|
||||
"HeaderSettings": "Settings",
|
||||
"OptionAutomaticallySyncNewContent": "Automatically sync new content",
|
||||
"OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.",
|
||||
"OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only",
|
||||
"OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.",
|
||||
"LabelItemLimit": "Item limit:",
|
||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||
"MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.",
|
||||
"SyncJobItemStatusQueued": "Queued",
|
||||
"SyncJobItemStatusConverting": "Converting",
|
||||
"SyncJobItemStatusTransferring": "Transferring",
|
||||
"SyncJobItemStatusSynced": "Synced",
|
||||
"SyncJobItemStatusFailed": "Failed",
|
||||
"SyncJobItemStatusRemovedFromDevice": "Removed from device",
|
||||
"SyncJobItemStatusCancelled": "Cancelled",
|
||||
"LabelProfile": "Profile:",
|
||||
"LabelBitrateMbps": "Bitrate (Mbps):",
|
||||
"EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.",
|
||||
"ButtonNewServer": "New Server",
|
||||
"ButtonSignInWithConnect": "Sign in with Emby Connect",
|
||||
"HeaderNewServer": "New Server",
|
||||
"MyDevice": "My Device",
|
||||
"ButtonRemote": "Remote",
|
||||
"TabInfo": "\u8cc7\u8a0a",
|
||||
"TabCast": "Cast",
|
||||
"TabScenes": "Scenes",
|
||||
"HeaderUnlockApp": "Unlock App",
|
||||
"MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.",
|
||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.",
|
||||
"MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.",
|
||||
"MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.",
|
||||
"MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.",
|
||||
"ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership",
|
||||
"MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.",
|
||||
"ButtonUnlockWithPurchase": "Unlock with Purchase",
|
||||
"ButtonUnlockPrice": "Unlock {0}",
|
||||
"MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
|
||||
"OptionEnableFullscreen": "Enable Fullscreen",
|
||||
"ButtonServer": "Server",
|
||||
"HeaderAdmin": "Admin",
|
||||
"HeaderLibrary": "Library",
|
||||
"HeaderMedia": "Media",
|
||||
"ButtonInbox": "Inbox",
|
||||
"HeaderAdvanced": "Advanced",
|
||||
"HeaderGroupVersions": "Group Versions",
|
||||
"HeaderSaySomethingLike": "Say Something Like...",
|
||||
"ButtonTryAgain": "Try Again",
|
||||
"HeaderYouSaid": "You Said...",
|
||||
"MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.",
|
||||
"MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.",
|
||||
"MessageNoItemsFound": "No items found.",
|
||||
"ButtonManageServer": "Manage Server",
|
||||
"ButtonEditSubtitles": "Edit subtitles",
|
||||
"ButtonPreferences": "Preferences",
|
||||
"ButtonViewArtist": "View artist",
|
||||
"ButtonViewAlbum": "View album",
|
||||
"ButtonEditImages": "Edit images",
|
||||
"ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.",
|
||||
"ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.",
|
||||
"ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.",
|
||||
"MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.",
|
||||
"HeaderShare": "Share",
|
||||
"ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.",
|
||||
"ButtonShare": "Share",
|
||||
"HeaderConfirm": "Confirm",
|
||||
"ButtonAdvancedRefresh": "\u9032\u968e\u91cd\u65b0\u6574\u7406",
|
||||
"MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?",
|
||||
"MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?",
|
||||
"HeaderDeleteProvider": "Delete Provider",
|
||||
"HeaderAddProvider": "Add Provider",
|
||||
"ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.",
|
||||
"ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.",
|
||||
"ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.",
|
||||
"MessageCreateAccountAt": "Create an account at {0}",
|
||||
"ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
|
||||
"HeaderTryCinemaMode": "Try Cinema Mode",
|
||||
"ButtonBecomeSupporter": "Become an Emby Supporter",
|
||||
"ButtonClosePlayVideo": "Close and play my media",
|
||||
"MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, you can enhance your experience with features like Cinema Mode?",
|
||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||
"OptionEnableDisplayMirroring": "Enable display mirroring",
|
||||
"HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Supporter membership.",
|
||||
"HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
|
||||
"ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
|
||||
"HeaderSync": "\u540c\u6b65",
|
||||
"LabelLocalSyncStatusValue": "Status: {0}",
|
||||
"MessageSyncStarted": "Sync started",
|
||||
"OptionPoster": "\u6d77\u5831",
|
||||
"OptionPosterCard": "\u6d77\u5831\u5361\u7247",
|
||||
"OptionTimeline": "\u6642\u9593\u8ef8",
|
||||
"OptionList": "List",
|
||||
"OptionThumb": "\u7e2e\u5716",
|
||||
"OptionThumbCard": "\u7e2e\u5716\u5361\u7247",
|
||||
"OptionBanner": "\u65d7\u5e5f",
|
||||
"NoSlideshowContentFound": "No slideshow images were found.",
|
||||
"OptionPhotoSlideshow": "Photo slideshow",
|
||||
"OptionBackdropSlideshow": "Backdrop slideshow",
|
||||
"HeaderTopPlugins": "Top Plugins",
|
||||
"ButtonRecord": "\u9304\u5f71",
|
||||
"ButtonOther": "Other",
|
||||
"HeaderSortBy": "\u6392\u5e8f\u65b9\u5f0f\uff1a",
|
||||
"HeaderSortOrder": "\u6392\u5e8f\uff1a",
|
||||
"OptionAscending": "\u905e\u5347",
|
||||
"OptionDescending": "\u905e\u964d",
|
||||
"OptionNameSort": "\u540d\u7a31",
|
||||
"OptionTvdbRating": "Tvdb \u8a55\u5206",
|
||||
"OptionPremiereDate": "\u9996\u6620\u65e5\u671f",
|
||||
"OptionImdbRating": "IMDB \u8a55\u5206",
|
||||
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
|
||||
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
|
||||
"ButtonDisconnect": "Disconnect",
|
||||
"OptionAlbumArtist": "\u5531\u7247\u6b4c\u624b",
|
||||
"OptionArtist": "\u6b4c\u624b",
|
||||
"OptionAlbum": "\u5531\u7247",
|
||||
"OptionTrackName": "\u66f2\u76ee\u540d\u7a31",
|
||||
"OptionCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
|
||||
"ButtonSort": "\u6392\u5e8f",
|
||||
"ButtonMenu": "Menu",
|
||||
"OptionDefaultSort": "Default",
|
||||
"ButtonFilter": "\u904e\u6ffe",
|
||||
"OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u5206",
|
||||
"OptionVideoBitrate": "\u5f71\u7247\u6bd4\u7279\u7387",
|
||||
"OptionMetascore": "\u5c08\u6b04\u8a55\u5206",
|
||||
"OptionRevenue": "\u6536\u5165",
|
||||
"OptionBudget": "\u9810\u7b97",
|
||||
"ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.",
|
||||
"ButtonGuide": "Guide",
|
||||
"ButtonRecordedTv": "Recorded TV",
|
||||
"HeaderDisconnectFromPlayer": "Disconnect from Player",
|
||||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "Search",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -101,7 +101,7 @@
|
|||
"MessageItemsAdded": "Items added",
|
||||
"ButtonAddToCollection": "Add to collection",
|
||||
"HeaderSelectCertificatePath": "Select Certificate Path",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:",
|
||||
"ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:",
|
||||
"HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.",
|
||||
"LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.",
|
||||
"HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard",
|
||||
|
@ -111,7 +111,6 @@
|
|||
"TitlePlugins": "Plugins",
|
||||
"ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new",
|
||||
"MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"HeaderLibraryAccess": "Library Access",
|
||||
"HeaderChannelAccess": "Channel Access",
|
||||
"HeaderDeviceAccess": "Device Access",
|
||||
|
@ -152,6 +151,7 @@
|
|||
"ButtonPlay": "\u64ad\u653e",
|
||||
"ButtonEdit": "\u7de8\u8f2f",
|
||||
"ButtonQueue": "Queue",
|
||||
"ButtonPlayTrailer": "Play trailer",
|
||||
"ButtonPlaylist": "Playlist",
|
||||
"ButtonPreviousTrack": "Previous Track",
|
||||
"LabelEnabled": "Enabled",
|
||||
|
@ -346,7 +346,6 @@
|
|||
"ButtonNextPage": "Next Page",
|
||||
"ButtonPreviousPage": "Previous Page",
|
||||
"ButtonMoveLeft": "Move left",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"ButtonMoveRight": "Move right",
|
||||
"ButtonBrowseOnlineImages": "Browse online images",
|
||||
"HeaderDeleteItem": "Delete Item",
|
||||
|
@ -489,6 +488,7 @@
|
|||
"PersonTypePerson": "Person",
|
||||
"LabelTitleDisplayOrder": "Title display order:",
|
||||
"OptionSortName": "Sort name",
|
||||
"OptionReleaseDate": "Release date",
|
||||
"LabelDiscNumber": "Disc number",
|
||||
"LabelParentNumber": "Parent number",
|
||||
"LabelTrackNumber": "Track number:",
|
||||
|
@ -855,6 +855,8 @@
|
|||
"OptionAscending": "\u5347\u5e8f",
|
||||
"OptionDescending": "\u964d\u5e8f",
|
||||
"OptionNameSort": "\u540d\u5b57",
|
||||
"OptionTvdbRating": "Tvdb\u8a55\u5206",
|
||||
"OptionPremiereDate": "\u9996\u6620\u65e5\u671f",
|
||||
"OptionImdbRating": "IMDB\u8a55\u5206",
|
||||
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
|
||||
"OptionDateAdded": "\u6dfb\u52a0\u65e5\u671f",
|
||||
|
@ -881,5 +883,9 @@
|
|||
"ConfirmEndPlayerSession": "Would you like to shutdown the app on the remote device?",
|
||||
"ButtonYes": "Yes",
|
||||
"ButtonNo": "No",
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase"
|
||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
||||
"ButtonForYou": "For You",
|
||||
"ButtonLibrary": "Library",
|
||||
"ButtonSearch": "\u641c\u7d22",
|
||||
"ButtonNowPlaying": "Now Playing"
|
||||
}
|
|
@ -2,26 +2,29 @@
|
|||
font-family: San Francisco, Helvetica Neue;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.backdropContainer {
|
||||
/* This isn't implemented right and ends up looking terrible */
|
||||
background-attachment: initial;
|
||||
}
|
||||
|
||||
.background-theme-b {
|
||||
background-color: #1c1c1c;
|
||||
background-color: #181818;
|
||||
}
|
||||
|
||||
.backdropContainer .pageBackground {
|
||||
background-color: rgba(28,28,28,.92) !important;
|
||||
}
|
||||
|
||||
|
||||
.viewMenuBar, .libraryViewNav, paper-tabs {
|
||||
background-color: rgb(28,28,28);
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.viewMenuBar.semiTransparent {
|
||||
background-color: rgba(28, 28, 28, .75);
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.libraryViewNav a {
|
||||
|
@ -36,8 +39,8 @@
|
|||
}
|
||||
|
||||
.libraryViewNav paper-tabs {
|
||||
height: 58px !important;
|
||||
flex-grow: 0 !important;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tab {
|
||||
|
@ -45,17 +48,6 @@
|
|||
flex-grow: 0 !important;
|
||||
}
|
||||
|
||||
.libraryViewNav iron-icon {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: block;
|
||||
margin: 0 auto 6px;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tabs iron-icon {
|
||||
margin: 6px auto 6px;
|
||||
}
|
||||
|
||||
.libraryViewNav #selectionBar {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
@ -88,19 +80,10 @@
|
|||
background: #FF2D55 !important;
|
||||
}
|
||||
|
||||
|
||||
.libraryViewNav {
|
||||
border-top: 1px solid #333 !important;
|
||||
}
|
||||
|
||||
.libraryViewNav, paper-tabs {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.viewMenuBar {
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
h1, h1 a {
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
@ -117,16 +100,28 @@ h1, h1 a {
|
|||
font-weight: 400;
|
||||
}
|
||||
|
||||
.tvGuideHeader {
|
||||
top: 86px;
|
||||
}
|
||||
|
||||
.libraryMenuButtonText {
|
||||
font-weight: 500 !important;
|
||||
position: relative;
|
||||
top: 2px;
|
||||
position: absolute;
|
||||
left: 100px;
|
||||
right: 100px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin: 0 auto !important;
|
||||
}
|
||||
|
||||
.libraryPanelHeader span {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.noSecondaryNavPage .itemBackdrop {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
paper-tab {
|
||||
text-transform: none !important;
|
||||
}
|
||||
|
@ -155,15 +150,6 @@ paper-tab {
|
|||
background: #1c1c1c;
|
||||
}
|
||||
|
||||
.libraryMenuButtonText {
|
||||
position: absolute;
|
||||
left: 100px;
|
||||
right: 100px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
margin: 0 auto !important;
|
||||
}
|
||||
|
||||
@media (min-width: 600px) {
|
||||
|
||||
/* This needs a little extra space to account for the longer date format */
|
||||
|
|
37
dashboard-ui/thirdparty/paper-button-style.css
vendored
37
dashboard-ui/thirdparty/paper-button-style.css
vendored
|
@ -156,16 +156,14 @@ paper-button.mini {
|
|||
min-width: initial;
|
||||
}
|
||||
|
||||
paper-button.mini .content {
|
||||
padding: 0.5em 0.7em;
|
||||
paper-button.mini {
|
||||
padding: 0.4em 0.7em;
|
||||
}
|
||||
|
||||
paper-button.mini.noIcon {
|
||||
padding: 0.4em 0.7em;
|
||||
}
|
||||
|
||||
paper-button.mini.noIcon .content {
|
||||
padding: 0.5em 0.7em;
|
||||
}
|
||||
|
||||
|
||||
|
||||
paper-button.mini iron-icon {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
|
@ -344,29 +342,6 @@ paper-menu-item {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
.libraryViewNav #tabsContainer {
|
||||
margin: auto;
|
||||
-ms-flex: none;
|
||||
-webkit-flex: none;
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tabs {
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
overflow-x: visible !important;
|
||||
}
|
||||
|
||||
.libraryViewNav paper-tab {
|
||||
display: inline-block !important;
|
||||
flex: none;
|
||||
flex-shrink: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.ui-body-b paper-item-body [secondary] {
|
||||
color: #aaa;
|
||||
}
|
||||
|
|
|
@ -8,24 +8,24 @@
|
|||
|
||||
<div class="libraryViewNav libraryViewNavWithMinHeight">
|
||||
<paper-tabs hidescrollbuttons noink>
|
||||
<paper-tab><iron-icon icon="info"></iron-icon>${TabSuggestions}</paper-tab>
|
||||
<paper-tab><iron-icon icon="new-releases"></iron-icon>${TabLatest}</paper-tab>
|
||||
<paper-tab><iron-icon icon="schedule"></iron-icon>${TabUpcoming}</paper-tab>
|
||||
<paper-tab><iron-icon icon="live-tv"></iron-icon>${TabShows}</paper-tab>
|
||||
<paper-tab class="tvEpisodesTab"><iron-icon icon="slideshow"></iron-icon>${TabEpisodes}</paper-tab>
|
||||
<paper-tab><iron-icon icon="video-library"></iron-icon>${TabGenres}</paper-tab>
|
||||
<paper-tab class="tvPeopleTab"><iron-icon icon="people"></iron-icon>${TabPeople}</paper-tab>
|
||||
<paper-tab class="tvStudiosTab"><iron-icon icon="account-box"></iron-icon>${TabNetworks}</paper-tab>
|
||||
<paper-tab>${TabSuggestions}</paper-tab>
|
||||
<paper-tab>${TabLatest}</paper-tab>
|
||||
<paper-tab>${TabUpcoming}</paper-tab>
|
||||
<paper-tab>${TabShows}</paper-tab>
|
||||
<paper-tab class="tvEpisodesTab">${TabEpisodes}</paper-tab>
|
||||
<paper-tab>${TabGenres}</paper-tab>
|
||||
<paper-tab class="tvPeopleTab">${TabPeople}</paper-tab>
|
||||
<paper-tab class="tvStudiosTab">${TabNetworks}</paper-tab>
|
||||
</paper-tabs>
|
||||
<div class="legacyTabs scopedLibraryViewNav">
|
||||
<a href="tv.html"><iron-icon icon="info"></iron-icon>${TabSuggestions}</a>
|
||||
<a href="tv.html?tab=1"><iron-icon icon="new-releases"></iron-icon>${TabLatest}</a>
|
||||
<a href="tv.html?tab=2"><iron-icon icon="schedule"></iron-icon>${TabUpcoming}</a>
|
||||
<a href="tv.html?tab=3"><iron-icon icon="live-tv"></iron-icon>${TabShows}</a>
|
||||
<a href="tv.html?tab=4" class="tvEpisodesTab"><iron-icon icon="slideshow"></iron-icon>${TabEpisodes}</a>
|
||||
<a href="tv.html?tab=5"><iron-icon icon="video-library"></iron-icon>${TabGenres}</a>
|
||||
<a href="tv.html?tab=6" class="tvPeopleTab"><iron-icon icon="people"></iron-icon>${TabPeople}</a>
|
||||
<a href="tv.html?tab=7" class="tvStudiosTab"><iron-icon icon="account-box"></iron-icon>${TabNetworks}</a>
|
||||
<a href="tv.html">${TabSuggestions}</a>
|
||||
<a href="tv.html?tab=1">${TabLatest}</a>
|
||||
<a href="tv.html?tab=2">${TabUpcoming}</a>
|
||||
<a href="tv.html?tab=3">${TabShows}</a>
|
||||
<a href="tv.html?tab=4" class="tvEpisodesTab">${TabEpisodes}</a>
|
||||
<a href="tv.html?tab=5">${TabGenres}</a>
|
||||
<a href="tv.html?tab=6" class="tvPeopleTab">${TabPeople}</a>
|
||||
<a href="tv.html?tab=7" class="tvStudiosTab">${TabNetworks}</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -92,13 +92,6 @@
|
|||
<div class="viewSettings">
|
||||
<div class="listTopPaging">
|
||||
</div>
|
||||
<div class="selectionCommands" style="display: none;">
|
||||
<div class="selectionCommandsControlGroup">
|
||||
<button class="btnAddToPlaylist" data-mini="true" data-icon="plus" data-inline="true" title="${ButtonAddToPlaylist}">${ButtonAddToPlaylist}</button>
|
||||
<button class="btnMergeVersions" data-mini="true" data-icon="recycle" data-inline="true" title="${ButtonGroupVersions}">${ButtonGroupVersions}</button>
|
||||
<button class="btnSyncItems" data-mini="true" data-icon="sync" data-inline="true" title="${ButtonSync}">${ButtonSync}</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="items" class="itemsContainer paddedItemsContainer"></div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue