update translations

This commit is contained in:
Luke Pulverenti
2014-06-29 15:59:52 -04:00
parent b87f759460
commit 1a5a75854b
50 changed files with 1276 additions and 212 deletions

View File

@@ -1,6 +1,4 @@
using System;
using System.Runtime.Serialization;
namespace MediaBrowser.Model.Updates
{
/// <summary>
@@ -26,32 +24,6 @@ namespace MediaBrowser.Model.Updates
/// <value>The version STR.</value>
public string versionStr { get; set; }
/// <summary>
/// The _version
/// </summary>
private Version _version;
/// <summary>
/// Gets or sets the version.
/// Had to make this an interpreted property since Protobuf can't handle Version
/// </summary>
/// <value>The version.</value>
[IgnoreDataMember]
public Version version
{
get { return _version ?? (_version = new Version(ValueOrDefault(versionStr, "0.0.0.1"))); }
}
/// <summary>
/// Values the or default.
/// </summary>
/// <param name="str">The STR.</param>
/// <param name="def">The def.</param>
/// <returns>System.String.</returns>
private static string ValueOrDefault(string str, string def)
{
return string.IsNullOrEmpty(str) ? def : str;
}
/// <summary>
/// Gets or sets the classification.
/// </summary>