mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
sync updates
This commit is contained in:
parent
55b9bffabc
commit
52caa0def1
@ -1040,6 +1040,9 @@
|
|||||||
<Compile Include="..\MediaBrowser.Model\Session\UserDataChangeInfo.cs">
|
<Compile Include="..\MediaBrowser.Model\Session\UserDataChangeInfo.cs">
|
||||||
<Link>Session\UserDataChangeInfo.cs</Link>
|
<Link>Session\UserDataChangeInfo.cs</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="..\MediaBrowser.Model\Sync\DeviceFileInfo.cs">
|
||||||
|
<Link>Sync\DeviceFileInfo.cs</Link>
|
||||||
|
</Compile>
|
||||||
<Compile Include="..\MediaBrowser.Model\Sync\ItemFIleInfo.cs">
|
<Compile Include="..\MediaBrowser.Model\Sync\ItemFIleInfo.cs">
|
||||||
<Link>Sync\ItemFIleInfo.cs</Link>
|
<Link>Sync\ItemFIleInfo.cs</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
@ -999,6 +999,9 @@
|
|||||||
<Compile Include="..\MediaBrowser.Model\Session\UserDataChangeInfo.cs">
|
<Compile Include="..\MediaBrowser.Model\Session\UserDataChangeInfo.cs">
|
||||||
<Link>Session\UserDataChangeInfo.cs</Link>
|
<Link>Session\UserDataChangeInfo.cs</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="..\MediaBrowser.Model\Sync\DeviceFileInfo.cs">
|
||||||
|
<Link>Sync\DeviceFileInfo.cs</Link>
|
||||||
|
</Compile>
|
||||||
<Compile Include="..\MediaBrowser.Model\Sync\ItemFIleInfo.cs">
|
<Compile Include="..\MediaBrowser.Model\Sync\ItemFIleInfo.cs">
|
||||||
<Link>Sync\ItemFIleInfo.cs</Link>
|
<Link>Sync\ItemFIleInfo.cs</Link>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
@ -367,6 +367,7 @@
|
|||||||
<Compile Include="Session\TranscodingInfo.cs" />
|
<Compile Include="Session\TranscodingInfo.cs" />
|
||||||
<Compile Include="Session\UserDataChangeInfo.cs" />
|
<Compile Include="Session\UserDataChangeInfo.cs" />
|
||||||
<Compile Include="Devices\ContentUploadHistory.cs" />
|
<Compile Include="Devices\ContentUploadHistory.cs" />
|
||||||
|
<Compile Include="Sync\DeviceFileInfo.cs" />
|
||||||
<Compile Include="Sync\ItemFIleInfo.cs" />
|
<Compile Include="Sync\ItemFIleInfo.cs" />
|
||||||
<Compile Include="Sync\ItemFileType.cs" />
|
<Compile Include="Sync\ItemFileType.cs" />
|
||||||
<Compile Include="Sync\SyncCategory.cs" />
|
<Compile Include="Sync\SyncCategory.cs" />
|
||||||
|
9
MediaBrowser.Model/Sync/DeviceFileInfo.cs
Normal file
9
MediaBrowser.Model/Sync/DeviceFileInfo.cs
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
namespace MediaBrowser.Model.Sync
|
||||||
|
{
|
||||||
|
public class DeviceFileInfo
|
||||||
|
{
|
||||||
|
public string Path { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -10,19 +10,24 @@ namespace MediaBrowser.Model.Sync
|
|||||||
/// <value>The type.</value>
|
/// <value>The type.</value>
|
||||||
public ItemFileType Type { get; set; }
|
public ItemFileType Type { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the item identifier.
|
|
||||||
/// </summary>
|
|
||||||
/// <value>The item identifier.</value>
|
|
||||||
public string ItemId { get; set; }
|
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the name.
|
/// Gets or sets the name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The name.</value>
|
/// <value>The name.</value>
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Gets or sets the path.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The path.</value>
|
||||||
|
public string Path { get; set; }
|
||||||
|
/// <summary>
|
||||||
/// Gets or sets the type of the image.
|
/// Gets or sets the type of the image.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The type of the image.</value>
|
/// <value>The type of the image.</value>
|
||||||
public ImageType ImageType { get; set; }
|
public ImageType ImageType { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the item identifier.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The item identifier.</value>
|
||||||
|
public string ItemId { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ namespace MediaBrowser.Model.Users
|
|||||||
{
|
{
|
||||||
public class UserAction
|
public class UserAction
|
||||||
{
|
{
|
||||||
|
public string Id { get; set; }
|
||||||
public string ServerId { get; set; }
|
public string ServerId { get; set; }
|
||||||
public string UserId { get; set; }
|
public string UserId { get; set; }
|
||||||
public string ItemId { get; set; }
|
public string ItemId { get; set; }
|
||||||
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(zru\u0161eno)",
|
"LabelCancelled": "(zru\u0161eno)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stoppe",
|
"LabelStopping": "Stoppe",
|
||||||
"LabelCancelled": "(abgebrochen)",
|
"LabelCancelled": "(abgebrochen)",
|
||||||
"LabelFailed": "(fehlgeschlagen)",
|
"LabelFailed": "(fehlgeschlagen)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Durch herunterfahrenden Server abgebrochen)",
|
"LabelAbortedByServerShutdown": "(Durch herunterfahrenden Server abgebrochen)",
|
||||||
"LabelScheduledTaskLastRan": "Zuletzt ausgef\u00fchrt vor: {0}. Ben\u00f6tigte Zeit: {1}.",
|
"LabelScheduledTaskLastRan": "Zuletzt ausgef\u00fchrt vor: {0}. Ben\u00f6tigte Zeit: {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Entferne Aufgabenausl\u00f6ser",
|
"HeaderDeleteTaskTrigger": "Entferne Aufgabenausl\u00f6ser",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Nach rechts",
|
"ButtonMoveRight": "Nach rechts",
|
||||||
"ButtonBrowseOnlineImages": "Durchsuche Onlinebilder",
|
"ButtonBrowseOnlineImages": "Durchsuche Onlinebilder",
|
||||||
"HeaderDeleteItem": "L\u00f6sche Element",
|
"HeaderDeleteItem": "L\u00f6sche Element",
|
||||||
"ConfirmDeleteItem": "Bist du dir sicher dieses Element aus deiner Bibliothek zu l\u00f6schen?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
"MessagePleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.",
|
||||||
"MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.",
|
"MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.",
|
||||||
"MessageItemSaved": "Element gespeichert",
|
"MessageItemSaved": "Element gespeichert",
|
||||||
@ -396,7 +397,7 @@
|
|||||||
"LabelYear": "Jahr:",
|
"LabelYear": "Jahr:",
|
||||||
"LabelDateOfBirth": "Geburtsatum:",
|
"LabelDateOfBirth": "Geburtsatum:",
|
||||||
"LabelBirthYear": "Geburtsjahr:",
|
"LabelBirthYear": "Geburtsjahr:",
|
||||||
"LabelBirthDate": "Birth date:",
|
"LabelBirthDate": "Geburtsdatum:",
|
||||||
"LabelDeathDate": "Todesdatum:",
|
"LabelDeathDate": "Todesdatum:",
|
||||||
"HeaderRemoveMediaLocation": "Entferne Medienquelle",
|
"HeaderRemoveMediaLocation": "Entferne Medienquelle",
|
||||||
"MessageConfirmRemoveMediaLocation": "Bist du dir sicher diese Medienquelle entfernen zu wollen?",
|
"MessageConfirmRemoveMediaLocation": "Bist du dir sicher diese Medienquelle entfernen zu wollen?",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Medienquellen",
|
"HeaderMediaLocations": "Medienquellen",
|
||||||
"LabelFolderTypeValue": "Verzeichnistyp: {0}",
|
"LabelFolderTypeValue": "Verzeichnistyp: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Die Pfadersetzung kann Serverpfade zu Netzwerkfreigaben umleiten, die von Endger\u00e4ten f\u00fcr die direkte Wiedergabe genutzt werden k\u00f6nnen.",
|
"LabelPathSubstitutionHelp": "Optional: Die Pfadersetzung kann Serverpfade zu Netzwerkfreigaben umleiten, die von Endger\u00e4ten f\u00fcr die direkte Wiedergabe genutzt werden k\u00f6nnen.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Gemischte Inhalte",
|
||||||
"FolderTypeMovies": "Filme",
|
"FolderTypeMovies": "Filme",
|
||||||
"FolderTypeMusic": "Musik",
|
"FolderTypeMusic": "Musik",
|
||||||
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "und steuert einfach andere Ger\u00e4te und Media Browser Anwendungen",
|
"WebClientTourMobile2": "und steuert einfach andere Ger\u00e4te und Media Browser Anwendungen",
|
||||||
"MessageEnjoyYourStay": "Genie\u00dfe deinen Aufenthalt",
|
"MessageEnjoyYourStay": "Genie\u00dfe deinen Aufenthalt",
|
||||||
"DashboardTourDashboard": "Die Server\u00fcbersicht erlaubt es dir deinen Server und dessen Benutzer im Blick zu behalten. Somit wei\u00dft du immer wer gerade was macht und wo er sich befindet.",
|
"DashboardTourDashboard": "Die Server\u00fcbersicht erlaubt es dir deinen Server und dessen Benutzer im Blick zu behalten. Somit wei\u00dft du immer wer gerade was macht und wo er sich befindet.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Erstelle einfach Benutzeraccounts f\u00fcr Freunde und Familie. Jeder mit seinen individuellen Einstellungen bei Berechtigungen, Blibliothekenzugriff, Kindersicherung und mehr.",
|
"DashboardTourUsers": "Erstelle einfach Benutzeraccounts f\u00fcr Freunde und Familie. Jeder mit seinen individuellen Einstellungen bei Berechtigungen, Blibliothekenzugriff, Kindersicherung und mehr.",
|
||||||
"DashboardTourCinemaMode": "Der Kino-Modus bringt das Kinoerlebnis direkt in dein Wohnzimmer, mit der F\u00e4higkeit Trailer und benutzerdefinierte Intros vor dem Hauptfilm zu spielen.",
|
"DashboardTourCinemaMode": "Der Kino-Modus bringt das Kinoerlebnis direkt in dein Wohnzimmer, mit der F\u00e4higkeit Trailer und benutzerdefinierte Intros vor dem Hauptfilm zu spielen.",
|
||||||
"DashboardTourChapters": "Aktiviere die Bildgenerierung f\u00fcr die Kapitel deiner Videos f\u00fcr eine bessere Darstellung w\u00e4hrend des Ansehens.",
|
"DashboardTourChapters": "Aktiviere die Bildgenerierung f\u00fcr die Kapitel deiner Videos f\u00fcr eine bessere Darstellung w\u00e4hrend des Ansehens.",
|
||||||
@ -643,12 +645,12 @@
|
|||||||
"OptionLow": "Niedrig",
|
"OptionLow": "Niedrig",
|
||||||
"HeaderSettings": "Einstellungen",
|
"HeaderSettings": "Einstellungen",
|
||||||
"OptionAutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch",
|
"OptionAutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch",
|
||||||
"OptionAutomaticallySyncNewContentHelp": "New content added to this category will be automatically synced to the device.",
|
"OptionAutomaticallySyncNewContentHelp": "Neue Inhalte dieser Kategorie werden automatisch mit dem Ger\u00e4t synchronisiert.",
|
||||||
"OptionSyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos.",
|
"OptionSyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos.",
|
||||||
"OptionSyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.",
|
"OptionSyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.",
|
||||||
"LabelItemLimit": "Item limit:",
|
"LabelItemLimit": "Maximale Anzahl:",
|
||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Legen Sie die maximale Anzahl der zu synchronisierenden Eintr\u00e4ge fest.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Setzt die Installation des Bookshelf-Plugins voraus.",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Setzt die Installation des GameBrowser-Plugins voraus.",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Inhalt wird als Verzeichnisstruktur angezeigt."
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,8 +250,9 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
"OptionEnded": "Ended",
|
"OptionEnded": "Ended",
|
||||||
"OptionContinuing": "Continuing",
|
"OptionContinuing": "Continuing",
|
||||||
@ -411,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -587,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -649,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Deteniendo",
|
"LabelStopping": "Deteniendo",
|
||||||
"LabelCancelled": "(cancelado)",
|
"LabelCancelled": "(cancelado)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Abortado por cierre del servidor)",
|
"LabelAbortedByServerShutdown": "(Abortado por cierre del servidor)",
|
||||||
"LabelScheduledTaskLastRan": "\u00daltima ejecuci\u00f3n {0}, teniendo {1}.",
|
"LabelScheduledTaskLastRan": "\u00daltima ejecuci\u00f3n {0}, teniendo {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Eliminar tarea de activaci\u00f3n",
|
"HeaderDeleteTaskTrigger": "Eliminar tarea de activaci\u00f3n",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Mover derecha",
|
"ButtonMoveRight": "Mover derecha",
|
||||||
"ButtonBrowseOnlineImages": "Navegar im\u00e1genes online",
|
"ButtonBrowseOnlineImages": "Navegar im\u00e1genes online",
|
||||||
"HeaderDeleteItem": "Borrar elemento",
|
"HeaderDeleteItem": "Borrar elemento",
|
||||||
"ConfirmDeleteItem": "\u00bfEst\u00e1 seguro que desea borrar este elemento de su biblioteca?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
"MessagePleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.",
|
||||||
"MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.",
|
"MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.",
|
||||||
"MessageItemSaved": "Elemento grabado.",
|
"MessageItemSaved": "Elemento grabado.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Deteniendo",
|
"LabelStopping": "Deteniendo",
|
||||||
"LabelCancelled": "(cancelado)",
|
"LabelCancelled": "(cancelado)",
|
||||||
"LabelFailed": "(Fallido)",
|
"LabelFailed": "(Fallido)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Abortada por apagado del servidor)",
|
"LabelAbortedByServerShutdown": "(Abortada por apagado del servidor)",
|
||||||
"LabelScheduledTaskLastRan": "Ejecutado hace {0}, tomando {1}.",
|
"LabelScheduledTaskLastRan": "Ejecutado hace {0}, tomando {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Borrar Disparador de Tarea",
|
"HeaderDeleteTaskTrigger": "Borrar Disparador de Tarea",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Mover a la derecha",
|
"ButtonMoveRight": "Mover a la derecha",
|
||||||
"ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea",
|
"ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea",
|
||||||
"HeaderDeleteItem": "Eliminar \u00cdtem",
|
"HeaderDeleteItem": "Eliminar \u00cdtem",
|
||||||
"ConfirmDeleteItem": "\u00bfEst\u00e1 seguro de querer eleiminar este \u00edtem de su biblioteca?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Por favor ingrese un nombre o id externo.",
|
"MessagePleaseEnterNameOrId": "Por favor ingrese un nombre o id externo.",
|
||||||
"MessageValueNotCorrect": "El valor ingresado no es correcto. Intente nuevamente por favor.",
|
"MessageValueNotCorrect": "El valor ingresado no es correcto. Intente nuevamente por favor.",
|
||||||
"MessageItemSaved": "\u00cdtem guardado.",
|
"MessageItemSaved": "\u00cdtem guardado.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Ubicaciones de Medios",
|
"HeaderMediaLocations": "Ubicaciones de Medios",
|
||||||
"LabelFolderTypeValue": "Tipo de carpeta: {0}",
|
"LabelFolderTypeValue": "Tipo de carpeta: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Opcional: La sustituci\u00f3n de trayectoras puede mapear trayectorias del servidor a recursos de red comaprtidos que los clientes pueden acceder para reproducir de manera directa.",
|
"LabelPathSubstitutionHelp": "Opcional: La sustituci\u00f3n de trayectoras puede mapear trayectorias del servidor a recursos de red comaprtidos que los clientes pueden acceder para reproducir de manera directa.",
|
||||||
"FolderTypeMixed": "Videos mezclados",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Pel\u00edculas",
|
"FolderTypeMovies": "Pel\u00edculas",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "Videos para adultos",
|
"FolderTypeAdultVideos": "Videos para adultos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "y controla f\u00e1cilmente otros dispositivos y apps de Media Browser",
|
"WebClientTourMobile2": "y controla f\u00e1cilmente otros dispositivos y apps de Media Browser",
|
||||||
"MessageEnjoyYourStay": "Disfrute su visita",
|
"MessageEnjoyYourStay": "Disfrute su visita",
|
||||||
"DashboardTourDashboard": "El panel de control del servidor le permite monitorear su servidor y sus usuarios. Siempre sabr\u00e1 quien est\u00e1 haciendo qu\u00e9 y donde se encuentran.",
|
"DashboardTourDashboard": "El panel de control del servidor le permite monitorear su servidor y sus usuarios. Siempre sabr\u00e1 quien est\u00e1 haciendo qu\u00e9 y donde se encuentran.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Cree cuentas f\u00e1cilmente para sus amigos y familia, cada una con sus propios permisos, accesos a la biblioteca, controles parentales y m\u00e1s.",
|
"DashboardTourUsers": "Cree cuentas f\u00e1cilmente para sus amigos y familia, cada una con sus propios permisos, accesos a la biblioteca, controles parentales y m\u00e1s.",
|
||||||
"DashboardTourCinemaMode": "El modo cine trae la experiencia del cine directo a su sala de TV con la capacidad de reproducir avances e intros personalizados antes de la presentaci\u00f3n estelar.",
|
"DashboardTourCinemaMode": "El modo cine trae la experiencia del cine directo a su sala de TV con la capacidad de reproducir avances e intros personalizados antes de la presentaci\u00f3n estelar.",
|
||||||
"DashboardTourChapters": "Active la generaci\u00f3n de im\u00e1genes de cap\u00edtulos de sus videos para una presentaci\u00f3n m\u00e1s agradable al desplegar.",
|
"DashboardTourChapters": "Active la generaci\u00f3n de im\u00e1genes de cap\u00edtulos de sus videos para una presentaci\u00f3n m\u00e1s agradable al desplegar.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Opcional. Establece un l\u00edmite en el n\u00famero de \u00edtems que ser\u00e1n sincronizados.",
|
"LabelItemLimitHelp": "Opcional. Establece un l\u00edmite en el n\u00famero de \u00edtems que ser\u00e1n sincronizados.",
|
||||||
"MessageBookPluginRequired": "Requiere instalaci\u00f3n del complemento Bookshelf",
|
"MessageBookPluginRequired": "Requiere instalaci\u00f3n del complemento Bookshelf",
|
||||||
"MessageGamePluginRequired": "Requiere instalaci\u00f3n del complemento de GameBrowser",
|
"MessageGamePluginRequired": "Requiere instalaci\u00f3n del complemento de GameBrowser",
|
||||||
"MessageMixedContentHelp": "El contenido ser\u00e1 desplegado como una estructura de carpetas simples"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "En cours d'arr\u00eat",
|
"LabelStopping": "En cours d'arr\u00eat",
|
||||||
"LabelCancelled": "(annul\u00e9)",
|
"LabelCancelled": "(annul\u00e9)",
|
||||||
"LabelFailed": "(\u00e9chou\u00e9)",
|
"LabelFailed": "(\u00e9chou\u00e9)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Annul\u00e9 par fermeture du serveur)",
|
"LabelAbortedByServerShutdown": "(Annul\u00e9 par fermeture du serveur)",
|
||||||
"LabelScheduledTaskLastRan": "Derni\u00e8re ex\u00e9cution {0}, dur\u00e9e {1}.",
|
"LabelScheduledTaskLastRan": "Derni\u00e8re ex\u00e9cution {0}, dur\u00e9e {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Supprimer le d\u00e9clencheur de t\u00e2che",
|
"HeaderDeleteTaskTrigger": "Supprimer le d\u00e9clencheur de t\u00e2che",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "D\u00e9placer \u00e0 droite",
|
"ButtonMoveRight": "D\u00e9placer \u00e0 droite",
|
||||||
"ButtonBrowseOnlineImages": "Parcourir les images en ligne",
|
"ButtonBrowseOnlineImages": "Parcourir les images en ligne",
|
||||||
"HeaderDeleteItem": "Supprimer l'item",
|
"HeaderDeleteItem": "Supprimer l'item",
|
||||||
"ConfirmDeleteItem": "\u00cates-vous s\u00fbr de vouloir supprimer cet item de votre biblioth\u00e8que ?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Merci de saisir un nom ou un ID externe.",
|
"MessagePleaseEnterNameOrId": "Merci de saisir un nom ou un ID externe.",
|
||||||
"MessageValueNotCorrect": "La valeur saisie est incorrecte. Merci de r\u00e9\u00e9ssayer.",
|
"MessageValueNotCorrect": "La valeur saisie est incorrecte. Merci de r\u00e9\u00e9ssayer.",
|
||||||
"MessageItemSaved": "Item sauvegard\u00e9.",
|
"MessageItemSaved": "Item sauvegard\u00e9.",
|
||||||
@ -396,7 +397,7 @@
|
|||||||
"LabelYear": "Ann\u00e9e :",
|
"LabelYear": "Ann\u00e9e :",
|
||||||
"LabelDateOfBirth": "Date de naissance :",
|
"LabelDateOfBirth": "Date de naissance :",
|
||||||
"LabelBirthYear": "Ann\u00e9e de naissance :",
|
"LabelBirthYear": "Ann\u00e9e de naissance :",
|
||||||
"LabelBirthDate": "Birth date:",
|
"LabelBirthDate": "Date de naissance :",
|
||||||
"LabelDeathDate": "Date de d\u00e9c\u00e8s :",
|
"LabelDeathDate": "Date de d\u00e9c\u00e8s :",
|
||||||
"HeaderRemoveMediaLocation": "Supprimer l'emplacement m\u00e9dia",
|
"HeaderRemoveMediaLocation": "Supprimer l'emplacement m\u00e9dia",
|
||||||
"MessageConfirmRemoveMediaLocation": "Etes vous sur de vouloir supprimer cet emplacement?",
|
"MessageConfirmRemoveMediaLocation": "Etes vous sur de vouloir supprimer cet emplacement?",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Emplacement des M\u00e9dias",
|
"HeaderMediaLocations": "Emplacement des M\u00e9dias",
|
||||||
"LabelFolderTypeValue": "Type de r\u00e9pertoire: {0}",
|
"LabelFolderTypeValue": "Type de r\u00e9pertoire: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optionnel: La substitution de chemin peut rediriger les r\u00e9pertoires serveurs vers des partages r\u00e9seau afin que le client acc\u00e8de directement \u00e0 la lecture.",
|
"LabelPathSubstitutionHelp": "Optionnel: La substitution de chemin peut rediriger les r\u00e9pertoires serveurs vers des partages r\u00e9seau afin que le client acc\u00e8de directement \u00e0 la lecture.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Films",
|
"FolderTypeMovies": "Films",
|
||||||
"FolderTypeMusic": "Musique",
|
"FolderTypeMusic": "Musique",
|
||||||
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "et controles facilement les autres p\u00e9riph\u00e9riques et applications Medi Browser",
|
"WebClientTourMobile2": "et controles facilement les autres p\u00e9riph\u00e9riques et applications Medi Browser",
|
||||||
"MessageEnjoyYourStay": "Profitez en bien",
|
"MessageEnjoyYourStay": "Profitez en bien",
|
||||||
"DashboardTourDashboard": "Le tableau de bord du serveur vous permet de g\u00e9rer votre serveur et vos utilisateurs. Vous saurez toujours qui fait quoi et o\u00f9 ils sont.",
|
"DashboardTourDashboard": "Le tableau de bord du serveur vous permet de g\u00e9rer votre serveur et vos utilisateurs. Vous saurez toujours qui fait quoi et o\u00f9 ils sont.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Cr\u00e9er facilement des comptes utilisateurs pour vos amis et votre famille, chacun avec ses propres droits, biblioth\u00e8ques accessibles, contr\u00f4le parental et plus encore.",
|
"DashboardTourUsers": "Cr\u00e9er facilement des comptes utilisateurs pour vos amis et votre famille, chacun avec ses propres droits, biblioth\u00e8ques accessibles, contr\u00f4le parental et plus encore.",
|
||||||
"DashboardTourCinemaMode": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon avec l'abilit\u00e9 de lire les bandes-annonces et les introductions personnalis\u00e9es avant le programme principal.",
|
"DashboardTourCinemaMode": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon avec l'abilit\u00e9 de lire les bandes-annonces et les introductions personnalis\u00e9es avant le programme principal.",
|
||||||
"DashboardTourChapters": "Autoriser la g\u00e9n\u00e9ration des images des chapitres de vos vid\u00e9os pour une pr\u00e9sentation plus agr\u00e9able pendant le visionnage",
|
"DashboardTourChapters": "Autoriser la g\u00e9n\u00e9ration des images des chapitres de vos vid\u00e9os pour une pr\u00e9sentation plus agr\u00e9able pendant le visionnage",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Sto fermando",
|
"LabelStopping": "Sto fermando",
|
||||||
"LabelCancelled": "(cancellato)",
|
"LabelCancelled": "(cancellato)",
|
||||||
"LabelFailed": "(fallito)",
|
"LabelFailed": "(fallito)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Interrotto dalla chiusura del server)",
|
"LabelAbortedByServerShutdown": "(Interrotto dalla chiusura del server)",
|
||||||
"LabelScheduledTaskLastRan": "Ultima esecuzione {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Ultima esecuzione {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Elimina Operazione pianificata",
|
"HeaderDeleteTaskTrigger": "Elimina Operazione pianificata",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Muovi a destra",
|
"ButtonMoveRight": "Muovi a destra",
|
||||||
"ButtonBrowseOnlineImages": "Sfoglia le immagini Online",
|
"ButtonBrowseOnlineImages": "Sfoglia le immagini Online",
|
||||||
"HeaderDeleteItem": "Elimina elemento",
|
"HeaderDeleteItem": "Elimina elemento",
|
||||||
"ConfirmDeleteItem": "Sei sicuro di voler eliminare questo elemento dalla tua libreria?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Inserisci il nome o id esterno.",
|
"MessagePleaseEnterNameOrId": "Inserisci il nome o id esterno.",
|
||||||
"MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.",
|
"MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.",
|
||||||
"MessageItemSaved": "Elemento salvato.",
|
"MessageItemSaved": "Elemento salvato.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Posizioni Media",
|
"HeaderMediaLocations": "Posizioni Media",
|
||||||
"LabelFolderTypeValue": "Tipo cartella: {0}",
|
"LabelFolderTypeValue": "Tipo cartella: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Opzionale: cambio Path pu\u00f2 mappare i percorsi del server a condivisioni di rete che i clienti possono accedere per la riproduzione diretta.",
|
"LabelPathSubstitutionHelp": "Opzionale: cambio Path pu\u00f2 mappare i percorsi del server a condivisioni di rete che i clienti possono accedere per la riproduzione diretta.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Film",
|
"FolderTypeMovies": "Film",
|
||||||
"FolderTypeMusic": "Musica",
|
"FolderTypeMusic": "Musica",
|
||||||
"FolderTypeAdultVideos": "Video per adulti",
|
"FolderTypeAdultVideos": "Video per adulti",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "e controlla facilmente altri dispositivi e applicazioni Media Browser",
|
"WebClientTourMobile2": "e controlla facilmente altri dispositivi e applicazioni Media Browser",
|
||||||
"MessageEnjoyYourStay": "Godetevi il vostro soggiorno",
|
"MessageEnjoyYourStay": "Godetevi il vostro soggiorno",
|
||||||
"DashboardTourDashboard": "Il pannello di controllo del server consente di monitorare il vostro server e gli utenti. Potrai sempre sapere chi sta facendo cosa e dove sono.",
|
"DashboardTourDashboard": "Il pannello di controllo del server consente di monitorare il vostro server e gli utenti. Potrai sempre sapere chi sta facendo cosa e dove sono.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Facile creazione di account utente per i vostri amici e la famiglia, ognuno con le proprie autorizzazioni, accesso alla libreria, controlli parentali e altro ancora.",
|
"DashboardTourUsers": "Facile creazione di account utente per i vostri amici e la famiglia, ognuno con le proprie autorizzazioni, accesso alla libreria, controlli parentali e altro ancora.",
|
||||||
"DashboardTourCinemaMode": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di giocare trailer e intro personalizzati prima la caratteristica principale.",
|
"DashboardTourCinemaMode": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di giocare trailer e intro personalizzati prima la caratteristica principale.",
|
||||||
"DashboardTourChapters": "Abilita capitolo generazione di immagini per i vostri video per una presentazione pi\u00f9 gradevole durante la visualizzazione.",
|
"DashboardTourChapters": "Abilita capitolo generazione di immagini per i vostri video per una presentazione pi\u00f9 gradevole durante la visualizzazione.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "\u0422\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
|
"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)",
|
"LabelCancelled": "(\u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b)",
|
||||||
"LabelFailed": "(\u0441\u04d9\u0442\u0441\u0456\u0437)",
|
"LabelFailed": "(\u0441\u04d9\u0442\u0441\u0456\u0437)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(\u0421\u0435\u0440\u0432\u0435\u0440 \u0436\u04b1\u043c\u044b\u0441\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b\u043d\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u04af\u0437\u0456\u043b\u0434\u0456)",
|
"LabelAbortedByServerShutdown": "(\u0421\u0435\u0440\u0432\u0435\u0440 \u0436\u04b1\u043c\u044b\u0441\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b\u043d\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b \u04af\u0437\u0456\u043b\u0434\u0456)",
|
||||||
"LabelScheduledTaskLastRan": "\u0421\u043e\u04a3\u0493\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b {0}, {1} \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0434\u044b.",
|
"LabelScheduledTaskLastRan": "\u0421\u043e\u04a3\u0493\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b {0}, {1} \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0434\u044b.",
|
||||||
"HeaderDeleteTaskTrigger": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e",
|
"HeaderDeleteTaskTrigger": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "\u041e\u04a3\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
|
"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",
|
"ButtonBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443",
|
||||||
"HeaderDeleteItem": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0456 \u0436\u043e\u044e",
|
"HeaderDeleteItem": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0456 \u0436\u043e\u044e",
|
||||||
"ConfirmDeleteItem": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0456 \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u0434\u0430\u043d \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
"MessagePleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
|
||||||
"MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
"MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.",
|
||||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "\u0422\u0430\u0441\u0443\u0448\u044b \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b",
|
"HeaderMediaLocations": "\u0422\u0430\u0441\u0443\u0448\u044b \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b",
|
||||||
"LabelFolderTypeValue": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456: {0}",
|
"LabelFolderTypeValue": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456: {0}",
|
||||||
"LabelPathSubstitutionHelp": "\u049a\u0430\u043b\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430: \u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0430 \u0430\u043b\u0430\u0442\u044b\u043d \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u049b\u043e\u0440 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
|
"LabelPathSubstitutionHelp": "\u049a\u0430\u043b\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430: \u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0430 \u0430\u043b\u0430\u0442\u044b\u043d \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u049b\u043e\u0440 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
|
||||||
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
|
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
|
||||||
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
|
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
"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",
|
"FolderTypeAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "\u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 Media Browser \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0430\u0434\u044b",
|
"WebClientTourMobile2": "\u0441\u043e\u043d\u044b\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 Media Browser \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0430\u0434\u044b",
|
||||||
"MessageEnjoyYourStay": "\u0416\u0430\u0493\u044b\u043c\u0434\u044b \u0435\u0440\u043c\u0435\u043a \u0435\u0442\u0456\u04a3\u0456\u0437",
|
"MessageEnjoyYourStay": "\u0416\u0430\u0493\u044b\u043c\u0434\u044b \u0435\u0440\u043c\u0435\u043a \u0435\u0442\u0456\u04a3\u0456\u0437",
|
||||||
"DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041a\u0456\u043c \u043d\u0435 \u0456\u0441\u0442\u0435\u0433\u0435\u043d\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0434\u0430 \u0442\u04b1\u0440\u0493\u0430\u043d\u044b\u043d \u0431\u0456\u043b\u0456\u043f \u0436\u0430\u0442\u0430\u0441\u044b\u0437.",
|
"DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041a\u0456\u043c \u043d\u0435 \u0456\u0441\u0442\u0435\u0433\u0435\u043d\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0434\u0430 \u0442\u04b1\u0440\u0493\u0430\u043d\u044b\u043d \u0431\u0456\u043b\u0456\u043f \u0436\u0430\u0442\u0430\u0441\u044b\u0437.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "\u0414\u043e\u0441\u0442\u0430\u0440\u044b\u04a3\u044b\u0437 \u0431\u0435\u043d \u043e\u0442\u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b\u043d\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b, \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0443\u044b, \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0431\u0430\u0440 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043d \u0436\u0435\u04a3\u0456\u043b \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.",
|
"DashboardTourUsers": "\u0414\u043e\u0441\u0442\u0430\u0440\u044b\u04a3\u044b\u0437 \u0431\u0435\u043d \u043e\u0442\u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b\u043d\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b, \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0443\u044b, \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0431\u0430\u0440 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043d \u0436\u0435\u04a3\u0456\u043b \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.",
|
||||||
"DashboardTourCinemaMode": "\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 \u0431\u0430\u0441\u0442\u044b \u049b\u0430\u0441\u0438\u0435\u0442\u0442\u0456\u04a3 \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 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0442\u0456\u043d \u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u049b\u043e\u043d\u0430\u049b\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
"DashboardTourCinemaMode": "\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 \u0431\u0430\u0441\u0442\u044b \u049b\u0430\u0441\u0438\u0435\u0442\u0442\u0456\u04a3 \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 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0442\u0456\u043d \u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u049b\u043e\u043d\u0430\u049b\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.",
|
||||||
"DashboardTourChapters": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u04b1\u043d\u0430\u043c\u0434\u044b\u043b\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c \u04af\u0448\u0456\u043d \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0442\u0443\u0434\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.",
|
"DashboardTourChapters": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u04b1\u043d\u0430\u043c\u0434\u044b\u043b\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c \u04af\u0448\u0456\u043d \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0442\u0443\u0434\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "\u049a\u0430\u043b\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430: \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440 \u0441\u0430\u043d\u044b \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
|
"LabelItemLimitHelp": "\u049a\u0430\u043b\u0430\u0443 \u0431\u043e\u0439\u044b\u043d\u0448\u0430: \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440 \u0441\u0430\u043d\u044b \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
|
||||||
"MessageBookPluginRequired": "Bookshelf \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456",
|
"MessageBookPluginRequired": "Bookshelf \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456",
|
||||||
"MessageGamePluginRequired": "GameBrowser \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456",
|
"MessageGamePluginRequired": "GameBrowser \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456",
|
||||||
"MessageMixedContentHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0436\u0430\u043b\u043f\u044b \u049b\u0430\u043b\u0442\u0430 \u049b\u04b1\u0440\u044b\u043b\u044b\u043c\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456"
|
"MessageMixedContentHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u049b\u0430\u043b\u0442\u0430 \u049b\u04b1\u0440\u044b\u043b\u044b\u043c\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stoppe",
|
"LabelStopping": "Stoppe",
|
||||||
"LabelCancelled": "(kansellert)",
|
"LabelCancelled": "(kansellert)",
|
||||||
"LabelFailed": "(Feilet)",
|
"LabelFailed": "(Feilet)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Avbrutt av server shutdown)",
|
"LabelAbortedByServerShutdown": "(Avbrutt av server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Sist kj\u00f8rt {0}, tar {1}.",
|
"LabelScheduledTaskLastRan": "Sist kj\u00f8rt {0}, tar {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Slett Oppgave Trigger",
|
"HeaderDeleteTaskTrigger": "Slett Oppgave Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Flytt til h\u00f8yre",
|
"ButtonMoveRight": "Flytt til h\u00f8yre",
|
||||||
"ButtonBrowseOnlineImages": "Bla igjennom bilder online",
|
"ButtonBrowseOnlineImages": "Bla igjennom bilder online",
|
||||||
"HeaderDeleteItem": "Slett element",
|
"HeaderDeleteItem": "Slett element",
|
||||||
"ConfirmDeleteItem": "Er du sikker p\u00e5 at du vil slette dette elementet fra ditt bibliotek?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
"MessagePleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.",
|
||||||
"MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.",
|
"MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.",
|
||||||
"MessageItemSaved": "Element lagret.",
|
"MessageItemSaved": "Element lagret.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Steder",
|
"HeaderMediaLocations": "Media Steder",
|
||||||
"LabelFolderTypeValue": "Mappe type: {0}",
|
"LabelFolderTypeValue": "Mappe type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Valgfritt: Sti erstatter kan koble server stier til nettverkressurser som klienter har tilgang til for direkte avspilling.",
|
"LabelPathSubstitutionHelp": "Valgfritt: Sti erstatter kan koble server stier til nettverkressurser som klienter har tilgang til for direkte avspilling.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Filmer",
|
"FolderTypeMovies": "Filmer",
|
||||||
"FolderTypeMusic": "Musikk",
|
"FolderTypeMusic": "Musikk",
|
||||||
"FolderTypeAdultVideos": "Voksen videoer",
|
"FolderTypeAdultVideos": "Voksen videoer",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "og enkelt styrer andre enheter og mediabrowser apps",
|
"WebClientTourMobile2": "og enkelt styrer andre enheter og mediabrowser apps",
|
||||||
"MessageEnjoyYourStay": "Nyt oppholdet",
|
"MessageEnjoyYourStay": "Nyt oppholdet",
|
||||||
"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.",
|
"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": "Opprett bruker kontoer enkelt for dine venner og familie, hver med deres egne rettigheter, bibliotek tillgang, foreldre kontroll og mere til.",
|
"DashboardTourUsers": "Opprett bruker kontoer enkelt for dine venner og familie, hver med deres egne rettigheter, bibliotek tillgang, foreldre kontroll og mere til.",
|
||||||
"DashboardTourCinemaMode": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til \u00e5 spille trailere og tilpassede introer f\u00f8r filmen begynner.",
|
"DashboardTourCinemaMode": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til \u00e5 spille trailere og tilpassede introer f\u00f8r filmen begynner.",
|
||||||
"DashboardTourChapters": "Aktiver generering av kapittel bilder for dine videoer for en mer behagelig presentasjon mens du ser p\u00e5.",
|
"DashboardTourChapters": "Aktiver generering av kapittel bilder for dine videoer for en mer behagelig presentasjon mens du ser p\u00e5.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stoppen",
|
"LabelStopping": "Stoppen",
|
||||||
"LabelCancelled": "(Geannuleerd)",
|
"LabelCancelled": "(Geannuleerd)",
|
||||||
"LabelFailed": "(mislukt)",
|
"LabelFailed": "(mislukt)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Afgebroken door afsluiten van de server)",
|
"LabelAbortedByServerShutdown": "(Afgebroken door afsluiten van de server)",
|
||||||
"LabelScheduledTaskLastRan": "Laatste keer {0}, duur {1}.",
|
"LabelScheduledTaskLastRan": "Laatste keer {0}, duur {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Verwijderen Taak Trigger",
|
"HeaderDeleteTaskTrigger": "Verwijderen Taak Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Verplaats naar rechts",
|
"ButtonMoveRight": "Verplaats naar rechts",
|
||||||
"ButtonBrowseOnlineImages": "Blader door online afbeeldingen",
|
"ButtonBrowseOnlineImages": "Blader door online afbeeldingen",
|
||||||
"HeaderDeleteItem": "Item verwijderen",
|
"HeaderDeleteItem": "Item verwijderen",
|
||||||
"ConfirmDeleteItem": "Weet u zeker dat u dit item uit uw bibliotheek wilt verwijderen?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
"MessagePleaseEnterNameOrId": "Voer een naam of een externe Id in",
|
||||||
"MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.",
|
"MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.",
|
||||||
"MessageItemSaved": "Item opgeslagen.",
|
"MessageItemSaved": "Item opgeslagen.",
|
||||||
@ -396,7 +397,7 @@
|
|||||||
"LabelYear": "Jaar:",
|
"LabelYear": "Jaar:",
|
||||||
"LabelDateOfBirth": "Geboortedatum:",
|
"LabelDateOfBirth": "Geboortedatum:",
|
||||||
"LabelBirthYear": "Geboorte jaar:",
|
"LabelBirthYear": "Geboorte jaar:",
|
||||||
"LabelBirthDate": "Birth date:",
|
"LabelBirthDate": "Geboortedatum:",
|
||||||
"LabelDeathDate": "Overlijdens datum:",
|
"LabelDeathDate": "Overlijdens datum:",
|
||||||
"HeaderRemoveMediaLocation": "Verwijder media locatie",
|
"HeaderRemoveMediaLocation": "Verwijder media locatie",
|
||||||
"MessageConfirmRemoveMediaLocation": "Weet je zeker dat je deze locatie wilt verwijderen?",
|
"MessageConfirmRemoveMediaLocation": "Weet je zeker dat je deze locatie wilt verwijderen?",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locaties",
|
"HeaderMediaLocations": "Media Locaties",
|
||||||
"LabelFolderTypeValue": "Map type: {0}",
|
"LabelFolderTypeValue": "Map type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optioneel: Pad vervanging kan server paden naar netwerk locaties verwijzen zodat clients direct kunnen afspelen.",
|
"LabelPathSubstitutionHelp": "Optioneel: Pad vervanging kan server paden naar netwerk locaties verwijzen zodat clients direct kunnen afspelen.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Gemengde inhoud",
|
||||||
"FolderTypeMovies": "Films",
|
"FolderTypeMovies": "Films",
|
||||||
"FolderTypeMusic": "Muziek",
|
"FolderTypeMusic": "Muziek",
|
||||||
"FolderTypeAdultVideos": "Adult video's",
|
"FolderTypeAdultVideos": "Adult video's",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "en kan elke andere Media Browser app bedienen",
|
"WebClientTourMobile2": "en kan elke andere Media Browser app bedienen",
|
||||||
"MessageEnjoyYourStay": "Geniet van uw verblijf",
|
"MessageEnjoyYourStay": "Geniet van uw verblijf",
|
||||||
"DashboardTourDashboard": "Het server-dashboard steld u in staat uw server en uw gebruikers te monitoren . U zult altijd weten wie wat doet en waar ze zijn.",
|
"DashboardTourDashboard": "Het server-dashboard steld u in staat uw server en uw gebruikers te monitoren . U zult altijd weten wie wat doet en waar ze zijn.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Maak gemakkelijk gebruikersaccounts voor uw vrienden en familie, elk met hun eigen machtigingen, bibliotheek toegang, ouderlijk toezicht en meer.",
|
"DashboardTourUsers": "Maak gemakkelijk gebruikersaccounts voor uw vrienden en familie, elk met hun eigen machtigingen, bibliotheek toegang, ouderlijk toezicht en meer.",
|
||||||
"DashboardTourCinemaMode": "Cinema mode brengt de theater ervaring naar je woonkamer met de mogelijkheid om trailers en eigen intro's voor de film af te spelen",
|
"DashboardTourCinemaMode": "Cinema mode brengt de theater ervaring naar je woonkamer met de mogelijkheid om trailers en eigen intro's voor de film af te spelen",
|
||||||
"DashboardTourChapters": "Schakel hoofdstuk afbeeldingen genereren in voor uw video's voor een aantrekkelijker presentatie tijdens het kijken.",
|
"DashboardTourChapters": "Schakel hoofdstuk afbeeldingen genereren in voor uw video's voor een aantrekkelijker presentatie tijdens het kijken.",
|
||||||
@ -643,12 +645,12 @@
|
|||||||
"OptionLow": "Laag",
|
"OptionLow": "Laag",
|
||||||
"HeaderSettings": "Instellingen",
|
"HeaderSettings": "Instellingen",
|
||||||
"OptionAutomaticallySyncNewContent": "Nieuwe inhoud automatisch synchroniseren",
|
"OptionAutomaticallySyncNewContent": "Nieuwe inhoud automatisch synchroniseren",
|
||||||
"OptionAutomaticallySyncNewContentHelp": "New content added to this category will be automatically synced to the device.",
|
"OptionAutomaticallySyncNewContentHelp": "Nieuwe inhoud toegevoegd aan deze categorie wordt automatisch gesynchroniseerd met het apparaat.",
|
||||||
"OptionSyncUnwatchedVideosOnly": "Synchroniseer alleen ongeziene video's",
|
"OptionSyncUnwatchedVideosOnly": "Synchroniseer alleen ongeziene video's",
|
||||||
"OptionSyncUnwatchedVideosOnlyHelp": "Alleen ongeziene video's zulle gesynchroniseerd worden en van het apparaat verwijderd worden als ze gezien zijn.",
|
"OptionSyncUnwatchedVideosOnlyHelp": "Alleen ongeziene video's zulle gesynchroniseerd worden en van het apparaat verwijderd worden als ze gezien zijn.",
|
||||||
"LabelItemLimit": "Item limit:",
|
"LabelItemLimit": "Item limiet:",
|
||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optioneel. Een limiet stellen aan het aantal items die zullen worden gesynchroniseerd.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Vereist installatie van de Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Vereist installatie van de GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Inhoud zal worden weergegeven als een gewone mappenstructuur"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Parando",
|
"LabelStopping": "Parando",
|
||||||
"LabelCancelled": "(cancelado)",
|
"LabelCancelled": "(cancelado)",
|
||||||
"LabelFailed": "(falhou)",
|
"LabelFailed": "(falhou)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)",
|
"LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)",
|
||||||
"LabelScheduledTaskLastRan": "\u00daltima execu\u00e7\u00e3o {0}, demorando {1}.",
|
"LabelScheduledTaskLastRan": "\u00daltima execu\u00e7\u00e3o {0}, demorando {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Excluir Disparador da Tarefa",
|
"HeaderDeleteTaskTrigger": "Excluir Disparador da Tarefa",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Mover \u00e0 direita",
|
"ButtonMoveRight": "Mover \u00e0 direita",
|
||||||
"ButtonBrowseOnlineImages": "Procurar imagens online",
|
"ButtonBrowseOnlineImages": "Procurar imagens online",
|
||||||
"HeaderDeleteItem": "Excluir item",
|
"HeaderDeleteItem": "Excluir item",
|
||||||
"ConfirmDeleteItem": "Deseja realmente excluir este item de sua biblioteca?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
"MessagePleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.",
|
||||||
"MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.",
|
"MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.",
|
||||||
"MessageItemSaved": "Item salvo.",
|
"MessageItemSaved": "Item salvo.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Localiza\u00e7\u00f5es de M\u00eddia",
|
"HeaderMediaLocations": "Localiza\u00e7\u00f5es de M\u00eddia",
|
||||||
"LabelFolderTypeValue": "Tipo de pasta: {0}",
|
"LabelFolderTypeValue": "Tipo de pasta: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Opcional: Substitui\u00e7\u00e3o de caminho pode mapear caminhos do servidor para compartilhamentos de rede de forma a que os clientes possam acessar para reprodu\u00e7\u00e3o direta.",
|
"LabelPathSubstitutionHelp": "Opcional: Substitui\u00e7\u00e3o de caminho pode mapear caminhos do servidor para compartilhamentos de rede de forma a que os clientes possam acessar para reprodu\u00e7\u00e3o direta.",
|
||||||
"FolderTypeMixed": "V\u00eddeos misturados",
|
"FolderTypeMixed": "Conte\u00fado misto",
|
||||||
"FolderTypeMovies": "Filmes",
|
"FolderTypeMovies": "Filmes",
|
||||||
"FolderTypeMusic": "M\u00fasica",
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "e controle facilmente outros dispositivos e apps do Media Browser",
|
"WebClientTourMobile2": "e controle facilmente outros dispositivos e apps do Media Browser",
|
||||||
"MessageEnjoyYourStay": "Divirta-se",
|
"MessageEnjoyYourStay": "Divirta-se",
|
||||||
"DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.",
|
"DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.",
|
"DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.",
|
||||||
"DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.",
|
"DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e intros personalizadas antes da fun\u00e7\u00e3o principal.",
|
||||||
"DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem do cap\u00edtulo para seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.",
|
"DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem do cap\u00edtulo para seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Opcional. Defina o n\u00famero limite de itens que ser\u00e3o sincronizados.",
|
"LabelItemLimitHelp": "Opcional. Defina o n\u00famero limite de itens que ser\u00e3o sincronizados.",
|
||||||
"MessageBookPluginRequired": "Requer a instala\u00e7\u00e3o do plugin Bookshelf",
|
"MessageBookPluginRequired": "Requer a instala\u00e7\u00e3o do plugin Bookshelf",
|
||||||
"MessageGamePluginRequired": "Requer a instala\u00e7\u00e3o do plugin GameBrowser",
|
"MessageGamePluginRequired": "Requer a instala\u00e7\u00e3o do plugin GameBrowser",
|
||||||
"MessageMixedContentHelp": "O conte\u00fado ser\u00e1 exibido como uma estrutura de pasta simples"
|
"MessageMixedContentHelp": "O conte\u00fado ser\u00e1 exibido em uma estrutura de pasta simples"
|
||||||
}
|
}
|
@ -36,10 +36,11 @@
|
|||||||
"LabelMovie": "Movie",
|
"LabelMovie": "Movie",
|
||||||
"LabelMusicVideo": "Music Video",
|
"LabelMusicVideo": "Music Video",
|
||||||
"LabelEpisode": "Episode",
|
"LabelEpisode": "Episode",
|
||||||
"LabelSeries": "Series",
|
"LabelSeries": "S\u00e9rie",
|
||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(falhou)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -63,7 +64,7 @@
|
|||||||
"ButtonPlay": "Reproduzir",
|
"ButtonPlay": "Reproduzir",
|
||||||
"ButtonEdit": "Editar",
|
"ButtonEdit": "Editar",
|
||||||
"ButtonQueue": "Queue",
|
"ButtonQueue": "Queue",
|
||||||
"ButtonPlayTrailer": "Play trailer",
|
"ButtonPlayTrailer": "Reproduzir trailer",
|
||||||
"ButtonPlaylist": "Playlist",
|
"ButtonPlaylist": "Playlist",
|
||||||
"ButtonPreviousTrack": "Faixa Anterior",
|
"ButtonPreviousTrack": "Faixa Anterior",
|
||||||
"LabelEnabled": "Enabled",
|
"LabelEnabled": "Enabled",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -384,7 +385,7 @@
|
|||||||
"PersonTypePerson": "Person",
|
"PersonTypePerson": "Person",
|
||||||
"LabelTitleDisplayOrder": "Title display order:",
|
"LabelTitleDisplayOrder": "Title display order:",
|
||||||
"OptionSortName": "Sort name",
|
"OptionSortName": "Sort name",
|
||||||
"OptionReleaseDate": "Release date",
|
"OptionReleaseDate": "Data de lan\u00e7amento",
|
||||||
"LabelSeasonNumber": "N\u00famero da temporada:",
|
"LabelSeasonNumber": "N\u00famero da temporada:",
|
||||||
"LabelDiscNumber": "Disc number",
|
"LabelDiscNumber": "Disc number",
|
||||||
"LabelParentNumber": "Parent number",
|
"LabelParentNumber": "Parent number",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430",
|
"LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430",
|
||||||
"LabelCancelled": "(\u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e)",
|
"LabelCancelled": "(\u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e)",
|
||||||
"LabelFailed": "(\u043d\u0435\u0443\u0434\u0430\u0447\u043d\u043e)",
|
"LabelFailed": "(\u043d\u0435\u0443\u0434\u0430\u0447\u043d\u043e)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0430)",
|
"LabelAbortedByServerShutdown": "(\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0430)",
|
||||||
"LabelScheduledTaskLastRan": "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u043b\u0430\u0441\u044c {0}, \u0437\u0430\u043d\u044f\u043b\u0430 {1}.",
|
"LabelScheduledTaskLastRan": "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u043b\u0430\u0441\u044c {0}, \u0437\u0430\u043d\u044f\u043b\u0430 {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0438",
|
"HeaderDeleteTaskTrigger": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0438",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e",
|
"ButtonMoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e",
|
||||||
"ButtonBrowseOnlineImages": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0441\u0435\u0442\u0438",
|
"ButtonBrowseOnlineImages": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \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",
|
"HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
|
||||||
"ConfirmDeleteItem": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
"MessagePleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.",
|
||||||
"MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
"MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.",
|
||||||
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
"MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
"HeaderMediaLocations": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
|
||||||
"LabelFolderTypeValue": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438: {0}",
|
"LabelFolderTypeValue": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438: {0}",
|
||||||
"LabelPathSubstitutionHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0443\u0442\u0435\u0439 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u043f\u0443\u0442\u0435\u0439 \u0441\u043e \u0441\u0435\u0442\u0435\u0432\u044b\u043c\u0438 \u043e\u0431\u0449\u0438\u043c\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
|
"LabelPathSubstitutionHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0443\u0442\u0435\u0439 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u043f\u0443\u0442\u0435\u0439 \u0441\u043e \u0441\u0435\u0442\u0435\u0432\u044b\u043c\u0438 \u043e\u0431\u0449\u0438\u043c\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
|
||||||
"FolderTypeMixed": "\u0421\u043c\u0435\u0448\u0430\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b",
|
"FolderTypeMixed": "\u0420\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||||
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
||||||
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||||
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "\u0438 \u0441 \u043b\u0435\u0433\u043a\u043e\u0441\u0442\u044c\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 Media Browser",
|
"WebClientTourMobile2": "\u0438 \u0441 \u043b\u0435\u0433\u043a\u043e\u0441\u0442\u044c\u044e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 Media Browser",
|
||||||
"MessageEnjoyYourStay": "\u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u044f\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f",
|
"MessageEnjoyYourStay": "\u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u044f\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f",
|
||||||
"DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u043d\u0430\u044f \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u043e \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044e \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u0412\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u0432\u0441\u0435\u0433\u0434\u0430 \u0437\u043d\u0430\u0442\u044c, \u043a\u0442\u043e \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u043c \u0438 \u0433\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f.",
|
"DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u043d\u0430\u044f \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043f\u043e \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044e \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u0412\u044b \u0431\u0443\u0434\u0435\u0442\u0435 \u0432\u0441\u0435\u0433\u0434\u0430 \u0437\u043d\u0430\u0442\u044c, \u043a\u0442\u043e \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u043c \u0438 \u0433\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0434\u0440\u0443\u0437\u0435\u0439 \u0438 \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438, \u043a\u0430\u0436\u0434\u0443\u044e \u0441 \u0438\u0445 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c \u0438 \u0442.\u0434.",
|
"DashboardTourUsers": "\u0421\u0432\u043e\u0431\u043e\u0434\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0434\u0440\u0443\u0437\u0435\u0439 \u0438 \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438, \u043a\u0430\u0436\u0434\u0443\u044e \u0441 \u0438\u0445 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0430\u0432\u0430\u043c\u0438, \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c \u0438 \u0442.\u0434.",
|
||||||
"DashboardTourCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u043f\u0440\u0438\u0432\u043d\u043e\u0441\u0438\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u043f\u0440\u044f\u043c\u0438\u043a\u043e\u043c \u0432 \u0432\u0430\u0448\u0443 \u0433\u043e\u0441\u0442\u0438\u043d\u0443\u044e, \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u043d\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u0433\u043b\u0430\u0432\u043d\u044b\u043c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u043c.",
|
"DashboardTourCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u043f\u0440\u0438\u0432\u043d\u043e\u0441\u0438\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u0438\u043d\u043e\u0437\u0430\u043b\u0430 \u043f\u0440\u044f\u043c\u0438\u043a\u043e\u043c \u0432 \u0432\u0430\u0448\u0443 \u0433\u043e\u0441\u0442\u0438\u043d\u0443\u044e, \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u043d\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u0433\u043b\u0430\u0432\u043d\u044b\u043c \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u043c.",
|
||||||
"DashboardTourChapters": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043a \u0432\u0438\u0434\u0435\u043e, \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.",
|
"DashboardTourChapters": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043a \u0432\u0438\u0434\u0435\u043e, \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u0438 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.",
|
||||||
@ -644,11 +646,11 @@
|
|||||||
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
"HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
|
||||||
"OptionAutomaticallySyncNewContent": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
"OptionAutomaticallySyncNewContent": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||||
"OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u0434\u0430\u043d\u043d\u0443\u044e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c.",
|
"OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435, \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0432 \u0434\u0430\u043d\u043d\u0443\u044e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044e, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c.",
|
||||||
"OptionSyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b.",
|
"OptionSyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
"OptionSyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b, \u0430 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u0441\u043b\u0435 \u0438\u0445 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.",
|
"OptionSyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u0441\u0430\u043c\u0438 \u0432\u0438\u0434\u0435\u043e \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u043e\u0441\u043b\u0435 \u0438\u0445 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.",
|
||||||
"LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:",
|
"LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:",
|
||||||
"LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u0417\u0430\u0434\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.",
|
"LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u0417\u0430\u0434\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f.",
|
||||||
"MessageBookPluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 Bookshelf",
|
"MessageBookPluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 Bookshelf",
|
||||||
"MessageGamePluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 GameBrowser",
|
"MessageGamePluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 GameBrowser",
|
||||||
"MessageMixedContentHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0430\u043f\u043e\u043a"
|
"MessageMixedContentHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043e\u0431\u044b\u0447\u043d\u043e\u0439 \u043f\u0430\u043f\u043a\u0438"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Avbryter",
|
"LabelStopping": "Avbryter",
|
||||||
"LabelCancelled": "(avbr\u00f6ts)",
|
"LabelCancelled": "(avbr\u00f6ts)",
|
||||||
"LabelFailed": "(misslyckades)",
|
"LabelFailed": "(misslyckades)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(avbr\u00f6ts eftersom servern st\u00e4ngdes av)",
|
"LabelAbortedByServerShutdown": "(avbr\u00f6ts eftersom servern st\u00e4ngdes av)",
|
||||||
"LabelScheduledTaskLastRan": "Senast k\u00f6rd {0}, tog {1}",
|
"LabelScheduledTaskLastRan": "Senast k\u00f6rd {0}, tog {1}",
|
||||||
"HeaderDeleteTaskTrigger": "Ta bort aktivitetsutl\u00f6sare",
|
"HeaderDeleteTaskTrigger": "Ta bort aktivitetsutl\u00f6sare",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "H\u00f6ger",
|
"ButtonMoveRight": "H\u00f6ger",
|
||||||
"ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
|
"ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
|
||||||
"HeaderDeleteItem": "Radera objekt",
|
"HeaderDeleteItem": "Radera objekt",
|
||||||
"ConfirmDeleteItem": "\u00c4r du s\u00e4ker p\u00e5 att du vill radera det h\u00e4r objektet fr\u00e5n biblioteket?",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
"MessagePleaseEnterNameOrId": "Ange ett namn eller externt id.",
|
||||||
"MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.",
|
"MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.",
|
||||||
"MessageItemSaved": "Objektet har sparats.",
|
"MessageItemSaved": "Objektet har sparats.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Lagringsplatser f\u00f6r media",
|
"HeaderMediaLocations": "Lagringsplatser f\u00f6r media",
|
||||||
"LabelFolderTypeValue": "Typ av mapp: {0}",
|
"LabelFolderTypeValue": "Typ av mapp: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Tillval: 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.",
|
"LabelPathSubstitutionHelp": "Tillval: 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.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Filmer",
|
"FolderTypeMovies": "Filmer",
|
||||||
"FolderTypeMusic": "Musik",
|
"FolderTypeMusic": "Musik",
|
||||||
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "och kan enkelt fj\u00e4rrstyra andra enheter och Media Browser-appar",
|
"WebClientTourMobile2": "och kan enkelt fj\u00e4rrstyra andra enheter och Media Browser-appar",
|
||||||
"MessageEnjoyYourStay": "Ha ett trevligt bes\u00f6k",
|
"MessageEnjoyYourStay": "Ha ett trevligt bes\u00f6k",
|
||||||
"DashboardTourDashboard": "Via serverns kontrollpanel kan du \u00f6vervaka din server och alla anv\u00e4ndare. Du kommer alltid att kunna veta vem som g\u00f6r vad och var de \u00e4r.",
|
"DashboardTourDashboard": "Via serverns kontrollpanel kan du \u00f6vervaka din server och alla anv\u00e4ndare. Du kommer alltid att kunna veta vem som g\u00f6r vad och var de \u00e4r.",
|
||||||
|
"DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.",
|
||||||
"DashboardTourUsers": "Skapa enkelt anv\u00e4ndarkonton f\u00f6r dina v\u00e4nner och familj, alla med sina egna beh\u00f6righeter, biblioteks \u00e5tkomst, f\u00f6r\u00e4ldrakontroll och mycket mer.",
|
"DashboardTourUsers": "Skapa enkelt anv\u00e4ndarkonton f\u00f6r dina v\u00e4nner och familj, alla med sina egna beh\u00f6righeter, biblioteks \u00e5tkomst, f\u00f6r\u00e4ldrakontroll och mycket mer.",
|
||||||
"DashboardTourCinemaMode": "Biol\u00e4get g\u00f6r ditt vardagsrum till en biograf genom m\u00f6jligheten att visa trailers och egna vinjetter innan filmen b\u00f6rjar.",
|
"DashboardTourCinemaMode": "Biol\u00e4get g\u00f6r ditt vardagsrum till en biograf genom m\u00f6jligheten att visa trailers och egna vinjetter innan filmen b\u00f6rjar.",
|
||||||
"DashboardTourChapters": "Ta fram kapitelbildrutor fr\u00e5n videofiler f\u00f6r att f\u00e5 en snyggare presentation.",
|
"DashboardTourChapters": "Ta fram kapitelbildrutor fr\u00e5n videofiler f\u00f6r att f\u00e5 en snyggare presentation.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "\u505c\u6b62",
|
"LabelStopping": "\u505c\u6b62",
|
||||||
"LabelCancelled": "(\u5df2\u53d6\u6d88)",
|
"LabelCancelled": "(\u5df2\u53d6\u6d88)",
|
||||||
"LabelFailed": "(\u5931\u8d25)",
|
"LabelFailed": "(\u5931\u8d25)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(\u56e0\u4e3a\u670d\u52a1\u5668\u5173\u95ed\u88ab\u4e2d\u6b62)",
|
"LabelAbortedByServerShutdown": "(\u56e0\u4e3a\u670d\u52a1\u5668\u5173\u95ed\u88ab\u4e2d\u6b62)",
|
||||||
"LabelScheduledTaskLastRan": "\u6700\u540e\u8fd0\u884c {0}, \u82b1\u8d39\u65f6\u95f4 {1}.",
|
"LabelScheduledTaskLastRan": "\u6700\u540e\u8fd0\u884c {0}, \u82b1\u8d39\u65f6\u95f4 {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "\u5220\u9664\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6",
|
"HeaderDeleteTaskTrigger": "\u5220\u9664\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "\u53f3\u79fb",
|
"ButtonMoveRight": "\u53f3\u79fb",
|
||||||
"ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
|
"ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
|
||||||
"HeaderDeleteItem": "\u5220\u9664\u9879\u76ee",
|
"HeaderDeleteItem": "\u5220\u9664\u9879\u76ee",
|
||||||
"ConfirmDeleteItem": "\u4f60\u786e\u5b9a\u5e0c\u671b\u4ece\u5a92\u4f53\u5e93\u91cc\u5220\u9664\u8fd9\u4e2a\u9879\u76ee\uff1f",
|
"ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?",
|
||||||
"MessagePleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
"MessagePleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002",
|
||||||
"MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002",
|
"MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002",
|
||||||
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
"MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "\u5a92\u4f53\u4f4d\u7f6e",
|
"HeaderMediaLocations": "\u5a92\u4f53\u4f4d\u7f6e",
|
||||||
"LabelFolderTypeValue": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a {0}",
|
"LabelFolderTypeValue": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a {0}",
|
||||||
"LabelPathSubstitutionHelp": "\u53ef\u9009\uff1a\u66ff\u4ee3\u8def\u5f84\u80fd\u628a\u670d\u52a1\u5668\u8def\u5f84\u6620\u5c04\u5230\u7f51\u7edc\u5171\u4eab\uff0c\u4ece\u800c\u4f7f\u5ba2\u6237\u7aef\u53ef\u4ee5\u76f4\u63a5\u64ad\u653e\u3002",
|
"LabelPathSubstitutionHelp": "\u53ef\u9009\uff1a\u66ff\u4ee3\u8def\u5f84\u80fd\u628a\u670d\u52a1\u5668\u8def\u5f84\u6620\u5c04\u5230\u7f51\u7edc\u5171\u4eab\uff0c\u4ece\u800c\u4f7f\u5ba2\u6237\u7aef\u53ef\u4ee5\u76f4\u63a5\u64ad\u653e\u3002",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "\u7535\u5f71",
|
"FolderTypeMovies": "\u7535\u5f71",
|
||||||
"FolderTypeMusic": "\u97f3\u4e50",
|
"FolderTypeMusic": "\u97f3\u4e50",
|
||||||
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -40,6 +40,7 @@
|
|||||||
"LabelStopping": "Stopping",
|
"LabelStopping": "Stopping",
|
||||||
"LabelCancelled": "(cancelled)",
|
"LabelCancelled": "(cancelled)",
|
||||||
"LabelFailed": "(failed)",
|
"LabelFailed": "(failed)",
|
||||||
|
"ButtonHelp": "Help",
|
||||||
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
"LabelAbortedByServerShutdown": "(Aborted by server shutdown)",
|
||||||
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
"LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.",
|
||||||
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
"HeaderDeleteTaskTrigger": "Delete Task Trigger",
|
||||||
@ -249,7 +250,7 @@
|
|||||||
"ButtonMoveRight": "Move right",
|
"ButtonMoveRight": "Move right",
|
||||||
"ButtonBrowseOnlineImages": "Browse online images",
|
"ButtonBrowseOnlineImages": "Browse online images",
|
||||||
"HeaderDeleteItem": "Delete Item",
|
"HeaderDeleteItem": "Delete Item",
|
||||||
"ConfirmDeleteItem": "Are you sure you wish to delete this item from your library?",
|
"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.",
|
"MessagePleaseEnterNameOrId": "Please enter a name or an external Id.",
|
||||||
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
"MessageValueNotCorrect": "The value entered is not correct. Please try again.",
|
||||||
"MessageItemSaved": "Item saved.",
|
"MessageItemSaved": "Item saved.",
|
||||||
@ -412,7 +413,7 @@
|
|||||||
"HeaderMediaLocations": "Media Locations",
|
"HeaderMediaLocations": "Media Locations",
|
||||||
"LabelFolderTypeValue": "Folder type: {0}",
|
"LabelFolderTypeValue": "Folder type: {0}",
|
||||||
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
"LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.",
|
||||||
"FolderTypeMixed": "Mixed videos",
|
"FolderTypeMixed": "Mixed content",
|
||||||
"FolderTypeMovies": "Movies",
|
"FolderTypeMovies": "Movies",
|
||||||
"FolderTypeMusic": "Music",
|
"FolderTypeMusic": "Music",
|
||||||
"FolderTypeAdultVideos": "Adult videos",
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
@ -588,6 +589,7 @@
|
|||||||
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
"WebClientTourMobile2": "and easily controls other devices and Media Browser apps",
|
||||||
"MessageEnjoyYourStay": "Enjoy your stay",
|
"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.",
|
"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.",
|
"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.",
|
"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.",
|
"DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.",
|
||||||
@ -650,5 +652,5 @@
|
|||||||
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
"LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.",
|
||||||
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
"MessageBookPluginRequired": "Requires installation of the Bookshelf plugin",
|
||||||
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
"MessageGamePluginRequired": "Requires installation of the GameBrowser plugin",
|
||||||
"MessageMixedContentHelp": "Content will be displayed with as a plain folder structure"
|
"MessageMixedContentHelp": "Content will be displayed as a plain folder structure"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u0645\u0648\u0627\u0641\u0642",
|
"ButtonOk": "\u0645\u0648\u0627\u0641\u0642",
|
||||||
"ButtonCancel": "\u0627\u0644\u063a\u0627\u0621",
|
"ButtonCancel": "\u0627\u0644\u063a\u0627\u0621",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "\u0627\u0639\u062f\u0627\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
|
"HeaderSetupLibrary": "\u0627\u0639\u062f\u0627\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
|
||||||
"ButtonAddMediaFolder": "\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637",
|
"ButtonAddMediaFolder": "\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637",
|
||||||
"LabelFolderType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:",
|
"LabelFolderType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancel",
|
"ButtonCancel": "Cancel",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "Add media folder",
|
"ButtonAddMediaFolder": "Add media folder",
|
||||||
"LabelFolderType": "Folder type:",
|
"LabelFolderType": "Folder type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Zru\u0161it",
|
"ButtonCancel": "Zru\u0161it",
|
||||||
"ButtonNew": "Nov\u00e9",
|
"ButtonNew": "Nov\u00e9",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Nastaven\u00ed Va\u0161i knihovny m\u00e9di\u00ed",
|
"HeaderSetupLibrary": "Nastaven\u00ed Va\u0161i knihovny m\u00e9di\u00ed",
|
||||||
"ButtonAddMediaFolder": "P\u0159idat slo\u017eku m\u00e9di\u00ed",
|
"ButtonAddMediaFolder": "P\u0159idat slo\u017eku m\u00e9di\u00ed",
|
||||||
"LabelFolderType": "Typ slo\u017eky:",
|
"LabelFolderType": "Typ slo\u017eky:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Annuller",
|
"ButtonCancel": "Annuller",
|
||||||
"ButtonNew": "Ny",
|
"ButtonNew": "Ny",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Konfigurer dit medie bibliotek",
|
"HeaderSetupLibrary": "Konfigurer dit medie bibliotek",
|
||||||
"ButtonAddMediaFolder": "Tilf\u00f8j medie mappe",
|
"ButtonAddMediaFolder": "Tilf\u00f8j medie mappe",
|
||||||
"LabelFolderType": "Mappe type:",
|
"LabelFolderType": "Mappe type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Abbrechen",
|
"ButtonCancel": "Abbrechen",
|
||||||
"ButtonNew": "Neu",
|
"ButtonNew": "Neu",
|
||||||
|
"FolderTypeMixed": "Gemischte Inhalte",
|
||||||
|
"FolderTypeMovies": "Filme",
|
||||||
|
"FolderTypeMusic": "Musik",
|
||||||
|
"FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
|
||||||
|
"FolderTypePhotos": "Fotos",
|
||||||
|
"FolderTypeMusicVideos": "Musikvideos",
|
||||||
|
"FolderTypeHomeVideos": "Heimvideos",
|
||||||
|
"FolderTypeGames": "Spiele",
|
||||||
|
"FolderTypeBooks": "B\u00fccher",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "\u00dcbernehmen",
|
||||||
|
"LabelContentType": "Inhalte-Typ:",
|
||||||
"HeaderSetupLibrary": "Medienbibliothek einrichten",
|
"HeaderSetupLibrary": "Medienbibliothek einrichten",
|
||||||
"ButtonAddMediaFolder": "Medienverzeichnis hinzuf\u00fcgen",
|
"ButtonAddMediaFolder": "Medienverzeichnis hinzuf\u00fcgen",
|
||||||
"LabelFolderType": "Verzeichnistyp:",
|
"LabelFolderType": "Verzeichnistyp:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Rolle",
|
"HeaderTrailerReel": "Trailer Rolle",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Spiele nur bisher nicht gesehene Trailer",
|
"OptionPlayUnwatchedTrailersOnly": "Spiele nur bisher nicht gesehene Trailer",
|
||||||
"HeaderTrailerReelHelp": "Starte eine Trailer Rolle, um dir eine lang andauernde Playlist mit Trailern anzuschauen.",
|
"HeaderTrailerReelHelp": "Starte eine Trailer Rolle, um dir eine lang andauernde Playlist mit Trailern anzuschauen.",
|
||||||
"MessageNoTrailersFound": "Keine Trailer gefunden. Installiere das Trailer Channel Plugin, um eine Bibliothek aus Trailern vom Internet zu importieren.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Neue Benutzer",
|
"HeaderNewUsers": "Neue Benutzer",
|
||||||
"ButtonSignUp": "Anmeldung",
|
"ButtonSignUp": "Anmeldung",
|
||||||
"ButtonForgotPassword": "Passwort vergessen?",
|
"ButtonForgotPassword": "Passwort vergessen?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Einige Ger\u00e4te zeigen m\u00f6glicherweise Darstellungsfehler wenn mehrere Bilder mit Didl eingebunden wurden.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Einige Ger\u00e4te zeigen m\u00f6glicherweise Darstellungsfehler wenn mehrere Bilder mit Didl eingebunden wurden.",
|
||||||
"TabActivity": "Aktivit\u00e4t",
|
"TabActivity": "Aktivit\u00e4t",
|
||||||
"TitleSync": "Synchronisation",
|
"TitleSync": "Synchronisation",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Erlaube das Synchronisieren zu Ger\u00e4ten.",
|
||||||
|
"NameSeasonUnknown": "Staffel unbekannt",
|
||||||
|
"NameSeasonNumber": "Staffel {0}",
|
||||||
|
"LabelNewUserNameHelp": "Benutzernamen k\u00f6nnen Zeichen (a-z), Zahlen (0-9), Striche (-), Unterstriche (_), Apostrophe (') und Punkte (.) enthalten."
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u03b5\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
"ButtonOk": "\u03b5\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
|
||||||
"ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ",
|
"ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 Media",
|
"ButtonAddMediaFolder": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 Media",
|
||||||
"LabelFolderType": "\u03a4\u03cd\u03c0\u03bf \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 ",
|
"LabelFolderType": "\u03a4\u03cd\u03c0\u03bf \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 ",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancel",
|
"ButtonCancel": "Cancel",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "Add media folder",
|
"ButtonAddMediaFolder": "Add media folder",
|
||||||
"LabelFolderType": "Folder type:",
|
"LabelFolderType": "Folder type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancel",
|
"ButtonCancel": "Cancel",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "Add media folder",
|
"ButtonAddMediaFolder": "Add media folder",
|
||||||
"LabelFolderType": "Folder type:",
|
"LabelFolderType": "Folder type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "OK",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "Cancelar",
|
"ButtonCancel": "Cancelar",
|
||||||
"ButtonNew": "Nuevo",
|
"ButtonNew": "Nuevo",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Configurar biblioteca de medios",
|
"HeaderSetupLibrary": "Configurar biblioteca de medios",
|
||||||
"ButtonAddMediaFolder": "Agregar una carpeta de medios",
|
"ButtonAddMediaFolder": "Agregar una carpeta de medios",
|
||||||
"LabelFolderType": "Tipo de carpeta:",
|
"LabelFolderType": "Tipo de carpeta:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancelar",
|
"ButtonCancel": "Cancelar",
|
||||||
"ButtonNew": "Nuevo",
|
"ButtonNew": "Nuevo",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Pel\u00edculas",
|
||||||
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
|
"FolderTypeAdultVideos": "Videos para adultos",
|
||||||
|
"FolderTypePhotos": "Fotos",
|
||||||
|
"FolderTypeMusicVideos": "Videos musicales",
|
||||||
|
"FolderTypeHomeVideos": "Videos caseros",
|
||||||
|
"FolderTypeGames": "Juegos",
|
||||||
|
"FolderTypeBooks": "Libros",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Configurar su biblioteca de medios",
|
"HeaderSetupLibrary": "Configurar su biblioteca de medios",
|
||||||
"ButtonAddMediaFolder": "Agregar carpeta de medios",
|
"ButtonAddMediaFolder": "Agregar carpeta de medios",
|
||||||
"LabelFolderType": "Tipo de carpeta:",
|
"LabelFolderType": "Tipo de carpeta:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Carrete de Avances",
|
"HeaderTrailerReel": "Carrete de Avances",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Reproducir \u00fanicamente avances no vistos",
|
"OptionPlayUnwatchedTrailersOnly": "Reproducir \u00fanicamente avances no vistos",
|
||||||
"HeaderTrailerReelHelp": "Iniciar un carrete de avances para reproducir una lista de reproducci\u00f3n de larga duraci\u00f3n de avances.",
|
"HeaderTrailerReelHelp": "Iniciar un carrete de avances para reproducir una lista de reproducci\u00f3n de larga duraci\u00f3n de avances.",
|
||||||
"MessageNoTrailersFound": "No se encontraron avances. Instalar el complemento \"Canal trailers\" para importar una biblioteca de avances de internet.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nuevos Usuarios",
|
"HeaderNewUsers": "Nuevos Usuarios",
|
||||||
"ButtonSignUp": "Registrarse",
|
"ButtonSignUp": "Registrarse",
|
||||||
"ButtonForgotPassword": "\u00bfOlvidaste la contrase\u00f1a?",
|
"ButtonForgotPassword": "\u00bfOlvidaste la contrase\u00f1a?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Algunos dispositivos no renderisaran apropiadamente si hay m\u00faltiples im\u00e1genes incrustadas en el Didl",
|
"LabelEnableSingleImageInDidlLimitHelp": "Algunos dispositivos no renderisaran apropiadamente si hay m\u00faltiples im\u00e1genes incrustadas en el Didl",
|
||||||
"TabActivity": "Actividad",
|
"TabActivity": "Actividad",
|
||||||
"TitleSync": "Sinc",
|
"TitleSync": "Sinc",
|
||||||
"OptionAllowSyncContent": "Permitir sincronizaci\u00f3n de medios con dispositivos"
|
"OptionAllowSyncContent": "Permitir sincronizaci\u00f3n de medios con dispositivos",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Lopeta",
|
"ButtonCancel": "Lopeta",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Aseta sinun media kirjasto",
|
"HeaderSetupLibrary": "Aseta sinun media kirjasto",
|
||||||
"ButtonAddMediaFolder": "Lis\u00e4\u00e4 media kansio",
|
"ButtonAddMediaFolder": "Lis\u00e4\u00e4 media kansio",
|
||||||
"LabelFolderType": "Kansion tyyppi:",
|
"LabelFolderType": "Kansion tyyppi:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Annuler",
|
"ButtonCancel": "Annuler",
|
||||||
"ButtonNew": "Nouveau",
|
"ButtonNew": "Nouveau",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Films",
|
||||||
|
"FolderTypeMusic": "Musique",
|
||||||
|
"FolderTypeAdultVideos": "Vid\u00e9os Adultes",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Vid\u00e9os Musical",
|
||||||
|
"FolderTypeHomeVideos": "Vid\u00e9os personnelles",
|
||||||
|
"FolderTypeGames": "Jeux",
|
||||||
|
"FolderTypeBooks": "Livres",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Type de contenu :",
|
||||||
"HeaderSetupLibrary": "Configurer votre biblioth\u00e8que de m\u00e9dia",
|
"HeaderSetupLibrary": "Configurer votre biblioth\u00e8que de m\u00e9dia",
|
||||||
"ButtonAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dia",
|
"ButtonAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dia",
|
||||||
"LabelFolderType": "Type de r\u00e9pertoire:",
|
"LabelFolderType": "Type de r\u00e9pertoire:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer reel",
|
"HeaderTrailerReel": "Trailer reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Lire seulement les bandes-annonces non lus.",
|
"OptionPlayUnwatchedTrailersOnly": "Lire seulement les bandes-annonces non lus.",
|
||||||
"HeaderTrailerReelHelp": "Commencer un \"trailer reel\" pour lire une longue liste de lecture de bandes-annonces.",
|
"HeaderTrailerReelHelp": "Commencer un \"trailer reel\" pour lire une longue liste de lecture de bandes-annonces.",
|
||||||
"MessageNoTrailersFound": "Aucune bande-annonce trouv\u00e9e. Installer le plugin \"Trailer channel\" pour importer une biblioth\u00e8que de bandes-annonces Internet.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nouveaux utilisateurs",
|
"HeaderNewUsers": "Nouveaux utilisateurs",
|
||||||
"ButtonSignUp": "S'inscrire",
|
"ButtonSignUp": "S'inscrire",
|
||||||
"ButtonForgotPassword": "Mot de passe oubli\u00e9 ?",
|
"ButtonForgotPassword": "Mot de passe oubli\u00e9 ?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Quelques p\u00e9riph\u00e9riques ne fourniront pas un rendu correct si plusieurs images sont int\u00e9gr\u00e9es dans Didl",
|
"LabelEnableSingleImageInDidlLimitHelp": "Quelques p\u00e9riph\u00e9riques ne fourniront pas un rendu correct si plusieurs images sont int\u00e9gr\u00e9es dans Didl",
|
||||||
"TabActivity": "Activit\u00e9",
|
"TabActivity": "Activit\u00e9",
|
||||||
"TitleSync": "Sync.",
|
"TitleSync": "Sync.",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Saison inconnue",
|
||||||
|
"NameSeasonNumber": "Saison {0}",
|
||||||
|
"LabelNewUserNameHelp": "Les noms d'utilisateur peuvent contenir des lettres (a-z), des chiffres (0-9), des tirets (-), des tirets bas (_), des apostrophes (') et des points (.)."
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u05d0\u05e9\u05e8",
|
"ButtonOk": "\u05d0\u05e9\u05e8",
|
||||||
"ButtonCancel": "\u05d1\u05d8\u05dc",
|
"ButtonCancel": "\u05d1\u05d8\u05dc",
|
||||||
"ButtonNew": "\u05d7\u05d3\u05e9",
|
"ButtonNew": "\u05d7\u05d3\u05e9",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da",
|
"HeaderSetupLibrary": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da",
|
||||||
"ButtonAddMediaFolder": "\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4",
|
"ButtonAddMediaFolder": "\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4",
|
||||||
"LabelFolderType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:",
|
"LabelFolderType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Odustani",
|
"ButtonCancel": "Odustani",
|
||||||
"ButtonNew": "Novo",
|
"ButtonNew": "Novo",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Postavi svoju medijsku biblioteku",
|
"HeaderSetupLibrary": "Postavi svoju medijsku biblioteku",
|
||||||
"ButtonAddMediaFolder": "Dodaj mapu sa medijem",
|
"ButtonAddMediaFolder": "Dodaj mapu sa medijem",
|
||||||
"LabelFolderType": "Tip mape:",
|
"LabelFolderType": "Tip mape:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "OK",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "Annulla",
|
"ButtonCancel": "Annulla",
|
||||||
"ButtonNew": "Nuovo",
|
"ButtonNew": "Nuovo",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Film",
|
||||||
|
"FolderTypeMusic": "Musica",
|
||||||
|
"FolderTypeAdultVideos": "Video per adulti",
|
||||||
|
"FolderTypePhotos": "Foto",
|
||||||
|
"FolderTypeMusicVideos": "Video musicali",
|
||||||
|
"FolderTypeHomeVideos": "Video personali",
|
||||||
|
"FolderTypeGames": "Giochi",
|
||||||
|
"FolderTypeBooks": "Libri",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Configura la tua libreria",
|
"HeaderSetupLibrary": "Configura la tua libreria",
|
||||||
"ButtonAddMediaFolder": "Aggiungi cartella",
|
"ButtonAddMediaFolder": "Aggiungi cartella",
|
||||||
"LabelFolderType": "Tipo cartella",
|
"LabelFolderType": "Tipo cartella",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer b.",
|
"HeaderTrailerReel": "Trailer b.",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Riproduci solo i trailer non visti",
|
"OptionPlayUnwatchedTrailersOnly": "Riproduci solo i trailer non visti",
|
||||||
"HeaderTrailerReelHelp": "Inizia a riprodurre una lunga playlist di trailer",
|
"HeaderTrailerReelHelp": "Inizia a riprodurre una lunga playlist di trailer",
|
||||||
"MessageNoTrailersFound": "Nessun Trailer trovato.Installa Il plug in dei traler per importare la libreria dei trailer da internet",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nuovo Utente",
|
"HeaderNewUsers": "Nuovo Utente",
|
||||||
"ButtonSignUp": "Iscriviti",
|
"ButtonSignUp": "Iscriviti",
|
||||||
"ButtonForgotPassword": "Dimenticato la password?",
|
"ButtonForgotPassword": "Dimenticato la password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b",
|
"ButtonOk": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b",
|
||||||
"ButtonCancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
"ButtonCancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
|
||||||
"ButtonNew": "\u0416\u0430\u0441\u0430\u0443",
|
"ButtonNew": "\u0416\u0430\u0441\u0430\u0443",
|
||||||
|
"FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
|
||||||
|
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
|
||||||
|
"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",
|
||||||
|
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440",
|
||||||
|
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
|
||||||
|
"FolderTypeHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456",
|
||||||
|
"FolderTypeGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
|
||||||
|
"FolderTypeBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440",
|
||||||
|
"FolderTypeTvShows": "\u0422\u0414",
|
||||||
|
"FolderTypeInherit": "\u041c\u04b1\u0440\u0430\u0493\u0430 \u0438\u0435\u043b\u0435\u043d\u0443",
|
||||||
|
"LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:",
|
||||||
"HeaderSetupLibrary": "\u0422\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
"HeaderSetupLibrary": "\u0422\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
|
||||||
"ButtonAddMediaFolder": "\u0422\u0430\u0441\u0443\u0448\u044b \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443",
|
"ButtonAddMediaFolder": "\u0422\u0430\u0441\u0443\u0448\u044b \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443",
|
||||||
"LabelFolderType": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456:",
|
"LabelFolderType": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456:",
|
||||||
@ -682,9 +694,9 @@
|
|||||||
"OptionProfilePhoto": "\u0424\u043e\u0442\u043e",
|
"OptionProfilePhoto": "\u0424\u043e\u0442\u043e",
|
||||||
"LabelUserLibrary": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u0441\u044b",
|
"LabelUserLibrary": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u0441\u044b",
|
||||||
"LabelUserLibraryHelp": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u049b\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u0441\u044b\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437. \u04d8\u0434\u0435\u043f\u043a\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
|
"LabelUserLibraryHelp": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u049b\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u0441\u044b\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437. \u04d8\u0434\u0435\u043f\u043a\u0456 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
|
||||||
"OptionPlainStorageFolders": "\u0411\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u0430\u0439 \u0441\u0430\u049b\u0442\u0430\u0443 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
"OptionPlainStorageFolders": "\u0411\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u0441\u0430\u049b\u0442\u0430\u0443 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
||||||
"OptionPlainStorageFoldersHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 DIDL \u0456\u0448\u0456\u043d\u0434\u0435 \"object.container.person.musicArtist\" \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b\u043b\u0430\u0443 \u0442\u04af\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \"object.container.storageFolder\" \u0431\u043e\u043b\u044b\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
"OptionPlainStorageFoldersHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 DIDL \u0456\u0448\u0456\u043d\u0434\u0435 \"object.container.person.musicArtist\" \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b\u043b\u0430\u0443 \u0442\u04af\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \"object.container.storageFolder\" \u0431\u043e\u043b\u044b\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
||||||
"OptionPlainVideoItems": "\u0411\u0430\u0440\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u0439 \u0431\u0435\u0439\u043d\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
"OptionPlainVideoItems": "\u0411\u0430\u0440\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u0431\u0435\u0439\u043d\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
||||||
"OptionPlainVideoItemsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 DIDL \u0456\u0448\u0456\u043d\u0434\u0435 \"object.item.videoItem.movie\" \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b\u043b\u0430\u0443 \u0442\u04af\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \"object.item.videoItem\" \u0431\u043e\u043b\u044b\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
"OptionPlainVideoItemsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 DIDL \u0456\u0448\u0456\u043d\u0434\u0435 \"object.item.videoItem.movie\" \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b\u043b\u0430\u0443 \u0442\u04af\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \"object.item.videoItem\" \u0431\u043e\u043b\u044b\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
|
||||||
"LabelSupportedMediaTypes": "\u049a\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u04af\u0440\u043b\u0435\u0440\u0456:",
|
"LabelSupportedMediaTypes": "\u049a\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0442\u0430\u0441\u0443\u0448\u044b\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u04af\u0440\u043b\u0435\u0440\u0456:",
|
||||||
"TabIdentification": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
|
"TabIdentification": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
|
||||||
@ -1049,7 +1061,7 @@
|
|||||||
"OptionOthers": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440",
|
"OptionOthers": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440",
|
||||||
"HeaderDownloadPeopleMetadataForHelp": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0493\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u04b1\u0441\u044b\u043d\u0430\u0434\u044b, \u0431\u0456\u0440\u0430\u049b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u043b\u0435\u0440\u0456 \u0431\u0430\u044f\u0443\u043b\u0430\u0439\u0434\u044b.",
|
"HeaderDownloadPeopleMetadataForHelp": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u049b\u0430\u043d\u0434\u0430 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0493\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u04b1\u0441\u044b\u043d\u0430\u0434\u044b, \u0431\u0456\u0440\u0430\u049b \u0442\u0430\u0441\u0443\u0448\u044b\u0445\u0430\u043d\u0430\u043d\u044b\u04a3 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u043b\u0435\u0440\u0456 \u0431\u0430\u044f\u0443\u043b\u0430\u0439\u0434\u044b.",
|
||||||
"ViewTypeFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440",
|
"ViewTypeFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440",
|
||||||
"LabelDisplayFoldersView": "\u0416\u0430\u0439 \u0442\u0430\u0441\u0443\u0448\u044b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
"LabelDisplayFoldersView": "\u041a\u04d9\u0434\u0456\u043c\u0433\u0456 \u0442\u0430\u0441\u0443\u0448\u044b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
|
||||||
"ViewTypeLiveTvRecordingGroups": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
"ViewTypeLiveTvRecordingGroups": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
|
||||||
"ViewTypeLiveTvChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
|
"ViewTypeLiveTvChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
|
||||||
"LabelAllowLocalAccessWithoutPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0441\u0456\u0437 \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u0442\u044b\u043d\u0441\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
|
"LabelAllowLocalAccessWithoutPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0441\u0456\u0437 \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u0442\u044b\u043d\u0441\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443",
|
"HeaderTrailerReel": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
|
"OptionPlayUnwatchedTrailersOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
|
||||||
"HeaderTrailerReelHelp": "\u04b0\u0437\u0430\u049b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
|
"HeaderTrailerReelHelp": "\u04b0\u0437\u0430\u049b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
|
||||||
"MessageNoTrailersFound": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u049b\u043e\u0440\u044b\u043d \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0430\u0440\u043d\u0430\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "\u0416\u0430\u04a3\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
"HeaderNewUsers": "\u0416\u0430\u04a3\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
|
||||||
"ButtonSignUp": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
|
"ButtonSignUp": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
|
||||||
"ButtonForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?",
|
"ButtonForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "\u0415\u0433\u0435\u0440 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0441\u0443\u0440\u0435\u0442 Didl \u0456\u0448\u0456\u043d\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0441\u0435, \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0431\u0435\u0439\u0434\u0456.",
|
"LabelEnableSingleImageInDidlLimitHelp": "\u0415\u0433\u0435\u0440 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0441\u0443\u0440\u0435\u0442 Didl \u0456\u0448\u0456\u043d\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0441\u0435, \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0431\u0435\u0439\u0434\u0456.",
|
||||||
"TabActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
|
"TabActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
|
||||||
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u0443",
|
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u0443",
|
||||||
"OptionAllowSyncContent": "\u041c\u0435\u0434\u0438\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c\u0435\u043d \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443"
|
"OptionAllowSyncContent": "\u041c\u0435\u0434\u0438\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c\u0435\u043d \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0434\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
|
||||||
|
"NameSeasonUnknown": "\u0411\u0435\u043b\u0433\u0456\u0441\u0456\u0437 \u043c\u0430\u0443\u0441\u044b\u043c",
|
||||||
|
"NameSeasonNumber": "{0}-\u0441\u0435\u0437\u043e\u043d",
|
||||||
|
"LabelNewUserNameHelp": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440 (a-z), \u0441\u0430\u043d\u0434\u0430\u0440 (0-9), \u0441\u044b\u0437\u044b\u049b\u0448\u0430\u043b\u0430\u0440 (-), \u0430\u0441\u0442\u044b\u04a3\u0493\u044b \u0441\u044b\u0437\u044b\u049b\u0442\u0430\u0440 (_), \u0434\u04d9\u0439\u0435\u043a\u0448\u0435\u043b\u0435\u0440 (') \u0436\u04d9\u043d\u0435 \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440 (.) \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancel",
|
"ButtonCancel": "Cancel",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "Add media folder",
|
"ButtonAddMediaFolder": "Add media folder",
|
||||||
"LabelFolderType": "Folder type:",
|
"LabelFolderType": "Folder type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancel",
|
"ButtonCancel": "Cancel",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Setup your media library",
|
"HeaderSetupLibrary": "Setup your media library",
|
||||||
"ButtonAddMediaFolder": "Add media folder",
|
"ButtonAddMediaFolder": "Add media folder",
|
||||||
"LabelFolderType": "Folder type:",
|
"LabelFolderType": "Folder type:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "avbryt",
|
"ButtonCancel": "avbryt",
|
||||||
"ButtonNew": "Ny",
|
"ButtonNew": "Ny",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Filmer",
|
||||||
|
"FolderTypeMusic": "Musikk",
|
||||||
|
"FolderTypeAdultVideos": "Voksen videoer",
|
||||||
|
"FolderTypePhotos": "Foto",
|
||||||
|
"FolderTypeMusicVideos": "Musikk videoer",
|
||||||
|
"FolderTypeHomeVideos": "Hjemme videoer",
|
||||||
|
"FolderTypeGames": "Spill",
|
||||||
|
"FolderTypeBooks": "B\u00f8ker",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Konfigurer media-biblioteket",
|
"HeaderSetupLibrary": "Konfigurer media-biblioteket",
|
||||||
"ButtonAddMediaFolder": "Legg til media-mappe",
|
"ButtonAddMediaFolder": "Legg til media-mappe",
|
||||||
"LabelFolderType": "Mappe typpe",
|
"LabelFolderType": "Mappe typpe",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nye Brukere",
|
"HeaderNewUsers": "Nye Brukere",
|
||||||
"ButtonSignUp": "Registrering",
|
"ButtonSignUp": "Registrering",
|
||||||
"ButtonForgotPassword": "Glemt passord?",
|
"ButtonForgotPassword": "Glemt passord?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Annuleren",
|
"ButtonCancel": "Annuleren",
|
||||||
"ButtonNew": "Nieuw",
|
"ButtonNew": "Nieuw",
|
||||||
|
"FolderTypeMixed": "Gemengde inhoud",
|
||||||
|
"FolderTypeMovies": "Films",
|
||||||
|
"FolderTypeMusic": "Muziek",
|
||||||
|
"FolderTypeAdultVideos": "Adult video's",
|
||||||
|
"FolderTypePhotos": "Foto's",
|
||||||
|
"FolderTypeMusicVideos": "Muziek video's",
|
||||||
|
"FolderTypeHomeVideos": "Thuis video's",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Boeken",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "overerven",
|
||||||
|
"LabelContentType": "Inhoud type:",
|
||||||
"HeaderSetupLibrary": "Stel uw mediabibliotheek in",
|
"HeaderSetupLibrary": "Stel uw mediabibliotheek in",
|
||||||
"ButtonAddMediaFolder": "Mediamap toevoegen",
|
"ButtonAddMediaFolder": "Mediamap toevoegen",
|
||||||
"LabelFolderType": "Maptype:",
|
"LabelFolderType": "Maptype:",
|
||||||
@ -231,10 +243,10 @@
|
|||||||
"HeaderFeatureAccess": "Functie toegang",
|
"HeaderFeatureAccess": "Functie toegang",
|
||||||
"OptionAllowMediaPlayback": "Afspelen van media toestaan",
|
"OptionAllowMediaPlayback": "Afspelen van media toestaan",
|
||||||
"OptionAllowBrowsingLiveTv": "Bladeren door live tv toestaan",
|
"OptionAllowBrowsingLiveTv": "Bladeren door live tv toestaan",
|
||||||
"OptionAllowDeleteLibraryContent": "Allow deletion of library content",
|
"OptionAllowDeleteLibraryContent": "Verwijderen van bibliotheek inhoud toestaan",
|
||||||
"OptionAllowManageLiveTv": "Beheer van live tv-opnames toestaan",
|
"OptionAllowManageLiveTv": "Beheer van live tv-opnames toestaan",
|
||||||
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
|
"OptionAllowRemoteControlOthers": "Op afstand besturen van andere gebruikers toestaan",
|
||||||
"OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
|
"OptionAllowRemoteSharedDevices": "Op afstand besturen van gedeelde apparaten toestaan",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "Dlna apparaten worden als gedeeld apparaat gezien totdat een gebruiker deze gaat gebruiken.",
|
"OptionAllowRemoteSharedDevicesHelp": "Dlna apparaten worden als gedeeld apparaat gezien totdat een gebruiker deze gaat gebruiken.",
|
||||||
"HeaderRemoteControl": "Gebruik op afstand",
|
"HeaderRemoteControl": "Gebruik op afstand",
|
||||||
"OptionMissingTmdbId": "TMDB Id ontbreekt",
|
"OptionMissingTmdbId": "TMDB Id ontbreekt",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer reel",
|
"HeaderTrailerReel": "Trailer reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Speel alleen ongeziene trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Speel alleen ongeziene trailers",
|
||||||
"HeaderTrailerReelHelp": "Start trailer reel om een afspeellijst met trailers af te spelen.",
|
"HeaderTrailerReelHelp": "Start trailer reel om een afspeellijst met trailers af te spelen.",
|
||||||
"MessageNoTrailersFound": "Geen trailers gevonden. Installeer het trailer kanaal om internet trailers te importeren.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Nieuwe gebruikers",
|
"HeaderNewUsers": "Nieuwe gebruikers",
|
||||||
"ButtonSignUp": "Aanmelden",
|
"ButtonSignUp": "Aanmelden",
|
||||||
"ButtonForgotPassword": "Wachtwoord vergeten?",
|
"ButtonForgotPassword": "Wachtwoord vergeten?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Sommige apparaten zullen niet goed weergeven als er meerdere afbeeldingen ingesloten zijn in Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Sommige apparaten zullen niet goed weergeven als er meerdere afbeeldingen ingesloten zijn in Didl.",
|
||||||
"TabActivity": "Activiteit",
|
"TabActivity": "Activiteit",
|
||||||
"TitleSync": "Synchroniseer",
|
"TitleSync": "Synchroniseer",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Synchroniseren van media naar apparaten toestaan",
|
||||||
|
"NameSeasonUnknown": "Seizoen Onbekend",
|
||||||
|
"NameSeasonNumber": "Seizoen {0}",
|
||||||
|
"LabelNewUserNameHelp": "Gebruikersnamen kunnen letters (az), cijfers (0-9), streepjes, underscores (_), apostrofs (') en punten (.) bevatten\n"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Anuluj",
|
"ButtonCancel": "Anuluj",
|
||||||
"ButtonNew": "New",
|
"ButtonNew": "New",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Ustaw swoj\u0105 bibliotek\u0119",
|
"HeaderSetupLibrary": "Ustaw swoj\u0105 bibliotek\u0119",
|
||||||
"ButtonAddMediaFolder": "Dodaj folder",
|
"ButtonAddMediaFolder": "Dodaj folder",
|
||||||
"LabelFolderType": "Typ folderu:",
|
"LabelFolderType": "Typ folderu:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancelar",
|
"ButtonCancel": "Cancelar",
|
||||||
"ButtonNew": "Novo",
|
"ButtonNew": "Novo",
|
||||||
|
"FolderTypeMixed": "Conte\u00fado misto",
|
||||||
|
"FolderTypeMovies": "Filmes",
|
||||||
|
"FolderTypeMusic": "M\u00fasica",
|
||||||
|
"FolderTypeAdultVideos": "V\u00eddeos adultos",
|
||||||
|
"FolderTypePhotos": "Fotos",
|
||||||
|
"FolderTypeMusicVideos": "V\u00eddeos musicais",
|
||||||
|
"FolderTypeHomeVideos": "V\u00eddeos caseiros",
|
||||||
|
"FolderTypeGames": "Jogos",
|
||||||
|
"FolderTypeBooks": "Livros",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Herdar",
|
||||||
|
"LabelContentType": "Tipo de conte\u00fado:",
|
||||||
"HeaderSetupLibrary": "Configurar sua biblioteca de m\u00eddias",
|
"HeaderSetupLibrary": "Configurar sua biblioteca de m\u00eddias",
|
||||||
"ButtonAddMediaFolder": "Adicionar pasta de m\u00eddias",
|
"ButtonAddMediaFolder": "Adicionar pasta de m\u00eddias",
|
||||||
"LabelFolderType": "Tipo de pasta:",
|
"LabelFolderType": "Tipo de pasta:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Carrossel de Trailers",
|
"HeaderTrailerReel": "Carrossel de Trailers",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Reproduzir apenas trailers n\u00e3o assistidos",
|
"OptionPlayUnwatchedTrailersOnly": "Reproduzir apenas trailers n\u00e3o assistidos",
|
||||||
"HeaderTrailerReelHelp": "Inicie um carrossel de trailers para reproduzir uma longa lista de reprodu\u00e7\u00e3o de trailers.",
|
"HeaderTrailerReelHelp": "Inicie um carrossel de trailers para reproduzir uma longa lista de reprodu\u00e7\u00e3o de trailers.",
|
||||||
"MessageNoTrailersFound": "Nenhum trailer encontrado. Instale o plugin de canal para importar uma biblioteca de trailers da internet.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "Novos Usu\u00e1rios",
|
"HeaderNewUsers": "Novos Usu\u00e1rios",
|
||||||
"ButtonSignUp": "Entrar",
|
"ButtonSignUp": "Entrar",
|
||||||
"ButtonForgotPassword": "Esqueceu a senha?",
|
"ButtonForgotPassword": "Esqueceu a senha?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Alguns dispositivos n\u00e3o interpretar\u00e3o apropriadamente se m\u00faltiplas imagens estiverem incorporadas dentro do Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Alguns dispositivos n\u00e3o interpretar\u00e3o apropriadamente se m\u00faltiplas imagens estiverem incorporadas dentro do Didl.",
|
||||||
"TabActivity": "Atividade",
|
"TabActivity": "Atividade",
|
||||||
"TitleSync": "Sinc",
|
"TitleSync": "Sinc",
|
||||||
"OptionAllowSyncContent": "Permitir sincroniza\u00e7\u00e3o de m\u00eddia com os dispositivos"
|
"OptionAllowSyncContent": "Permitir sincroniza\u00e7\u00e3o de m\u00eddia com os dispositivos",
|
||||||
|
"NameSeasonUnknown": "Temporada Desconhecida",
|
||||||
|
"NameSeasonNumber": "Temporada {0}",
|
||||||
|
"LabelNewUserNameHelp": "Nomes de usu\u00e1rios podem conter letras (a-z), n\u00fameros (0-9), tra\u00e7os (-), sublinhados (_), ap\u00f3strofes (') e pontos (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Cancelar",
|
"ButtonCancel": "Cancelar",
|
||||||
"ButtonNew": "Novo",
|
"ButtonNew": "Novo",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Configurar biblioteca",
|
"HeaderSetupLibrary": "Configurar biblioteca",
|
||||||
"ButtonAddMediaFolder": "Adicionar pasta de media",
|
"ButtonAddMediaFolder": "Adicionar pasta de media",
|
||||||
"LabelFolderType": "Tipo de pasta",
|
"LabelFolderType": "Tipo de pasta",
|
||||||
@ -231,9 +243,9 @@
|
|||||||
"HeaderFeatureAccess": "Acesso a Caracter\u00edsticas",
|
"HeaderFeatureAccess": "Acesso a Caracter\u00edsticas",
|
||||||
"OptionAllowMediaPlayback": "Permitir reprodu\u00e7\u00e3o de multim\u00e9dia",
|
"OptionAllowMediaPlayback": "Permitir reprodu\u00e7\u00e3o de multim\u00e9dia",
|
||||||
"OptionAllowBrowsingLiveTv": "Permitir navega\u00e7\u00e3o da tv ao vivo",
|
"OptionAllowBrowsingLiveTv": "Permitir navega\u00e7\u00e3o da tv ao vivo",
|
||||||
"OptionAllowDeleteLibraryContent": "Allow deletion of library content",
|
"OptionAllowDeleteLibraryContent": "Permitir que conte\u00fado da biblioteca seja apagado",
|
||||||
"OptionAllowManageLiveTv": "Permitir gest\u00e3o das grava\u00e7\u00f5es da tv ao vivo",
|
"OptionAllowManageLiveTv": "Permitir gest\u00e3o das grava\u00e7\u00f5es da tv ao vivo",
|
||||||
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
|
"OptionAllowRemoteControlOthers": "Permitir controlo remoto de outros utilizadores",
|
||||||
"OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
|
"OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
|
||||||
"OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
|
"OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
|
||||||
"HeaderRemoteControl": "Remote Control",
|
"HeaderRemoteControl": "Remote Control",
|
||||||
@ -551,10 +563,10 @@
|
|||||||
"MessagePleaseRestartServerToFinishUpdating": "Por favor reinicie o servidor para terminar a aplica\u00e7\u00e3o das atualiza\u00e7\u00f5es.",
|
"MessagePleaseRestartServerToFinishUpdating": "Por favor reinicie o servidor para terminar a aplica\u00e7\u00e3o das atualiza\u00e7\u00f5es.",
|
||||||
"LabelDownMixAudioScale": "Escala do aumento de \u00e1udio ao fazer downmix:",
|
"LabelDownMixAudioScale": "Escala do aumento de \u00e1udio ao fazer downmix:",
|
||||||
"LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio ao fazer downmix. Defina como 1 para preservar o volume original.",
|
"LabelDownMixAudioScaleHelp": "Aumentar o \u00e1udio ao fazer downmix. Defina como 1 para preservar o volume original.",
|
||||||
"ButtonLinkKeys": "Transfer Key",
|
"ButtonLinkKeys": "Transferir Chave",
|
||||||
"LabelOldSupporterKey": "Chave de apoiante antiga",
|
"LabelOldSupporterKey": "Chave de apoiante antiga",
|
||||||
"LabelNewSupporterKey": "Chave de apoiante nova",
|
"LabelNewSupporterKey": "Chave de apoiante nova",
|
||||||
"HeaderMultipleKeyLinking": "Transfer to New Key",
|
"HeaderMultipleKeyLinking": "Transferir para Nova Chave",
|
||||||
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.",
|
"MultipleKeyLinkingHelp": "If you received a new supporter key, use this form to transfer the old key's registrations to your new one.",
|
||||||
"LabelCurrentEmailAddress": "Endere\u00e7o de email atual",
|
"LabelCurrentEmailAddress": "Endere\u00e7o de email atual",
|
||||||
"LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual a sua nova chave foi enviada.",
|
"LabelCurrentEmailAddressHelp": "O endere\u00e7o de email atual para o qual a sua nova chave foi enviada.",
|
||||||
@ -676,9 +688,9 @@
|
|||||||
"HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.",
|
"HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.",
|
||||||
"HeaderContainerProfile": "Container Profile",
|
"HeaderContainerProfile": "Container Profile",
|
||||||
"HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.",
|
"HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.",
|
||||||
"OptionProfileVideo": "Video",
|
"OptionProfileVideo": "V\u00eddeo",
|
||||||
"OptionProfileAudio": "Audio",
|
"OptionProfileAudio": "\u00c1udio",
|
||||||
"OptionProfileVideoAudio": "Video Audio",
|
"OptionProfileVideoAudio": "\u00c1udio do V\u00eddeo",
|
||||||
"OptionProfilePhoto": "Photo",
|
"OptionProfilePhoto": "Photo",
|
||||||
"LabelUserLibrary": "User library:",
|
"LabelUserLibrary": "User library:",
|
||||||
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
"LabelUserLibraryHelp": "Select which user library to display to the device. Leave empty to inherit the default setting.",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u041e\u041a",
|
"ButtonOk": "\u041e\u041a",
|
||||||
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
|
||||||
"ButtonNew": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
|
"ButtonNew": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
|
||||||
|
"FolderTypeMixed": "\u0420\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||||
|
"FolderTypeMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
|
||||||
|
"FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
|
||||||
|
"FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
|
"FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
|
||||||
|
"FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
|
"FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
|
||||||
|
"FolderTypeGames": "\u0418\u0433\u0440\u044b",
|
||||||
|
"FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438",
|
||||||
|
"FolderTypeTvShows": "\u0422\u0412",
|
||||||
|
"FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0443\u0435\u043c\u044b\u0439",
|
||||||
|
"LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
|
||||||
"HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
"HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
|
||||||
"ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443",
|
"ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443",
|
||||||
"LabelFolderType": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:",
|
"LabelFolderType": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:",
|
||||||
@ -689,7 +701,7 @@
|
|||||||
"LabelSupportedMediaTypes": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0442\u0438\u043f\u044b \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
|
"LabelSupportedMediaTypes": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0442\u0438\u043f\u044b \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
|
||||||
"TabIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
|
"TabIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
|
||||||
"HeaderIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
|
"HeaderIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
|
||||||
"TabDirectPlay": "\u041f\u0440\u044f\u043c\u043e\u0435 \u0432\u043e\u0441\u043f\u0440-\u0438\u0435",
|
"TabDirectPlay": "\u041f\u0440\u044f\u043c\u043e\u0435 \u0432\u043e\u0441\u043f\u0440.",
|
||||||
"TabContainers": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044b",
|
"TabContainers": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044b",
|
||||||
"TabCodecs": "\u041a\u043e\u0434\u0435\u043a\u0438",
|
"TabCodecs": "\u041a\u043e\u0434\u0435\u043a\u0438",
|
||||||
"TabResponses": "\u041e\u0442\u043a\u043b\u0438\u043a\u0438",
|
"TabResponses": "\u041e\u0442\u043a\u043b\u0438\u043a\u0438",
|
||||||
@ -1020,9 +1032,9 @@
|
|||||||
"ItemAddedWithName": "{0} (\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443)",
|
"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)",
|
"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",
|
"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-\u0438\u0435 \u0441 {1} \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",
|
||||||
"DeviceOfflineWithName": "{0} - \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\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-\u0438\u0435 \u0441 {1} \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",
|
"SubtitlesDownloadedForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0434\u043b\u044f {0} \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u043b\u0438\u0441\u044c",
|
||||||
"SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043a {0} \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
|
"SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043a {0} \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
|
||||||
"LabelRunningTimeValue": "\u0412\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f: {0}",
|
"LabelRunningTimeValue": "\u0412\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f: {0}",
|
||||||
@ -1036,9 +1048,9 @@
|
|||||||
"MessageApplicationUpdated": "Media Browser Server \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d",
|
"MessageApplicationUpdated": "Media Browser Server \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d",
|
||||||
"AuthenticationSucceededWithUserName": "{0} - \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u0430",
|
"AuthenticationSucceededWithUserName": "{0} - \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u0430",
|
||||||
"FailedLoginAttemptWithUserName": "{0} - \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u0445\u043e\u0434\u0430 \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430",
|
"FailedLoginAttemptWithUserName": "{0} - \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u0445\u043e\u0434\u0430 \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430",
|
||||||
"UserStartedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440-\u0438\u0435 \u00ab{1}\u00bb \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e",
|
"UserStartedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e",
|
||||||
"UserStoppedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440-\u0438\u0435 \u00ab{1}\u00bb \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
"UserStoppedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
|
||||||
"AppDeviceValues": "\u041f\u0440\u0438\u043b-\u0438\u0435: {0}, \u0423\u0441\u0442\u0440-\u0432\u043e: {1}",
|
"AppDeviceValues": "\u041f\u0440\u0438\u043b.: {0}, \u0423\u0441\u0442\u0440.: {1}",
|
||||||
"ProviderValue": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a: {0}",
|
"ProviderValue": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a: {0}",
|
||||||
"LabelChannelDownloadSizeLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e, \u0413\u0411:",
|
"LabelChannelDownloadSizeLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e, \u0413\u0411:",
|
||||||
"LabelChannelDownloadSizeLimitHelpText": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u044c\u0442\u0435 \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
|
"LabelChannelDownloadSizeLimitHelpText": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u044c\u0442\u0435 \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "\u0421\u043a\u043b\u0435\u0439\u043a\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432",
|
"HeaderTrailerReel": "\u0421\u043a\u043b\u0435\u0439\u043a\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
|
"OptionPlayUnwatchedTrailersOnly": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
|
||||||
"HeaderTrailerReelHelp": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u043a\u043b\u0435\u0439\u043a\u0443 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0434\u043e\u043b\u0433\u043e\u0438\u0433\u0440\u0430\u044e\u0449\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
|
"HeaderTrailerReelHelp": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435 \u0441\u043a\u043b\u0435\u0439\u043a\u0443 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0434\u043e\u043b\u0433\u043e\u0438\u0433\u0440\u0430\u044e\u0449\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
|
||||||
"MessageNoTrailersFound": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u043a\u0430\u043d\u0430\u043b\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u0438\u043c\u043f\u043e\u0440\u0442\u0430 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "\u041d\u043e\u0432\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
"HeaderNewUsers": "\u041d\u043e\u0432\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
|
||||||
"ButtonSignUp": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
|
"ButtonSignUp": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
|
||||||
"ButtonForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?",
|
"ButtonForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "\u041d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043d\u0435 \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u0435\u0441\u043b\u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432\u043d\u0443\u0442\u0440\u0438 Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "\u041d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043d\u0435 \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u0435\u0441\u043b\u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432\u043d\u0443\u0442\u0440\u0438 Didl.",
|
||||||
"TabActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
"TabActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
|
||||||
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
|
||||||
"OptionAllowSyncContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438"
|
"OptionAllowSyncContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
|
||||||
|
"NameSeasonUnknown": "\u0421\u0435\u0437\u043e\u043d \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u0435\u043d",
|
||||||
|
"NameSeasonNumber": "\u0421\u0435\u0437\u043e\u043d {0}",
|
||||||
|
"LabelNewUserNameHelp": "\u0418\u043c\u0435\u043d\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0431\u0443\u043a\u0432\u044b (a-z), \u0446\u0438\u0444\u0440\u044b (0-9), \u0434\u0435\u0444\u0438\u0441\u044b (-), \u043f\u043e\u0434\u0447\u0451\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f (_), \u0430\u043f\u043e\u0441\u0442\u0440\u043e\u0444\u044b (') \u0438 \u0442\u043e\u0447\u043a\u0438 (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "OK",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "Avbryt",
|
"ButtonCancel": "Avbryt",
|
||||||
"ButtonNew": "Nytillkommet",
|
"ButtonNew": "Nytillkommet",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Filmer",
|
||||||
|
"FolderTypeMusic": "Musik",
|
||||||
|
"FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
|
||||||
|
"FolderTypePhotos": "Foton",
|
||||||
|
"FolderTypeMusicVideos": "Musikvideor",
|
||||||
|
"FolderTypeHomeVideos": "Hemvideor",
|
||||||
|
"FolderTypeGames": "Spel",
|
||||||
|
"FolderTypeBooks": "B\u00f6cker",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Konfigurera mediabiblioteket",
|
"HeaderSetupLibrary": "Konfigurera mediabiblioteket",
|
||||||
"ButtonAddMediaFolder": "Skapa mediamapp",
|
"ButtonAddMediaFolder": "Skapa mediamapp",
|
||||||
"LabelFolderType": "Typ av mapp:",
|
"LabelFolderType": "Typ av mapp:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Tamam",
|
"ButtonOk": "Tamam",
|
||||||
"ButtonCancel": "\u0130ptal",
|
"ButtonCancel": "\u0130ptal",
|
||||||
"ButtonNew": "Yeni",
|
"ButtonNew": "Yeni",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "Medya k\u00fct\u00fcphaneni kur",
|
"HeaderSetupLibrary": "Medya k\u00fct\u00fcphaneni kur",
|
||||||
"ButtonAddMediaFolder": "Yeni Media Klas\u00f6r\u00fc",
|
"ButtonAddMediaFolder": "Yeni Media Klas\u00f6r\u00fc",
|
||||||
"LabelFolderType": "Klas\u00f6r T\u00fcr\u00fc:",
|
"LabelFolderType": "Klas\u00f6r T\u00fcr\u00fc:",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Tho\u00e1t",
|
"ButtonCancel": "Tho\u00e1t",
|
||||||
"ButtonNew": "M\u1edbi",
|
"ButtonNew": "M\u1edbi",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "C\u00e0i \u0111\u1eb7t th\u01b0 vi\u1ec7n media c\u1ee7a b\u1ea1n",
|
"HeaderSetupLibrary": "C\u00e0i \u0111\u1eb7t th\u01b0 vi\u1ec7n media c\u1ee7a b\u1ea1n",
|
||||||
"ButtonAddMediaFolder": "Th\u00eam m\u1ed9t th\u01b0 m\u1ee5c media",
|
"ButtonAddMediaFolder": "Th\u00eam m\u1ed9t th\u01b0 m\u1ee5c media",
|
||||||
"LabelFolderType": "Lo\u1ea1i th\u01b0 m\u1ee5c",
|
"LabelFolderType": "Lo\u1ea1i th\u01b0 m\u1ee5c",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "\u786e\u5b9a",
|
"ButtonOk": "\u786e\u5b9a",
|
||||||
"ButtonCancel": "\u53d6\u6d88",
|
"ButtonCancel": "\u53d6\u6d88",
|
||||||
"ButtonNew": "\u65b0\u589e",
|
"ButtonNew": "\u65b0\u589e",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "\u7535\u5f71",
|
||||||
|
"FolderTypeMusic": "\u97f3\u4e50",
|
||||||
|
"FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891",
|
||||||
|
"FolderTypePhotos": "\u56fe\u7247",
|
||||||
|
"FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891",
|
||||||
|
"FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891",
|
||||||
|
"FolderTypeGames": "\u6e38\u620f",
|
||||||
|
"FolderTypeBooks": "\u4e66\u7c4d",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "\u8bbe\u7f6e\u4f60\u7684\u5a92\u4f53\u5e93",
|
"HeaderSetupLibrary": "\u8bbe\u7f6e\u4f60\u7684\u5a92\u4f53\u5e93",
|
||||||
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939",
|
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939",
|
||||||
"LabelFolderType": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a",
|
"LabelFolderType": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -37,6 +37,18 @@
|
|||||||
"ButtonOk": "OK",
|
"ButtonOk": "OK",
|
||||||
"ButtonCancel": "\u53d6\u6d88",
|
"ButtonCancel": "\u53d6\u6d88",
|
||||||
"ButtonNew": "\u5275\u5efa",
|
"ButtonNew": "\u5275\u5efa",
|
||||||
|
"FolderTypeMixed": "Mixed content",
|
||||||
|
"FolderTypeMovies": "Movies",
|
||||||
|
"FolderTypeMusic": "Music",
|
||||||
|
"FolderTypeAdultVideos": "Adult videos",
|
||||||
|
"FolderTypePhotos": "Photos",
|
||||||
|
"FolderTypeMusicVideos": "Music videos",
|
||||||
|
"FolderTypeHomeVideos": "Home videos",
|
||||||
|
"FolderTypeGames": "Games",
|
||||||
|
"FolderTypeBooks": "Books",
|
||||||
|
"FolderTypeTvShows": "TV",
|
||||||
|
"FolderTypeInherit": "Inherit",
|
||||||
|
"LabelContentType": "Content type:",
|
||||||
"HeaderSetupLibrary": "\u8a2d\u7f6e\u4f60\u7684\u5a92\u9ad4\u5eab",
|
"HeaderSetupLibrary": "\u8a2d\u7f6e\u4f60\u7684\u5a92\u9ad4\u5eab",
|
||||||
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e",
|
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e",
|
||||||
"LabelFolderType": "\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a",
|
"LabelFolderType": "\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a",
|
||||||
@ -1245,7 +1257,7 @@
|
|||||||
"HeaderTrailerReel": "Trailer Reel",
|
"HeaderTrailerReel": "Trailer Reel",
|
||||||
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
|
||||||
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
"HeaderTrailerReelHelp": "Start a trailer reel to play a long running playlist of trailers.",
|
||||||
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel plugin to import a library of internet trailers.",
|
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
|
||||||
"HeaderNewUsers": "New Users",
|
"HeaderNewUsers": "New Users",
|
||||||
"ButtonSignUp": "Sign up",
|
"ButtonSignUp": "Sign up",
|
||||||
"ButtonForgotPassword": "Forgot password?",
|
"ButtonForgotPassword": "Forgot password?",
|
||||||
@ -1279,5 +1291,8 @@
|
|||||||
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
|
||||||
"TabActivity": "Activity",
|
"TabActivity": "Activity",
|
||||||
"TitleSync": "Sync",
|
"TitleSync": "Sync",
|
||||||
"OptionAllowSyncContent": "Allow syncing media to devices"
|
"OptionAllowSyncContent": "Allow syncing media to devices",
|
||||||
|
"NameSeasonUnknown": "Season Unknown",
|
||||||
|
"NameSeasonNumber": "Season {0}",
|
||||||
|
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)"
|
||||||
}
|
}
|
@ -266,6 +266,12 @@ namespace MediaBrowser.Server.Implementations.Sync
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// It would be nice to support these later
|
||||||
|
if (item is Game || item is Book)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>MediaBrowser.Common.Internal</id>
|
<id>MediaBrowser.Common.Internal</id>
|
||||||
<version>3.0.530</version>
|
<version>3.0.532</version>
|
||||||
<title>MediaBrowser.Common.Internal</title>
|
<title>MediaBrowser.Common.Internal</title>
|
||||||
<authors>Luke</authors>
|
<authors>Luke</authors>
|
||||||
<owners>ebr,Luke,scottisafool</owners>
|
<owners>ebr,Luke,scottisafool</owners>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<description>Contains common components shared by Media Browser Theater and Media Browser Server. Not intended for plugin developer consumption.</description>
|
<description>Contains common components shared by Media Browser Theater and Media Browser Server. Not intended for plugin developer consumption.</description>
|
||||||
<copyright>Copyright © Media Browser 2013</copyright>
|
<copyright>Copyright © Media Browser 2013</copyright>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency id="MediaBrowser.Common" version="3.0.530" />
|
<dependency id="MediaBrowser.Common" version="3.0.532" />
|
||||||
<dependency id="NLog" version="3.1.0.0" />
|
<dependency id="NLog" version="3.1.0.0" />
|
||||||
<dependency id="SimpleInjector" version="2.6.1" />
|
<dependency id="SimpleInjector" version="2.6.1" />
|
||||||
<dependency id="sharpcompress" version="0.10.2" />
|
<dependency id="sharpcompress" version="0.10.2" />
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>MediaBrowser.Common</id>
|
<id>MediaBrowser.Common</id>
|
||||||
<version>3.0.530</version>
|
<version>3.0.532</version>
|
||||||
<title>MediaBrowser.Common</title>
|
<title>MediaBrowser.Common</title>
|
||||||
<authors>Media Browser Team</authors>
|
<authors>Media Browser Team</authors>
|
||||||
<owners>ebr,Luke,scottisafool</owners>
|
<owners>ebr,Luke,scottisafool</owners>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>MediaBrowser.Model.Signed</id>
|
<id>MediaBrowser.Model.Signed</id>
|
||||||
<version>3.0.530</version>
|
<version>3.0.532</version>
|
||||||
<title>MediaBrowser.Model - Signed Edition</title>
|
<title>MediaBrowser.Model - Signed Edition</title>
|
||||||
<authors>Media Browser Team</authors>
|
<authors>Media Browser Team</authors>
|
||||||
<owners>ebr,Luke,scottisafool</owners>
|
<owners>ebr,Luke,scottisafool</owners>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>MediaBrowser.Server.Core</id>
|
<id>MediaBrowser.Server.Core</id>
|
||||||
<version>3.0.530</version>
|
<version>3.0.532</version>
|
||||||
<title>Media Browser.Server.Core</title>
|
<title>Media Browser.Server.Core</title>
|
||||||
<authors>Media Browser Team</authors>
|
<authors>Media Browser Team</authors>
|
||||||
<owners>ebr,Luke,scottisafool</owners>
|
<owners>ebr,Luke,scottisafool</owners>
|
||||||
@ -12,7 +12,7 @@
|
|||||||
<description>Contains core components required to build plugins for Media Browser Server.</description>
|
<description>Contains core components required to build plugins for Media Browser Server.</description>
|
||||||
<copyright>Copyright © Media Browser 2013</copyright>
|
<copyright>Copyright © Media Browser 2013</copyright>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency id="MediaBrowser.Common" version="3.0.530" />
|
<dependency id="MediaBrowser.Common" version="3.0.532" />
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
<files>
|
<files>
|
||||||
|
Loading…
Reference in New Issue
Block a user