en-US.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. const e = {
  2. sheet: {
  3. cf: {
  4. title: "Conditional Formatting",
  5. menu: {
  6. manageConditionalFormatting: "Manage Conditional Formatting",
  7. createConditionalFormatting: "Create Conditional Formatting",
  8. clearRangeRules: "Clear Rules for Selected Range",
  9. clearWorkSheetRules: "Clear Rules for Entire Sheet"
  10. },
  11. form: {
  12. lessThan: "The value must be less than {0}",
  13. lessThanOrEqual: "The value must be less than or equal to {0}",
  14. greaterThan: "The value must be greater than {0}",
  15. greaterThanOrEqual: "The value must be greater than or equal to {0}",
  16. rangeSelector: "Select Range or Enter Value"
  17. },
  18. iconSet: {
  19. direction: "Direction",
  20. shape: "Shape",
  21. mark: "Mark",
  22. rank: "Rank",
  23. rule: "Rule",
  24. icon: "Icon",
  25. type: "Type",
  26. value: "Value",
  27. reverseIconOrder: "Reverse Icon Order",
  28. and: "And",
  29. when: "When",
  30. onlyShowIcon: "Only Show Icon"
  31. },
  32. symbol: {
  33. greaterThan: ">",
  34. greaterThanOrEqual: ">=",
  35. lessThan: "<",
  36. lessThanOrEqual: "<="
  37. },
  38. panel: {
  39. createRule: "Create Rule",
  40. clear: "Clear All Rules",
  41. range: "Apply Range",
  42. styleType: "Style Type",
  43. submit: "Submit",
  44. cancel: "Cancel",
  45. rankAndAverage: "Top/Bottom/Average",
  46. styleRule: "Style Rule",
  47. isNotBottom: "Top",
  48. isBottom: "Bottom",
  49. greaterThanAverage: "Greater Than Average",
  50. lessThanAverage: "Less Than Average",
  51. medianValue: "Median Value",
  52. fillType: "Fill Type",
  53. pureColor: "Solid Color",
  54. gradient: "Gradient",
  55. colorSet: "Color Set",
  56. positive: "Positive",
  57. native: "Negative",
  58. workSheet: "Entire Sheet",
  59. selectedRange: "Selected Range",
  60. managerRuleSelect: "Manage {0} Rules",
  61. onlyShowDataBar: "Only Show Data Bars"
  62. },
  63. preview: {
  64. describe: {
  65. beginsWith: "Begins with {0}",
  66. endsWith: "Ends with {0}",
  67. containsText: "Text contains {0}",
  68. notContainsText: "Text does not contain {0}",
  69. equal: "Equal to {0}",
  70. notEqual: "Not equal to {0}",
  71. containsBlanks: "Contains Blanks",
  72. notContainsBlanks: "Does not contain Blanks",
  73. containsErrors: "Contains Errors",
  74. notContainsErrors: "Does not contain Errors",
  75. greaterThan: "Greater than {0}",
  76. greaterThanOrEqual: "Greater than or equal to {0}",
  77. lessThan: "Less than {0}",
  78. lessThanOrEqual: "Less than or equal to {0}",
  79. notBetween: "Not between {0} and {1}",
  80. between: "Between {0} and {1}",
  81. yesterday: "Yesterday",
  82. tomorrow: "Tomorrow",
  83. last7Days: "Last 7 Days",
  84. thisMonth: "This Month",
  85. lastMonth: "Last Month",
  86. nextMonth: "Next Month",
  87. thisWeek: "This Week",
  88. lastWeek: "Last Week",
  89. nextWeek: "Next Week",
  90. today: "Today",
  91. topN: "Top {0}",
  92. bottomN: "Bottom {0}",
  93. topNPercent: "Top {0}%",
  94. bottomNPercent: "Bottom {0}%"
  95. }
  96. },
  97. operator: {
  98. beginsWith: "Begins with",
  99. endsWith: "Ends with",
  100. containsText: "Text contains",
  101. notContainsText: "Text does not contain",
  102. equal: "Equal to",
  103. notEqual: "Not equal to",
  104. containsBlanks: "Contains Blanks",
  105. notContainsBlanks: "Does not contain Blanks",
  106. containsErrors: "Contains Errors",
  107. notContainsErrors: "Does not contain Errors",
  108. greaterThan: "Greater than",
  109. greaterThanOrEqual: "Greater than or equal to",
  110. lessThan: "Less than",
  111. lessThanOrEqual: "Less than or equal to",
  112. notBetween: "Not between",
  113. between: "Between",
  114. yesterday: "Yesterday",
  115. tomorrow: "Tomorrow",
  116. last7Days: "Last 7 Days",
  117. thisMonth: "This Month",
  118. lastMonth: "Last Month",
  119. nextMonth: "Next Month",
  120. thisWeek: "This Week",
  121. lastWeek: "Last Week",
  122. nextWeek: "Next Week",
  123. today: "Today"
  124. },
  125. ruleType: {
  126. highlightCell: "Highlight Cell",
  127. dataBar: "Data Bar",
  128. colorScale: "Color Scale",
  129. formula: "Custom Formula",
  130. iconSet: "Icon Set",
  131. duplicateValues: "Duplicate Values",
  132. uniqueValues: "Unique Values"
  133. },
  134. subRuleType: {
  135. uniqueValues: "Unique Values",
  136. duplicateValues: "Duplicate Values",
  137. rank: "Rank",
  138. text: "Text",
  139. timePeriod: "Time Period",
  140. number: "Number",
  141. average: "Average"
  142. },
  143. valueType: {
  144. num: "Number",
  145. min: "Minimum",
  146. max: "Maximum",
  147. percent: "Percentage",
  148. percentile: "Percentile",
  149. formula: "Formula",
  150. none: "None"
  151. },
  152. errorMessage: {
  153. notBlank: "Condition can not be empty",
  154. formulaError: "Wrong formula",
  155. rangeError: "Bad selection"
  156. }
  157. }
  158. }
  159. };
  160. export {
  161. e as default
  162. };