Cauldron.Localization Namespace |
| Class | Description | |
|---|---|---|
| JsonLocalizationSourceBaseT |
Represents a base class for a localization using embedded json files.
The json should have the following structure:
[
{
"key" : "attention-message",
"en" : "Don't press the button.",
"ja" : "ボタンを押さないでください。"
},
{
"key" : "message2",
"en" : "I am groot",
"ja" : "私はホートです"
}
] | |
| Locale |
Provides methods regarding localization.
https://github.com/Capgemini/Cauldron/wiki/Localization
| |
| LocalizationKeyValue |
Represents a base class for the ILocalizationSource dictionary item
| |
| YamlLocalizationSourceBaseT |
Represents a base class for a localization using embedded yaml files.
The yaml should have the following structure:
Attention-message
en: Don't press the button.
ja: ボタンを押さないでください。
Message2
en: I am groot
ja: 私はホートです |
| Interface | Description | |
|---|---|---|
| ILocalizationKeyValue |
Represents an interface of the ILocalizationSource dictionary item
| |
| ILocalizationSource |
Represents a source for a localization source
|