pt-br.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/pt-br', ['module', 'exports'], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory(module, exports);
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory(mod, mod.exports);
  11. global.ELEMENT.lang = global.ELEMENT.lang || {};
  12. global.ELEMENT.lang.ptBr = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: 'Confirmar',
  21. clear: 'Limpar'
  22. },
  23. datepicker: {
  24. now: 'Agora',
  25. today: 'Hoje',
  26. cancel: 'Cancelar',
  27. clear: 'Limpar',
  28. confirm: 'Confirmar',
  29. selectDate: 'Selecione a data',
  30. selectTime: 'Selecione a hora',
  31. startDate: 'Data inicial',
  32. startTime: 'Hora inicial',
  33. endDate: 'Data final',
  34. endTime: 'Hora final',
  35. prevYear: 'Ano anterior',
  36. nextYear: 'Próximo ano',
  37. prevMonth: 'Mês anterior',
  38. nextMonth: 'Próximo mês',
  39. year: '',
  40. month1: 'Janeiro',
  41. month2: 'Fevereiro',
  42. month3: 'Março',
  43. month4: 'Abril',
  44. month5: 'Maio',
  45. month6: 'Junho',
  46. month7: 'Julho',
  47. month8: 'Agosto',
  48. month9: 'Setembro',
  49. month10: 'Outubro',
  50. month11: 'Novembro',
  51. month12: 'Dezembro',
  52. // week: 'semana',
  53. weeks: {
  54. sun: 'Dom',
  55. mon: 'Seg',
  56. tue: 'Ter',
  57. wed: 'Qua',
  58. thu: 'Qui',
  59. fri: 'Sex',
  60. sat: 'Sab'
  61. },
  62. months: {
  63. jan: 'Jan',
  64. feb: 'Fev',
  65. mar: 'Mar',
  66. apr: 'Abr',
  67. may: 'Mai',
  68. jun: 'Jun',
  69. jul: 'Jul',
  70. aug: 'Ago',
  71. sep: 'Set',
  72. oct: 'Out',
  73. nov: 'Nov',
  74. dec: 'Dez'
  75. }
  76. },
  77. select: {
  78. loading: 'Carregando',
  79. noMatch: 'Sem resultados',
  80. noData: 'Sem dados',
  81. placeholder: 'Selecione'
  82. },
  83. cascader: {
  84. noMatch: 'Sem resultados',
  85. loading: 'Carregando',
  86. placeholder: 'Selecione'
  87. },
  88. pagination: {
  89. goto: 'Ir para',
  90. pagesize: '/página',
  91. total: 'Total {total}',
  92. pageClassifier: ''
  93. },
  94. messagebox: {
  95. title: 'Mensagem',
  96. confirm: 'Confirmar',
  97. cancel: 'Cancelar',
  98. error: 'Erro!'
  99. },
  100. upload: {
  101. deleteTip: 'aperte delete para apagar',
  102. delete: 'Apagar',
  103. preview: 'Pré-visualizar',
  104. continue: 'Continuar'
  105. },
  106. table: {
  107. emptyText: 'Sem dados',
  108. confirmFilter: 'Confirmar',
  109. resetFilter: 'Limpar',
  110. clearFilter: 'Todos',
  111. sumText: 'Total'
  112. },
  113. tree: {
  114. emptyText: 'Sem dados'
  115. },
  116. transfer: {
  117. noMatch: 'Sem resultados',
  118. noData: 'Sem dados',
  119. titles: ['Lista 1', 'Lista 2'],
  120. filterPlaceholder: 'Digite uma palavra-chave',
  121. noCheckedFormat: '{total} itens',
  122. hasCheckedFormat: '{checked}/{total} selecionados'
  123. },
  124. image: {
  125. error: 'FAILED' // to be translated
  126. }
  127. }
  128. };
  129. module.exports = exports['default'];
  130. });