update translations

This commit is contained in:
Luke Pulverenti
2014-07-01 00:26:50 -04:00
parent 43943657b7
commit 970504abdf
52 changed files with 621 additions and 138 deletions

View File

@@ -29,7 +29,7 @@ namespace MediaBrowser.Server.Implementations.Collections
public Folder GetCollectionsFolder(string userId)
{
return _libraryManager.RootFolder.Children.Concat(_libraryManager.RootFolder.GetHiddenChildren()).OfType<ManualCollectionsFolder>()
return _libraryManager.RootFolder.Children.Concat(_libraryManager.RootFolder).OfType<ManualCollectionsFolder>()
.FirstOrDefault();
}

View File

@@ -24,7 +24,7 @@ namespace MediaBrowser.Server.Implementations.Collections
{
get
{
return !ActualChildren.Any() || base.IsHidden;
return true;
}
}