@mui/material 5.2.4 → 5.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Autocomplete/Autocomplete.js +3 -1
- package/Avatar/Avatar.d.ts +3 -1
- package/Backdrop/Backdrop.js +3 -1
- package/Badge/Badge.d.ts +25 -0
- package/Badge/Badge.js +29 -9
- package/ButtonGroup/ButtonGroupContext.d.ts +1 -1
- package/CHANGELOG.md +230 -32
- package/FilledInput/FilledInput.js +4 -1
- package/FormControlLabel/FormControlLabel.js +3 -1
- package/Input/Input.js +4 -1
- package/InputBase/InputBase.js +4 -1
- package/InputLabel/InputLabel.js +4 -0
- package/ListItem/ListItem.js +3 -1
- package/Modal/Modal.js +3 -1
- package/README.md +17 -28
- package/Slider/Slider.d.ts +2 -0
- package/Slider/Slider.js +21 -3
- package/StepLabel/StepLabel.js +3 -1
- package/SvgIcon/SvgIcon.d.ts +8 -0
- package/SvgIcon/SvgIcon.js +19 -3
- package/Tabs/Tabs.d.ts +1 -1
- package/TextField/TextField.d.ts +1 -0
- package/TextField/TextField.js +1 -0
- package/Tooltip/Tooltip.js +6 -1
- package/index.js +1 -1
- package/legacy/Autocomplete/Autocomplete.js +3 -1
- package/legacy/Backdrop/Backdrop.js +3 -1
- package/legacy/Badge/Badge.js +34 -10
- package/legacy/FilledInput/FilledInput.js +4 -1
- package/legacy/FormControlLabel/FormControlLabel.js +3 -1
- package/legacy/Input/Input.js +4 -1
- package/legacy/InputBase/InputBase.js +4 -1
- package/legacy/InputLabel/InputLabel.js +4 -0
- package/legacy/ListItem/ListItem.js +3 -1
- package/legacy/Modal/Modal.js +3 -1
- package/legacy/Slider/Slider.js +21 -3
- package/legacy/StepLabel/StepLabel.js +3 -1
- package/legacy/SvgIcon/SvgIcon.js +20 -3
- package/legacy/TextField/TextField.js +1 -0
- package/legacy/Tooltip/Tooltip.js +6 -1
- package/legacy/index.js +1 -1
- package/legacy/locale/index.js +319 -142
- package/locale/index.d.ts +2 -0
- package/locale/index.js +220 -50
- package/modern/Autocomplete/Autocomplete.js +3 -1
- package/modern/Backdrop/Backdrop.js +3 -1
- package/modern/Badge/Badge.js +29 -9
- package/modern/FilledInput/FilledInput.js +4 -1
- package/modern/FormControlLabel/FormControlLabel.js +3 -1
- package/modern/Input/Input.js +4 -1
- package/modern/InputBase/InputBase.js +4 -1
- package/modern/InputLabel/InputLabel.js +4 -0
- package/modern/ListItem/ListItem.js +3 -1
- package/modern/Modal/Modal.js +3 -1
- package/modern/Slider/Slider.js +21 -3
- package/modern/StepLabel/StepLabel.js +3 -1
- package/modern/SvgIcon/SvgIcon.js +19 -3
- package/modern/TextField/TextField.js +1 -0
- package/modern/Tooltip/Tooltip.js +6 -1
- package/modern/index.js +1 -1
- package/modern/locale/index.js +220 -50
- package/node/Autocomplete/Autocomplete.js +3 -1
- package/node/Backdrop/Backdrop.js +3 -1
- package/node/Badge/Badge.js +29 -9
- package/node/FilledInput/FilledInput.js +4 -1
- package/node/FormControlLabel/FormControlLabel.js +3 -1
- package/node/Input/Input.js +4 -1
- package/node/InputBase/InputBase.js +4 -1
- package/node/InputLabel/InputLabel.js +4 -0
- package/node/ListItem/ListItem.js +3 -1
- package/node/Modal/Modal.js +3 -1
- package/node/Slider/Slider.js +21 -3
- package/node/StepLabel/StepLabel.js +3 -1
- package/node/SvgIcon/SvgIcon.js +19 -3
- package/node/TextField/TextField.js +1 -0
- package/node/Tooltip/Tooltip.js +6 -1
- package/node/index.js +1 -1
- package/node/locale/index.js +223 -51
- package/package.json +3 -3
- package/umd/material-ui.development.js +251 -89
- package/umd/material-ui.production.min.js +21 -21
package/legacy/locale/index.js
CHANGED
|
@@ -658,6 +658,89 @@ export var csCZ = {
|
|
|
658
658
|
}
|
|
659
659
|
}
|
|
660
660
|
};
|
|
661
|
+
export var daDK = {
|
|
662
|
+
components: {
|
|
663
|
+
MuiBreadcrumbs: {
|
|
664
|
+
defaultProps: {
|
|
665
|
+
expandText: 'Vis sti'
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
MuiTablePagination: {
|
|
669
|
+
defaultProps: {
|
|
670
|
+
getItemAriaLabel: function getItemAriaLabel(type) {
|
|
671
|
+
if (type === 'first') {
|
|
672
|
+
return 'Gå til den første side';
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
if (type === 'last') {
|
|
676
|
+
return 'Gå til den sidste side';
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
if (type === 'next') {
|
|
680
|
+
return 'Gå til den næste side';
|
|
681
|
+
} // if (type === 'previous') {
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
return 'Gå til den forrige side';
|
|
685
|
+
},
|
|
686
|
+
labelRowsPerPage: 'Rækker pr side:',
|
|
687
|
+
labelDisplayedRows: function labelDisplayedRows(_ref6) {
|
|
688
|
+
var from = _ref6.from,
|
|
689
|
+
to = _ref6.to,
|
|
690
|
+
count = _ref6.count;
|
|
691
|
+
return "".concat(from, "-").concat(to, " af ").concat(count !== -1 ? count : "mere end ".concat(to));
|
|
692
|
+
}
|
|
693
|
+
}
|
|
694
|
+
},
|
|
695
|
+
MuiRating: {
|
|
696
|
+
defaultProps: {
|
|
697
|
+
getLabelText: function getLabelText(value) {
|
|
698
|
+
return "".concat(value, " Stjern").concat(value !== 1 ? 'er' : '');
|
|
699
|
+
},
|
|
700
|
+
emptyLabelText: 'Tom'
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
MuiAutocomplete: {
|
|
704
|
+
defaultProps: {
|
|
705
|
+
clearText: 'Slet',
|
|
706
|
+
closeText: 'Luk',
|
|
707
|
+
loadingText: 'Indlæser…',
|
|
708
|
+
noOptionsText: 'Ingen muligheder',
|
|
709
|
+
openText: 'Åben'
|
|
710
|
+
}
|
|
711
|
+
},
|
|
712
|
+
MuiAlert: {
|
|
713
|
+
defaultProps: {
|
|
714
|
+
closeText: 'Luk'
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
MuiPagination: {
|
|
718
|
+
defaultProps: {
|
|
719
|
+
'aria-label': 'Sideinddelings navigation',
|
|
720
|
+
getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
|
|
721
|
+
if (type === 'page') {
|
|
722
|
+
return "".concat(selected ? '' : 'Go to ', "page ").concat(page);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
if (type === 'first') {
|
|
726
|
+
return 'Gå til den første side';
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
if (type === 'last') {
|
|
730
|
+
return 'Gå til den sidste side';
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
if (type === 'next') {
|
|
734
|
+
return 'Gå til den næste side';
|
|
735
|
+
} // if (type === 'previous') {
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
return 'Gå til den forrige side';
|
|
739
|
+
}
|
|
740
|
+
}
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
};
|
|
661
744
|
export var deDE = {
|
|
662
745
|
components: {
|
|
663
746
|
MuiBreadcrumbs: {
|
|
@@ -684,10 +767,10 @@ export var deDE = {
|
|
|
684
767
|
return 'Zur vorherigen Seite';
|
|
685
768
|
},
|
|
686
769
|
labelRowsPerPage: 'Zeilen pro Seite:',
|
|
687
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
688
|
-
var from =
|
|
689
|
-
to =
|
|
690
|
-
count =
|
|
770
|
+
labelDisplayedRows: function labelDisplayedRows(_ref7) {
|
|
771
|
+
var from = _ref7.from,
|
|
772
|
+
to = _ref7.to,
|
|
773
|
+
count = _ref7.count;
|
|
691
774
|
return "".concat(from, "\u2013").concat(to, " von ").concat(count !== -1 ? count : "mehr als ".concat(to));
|
|
692
775
|
}
|
|
693
776
|
}
|
|
@@ -767,10 +850,10 @@ export var elGR = {
|
|
|
767
850
|
return 'Προηγούμενη σελίδα';
|
|
768
851
|
},
|
|
769
852
|
labelRowsPerPage: 'Γραμμές ανα σελίδα:',
|
|
770
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
771
|
-
var from =
|
|
772
|
-
to =
|
|
773
|
-
count =
|
|
853
|
+
labelDisplayedRows: function labelDisplayedRows(_ref8) {
|
|
854
|
+
var from = _ref8.from,
|
|
855
|
+
to = _ref8.to,
|
|
856
|
+
count = _ref8.count;
|
|
774
857
|
return "".concat(from, "\u2013").concat(to, " \u03B1\u03C0\u03CC ").concat(count !== -1 ? count : "\u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC ".concat(to));
|
|
775
858
|
}
|
|
776
859
|
}
|
|
@@ -831,7 +914,7 @@ export var enUS = {
|
|
|
831
914
|
MuiBreadcrumbs: { defaultProps: {
|
|
832
915
|
expandText: 'Show path',
|
|
833
916
|
}},
|
|
834
|
-
MuiTablePagination: { defaultProps: {
|
|
917
|
+
MuiTablePagination: { defaultProps: {
|
|
835
918
|
getItemAriaLabel: (type) => {
|
|
836
919
|
if (type === 'first') {
|
|
837
920
|
return 'Go to first page';
|
|
@@ -849,21 +932,21 @@ export var enUS = {
|
|
|
849
932
|
labelDisplayedRows: ({ from, to, count }) =>
|
|
850
933
|
`${from}–${to} of ${count !== -1 ? count : `more than ${to}`}`,
|
|
851
934
|
}},
|
|
852
|
-
MuiRating: { defaultProps: {
|
|
935
|
+
MuiRating: { defaultProps: {
|
|
853
936
|
getLabelText: value => `${value} Star${value !== 1 ? 's' : ''}`,
|
|
854
937
|
emptyLabelText: 'Empty',
|
|
855
938
|
}},
|
|
856
|
-
MuiAutocomplete: { defaultProps: {
|
|
939
|
+
MuiAutocomplete: { defaultProps: {
|
|
857
940
|
clearText: 'Clear',
|
|
858
941
|
closeText: 'Close',
|
|
859
942
|
loadingText: 'Loading…',
|
|
860
943
|
noOptionsText: 'No options',
|
|
861
944
|
openText: 'Open',
|
|
862
945
|
}},
|
|
863
|
-
MuiAlert: { defaultProps: {
|
|
946
|
+
MuiAlert: { defaultProps: {
|
|
864
947
|
closeText: 'Close',
|
|
865
948
|
}},
|
|
866
|
-
MuiPagination: { defaultProps: {
|
|
949
|
+
MuiPagination: { defaultProps: {
|
|
867
950
|
'aria-label': 'Pagination navigation',
|
|
868
951
|
getItemAriaLabel: (type, page, selected) => {
|
|
869
952
|
if (type === 'page') {
|
|
@@ -881,7 +964,7 @@ export var enUS = {
|
|
|
881
964
|
// if (type === 'previous') {
|
|
882
965
|
return 'Go to previous page';
|
|
883
966
|
},
|
|
884
|
-
},
|
|
967
|
+
}},
|
|
885
968
|
},
|
|
886
969
|
*/
|
|
887
970
|
};
|
|
@@ -911,10 +994,10 @@ export var esES = {
|
|
|
911
994
|
return 'Ir a la página anterior';
|
|
912
995
|
},
|
|
913
996
|
labelRowsPerPage: 'Filas por página:',
|
|
914
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
915
|
-
var from =
|
|
916
|
-
to =
|
|
917
|
-
count =
|
|
997
|
+
labelDisplayedRows: function labelDisplayedRows(_ref9) {
|
|
998
|
+
var from = _ref9.from,
|
|
999
|
+
to = _ref9.to,
|
|
1000
|
+
count = _ref9.count;
|
|
918
1001
|
return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "m\xE1s de ".concat(to));
|
|
919
1002
|
}
|
|
920
1003
|
}
|
|
@@ -1156,9 +1239,13 @@ export var fiFI = {
|
|
|
1156
1239
|
|
|
1157
1240
|
return 'Mene edelliselle sivulle';
|
|
1158
1241
|
},
|
|
1159
|
-
labelRowsPerPage: 'Rivejä per sivu:'
|
|
1160
|
-
|
|
1161
|
-
|
|
1242
|
+
labelRowsPerPage: 'Rivejä per sivu:',
|
|
1243
|
+
labelDisplayedRows: function labelDisplayedRows(_ref10) {
|
|
1244
|
+
var from = _ref10.from,
|
|
1245
|
+
to = _ref10.to,
|
|
1246
|
+
count = _ref10.count;
|
|
1247
|
+
return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "enemm\xE4n kuin ".concat(to));
|
|
1248
|
+
}
|
|
1162
1249
|
}
|
|
1163
1250
|
},
|
|
1164
1251
|
MuiRating: {
|
|
@@ -1236,10 +1323,10 @@ export var frFR = {
|
|
|
1236
1323
|
return 'Aller à la page précédente';
|
|
1237
1324
|
},
|
|
1238
1325
|
labelRowsPerPage: 'Lignes par page :',
|
|
1239
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
1240
|
-
var from =
|
|
1241
|
-
to =
|
|
1242
|
-
count =
|
|
1326
|
+
labelDisplayedRows: function labelDisplayedRows(_ref11) {
|
|
1327
|
+
var from = _ref11.from,
|
|
1328
|
+
to = _ref11.to,
|
|
1329
|
+
count = _ref11.count;
|
|
1243
1330
|
return "".concat(from, "\u2013").concat(to, " sur ").concat(count !== -1 ? count : "plus que ".concat(to));
|
|
1244
1331
|
}
|
|
1245
1332
|
}
|
|
@@ -1319,10 +1406,10 @@ export var heIL = {
|
|
|
1319
1406
|
return 'לעמוד הקודם';
|
|
1320
1407
|
},
|
|
1321
1408
|
labelRowsPerPage: 'שורות בעמוד:',
|
|
1322
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
1323
|
-
var from =
|
|
1324
|
-
to =
|
|
1325
|
-
count =
|
|
1409
|
+
labelDisplayedRows: function labelDisplayedRows(_ref12) {
|
|
1410
|
+
var from = _ref12.from,
|
|
1411
|
+
to = _ref12.to,
|
|
1412
|
+
count = _ref12.count;
|
|
1326
1413
|
return "".concat(from, "\u2013").concat(to, " \u05DE\u05EA\u05D5\u05DA ").concat(count !== -1 ? count : "\u05D9\u05D5\u05EA\u05E8 \u05DE ".concat(to));
|
|
1327
1414
|
}
|
|
1328
1415
|
}
|
|
@@ -1402,10 +1489,10 @@ export var hiIN = {
|
|
|
1402
1489
|
return 'पिछले पृष्ठ पर जाएँ';
|
|
1403
1490
|
},
|
|
1404
1491
|
labelRowsPerPage: 'पंक्तियाँ प्रति पृष्ठ:',
|
|
1405
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
1406
|
-
var from =
|
|
1407
|
-
to =
|
|
1408
|
-
count =
|
|
1492
|
+
labelDisplayedRows: function labelDisplayedRows(_ref13) {
|
|
1493
|
+
var from = _ref13.from,
|
|
1494
|
+
to = _ref13.to,
|
|
1495
|
+
count = _ref13.count;
|
|
1409
1496
|
return "".concat(from, "-").concat(to === -1 ? count : to, " \u0915\u0941\u0932 ").concat(count, " \u092E\u0947\u0902");
|
|
1410
1497
|
}
|
|
1411
1498
|
}
|
|
@@ -1859,10 +1946,10 @@ export var jaJP = {
|
|
|
1859
1946
|
return '前のページへ';
|
|
1860
1947
|
},
|
|
1861
1948
|
labelRowsPerPage: 'ページあたりの行数:',
|
|
1862
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
1863
|
-
var from =
|
|
1864
|
-
to =
|
|
1865
|
-
count =
|
|
1949
|
+
labelDisplayedRows: function labelDisplayedRows(_ref14) {
|
|
1950
|
+
var from = _ref14.from,
|
|
1951
|
+
to = _ref14.to,
|
|
1952
|
+
count = _ref14.count;
|
|
1866
1953
|
return "".concat(from, "\uFF5E").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, "\u4EE5\u4E0A"));
|
|
1867
1954
|
}
|
|
1868
1955
|
}
|
|
@@ -1942,10 +2029,10 @@ export var khKH = {
|
|
|
1942
2029
|
return 'ទៅទំព័រមុន';
|
|
1943
2030
|
},
|
|
1944
2031
|
labelRowsPerPage: 'ចំនួនជួរដេកក្នុងមួយទំព័រ:',
|
|
1945
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
1946
|
-
var from =
|
|
1947
|
-
to =
|
|
1948
|
-
count =
|
|
2032
|
+
labelDisplayedRows: function labelDisplayedRows(_ref15) {
|
|
2033
|
+
var from = _ref15.from,
|
|
2034
|
+
to = _ref15.to,
|
|
2035
|
+
count = _ref15.count;
|
|
1949
2036
|
return "".concat(from, " - ").concat(to, " \u1793\u17C3 ").concat(count !== -1 ? count : "\u1785\u17D2\u179A\u17BE\u1793\u1787\u17B6\u1784 ".concat(to));
|
|
1950
2037
|
}
|
|
1951
2038
|
}
|
|
@@ -2025,10 +2112,10 @@ export var koKR = {
|
|
|
2025
2112
|
return '이전 페이지로 이동';
|
|
2026
2113
|
},
|
|
2027
2114
|
labelRowsPerPage: '페이지 당 행:',
|
|
2028
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2029
|
-
var from =
|
|
2030
|
-
to =
|
|
2031
|
-
count =
|
|
2115
|
+
labelDisplayedRows: function labelDisplayedRows(_ref16) {
|
|
2116
|
+
var from = _ref16.from,
|
|
2117
|
+
to = _ref16.to,
|
|
2118
|
+
count = _ref16.count;
|
|
2032
2119
|
return "".concat(from, "\u2013").concat(to, " / ").concat(count !== -1 ? count : "".concat(to, "\uAC1C \uC774\uC0C1"));
|
|
2033
2120
|
}
|
|
2034
2121
|
}
|
|
@@ -2108,10 +2195,10 @@ export var kzKZ = {
|
|
|
2108
2195
|
return 'Алдыңғы бетке өту';
|
|
2109
2196
|
},
|
|
2110
2197
|
labelRowsPerPage: 'Беттегі қатарлар:',
|
|
2111
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2112
|
-
var from =
|
|
2113
|
-
to =
|
|
2114
|
-
count =
|
|
2198
|
+
labelDisplayedRows: function labelDisplayedRows(_ref17) {
|
|
2199
|
+
var from = _ref17.from,
|
|
2200
|
+
to = _ref17.to,
|
|
2201
|
+
count = _ref17.count;
|
|
2115
2202
|
return "".concat(count !== -1 ? count : "+".concat(to), " \u049B\u0430\u0442\u0430\u0440\u0434\u044B\u04A3 \u0456\u0448\u0456\u043D\u0435\u043D ").concat(from, "\u2013").concat(to);
|
|
2116
2203
|
}
|
|
2117
2204
|
}
|
|
@@ -2169,6 +2256,89 @@ export var kzKZ = {
|
|
|
2169
2256
|
}
|
|
2170
2257
|
}
|
|
2171
2258
|
};
|
|
2259
|
+
export var nbNO = {
|
|
2260
|
+
components: {
|
|
2261
|
+
MuiBreadcrumbs: {
|
|
2262
|
+
defaultProps: {
|
|
2263
|
+
expandText: 'Vis sti'
|
|
2264
|
+
}
|
|
2265
|
+
},
|
|
2266
|
+
MuiTablePagination: {
|
|
2267
|
+
defaultProps: {
|
|
2268
|
+
getItemAriaLabel: function getItemAriaLabel(type) {
|
|
2269
|
+
if (type === 'first') {
|
|
2270
|
+
return 'Gå til første side';
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
if (type === 'last') {
|
|
2274
|
+
return 'Gå til siste side';
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
if (type === 'next') {
|
|
2278
|
+
return 'Gå til neste side';
|
|
2279
|
+
} // if (type === 'previous') {
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
return 'Gå til forrige side';
|
|
2283
|
+
},
|
|
2284
|
+
labelRowsPerPage: 'Rader per side:',
|
|
2285
|
+
labelDisplayedRows: function labelDisplayedRows(_ref18) {
|
|
2286
|
+
var from = _ref18.from,
|
|
2287
|
+
to = _ref18.to,
|
|
2288
|
+
count = _ref18.count;
|
|
2289
|
+
return "".concat(from, "\u2013").concat(to, " av ").concat(count !== -1 ? count : "mer enn ".concat(to));
|
|
2290
|
+
}
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
MuiRating: {
|
|
2294
|
+
defaultProps: {
|
|
2295
|
+
getLabelText: function getLabelText(value) {
|
|
2296
|
+
return "".concat(value, " Stjerne").concat(value !== 1 ? 'r' : '');
|
|
2297
|
+
},
|
|
2298
|
+
emptyLabelText: 'Tom'
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
MuiAutocomplete: {
|
|
2302
|
+
defaultProps: {
|
|
2303
|
+
clearText: 'Tøm',
|
|
2304
|
+
closeText: 'Lukk',
|
|
2305
|
+
loadingText: 'Laster inn…',
|
|
2306
|
+
noOptionsText: 'Ingen alternativer',
|
|
2307
|
+
openText: 'Åpne'
|
|
2308
|
+
}
|
|
2309
|
+
},
|
|
2310
|
+
MuiAlert: {
|
|
2311
|
+
defaultProps: {
|
|
2312
|
+
closeText: 'Lukk'
|
|
2313
|
+
}
|
|
2314
|
+
},
|
|
2315
|
+
MuiPagination: {
|
|
2316
|
+
defaultProps: {
|
|
2317
|
+
'aria-label': 'Paginering navigasjon',
|
|
2318
|
+
getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
|
|
2319
|
+
if (type === 'page') {
|
|
2320
|
+
return "".concat(selected ? '' : 'Gå til ', "side ").concat(page);
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2323
|
+
if (type === 'first') {
|
|
2324
|
+
return 'Gå til første side';
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
if (type === 'last') {
|
|
2328
|
+
return 'Gå til siste side';
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
if (type === 'next') {
|
|
2332
|
+
return 'Gå til neste side';
|
|
2333
|
+
} // if (type === 'previous') {
|
|
2334
|
+
|
|
2335
|
+
|
|
2336
|
+
return 'Gå til forrige side';
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
};
|
|
2172
2342
|
export var nlNL = {
|
|
2173
2343
|
components: {
|
|
2174
2344
|
MuiBreadcrumbs: {
|
|
@@ -2195,10 +2365,10 @@ export var nlNL = {
|
|
|
2195
2365
|
return 'Ga naar vorige pagina';
|
|
2196
2366
|
},
|
|
2197
2367
|
labelRowsPerPage: 'Regels per pagina:',
|
|
2198
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2199
|
-
var from =
|
|
2200
|
-
to =
|
|
2201
|
-
count =
|
|
2368
|
+
labelDisplayedRows: function labelDisplayedRows(_ref19) {
|
|
2369
|
+
var from = _ref19.from,
|
|
2370
|
+
to = _ref19.to,
|
|
2371
|
+
count = _ref19.count;
|
|
2202
2372
|
return "".concat(from, "\u2013").concat(to, " van ").concat(count !== -1 ? count : "meer dan ".concat(to));
|
|
2203
2373
|
}
|
|
2204
2374
|
}
|
|
@@ -2366,10 +2536,10 @@ export var ptBR = {
|
|
|
2366
2536
|
return 'Ir para a página anterior';
|
|
2367
2537
|
},
|
|
2368
2538
|
labelRowsPerPage: 'Linhas por página:',
|
|
2369
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2370
|
-
var from =
|
|
2371
|
-
to =
|
|
2372
|
-
count =
|
|
2539
|
+
labelDisplayedRows: function labelDisplayedRows(_ref20) {
|
|
2540
|
+
var from = _ref20.from,
|
|
2541
|
+
to = _ref20.to,
|
|
2542
|
+
count = _ref20.count;
|
|
2373
2543
|
return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "mais de ".concat(to));
|
|
2374
2544
|
}
|
|
2375
2545
|
}
|
|
@@ -2449,10 +2619,10 @@ export var ptPT = {
|
|
|
2449
2619
|
return 'Página anterior';
|
|
2450
2620
|
},
|
|
2451
2621
|
labelRowsPerPage: 'Linhas por página:',
|
|
2452
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2453
|
-
var from =
|
|
2454
|
-
to =
|
|
2455
|
-
count =
|
|
2622
|
+
labelDisplayedRows: function labelDisplayedRows(_ref21) {
|
|
2623
|
+
var from = _ref21.from,
|
|
2624
|
+
to = _ref21.to,
|
|
2625
|
+
count = _ref21.count;
|
|
2456
2626
|
return "".concat(from, "\u2013").concat(to, " de ").concat(count !== -1 ? count : "mais de ".concat(to));
|
|
2457
2627
|
}
|
|
2458
2628
|
}
|
|
@@ -2611,10 +2781,10 @@ export var ruRU = {
|
|
|
2611
2781
|
return 'Перейти на предыдущую страницу';
|
|
2612
2782
|
},
|
|
2613
2783
|
labelRowsPerPage: 'Строк на странице:',
|
|
2614
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2615
|
-
var from =
|
|
2616
|
-
to =
|
|
2617
|
-
count =
|
|
2784
|
+
labelDisplayedRows: function labelDisplayedRows(_ref22) {
|
|
2785
|
+
var from = _ref22.from,
|
|
2786
|
+
to = _ref22.to,
|
|
2787
|
+
count = _ref22.count;
|
|
2618
2788
|
return "".concat(from, "\u2013").concat(to, " \u0438\u0437 ").concat(count !== -1 ? count : "\u0431\u043E\u043B\u0435\u0435 \u0447\u0435\u043C ".concat(to));
|
|
2619
2789
|
}
|
|
2620
2790
|
}
|
|
@@ -2707,10 +2877,10 @@ export var siLK = {
|
|
|
2707
2877
|
return 'පෙර පිටුවට යන්න';
|
|
2708
2878
|
},
|
|
2709
2879
|
labelRowsPerPage: 'පිටුවක පේළි:',
|
|
2710
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2711
|
-
var from =
|
|
2712
|
-
to =
|
|
2713
|
-
count =
|
|
2880
|
+
labelDisplayedRows: function labelDisplayedRows(_ref23) {
|
|
2881
|
+
var from = _ref23.from,
|
|
2882
|
+
to = _ref23.to,
|
|
2883
|
+
count = _ref23.count;
|
|
2714
2884
|
return "".concat(from, "\u2013").concat(to, " \u0DAF\u0D9A\u0DCA\u0DC0\u0DCF ").concat(count !== -1 ? count : "".concat(to, " \u0DA7 \u0DC0\u0DD0\u0DA9\u0DD2 \u0DB4\u0DCA\u200D\u0DBB\u0DB8\u0DCF\u0DAB\u0DBA\u0D9A\u0DD2\u0DB1\u0DCA"));
|
|
2715
2885
|
}
|
|
2716
2886
|
}
|
|
@@ -2790,10 +2960,10 @@ export var skSK = {
|
|
|
2790
2960
|
return 'Ísť na predchádzajúcu stránku';
|
|
2791
2961
|
},
|
|
2792
2962
|
labelRowsPerPage: 'Riadkov na stránke:',
|
|
2793
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2794
|
-
var from =
|
|
2795
|
-
to =
|
|
2796
|
-
count =
|
|
2963
|
+
labelDisplayedRows: function labelDisplayedRows(_ref24) {
|
|
2964
|
+
var from = _ref24.from,
|
|
2965
|
+
to = _ref24.to,
|
|
2966
|
+
count = _ref24.count;
|
|
2797
2967
|
return "".concat(from, "\u2013").concat(to, " z ").concat(count !== -1 ? count : "viac ako ".concat(to));
|
|
2798
2968
|
}
|
|
2799
2969
|
}
|
|
@@ -2881,10 +3051,10 @@ export var svSE = {
|
|
|
2881
3051
|
return 'Gå till föregående sida';
|
|
2882
3052
|
},
|
|
2883
3053
|
labelRowsPerPage: 'Rader per sida:',
|
|
2884
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2885
|
-
var from =
|
|
2886
|
-
to =
|
|
2887
|
-
count =
|
|
3054
|
+
labelDisplayedRows: function labelDisplayedRows(_ref25) {
|
|
3055
|
+
var from = _ref25.from,
|
|
3056
|
+
to = _ref25.to,
|
|
3057
|
+
count = _ref25.count;
|
|
2888
3058
|
return "".concat(from, "\u2013").concat(to, " av ").concat(count !== -1 ? count : "fler \xE4n ".concat(to));
|
|
2889
3059
|
}
|
|
2890
3060
|
}
|
|
@@ -2964,10 +3134,10 @@ export var thTH = {
|
|
|
2964
3134
|
return 'ไปที่หน้าก่อน';
|
|
2965
3135
|
},
|
|
2966
3136
|
labelRowsPerPage: 'จำนวนแถวต่อหน้า:',
|
|
2967
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
2968
|
-
var from =
|
|
2969
|
-
to =
|
|
2970
|
-
count =
|
|
3137
|
+
labelDisplayedRows: function labelDisplayedRows(_ref26) {
|
|
3138
|
+
var from = _ref26.from,
|
|
3139
|
+
to = _ref26.to,
|
|
3140
|
+
count = _ref26.count;
|
|
2971
3141
|
return "".concat(from, "\u2013").concat(to, " \u0E08\u0E32\u0E01 ").concat(count !== -1 ? count : "\u0E21\u0E32\u0E01\u0E01\u0E27\u0E48\u0E32 ".concat(to));
|
|
2972
3142
|
}
|
|
2973
3143
|
}
|
|
@@ -3126,10 +3296,10 @@ export var ukUA = {
|
|
|
3126
3296
|
return 'Перейти на попередню сторінку';
|
|
3127
3297
|
},
|
|
3128
3298
|
labelRowsPerPage: 'Рядків на сторінці:',
|
|
3129
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
3130
|
-
var from =
|
|
3131
|
-
to =
|
|
3132
|
-
count =
|
|
3299
|
+
labelDisplayedRows: function labelDisplayedRows(_ref27) {
|
|
3300
|
+
var from = _ref27.from,
|
|
3301
|
+
to = _ref27.to,
|
|
3302
|
+
count = _ref27.count;
|
|
3133
3303
|
return "".concat(from, "\u2013").concat(to, " \u0437 ").concat(count !== -1 ? count : "\u043F\u043E\u043D\u0430\u0434 ".concat(to));
|
|
3134
3304
|
}
|
|
3135
3305
|
}
|
|
@@ -3194,31 +3364,34 @@ export var ukUA = {
|
|
|
3194
3364
|
};
|
|
3195
3365
|
export var viVN = {
|
|
3196
3366
|
components: {
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3367
|
+
MuiBreadcrumbs: {
|
|
3368
|
+
defaultProps: {
|
|
3369
|
+
expandText: 'Mở ra'
|
|
3370
|
+
}
|
|
3371
|
+
},
|
|
3202
3372
|
MuiTablePagination: {
|
|
3203
3373
|
defaultProps: {
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3374
|
+
getItemAriaLabel: function getItemAriaLabel(type) {
|
|
3375
|
+
if (type === 'first') {
|
|
3376
|
+
return 'Tới trang đầu tiên';
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
if (type === 'last') {
|
|
3380
|
+
return 'Tới trang cuối cùng';
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
if (type === 'next') {
|
|
3384
|
+
return 'Tới trang tiếp theo';
|
|
3385
|
+
} // if (type === 'previous') {
|
|
3386
|
+
|
|
3387
|
+
|
|
3388
|
+
return 'Về trang trước đó';
|
|
3389
|
+
},
|
|
3217
3390
|
labelRowsPerPage: 'Số hàng mỗi trang:',
|
|
3218
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
3219
|
-
var from =
|
|
3220
|
-
to =
|
|
3221
|
-
count =
|
|
3391
|
+
labelDisplayedRows: function labelDisplayedRows(_ref28) {
|
|
3392
|
+
var from = _ref28.from,
|
|
3393
|
+
to = _ref28.to,
|
|
3394
|
+
count = _ref28.count;
|
|
3222
3395
|
return "".concat(from, "\u2013").concat(to, " trong ").concat(count !== -1 ? count : "nhi\u1EC1u h\u01A1n ".concat(to));
|
|
3223
3396
|
}
|
|
3224
3397
|
}
|
|
@@ -3228,7 +3401,7 @@ export var viVN = {
|
|
|
3228
3401
|
getLabelText: function getLabelText(value) {
|
|
3229
3402
|
return "".concat(value, " sao");
|
|
3230
3403
|
},
|
|
3231
|
-
emptyLabelText: '
|
|
3404
|
+
emptyLabelText: 'Không có dữ liệu'
|
|
3232
3405
|
}
|
|
3233
3406
|
},
|
|
3234
3407
|
MuiAutocomplete: {
|
|
@@ -3236,7 +3409,7 @@ export var viVN = {
|
|
|
3236
3409
|
clearText: 'Xóa',
|
|
3237
3410
|
closeText: 'Đóng',
|
|
3238
3411
|
loadingText: 'Đang tải…',
|
|
3239
|
-
noOptionsText: 'Không có lựa chọn',
|
|
3412
|
+
noOptionsText: 'Không có lựa chọn nào',
|
|
3240
3413
|
openText: 'Mở'
|
|
3241
3414
|
}
|
|
3242
3415
|
},
|
|
@@ -3244,28 +3417,32 @@ export var viVN = {
|
|
|
3244
3417
|
defaultProps: {
|
|
3245
3418
|
closeText: 'Đóng'
|
|
3246
3419
|
}
|
|
3247
|
-
}
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
// return 'Go to first page';
|
|
3256
|
-
// }
|
|
3257
|
-
// if (type === 'last') {
|
|
3258
|
-
// return 'Go to last page';
|
|
3259
|
-
// }
|
|
3260
|
-
// if (type === 'next') {
|
|
3261
|
-
// return 'Go to next page';
|
|
3262
|
-
// }
|
|
3263
|
-
// // if (type === 'previous') {
|
|
3264
|
-
// return 'Go to previous page';
|
|
3265
|
-
// },
|
|
3266
|
-
// },
|
|
3267
|
-
// },
|
|
3420
|
+
},
|
|
3421
|
+
MuiPagination: {
|
|
3422
|
+
defaultProps: {
|
|
3423
|
+
'aria-label': 'Thanh điều khiển trang',
|
|
3424
|
+
getItemAriaLabel: function getItemAriaLabel(type, page, selected) {
|
|
3425
|
+
if (type === 'page') {
|
|
3426
|
+
return "".concat(selected ? '' : 'Tới ', "trang ").concat(page);
|
|
3427
|
+
}
|
|
3268
3428
|
|
|
3429
|
+
if (type === 'first') {
|
|
3430
|
+
return 'Tới trang đầu tiên';
|
|
3431
|
+
}
|
|
3432
|
+
|
|
3433
|
+
if (type === 'last') {
|
|
3434
|
+
return 'Tới trang cuối cùng';
|
|
3435
|
+
}
|
|
3436
|
+
|
|
3437
|
+
if (type === 'next') {
|
|
3438
|
+
return 'Tới trang tiếp theo';
|
|
3439
|
+
} // if (type === 'previous') {
|
|
3440
|
+
|
|
3441
|
+
|
|
3442
|
+
return 'Về trang trước đó';
|
|
3443
|
+
}
|
|
3444
|
+
}
|
|
3445
|
+
}
|
|
3269
3446
|
}
|
|
3270
3447
|
};
|
|
3271
3448
|
export var zhCN = {
|
|
@@ -3293,10 +3470,10 @@ export var zhCN = {
|
|
|
3293
3470
|
return '上一页';
|
|
3294
3471
|
},
|
|
3295
3472
|
labelRowsPerPage: '每页行数:',
|
|
3296
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
3297
|
-
var from =
|
|
3298
|
-
to =
|
|
3299
|
-
count =
|
|
3473
|
+
labelDisplayedRows: function labelDisplayedRows(_ref29) {
|
|
3474
|
+
var from = _ref29.from,
|
|
3475
|
+
to = _ref29.to,
|
|
3476
|
+
count = _ref29.count;
|
|
3300
3477
|
return "\u7B2C ".concat(from, " \u6761\u5230\u7B2C ").concat(to, " \u6761\uFF0C").concat(count !== -1 ? "\u5171 ".concat(count, " \u6761") : "\u81F3\u5C11 ".concat(to, " \u6761"));
|
|
3301
3478
|
}
|
|
3302
3479
|
}
|
|
@@ -3350,10 +3527,10 @@ export var zhHK = {
|
|
|
3350
3527
|
return '上一頁';
|
|
3351
3528
|
},
|
|
3352
3529
|
labelRowsPerPage: '每頁行數:',
|
|
3353
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
3354
|
-
var from =
|
|
3355
|
-
to =
|
|
3356
|
-
count =
|
|
3530
|
+
labelDisplayedRows: function labelDisplayedRows(_ref30) {
|
|
3531
|
+
var from = _ref30.from,
|
|
3532
|
+
to = _ref30.to,
|
|
3533
|
+
count = _ref30.count;
|
|
3357
3534
|
return "\u7B2C ".concat(from, " \u9805\u81F3\u7B2C ").concat(to, " \u9805\uFF0C").concat(count !== -1 ? "\u5171 ".concat(count, " \u9805") : "\u8D85\u904E ".concat(to, " \u9805"));
|
|
3358
3535
|
}
|
|
3359
3536
|
}
|
|
@@ -3407,10 +3584,10 @@ export var zhTW = {
|
|
|
3407
3584
|
return '上一頁';
|
|
3408
3585
|
},
|
|
3409
3586
|
labelRowsPerPage: '每行行數:',
|
|
3410
|
-
labelDisplayedRows: function labelDisplayedRows(
|
|
3411
|
-
var from =
|
|
3412
|
-
to =
|
|
3413
|
-
count =
|
|
3587
|
+
labelDisplayedRows: function labelDisplayedRows(_ref31) {
|
|
3588
|
+
var from = _ref31.from,
|
|
3589
|
+
to = _ref31.to,
|
|
3590
|
+
count = _ref31.count;
|
|
3414
3591
|
return "\u7B2C ".concat(from, " \u689D\u5230\u7B2C ").concat(to, " \u689D\uFF0C").concat(count !== -1 ? "\u5171 ".concat(count, " \u689D") : "\u81F3\u5C11 ".concat(to, " \u689D"));
|
|
3415
3592
|
}
|
|
3416
3593
|
}
|