add latest translations

This commit is contained in:
Luke Pulverenti
2014-04-02 17:55:19 -04:00
parent dcf2e70f03
commit 0200911afc
37 changed files with 333 additions and 114 deletions

View File

@@ -1,19 +1,17 @@

using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
public class SessionCapabilities
{
public string[] PlayableMediaTypes { get; set; }
public List<string> PlayableMediaTypes { get; set; }
public bool SupportsFullscreenToggle { get; set; }
public List<string> SupportedCommands { get; set; }
public bool SupportsOsdToggle { get; set; }
public bool SupportsNavigationControl { get; set; }
public SessionCapabilities()
{
PlayableMediaTypes = new string[] {};
PlayableMediaTypes = new List<string>();
SupportedCommands = new List<string>();
}
}
}