update translations

This commit is contained in:
Luke Pulverenti
2014-06-07 15:46:24 -04:00
parent 2b14be8643
commit e210825e54
71 changed files with 1698 additions and 366 deletions

View File

@@ -43,9 +43,17 @@
/// <value>The limit.</value>
public int? Limit { get; set; }
/// <summary>
/// Gets or sets the content types.
/// </summary>
/// <value>The content types.</value>
public ChannelMediaContentType[] ContentTypes { get; set; }
public AllChannelMediaQuery()
{
ChannelIds = new string[] { };
ContentTypes = new ChannelMediaContentType[] { };
}
}

View File

@@ -1,7 +1,6 @@
using System;
using MediaBrowser.Model.Extensions;
using System.Diagnostics;
using System.Runtime.Serialization;
using MediaBrowser.Model.Extensions;
namespace MediaBrowser.Model.Entities
{

View File

@@ -0,0 +1,23 @@

namespace MediaBrowser.Model.Library
{
public class UserViewQuery
{
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [include external content].
/// </summary>
/// <value><c>true</c> if [include external content]; otherwise, <c>false</c>.</value>
public bool IncludeExternalContent { get; set; }
public UserViewQuery()
{
IncludeExternalContent = true;
}
}
}

View File

@@ -28,6 +28,12 @@ namespace MediaBrowser.Model.LiveTv
/// </summary>
/// <value>The original primary image aspect ratio.</value>
public double? OriginalPrimaryImageAspectRatio { get; set; }
/// <summary>
/// Gets or sets the type of the media.
/// </summary>
/// <value>The type of the media.</value>
public string MediaType { get; set; }
/// <summary>
/// Gets or sets the timer identifier.

View File

@@ -157,6 +157,7 @@
<Compile Include="Globalization\LocalizatonOption.cs" />
<Compile Include="IO\FileSystemEntryType.cs" />
<Compile Include="Library\PlayAccess.cs" />
<Compile Include="Library\UserViewQuery.cs" />
<Compile Include="LiveTv\BaseTimerInfoDto.cs" />
<Compile Include="LiveTv\ChannelInfoDto.cs" />
<Compile Include="LiveTv\LiveTvChannelQuery.cs" />