Skip to content

Commit

Permalink
Fix #32
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardosnt committed Feb 12, 2016
1 parent 0534bc9 commit 11c55be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/I18n/EssLang.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static void Load()
}*/

Func<string, EssLang> loadFromJson = key => {
return new EssLang( json[key]?.ToString() ?? KEY_NOT_FOUND_MESSAGE );
return new EssLang( json[key]?.ToString() ?? string.Format( KEY_NOT_FOUND_MESSAGE, key ) );
};

var fields = typeof (EssLang).GetProperties( BindingFlags.Public | BindingFlags.Static );
Expand Down

0 comments on commit 11c55be

Please sign in to comment.