LocalizationKeyShowMode.cs 494 B

123456789101112131415161718192021222324
  1. namespace PixiEditor.UI.Common.Localization;
  2. public enum LocalizationKeyShowMode
  3. {
  4. /// <summary>
  5. /// Shows just the value e.g. Open
  6. /// </summary>
  7. Value,
  8. /// <summary>
  9. /// Shows the value and the key in brackets e.g. Open (OPEN)
  10. /// </summary>
  11. ValueKey,
  12. /// <summary>
  13. /// Shows just the key e.g. OPEN
  14. /// </summary>
  15. Key,
  16. /// <summary>
  17. /// Shows a long string ensuring responsive layout
  18. /// </summary>
  19. LALALA,
  20. }