forked from WhitefangGreytail/WG_CitizenEdit
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to CSV translation framework.
- Loading branch information
1 parent
6124766
commit 73f96c1
Showing
38 changed files
with
1,573 additions
and
1,539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System.Collections.Generic; | ||
|
||
|
||
namespace LifecycleRebalance | ||
{ | ||
/// <summary> | ||
/// Translation language class. | ||
/// </summary> | ||
public class Language | ||
{ | ||
// Translation file keywords - language code and readable name. | ||
public static readonly string CodeKey = "CODE"; | ||
public static readonly string NameKey = "NAME"; | ||
|
||
|
||
// Dictionary of translations for this language. | ||
public Dictionary<string, string> translationDictionary = new Dictionary<string, string>(); | ||
|
||
// Language unique name. | ||
public string uniqueName = null; | ||
|
||
// Language human-readable name. | ||
public string readableName = null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.