init 3
This commit is contained in:
2
node_modules/@mui/material/esm/locale/amET.d.ts
generated
vendored
Normal file
2
node_modules/@mui/material/esm/locale/amET.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import type { Localization } from "./utils/LocaleTextApi.js";
|
||||
export declare const amET: Localization;
|
||||
73
node_modules/@mui/material/esm/locale/arSD.js
generated
vendored
Normal file
73
node_modules/@mui/material/esm/locale/arSD.js
generated
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
export const arSD = {
|
||||
components: {
|
||||
MuiBreadcrumbs: {
|
||||
defaultProps: {
|
||||
expandText: 'إظهار المسار'
|
||||
}
|
||||
},
|
||||
MuiTablePagination: {
|
||||
defaultProps: {
|
||||
getItemAriaLabel: type => {
|
||||
if (type === 'first') {
|
||||
return 'انتقل إلى الصفحة الأولى';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'انتقل إلى الصفحة الأخيرة';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'انتقل إلى الصفحة التالية';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'انتقل إلى الصفحة السابقة';
|
||||
},
|
||||
labelRowsPerPage: 'عدد الصفوف في الصفحة:',
|
||||
labelDisplayedRows: ({
|
||||
from,
|
||||
to,
|
||||
count
|
||||
}) => `${from}–${to} من ${count !== -1 ? count : ` أكثر من${to}`}`
|
||||
}
|
||||
},
|
||||
MuiRating: {
|
||||
defaultProps: {
|
||||
getLabelText: value => `${value} ${value !== 1 ? 'نجوم' : 'نجمة'}`,
|
||||
emptyLabelText: 'فارغ'
|
||||
}
|
||||
},
|
||||
MuiAutocomplete: {
|
||||
defaultProps: {
|
||||
clearText: 'مسح',
|
||||
closeText: 'إغلاق',
|
||||
loadingText: 'جار التحميل...',
|
||||
noOptionsText: 'لا يوجد خيارات',
|
||||
openText: 'فتح'
|
||||
}
|
||||
},
|
||||
MuiAlert: {
|
||||
defaultProps: {
|
||||
closeText: 'إغلاق'
|
||||
}
|
||||
},
|
||||
MuiPagination: {
|
||||
defaultProps: {
|
||||
'aria-label': 'التنقل عبر الصفحات',
|
||||
getItemAriaLabel: (type, page, selected) => {
|
||||
if (type === 'page') {
|
||||
return `${selected ? '' : 'انتقل إلى '} صفحة ${page}`;
|
||||
}
|
||||
if (type === 'first') {
|
||||
return 'انتقل إلى الصفحة الأولى';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'انتقل الي الصفحة الأخيرة';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'انتقل إلى الصفحة التالية';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'انتقل إلى الصفحة السابقة';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
85
node_modules/@mui/material/esm/locale/beBY.js
generated
vendored
Normal file
85
node_modules/@mui/material/esm/locale/beBY.js
generated
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
export const beBY = {
|
||||
components: {
|
||||
MuiBreadcrumbs: {
|
||||
defaultProps: {
|
||||
expandText: 'Паказаць шлях'
|
||||
}
|
||||
},
|
||||
MuiTablePagination: {
|
||||
defaultProps: {
|
||||
getItemAriaLabel: type => {
|
||||
if (type === 'first') {
|
||||
return 'Перайсці на першую старонку';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Перайсці на апошнюю старонку';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Перайсці на наступную старонку';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Перайсці на папярэднюю старонку';
|
||||
},
|
||||
labelRowsPerPage: 'Радкоў на старонцы:',
|
||||
labelDisplayedRows: ({
|
||||
from,
|
||||
to,
|
||||
count
|
||||
}) => `${from}–${to} з ${count !== -1 ? count : `больш чым ${to}`}`
|
||||
}
|
||||
},
|
||||
MuiRating: {
|
||||
defaultProps: {
|
||||
getLabelText: value => {
|
||||
let pluralForm = 'Зорак';
|
||||
const lastDigit = value % 10;
|
||||
if (lastDigit > 1 && lastDigit < 5 && (value < 10 || value > 20)) {
|
||||
pluralForm = 'Зоркі';
|
||||
} else if (lastDigit === 1 && value % 100 !== 11) {
|
||||
pluralForm = 'Зорка';
|
||||
}
|
||||
return `${value} ${pluralForm}`;
|
||||
},
|
||||
emptyLabelText: 'Рэйтынг адсутнічае'
|
||||
}
|
||||
},
|
||||
MuiAutocomplete: {
|
||||
defaultProps: {
|
||||
clearText: 'Ачысціць',
|
||||
closeText: 'Закрыць',
|
||||
loadingText: 'Загрузка…',
|
||||
noOptionsText: 'Няма варыянтаў',
|
||||
openText: 'Адкрыць'
|
||||
}
|
||||
},
|
||||
MuiAlert: {
|
||||
defaultProps: {
|
||||
closeText: 'Закрыць'
|
||||
}
|
||||
},
|
||||
MuiPagination: {
|
||||
defaultProps: {
|
||||
'aria-label': 'Навігацыя па старонкам',
|
||||
getItemAriaLabel: (type, page, selected) => {
|
||||
if (type === 'page') {
|
||||
if (selected) {
|
||||
return `${page} старонка`;
|
||||
}
|
||||
return `Перайсці на ${page} старонку`;
|
||||
}
|
||||
if (type === 'first') {
|
||||
return 'Перайсці на першую старонку';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Перайсці на апошнюю старонку';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Перайсці на наступную старонку';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Перайсці на папярэднюю старонку';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
73
node_modules/@mui/material/esm/locale/daDK.js
generated
vendored
Normal file
73
node_modules/@mui/material/esm/locale/daDK.js
generated
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
export const daDK = {
|
||||
components: {
|
||||
MuiBreadcrumbs: {
|
||||
defaultProps: {
|
||||
expandText: 'Vis sti'
|
||||
}
|
||||
},
|
||||
MuiTablePagination: {
|
||||
defaultProps: {
|
||||
getItemAriaLabel: type => {
|
||||
if (type === 'first') {
|
||||
return 'Gå til den første side';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Gå til den sidste side';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Gå til den næste side';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Gå til den forrige side';
|
||||
},
|
||||
labelRowsPerPage: 'Rækker pr side:',
|
||||
labelDisplayedRows: ({
|
||||
from,
|
||||
to,
|
||||
count
|
||||
}) => `${from}-${to} af ${count !== -1 ? count : `mere end ${to}`}`
|
||||
}
|
||||
},
|
||||
MuiRating: {
|
||||
defaultProps: {
|
||||
getLabelText: value => `${value} Stjern${value !== 1 ? 'er' : ''}`,
|
||||
emptyLabelText: 'Tom'
|
||||
}
|
||||
},
|
||||
MuiAutocomplete: {
|
||||
defaultProps: {
|
||||
clearText: 'Slet',
|
||||
closeText: 'Luk',
|
||||
loadingText: 'Indlæser…',
|
||||
noOptionsText: 'Ingen muligheder',
|
||||
openText: 'Åben'
|
||||
}
|
||||
},
|
||||
MuiAlert: {
|
||||
defaultProps: {
|
||||
closeText: 'Luk'
|
||||
}
|
||||
},
|
||||
MuiPagination: {
|
||||
defaultProps: {
|
||||
'aria-label': 'Sideinddelings navigation',
|
||||
getItemAriaLabel: (type, page, selected) => {
|
||||
if (type === 'page') {
|
||||
return `${selected ? '' : 'Go to '}page ${page}`;
|
||||
}
|
||||
if (type === 'first') {
|
||||
return 'Gå til den første side';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Gå til den sidste side';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Gå til den næste side';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Gå til den forrige side';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
73
node_modules/@mui/material/esm/locale/jaJP.js
generated
vendored
Normal file
73
node_modules/@mui/material/esm/locale/jaJP.js
generated
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
export const jaJP = {
|
||||
components: {
|
||||
MuiBreadcrumbs: {
|
||||
defaultProps: {
|
||||
expandText: 'すべて表示'
|
||||
}
|
||||
},
|
||||
MuiTablePagination: {
|
||||
defaultProps: {
|
||||
getItemAriaLabel: type => {
|
||||
if (type === 'first') {
|
||||
return '最初のページへ';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return '最後のページへ';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return '次のページへ';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return '前のページへ';
|
||||
},
|
||||
labelRowsPerPage: 'ページあたりの行数:',
|
||||
labelDisplayedRows: ({
|
||||
from,
|
||||
to,
|
||||
count
|
||||
}) => `${from}~${to} / ${count !== -1 ? count : `${to}以上`}`
|
||||
}
|
||||
},
|
||||
MuiRating: {
|
||||
defaultProps: {
|
||||
getLabelText: value => `星${value}`,
|
||||
emptyLabelText: '星なし'
|
||||
}
|
||||
},
|
||||
MuiAutocomplete: {
|
||||
defaultProps: {
|
||||
clearText: 'クリア',
|
||||
closeText: '閉じる',
|
||||
loadingText: '読み込み中…',
|
||||
noOptionsText: 'データがありません',
|
||||
openText: '開く'
|
||||
}
|
||||
},
|
||||
MuiAlert: {
|
||||
defaultProps: {
|
||||
closeText: '閉じる'
|
||||
}
|
||||
},
|
||||
MuiPagination: {
|
||||
defaultProps: {
|
||||
'aria-label': 'ページ選択',
|
||||
getItemAriaLabel: (type, page, selected) => {
|
||||
if (type === 'page') {
|
||||
return `ページ${page}${selected ? '' : 'へ'}`;
|
||||
}
|
||||
if (type === 'first') {
|
||||
return '最初のページへ';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return '最後のページへ';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return '次のページへ';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return '前のページへ';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
2
node_modules/@mui/material/esm/locale/kkKZ.d.ts
generated
vendored
Normal file
2
node_modules/@mui/material/esm/locale/kkKZ.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import type { Localization } from "./utils/LocaleTextApi.js";
|
||||
export declare const kkKZ: Localization;
|
||||
2
node_modules/@mui/material/esm/locale/psAF.d.ts
generated
vendored
Normal file
2
node_modules/@mui/material/esm/locale/psAF.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import type { Localization } from "./utils/LocaleTextApi.js";
|
||||
export declare const psAF: Localization;
|
||||
74
node_modules/@mui/material/esm/locale/tlTL.js
generated
vendored
Normal file
74
node_modules/@mui/material/esm/locale/tlTL.js
generated
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
// Tagalog-Tagalog
|
||||
export const tlTL = {
|
||||
components: {
|
||||
MuiBreadcrumbs: {
|
||||
defaultProps: {
|
||||
expandText: 'Ipakita ang landas'
|
||||
}
|
||||
},
|
||||
MuiTablePagination: {
|
||||
defaultProps: {
|
||||
getItemAriaLabel: type => {
|
||||
if (type === 'first') {
|
||||
return 'Pumunta sa unang pahina';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Pumunta sa huling pahina';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Pumunta sa susunod na pahina';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Pumunta sa nakaraang pahina';
|
||||
},
|
||||
labelRowsPerPage: 'Mga hilera bawat pahina:',
|
||||
labelDisplayedRows: ({
|
||||
from,
|
||||
to,
|
||||
count
|
||||
}) => `${from}–${to} ng ${count !== -1 ? count : `higit sa ${to}`}`
|
||||
}
|
||||
},
|
||||
MuiRating: {
|
||||
defaultProps: {
|
||||
getLabelText: value => `${value} Bituin${value !== 1 ? 's' : ''}`,
|
||||
emptyLabelText: 'Walang laman'
|
||||
}
|
||||
},
|
||||
MuiAutocomplete: {
|
||||
defaultProps: {
|
||||
clearText: 'Maaliwalas',
|
||||
closeText: 'Isara',
|
||||
loadingText: 'Naglo-load…',
|
||||
noOptionsText: 'Walang mga pagpipilian',
|
||||
openText: 'Bukas'
|
||||
}
|
||||
},
|
||||
MuiAlert: {
|
||||
defaultProps: {
|
||||
closeText: 'Isara'
|
||||
}
|
||||
},
|
||||
MuiPagination: {
|
||||
defaultProps: {
|
||||
'aria-label': 'Sayfa navigasyonu',
|
||||
getItemAriaLabel: (type, page, selected) => {
|
||||
if (type === 'page') {
|
||||
return `${selected ? '' : 'Pumunta sa'}pahina ${page}`;
|
||||
}
|
||||
if (type === 'first') {
|
||||
return 'Pumunta sa unang pahina';
|
||||
}
|
||||
if (type === 'last') {
|
||||
return 'Pumunta sa huling pahina';
|
||||
}
|
||||
if (type === 'next') {
|
||||
return 'Pumunta sa susunod na pahina';
|
||||
}
|
||||
// if (type === 'previous') {
|
||||
return 'Pumunta sa nakaraang pahina';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user