123456789101112131415161718192021222324 |
- namespace PixiEditor.UI.Common.Localization;
- public enum LocalizationKeyShowMode
- {
- /// <summary>
- /// Shows just the value e.g. Open
- /// </summary>
- Value,
-
- /// <summary>
- /// Shows the value and the key in brackets e.g. Open (OPEN)
- /// </summary>
- ValueKey,
-
- /// <summary>
- /// Shows just the key e.g. OPEN
- /// </summary>
- Key,
-
- /// <summary>
- /// Shows a long string ensuring responsive layout
- /// </summary>
- LALALA,
- }
|