Add latest translations

This commit is contained in:
Luke Pulverenti
2014-04-01 18:23:07 -04:00
parent 4afe2c3f73
commit 21308be83f
71 changed files with 1145 additions and 873 deletions

View File

@@ -1,20 +0,0 @@

namespace MediaBrowser.Model.Extensions
{
/// <summary>
/// Class ModelExtensions
/// </summary>
static class ModelExtensions
{
/// <summary>
/// Values the or default.
/// </summary>
/// <param name="str">The STR.</param>
/// <param name="def">The def.</param>
/// <returns>System.String.</returns>
internal static string ValueOrDefault(this string str, string def = "")
{
return string.IsNullOrEmpty(str) ? def : str;
}
}
}