update translations

This commit is contained in:
Luke Pulverenti
2014-09-23 00:05:29 -04:00
parent 99dba814f4
commit fab675a6aa
59 changed files with 1302 additions and 757 deletions

View File

@@ -1042,12 +1042,12 @@ namespace MediaBrowser.Controller.Entities
var rating = CustomRatingForComparison;
if (string.IsNullOrEmpty(rating))
if (string.IsNullOrWhiteSpace(rating))
{
rating = OfficialRatingForComparison;
}
if (string.IsNullOrEmpty(rating))
if (string.IsNullOrWhiteSpace(rating))
{
return !GetBlockUnratedValue(user.Configuration);
}

View File

@@ -164,14 +164,12 @@ namespace MediaBrowser.Controller.Entities
}
}
/// <summary>
/// Never want folders to be blocked by "BlockNotRated"
/// </summary>
[IgnoreDataMember]
public override string OfficialRatingForComparison
{
get
{
// Never want folders to be blocked by "BlockNotRated"
if (this is Series)
{
return base.OfficialRatingForComparison;