update translations

This commit is contained in:
Luke Pulverenti
2014-08-24 23:54:45 -04:00
parent d92936187d
commit 8406257349
66 changed files with 4732 additions and 999 deletions

View File

@@ -0,0 +1,9 @@

namespace MediaBrowser.Controller.Connect
{
public interface IConnectManager
{
string WanIpAddress { get; }
string WanApiAddress { get; }
}
}

View File

@@ -99,6 +99,7 @@
<Compile Include="Collections\CollectionCreationOptions.cs" />
<Compile Include="Collections\CollectionEvents.cs" />
<Compile Include="Collections\ICollectionManager.cs" />
<Compile Include="Connect\IConnectManager.cs" />
<Compile Include="Dlna\ControlRequest.cs" />
<Compile Include="Dlna\ControlResponse.cs" />
<Compile Include="Dlna\DlnaIconResponse.cs" />

View File

@@ -156,7 +156,7 @@ namespace MediaBrowser.Controller.Session
public bool ContainsUser(Guid userId)
{
return (UserId ?? Guid.Empty) == UserId || AdditionalUsers.Any(i => userId == new Guid(i.UserId));
return (UserId ?? Guid.Empty) == userId || AdditionalUsers.Any(i => userId == new Guid(i.UserId));
}
}
}