ui-grid.language.zh-tw.js 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*!
  2. * ui-grid - v4.4.6 - 2018-04-06
  3. * Copyright (c) 2018 ; License: MIT
  4. */
  5. (function() {
  6. angular.module('ui.grid').config(['$provide', function($provide) {
  7. $provide.decorator('i18nService', ['$delegate', function($delegate) {
  8. $delegate.add('zh-tw', {
  9. aggregate: {
  10. label: '行'
  11. },
  12. groupPanel: {
  13. description: '拖曳表頭到此處進行分組'
  14. },
  15. search: {
  16. placeholder: '查找',
  17. showingItems: '已顯示行數:',
  18. selectedItems: '已選擇行數:',
  19. totalItems: '總行數:',
  20. size: '每頁顯示行數:',
  21. first: '首頁',
  22. next: '下壹頁',
  23. previous: '上壹頁',
  24. last: '末頁'
  25. },
  26. menu: {
  27. text: '選擇列:'
  28. },
  29. sort: {
  30. ascending: '升序',
  31. descending: '降序',
  32. remove: '取消排序'
  33. },
  34. column: {
  35. hide: '隱藏列'
  36. },
  37. aggregation: {
  38. count: '計數:',
  39. sum: '求和:',
  40. avg: '均值:',
  41. min: '最小值:',
  42. max: '最大值:'
  43. },
  44. pinning: {
  45. pinLeft: '左側固定',
  46. pinRight: '右側固定',
  47. unpin: '取消固定'
  48. },
  49. gridMenu: {
  50. columns: '列:',
  51. importerTitle: '導入文件',
  52. exporterAllAsCsv: '導出全部數據到CSV',
  53. exporterVisibleAsCsv: '導出可見數據到CSV',
  54. exporterSelectedAsCsv: '導出已選數據到CSV',
  55. exporterAllAsPdf: '導出全部數據到PDF',
  56. exporterVisibleAsPdf: '導出可見數據到PDF',
  57. exporterSelectedAsPdf: '導出已選數據到PDF',
  58. clearAllFilters: '清除所有过滤器'
  59. },
  60. importer: {
  61. noHeaders: '無法獲取列名,確定文件包含表頭?',
  62. noObjects: '無法獲取數據,確定文件包含數據?',
  63. invalidCsv: '無法處理文件,確定是合法的CSV文件?',
  64. invalidJson: '無法處理文件,確定是合法的JSON文件?',
  65. jsonNotArray: '導入的文件不是JSON數組!'
  66. },
  67. pagination: {
  68. sizes: '行每頁',
  69. totalItems: '行'
  70. }
  71. });
  72. return $delegate;
  73. }]);
  74. }]);
  75. })();