translationKeys.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 'use strict';
  2. var translationKeys = {
  3. warnings: {
  4. straightRow: 'straightRow',
  5. keyPattern: 'keyPattern',
  6. simpleRepeat: 'simpleRepeat',
  7. extendedRepeat: 'extendedRepeat',
  8. sequences: 'sequences',
  9. recentYears: 'recentYears',
  10. dates: 'dates',
  11. topTen: 'topTen',
  12. topHundred: 'topHundred',
  13. common: 'common',
  14. similarToCommon: 'similarToCommon',
  15. wordByItself: 'wordByItself',
  16. namesByThemselves: 'namesByThemselves',
  17. commonNames: 'commonNames',
  18. userInputs: 'userInputs',
  19. pwned: 'pwned'
  20. },
  21. suggestions: {
  22. l33t: 'l33t',
  23. reverseWords: 'reverseWords',
  24. allUppercase: 'allUppercase',
  25. capitalization: 'capitalization',
  26. dates: 'dates',
  27. recentYears: 'recentYears',
  28. associatedYears: 'associatedYears',
  29. sequences: 'sequences',
  30. repeated: 'repeated',
  31. longerKeyboardPattern: 'longerKeyboardPattern',
  32. anotherWord: 'anotherWord',
  33. useWords: 'useWords',
  34. noNeed: 'noNeed',
  35. pwned: 'pwned'
  36. },
  37. timeEstimation: {
  38. ltSecond: 'ltSecond',
  39. second: 'second',
  40. seconds: 'seconds',
  41. minute: 'minute',
  42. minutes: 'minutes',
  43. hour: 'hour',
  44. hours: 'hours',
  45. day: 'day',
  46. days: 'days',
  47. month: 'month',
  48. months: 'months',
  49. year: 'year',
  50. years: 'years',
  51. centuries: 'centuries'
  52. }
  53. };
  54. module.exports = translationKeys;
  55. //# sourceMappingURL=translationKeys.js.map