Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
29
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.d.mts
generated
vendored
Normal file
29
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.d.mts
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
import { I18n, useI18n } from 'vue-i18n';
|
||||
import { Ref } from 'vue';
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
|
||||
type VueI18nAdapterParams = {
|
||||
i18n: I18n<any, {}, {}, string, false>;
|
||||
useI18n: typeof useI18n;
|
||||
};
|
||||
declare function createVueI18nAdapter({ i18n, useI18n }: VueI18nAdapterParams): LocaleInstance;
|
||||
|
||||
export { createVueI18nAdapter };
|
83
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.mjs
generated
vendored
Normal file
83
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.mjs
generated
vendored
Normal file
@ -0,0 +1,83 @@
|
||||
// Composables
|
||||
import { useProxiedModel } from "../../composables/proxiedModel.mjs"; // Utilities
|
||||
import { watch } from 'vue';
|
||||
|
||||
// Types
|
||||
|
||||
function useProvided(props, prop, provided) {
|
||||
const internal = useProxiedModel(props, prop);
|
||||
internal.value = props[prop] ?? provided.value;
|
||||
watch(provided, v => {
|
||||
if (props[prop] == null) {
|
||||
internal.value = v;
|
||||
}
|
||||
});
|
||||
return internal;
|
||||
}
|
||||
function createProvideFunction(data) {
|
||||
return props => {
|
||||
const current = useProvided(props, 'locale', data.current);
|
||||
const fallback = useProvided(props, 'fallback', data.fallback);
|
||||
const messages = useProvided(props, 'messages', data.messages);
|
||||
const i18n = data.useI18n({
|
||||
locale: current.value,
|
||||
fallbackLocale: fallback.value,
|
||||
messages: messages.value,
|
||||
useScope: 'local',
|
||||
legacy: false,
|
||||
inheritLocale: false
|
||||
});
|
||||
watch(current, v => {
|
||||
i18n.locale.value = v;
|
||||
});
|
||||
return {
|
||||
name: 'vue-i18n',
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
t: function (key) {
|
||||
for (var _len = arguments.length, params = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
params[_key - 1] = arguments[_key];
|
||||
}
|
||||
return i18n.t(key, params);
|
||||
},
|
||||
n: i18n.n,
|
||||
provide: createProvideFunction({
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
useI18n: data.useI18n
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
export function createVueI18nAdapter(_ref) {
|
||||
let {
|
||||
i18n,
|
||||
useI18n
|
||||
} = _ref;
|
||||
const current = i18n.global.locale;
|
||||
const fallback = i18n.global.fallbackLocale;
|
||||
const messages = i18n.global.messages;
|
||||
return {
|
||||
name: 'vue-i18n',
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
// @ts-expect-error Type instantiation is excessively deep and possibly infinite
|
||||
t: function (key) {
|
||||
for (var _len2 = arguments.length, params = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
|
||||
params[_key2 - 1] = arguments[_key2];
|
||||
}
|
||||
return i18n.global.t(key, params);
|
||||
},
|
||||
n: i18n.global.n,
|
||||
provide: createProvideFunction({
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
useI18n
|
||||
})
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=vue-i18n.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/adapters/vue-i18n.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
24
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.d.mts
generated
vendored
Normal file
24
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.d.mts
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
import { Ref } from 'vue';
|
||||
|
||||
interface LocaleMessages {
|
||||
[key: string]: LocaleMessages | string;
|
||||
}
|
||||
interface LocaleOptions {
|
||||
messages?: LocaleMessages;
|
||||
locale?: string;
|
||||
fallback?: string;
|
||||
adapter?: LocaleInstance;
|
||||
}
|
||||
interface LocaleInstance {
|
||||
name: string;
|
||||
messages: Ref<LocaleMessages>;
|
||||
current: Ref<string>;
|
||||
fallback: Ref<string>;
|
||||
t: (key: string, ...params: unknown[]) => string;
|
||||
n: (value: number) => string;
|
||||
provide: (props: LocaleOptions) => LocaleInstance;
|
||||
}
|
||||
|
||||
declare function createVuetifyAdapter(options?: LocaleOptions): LocaleInstance;
|
||||
|
||||
export { createVuetifyAdapter };
|
98
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.mjs
generated
vendored
Normal file
98
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.mjs
generated
vendored
Normal file
@ -0,0 +1,98 @@
|
||||
// Composables
|
||||
import { useProxiedModel } from "../../composables/proxiedModel.mjs"; // Utilities
|
||||
import { ref, shallowRef, watch } from 'vue';
|
||||
import { consoleError, consoleWarn, getObjectValueByPath } from "../../util/index.mjs"; // Locales
|
||||
import en from "../en.mjs"; // Types
|
||||
const LANG_PREFIX = '$vuetify.';
|
||||
const replace = (str, params) => {
|
||||
return str.replace(/\{(\d+)\}/g, (match, index) => {
|
||||
return String(params[+index]);
|
||||
});
|
||||
};
|
||||
const createTranslateFunction = (current, fallback, messages) => {
|
||||
return function (key) {
|
||||
for (var _len = arguments.length, params = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
params[_key - 1] = arguments[_key];
|
||||
}
|
||||
if (!key.startsWith(LANG_PREFIX)) {
|
||||
return replace(key, params);
|
||||
}
|
||||
const shortKey = key.replace(LANG_PREFIX, '');
|
||||
const currentLocale = current.value && messages.value[current.value];
|
||||
const fallbackLocale = fallback.value && messages.value[fallback.value];
|
||||
let str = getObjectValueByPath(currentLocale, shortKey, null);
|
||||
if (!str) {
|
||||
consoleWarn(`Translation key "${key}" not found in "${current.value}", trying fallback locale`);
|
||||
str = getObjectValueByPath(fallbackLocale, shortKey, null);
|
||||
}
|
||||
if (!str) {
|
||||
consoleError(`Translation key "${key}" not found in fallback`);
|
||||
str = key;
|
||||
}
|
||||
if (typeof str !== 'string') {
|
||||
consoleError(`Translation key "${key}" has a non-string value`);
|
||||
str = key;
|
||||
}
|
||||
return replace(str, params);
|
||||
};
|
||||
};
|
||||
function createNumberFunction(current, fallback) {
|
||||
return (value, options) => {
|
||||
const numberFormat = new Intl.NumberFormat([current.value, fallback.value], options);
|
||||
return numberFormat.format(value);
|
||||
};
|
||||
}
|
||||
function useProvided(props, prop, provided) {
|
||||
const internal = useProxiedModel(props, prop, props[prop] ?? provided.value);
|
||||
|
||||
// TODO: Remove when defaultValue works
|
||||
internal.value = props[prop] ?? provided.value;
|
||||
watch(provided, v => {
|
||||
if (props[prop] == null) {
|
||||
internal.value = provided.value;
|
||||
}
|
||||
});
|
||||
return internal;
|
||||
}
|
||||
function createProvideFunction(state) {
|
||||
return props => {
|
||||
const current = useProvided(props, 'locale', state.current);
|
||||
const fallback = useProvided(props, 'fallback', state.fallback);
|
||||
const messages = useProvided(props, 'messages', state.messages);
|
||||
return {
|
||||
name: 'vuetify',
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
t: createTranslateFunction(current, fallback, messages),
|
||||
n: createNumberFunction(current, fallback),
|
||||
provide: createProvideFunction({
|
||||
current,
|
||||
fallback,
|
||||
messages
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
export function createVuetifyAdapter(options) {
|
||||
const current = shallowRef(options?.locale ?? 'en');
|
||||
const fallback = shallowRef(options?.fallback ?? 'en');
|
||||
const messages = ref({
|
||||
en,
|
||||
...options?.messages
|
||||
});
|
||||
return {
|
||||
name: 'vuetify',
|
||||
current,
|
||||
fallback,
|
||||
messages,
|
||||
t: createTranslateFunction(current, fallback, messages),
|
||||
n: createNumberFunction(current, fallback),
|
||||
provide: createProvideFunction({
|
||||
current,
|
||||
fallback,
|
||||
messages
|
||||
})
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=vuetify.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/adapters/vuetify.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/af.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/af.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'badge',
|
||||
open: 'Open',
|
||||
close: 'Close',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Geen ooreenstemmende resultate is gevind nie',
|
||||
loadingText: 'Loading item...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rye per bladsy:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sorted descending.',
|
||||
sortAscending: 'Sorted ascending..',
|
||||
sortNone: 'Not sorted.',
|
||||
activateNone: 'Activate to remove sorting.',
|
||||
activateDescending: 'Activate to sort descending.',
|
||||
activateAscending: 'Activate to sort ascending.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Aantal per bladsy:',
|
||||
itemsPerPageAll: 'Alles',
|
||||
nextPage: 'Volgende bladsy',
|
||||
prevPage: 'Vorige bladsy',
|
||||
firstPage: 'Eerste bladsy',
|
||||
lastPage: 'Laaste bladsy',
|
||||
pageText: '{0}-{1} van {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Geen data is beskikbaar nie',
|
||||
carousel: {
|
||||
prev: 'Vorige visuele',
|
||||
next: 'Volgende visuele',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} meer',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} files',
|
||||
counterSize: '{0} files ({1} in total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Paginasie-navigasie',
|
||||
next: 'Volgende bladsy',
|
||||
previous: 'Vorige bladsy',
|
||||
page: 'Gaan na bladsy {0}',
|
||||
currentPage: 'Huidige bladsy, Bladsy {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=af.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/af.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/af.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"af.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/af.ts"],"sourcesContent":["export default {\n badge: 'badge',\n open: 'Open',\n close: 'Close',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Geen ooreenstemmende resultate is gevind nie',\n loadingText: 'Loading item...',\n },\n dataTable: {\n itemsPerPageText: 'Rye per bladsy:',\n ariaLabel: {\n sortDescending: 'Sorted descending.',\n sortAscending: 'Sorted ascending..',\n sortNone: 'Not sorted.',\n activateNone: 'Activate to remove sorting.',\n activateDescending: 'Activate to sort descending.',\n activateAscending: 'Activate to sort ascending.',\n },\n sortBy: 'Sort by',\n },\n dataFooter: {\n itemsPerPageText: 'Aantal per bladsy:',\n itemsPerPageAll: 'Alles',\n nextPage: 'Volgende bladsy',\n prevPage: 'Vorige bladsy',\n firstPage: 'Eerste bladsy',\n lastPage: 'Laaste bladsy',\n pageText: '{0}-{1} van {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Geen data is beskikbaar nie',\n carousel: {\n prev: 'Vorige visuele',\n next: 'Volgende visuele',\n ariaLabel: {\n delimiter: 'Carousel slide {0} of {1}',\n },\n },\n calendar: {\n moreEvents: '{0} meer',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} files',\n counterSize: '{0} files ({1} in total)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Paginasie-navigasie',\n next: 'Volgende bladsy',\n previous: 'Vorige bladsy',\n page: 'Gaan na bladsy {0}',\n currentPage: 'Huidige bladsy, Bladsy {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,OAAO;EACdC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,8CAA8C;IAC7DC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,iBAAiB;IACnCC,SAAS,EAAE;MACTC,cAAc,EAAE,oBAAoB;MACpCC,aAAa,EAAE,oBAAoB;MACnCC,QAAQ,EAAE,aAAa;MACvBC,YAAY,EAAE,6BAA6B;MAC3CC,kBAAkB,EAAE,8BAA8B;MAClDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,oBAAoB;IACtCU,eAAe,EAAE,OAAO;IACxBC,QAAQ,EAAE,iBAAiB;IAC3BC,QAAQ,EAAE,eAAe;IACzBC,SAAS,EAAE,eAAe;IAC1BC,QAAQ,EAAE,eAAe;IACzBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,6BAA6B;EACzCC,QAAQ,EAAE;IACRC,IAAI,EAAE,gBAAgB;IACtBC,IAAI,EAAE,kBAAkB;IACxB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,WAAW;IACpBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,qBAAqB;MAC3BhB,IAAI,EAAE,iBAAiB;MACvBiB,QAAQ,EAAE,eAAe;MACzBC,IAAI,EAAE,oBAAoB;MAC1BC,WAAW,EAAE,4BAA4B;MACzCC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/ar.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ar.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'شارة',
|
||||
open: 'Open',
|
||||
close: 'إغلاق',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'لم يتم إيجاد نتائج',
|
||||
loadingText: 'يتم جلب العناصر...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'عدد الصفوف لكل صفحة:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'مرتب تنازلياً.',
|
||||
sortAscending: 'مرتب تصاعدياً.',
|
||||
sortNone: 'غير مرتب.',
|
||||
activateNone: 'نشط لإزالة الترتيب.',
|
||||
activateDescending: 'نشط للترتيب تنازلياً.',
|
||||
activateAscending: 'نشط للترتيب تصاعدياً.'
|
||||
},
|
||||
sortBy: 'رتب حسب'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'عدد العناصر لكل صفحة:',
|
||||
itemsPerPageAll: 'الكل',
|
||||
nextPage: 'الصفحة التالية',
|
||||
prevPage: 'الصفحة السابقة',
|
||||
firstPage: 'الصفحة الأولى',
|
||||
lastPage: 'الصفحة الأخيرة',
|
||||
pageText: '{0}-{1} من {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'لا توجد بيانات',
|
||||
carousel: {
|
||||
prev: 'المعروض السابق',
|
||||
next: 'المعروض التالي',
|
||||
ariaLabel: {
|
||||
delimiter: 'المعروض رقم {0} من {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} أكثر',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} ملفات',
|
||||
counterSize: '{0} ملفات ({1} في المجموع)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'صباحاً',
|
||||
pm: 'مساءً'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'الإنتقال بين الصفحات',
|
||||
next: 'الصفحة التالية',
|
||||
previous: 'الصفحة السابقة',
|
||||
page: '{0} انتقل إلى الصفحة',
|
||||
currentPage: '{0} الصفحة الحالية رقمها',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'القييم {0} من {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ar.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ar.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ar.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/az.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/az.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'nişan',
|
||||
open: 'Open',
|
||||
close: 'Bağla',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Uyğun məlumat tapılmadı',
|
||||
loadingText: 'Yüklənir... Zəhmət olmasa, gözləyin.'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Səhifə başı sətir sayı:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Azalan sıra ilə düzülmüş.',
|
||||
sortAscending: 'Artan sıra ilə düzülmüş.',
|
||||
sortNone: 'Sıralanmamışdır. ',
|
||||
activateNone: 'Sıralamanı yığışdır.',
|
||||
activateDescending: 'Azalan sıra ilə düz.',
|
||||
activateAscending: 'Artan sıra ilə düz.'
|
||||
},
|
||||
sortBy: 'Sırala'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Səhifə başı sətir sayı:',
|
||||
itemsPerPageAll: 'Hamısı',
|
||||
nextPage: 'Növbəti səhifə',
|
||||
prevPage: 'Əvvəlki səhifə',
|
||||
firstPage: 'İlk səhifə',
|
||||
lastPage: 'Son səhifə',
|
||||
pageText: '{0} - {1} arası, Cəmi: {2} qeydiyyat'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Bu görüntüdə məlumat yoxdur.',
|
||||
carousel: {
|
||||
prev: 'Əvvəlki görüntü',
|
||||
next: 'Növbəti görüntü',
|
||||
ariaLabel: {
|
||||
delimiter: 'Galereya səhifə {0} / {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} ədad daha',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fayl',
|
||||
counterSize: '{0} fayl (cəmi {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Səhifələmə Naviqasiyası',
|
||||
next: 'Növbəti səhifə',
|
||||
previous: 'Əvəvlki səhifə',
|
||||
page: 'Səhifəyə get {0}',
|
||||
currentPage: 'Cari səhifə, Səhifə {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=az.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/az.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/az.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/bg.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/bg.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Значка',
|
||||
open: 'Отвори',
|
||||
close: 'Затвори',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Отмяна'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Не са намерени записи',
|
||||
loadingText: 'Зареждане на елементи...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Редове на страница:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Подреди в намаляващ ред.',
|
||||
sortAscending: 'Подреди в нарастващ ред.',
|
||||
sortNone: 'Без подредба.',
|
||||
activateNone: 'Активирай за премахване на подредбата.',
|
||||
activateDescending: 'Активирай за подредба в намаляващ ред.',
|
||||
activateAscending: 'Активирай за подредба в нарастващ ред.'
|
||||
},
|
||||
sortBy: 'Сортирай по'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Елементи на страница:',
|
||||
itemsPerPageAll: 'Всички',
|
||||
nextPage: 'Следваща страница',
|
||||
prevPage: 'Предишна страница',
|
||||
firstPage: 'Първа страница',
|
||||
lastPage: 'Последна страница',
|
||||
pageText: '{0}-{1} от {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'до'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Избор на дати',
|
||||
header: 'Въвеждане на дати'
|
||||
},
|
||||
title: 'Избор на дата',
|
||||
header: 'Въвеждане на дата',
|
||||
input: {
|
||||
placeholder: 'Въведете дата'
|
||||
}
|
||||
},
|
||||
noDataText: 'Няма налични данни',
|
||||
carousel: {
|
||||
prev: 'Предишна визуализация',
|
||||
next: 'Следваща визуализация',
|
||||
ariaLabel: {
|
||||
delimiter: 'Кадър {0} от {1} на въртележката'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Още {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Изчисти {0}',
|
||||
prependAction: '{0} предшестващо действие',
|
||||
appendAction: '{0} последващо действие',
|
||||
otp: 'Моля, въведете OTP символ {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} файла',
|
||||
counterSize: '{0} файла ({1} общо)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'пр. обяд',
|
||||
pm: 'сл. обяд'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Странициране',
|
||||
next: 'Следваща страница',
|
||||
previous: 'Предишна страница',
|
||||
page: 'Отиди на страница {0}',
|
||||
currentPage: 'Текуща страница, Страница {0}',
|
||||
first: 'Първа страница',
|
||||
last: 'Последна страница'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Следващ',
|
||||
prev: 'Предишен'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Оценка {0} от {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Зареждане...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Зареди още',
|
||||
empty: 'Няма повече'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=bg.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/bg.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/bg.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/ca.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ca.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Insígnia',
|
||||
open: 'Open',
|
||||
close: 'Tancar',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Sense dades per mostrar',
|
||||
loadingText: 'Carregant...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Files per pàgina:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Ordre descendent.',
|
||||
sortAscending: 'Ordre ascendent.',
|
||||
sortNone: 'Sense ordenar.',
|
||||
activateNone: 'Premi per treure la ordenació.',
|
||||
activateDescending: 'Premi per ordenar descendent.',
|
||||
activateAscending: 'Premi per ordenar ascendent.'
|
||||
},
|
||||
sortBy: 'Ordenat per'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elements per pàgina:',
|
||||
itemsPerPageAll: 'Tot',
|
||||
nextPage: 'Pàgina següent',
|
||||
prevPage: 'Pàgina anterior',
|
||||
firstPage: 'Primera pàgina',
|
||||
lastPage: 'Última pàgina',
|
||||
pageText: '{0}-{1} de {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Sense dades',
|
||||
carousel: {
|
||||
prev: 'Visualització prèvia',
|
||||
next: 'Visualització següent',
|
||||
ariaLabel: {
|
||||
delimiter: 'Diapositiva {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} més',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fitxers',
|
||||
counterSize: '{0} fitxers ({1} en total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navegació de la pàgina',
|
||||
next: 'Pàgina següent',
|
||||
previous: 'Pàgina anterior',
|
||||
page: 'Ves a la pàgina {0}',
|
||||
currentPage: 'Pàgina actual, pàgina {0}',
|
||||
first: 'Primera pàgina',
|
||||
last: 'Última pàgina'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Puntuació {0} de {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ca.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ca.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ca.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"ca.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/ca.ts"],"sourcesContent":["export default {\n badge: 'Insígnia',\n open: 'Open',\n close: 'Tancar',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Sense dades per mostrar',\n loadingText: 'Carregant...',\n },\n dataTable: {\n itemsPerPageText: 'Files per pàgina:',\n ariaLabel: {\n sortDescending: 'Ordre descendent.',\n sortAscending: 'Ordre ascendent.',\n sortNone: 'Sense ordenar.',\n activateNone: 'Premi per treure la ordenació.',\n activateDescending: 'Premi per ordenar descendent.',\n activateAscending: 'Premi per ordenar ascendent.',\n },\n sortBy: 'Ordenat per',\n },\n dataFooter: {\n itemsPerPageText: 'Elements per pàgina:',\n itemsPerPageAll: 'Tot',\n nextPage: 'Pàgina següent',\n prevPage: 'Pàgina anterior',\n firstPage: 'Primera pàgina',\n lastPage: 'Última pàgina',\n pageText: '{0}-{1} de {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Sense dades',\n carousel: {\n prev: 'Visualització prèvia',\n next: 'Visualització següent',\n ariaLabel: {\n delimiter: 'Diapositiva {0} of {1}',\n },\n },\n calendar: {\n moreEvents: '{0} més',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} fitxers',\n counterSize: '{0} fitxers ({1} en total)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Navegació de la pàgina',\n next: 'Pàgina següent',\n previous: 'Pàgina anterior',\n page: 'Ves a la pàgina {0}',\n currentPage: 'Pàgina actual, pàgina {0}',\n first: 'Primera pàgina',\n last: 'Última pàgina',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Puntuació {0} de {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,UAAU;EACjBC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,QAAQ;EACfC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,yBAAyB;IACxCC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,mBAAmB;IACrCC,SAAS,EAAE;MACTC,cAAc,EAAE,mBAAmB;MACnCC,aAAa,EAAE,kBAAkB;MACjCC,QAAQ,EAAE,gBAAgB;MAC1BC,YAAY,EAAE,gCAAgC;MAC9CC,kBAAkB,EAAE,+BAA+B;MACnDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,sBAAsB;IACxCU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,gBAAgB;IAC1BC,QAAQ,EAAE,iBAAiB;IAC3BC,SAAS,EAAE,gBAAgB;IAC3BC,QAAQ,EAAE,eAAe;IACzBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,aAAa;EACzBC,QAAQ,EAAE;IACRC,IAAI,EAAE,sBAAsB;IAC5BC,IAAI,EAAE,uBAAuB;IAC7B3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,SAAS;IACrBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,aAAa;IACtBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,wBAAwB;MAC9BhB,IAAI,EAAE,gBAAgB;MACtBiB,QAAQ,EAAE,iBAAiB;MAC3BC,IAAI,EAAE,qBAAqB;MAC3BC,WAAW,EAAE,2BAA2B;MACxCC,KAAK,EAAE,gBAAgB;MACvBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/ckb.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ckb.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'باج',
|
||||
open: 'Open',
|
||||
close: 'داخستن',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'هیچ تۆمارێکی هاوتا نەدۆزرایەوە',
|
||||
loadingText: 'بارکردنی ئایتمەکان...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'ڕیزەکان بۆ هەر پەڕەیەک:',
|
||||
ariaLabel: {
|
||||
sortDescending: '.سەر بەرەو خوار ڕیزکراوە',
|
||||
sortAscending: '.سەر بەرەو ژوور ڕیزکراوە',
|
||||
sortNone: 'ڕیزنەکراوە.',
|
||||
activateNone: 'چالاککردن بۆ لابردنی ڕیزکردن.',
|
||||
activateDescending: 'چالاککردن بۆ ڕیزکردنی سەربەرەوخوار.',
|
||||
activateAscending: 'چالاککردن بۆ ڕیزکردنی سەر بەرەو ژوور.'
|
||||
},
|
||||
sortBy: 'ڕیزکردن بەپێی'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'ئایتمەکان بۆ هەر پەڕەیەک:',
|
||||
itemsPerPageAll: 'هەمووی',
|
||||
nextPage: 'پەڕەی دواتر',
|
||||
prevPage: 'پەڕەی پێشوو',
|
||||
firstPage: 'پەڕەی یەکەم',
|
||||
lastPage: 'پەڕەی کۆتایی',
|
||||
pageText: '{0}-{1} لە {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'هیچ داتایەک بەردەست نیە',
|
||||
carousel: {
|
||||
prev: 'بینراوی پێشوو',
|
||||
next: 'بینراوی داهاتوو',
|
||||
ariaLabel: {
|
||||
delimiter: 'سلایدی کارۆسێل {0} لە {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} زیاتر',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} فایل',
|
||||
counterSize: '{0} فایل ({1} لە کۆی گشتی)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'پێش نیوەڕۆژ',
|
||||
pm: 'دوای نیوەڕۆژ'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'ڕێنیشاندەری پەڕەگۆڕکێ',
|
||||
next: 'پەڕەی دواتر',
|
||||
previous: 'پەڕەی پێشوو',
|
||||
page: 'بڕۆ بۆ پەڕەی {0}',
|
||||
currentPage: 'پەڕەی ئێستا، پەڕە{0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ckb.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ckb.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ckb.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/cs.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/cs.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Odznak',
|
||||
open: 'Otevřiť',
|
||||
close: 'Zavřít',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Zrušit'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nenalezeny žádné záznamy',
|
||||
loadingText: 'Načítám položky...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Řádků na stránku:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Řazeno sestupně.',
|
||||
sortAscending: 'Řazeno vzestupně.',
|
||||
sortNone: 'Neseřazeno.',
|
||||
activateNone: 'Aktivováním vypnete řazení.',
|
||||
activateDescending: 'Aktivováním se bude řadit sestupně.',
|
||||
activateAscending: 'Aktivováním se bude řadit vzestupně.'
|
||||
},
|
||||
sortBy: 'Řadit dle'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Položek na stránku:',
|
||||
itemsPerPageAll: 'Vše',
|
||||
nextPage: 'Další strana',
|
||||
prevPage: 'Předchozí strana',
|
||||
firstPage: 'První strana',
|
||||
lastPage: 'Poslední strana',
|
||||
pageText: '{0}-{1} z {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'do'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} vybrán',
|
||||
range: {
|
||||
title: 'Vyberte datumy',
|
||||
header: 'Zadejte datumy'
|
||||
},
|
||||
title: 'Vyberte datum',
|
||||
header: 'Zadejte datum',
|
||||
input: {
|
||||
placeholder: 'Zadejte datum'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nejsou dostupná žádná data',
|
||||
carousel: {
|
||||
prev: 'Předchozí obrázek',
|
||||
next: 'Další obrázek',
|
||||
ariaLabel: {
|
||||
delimiter: 'Obrázek {0} z {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} dalších',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Vymazat {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Vložte výhradně OTP znaky {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} souborů',
|
||||
counterSize: '{0} souborů ({1} celkem)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigace po stránkách',
|
||||
next: 'Další strana',
|
||||
previous: 'Předchozí strana',
|
||||
page: 'Přejít na stránku {0}',
|
||||
currentPage: 'Aktuální stránka, stránka {0}',
|
||||
first: 'První stránka',
|
||||
last: 'Poslední stránka'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Další',
|
||||
prev: 'Předchozí'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Hodnocení {0} z {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Načítám...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Načíst více',
|
||||
empty: 'Žádné další'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=cs.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/cs.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/cs.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/da.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/da.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Emblem',
|
||||
open: 'Open',
|
||||
close: 'Luk',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Ingen matchende data fundet',
|
||||
loadingText: 'Indhenter data...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rækker pr. side:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sorteret faldende.',
|
||||
sortAscending: 'Sorteret stigende.',
|
||||
sortNone: 'Ikke sorteret.',
|
||||
activateNone: 'Aktiver for at fjerne sortering.',
|
||||
activateDescending: 'Aktiver for at sortere faldende.',
|
||||
activateAscending: 'Aktiver for at sortere stigende.'
|
||||
},
|
||||
sortBy: 'Sorter efter'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Rækker pr. side:',
|
||||
itemsPerPageAll: 'Alle',
|
||||
nextPage: 'Næste side',
|
||||
prevPage: 'Forrige side',
|
||||
firstPage: 'Første side',
|
||||
lastPage: 'Sidste side',
|
||||
pageText: '{0}-{1} af {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Ingen data tilgængelig',
|
||||
carousel: {
|
||||
prev: 'Forrige visuelle',
|
||||
next: 'Næste visuelle',
|
||||
ariaLabel: {
|
||||
delimiter: 'Karrusel dias {0} af {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} mere',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} filer',
|
||||
counterSize: '{0} filer ({1} total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagineringsnavigation',
|
||||
next: 'Næste side',
|
||||
previous: 'Forrige side',
|
||||
page: 'Gå til side {0}',
|
||||
currentPage: 'Nuværende side, Side {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Bedømmelse {0} af {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=da.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/da.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/da.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"da.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/da.ts"],"sourcesContent":["export default {\n badge: 'Emblem',\n open: 'Open',\n close: 'Luk',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Ingen matchende data fundet',\n loadingText: 'Indhenter data...',\n },\n dataTable: {\n itemsPerPageText: 'Rækker pr. side:',\n ariaLabel: {\n sortDescending: 'Sorteret faldende.',\n sortAscending: 'Sorteret stigende.',\n sortNone: 'Ikke sorteret.',\n activateNone: 'Aktiver for at fjerne sortering.',\n activateDescending: 'Aktiver for at sortere faldende.',\n activateAscending: 'Aktiver for at sortere stigende.',\n },\n sortBy: 'Sorter efter',\n },\n dataFooter: {\n itemsPerPageText: 'Rækker pr. side:',\n itemsPerPageAll: 'Alle',\n nextPage: 'Næste side',\n prevPage: 'Forrige side',\n firstPage: 'Første side',\n lastPage: 'Sidste side',\n pageText: '{0}-{1} af {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Ingen data tilgængelig',\n carousel: {\n prev: 'Forrige visuelle',\n next: 'Næste visuelle',\n ariaLabel: {\n delimiter: 'Karrusel dias {0} af {1}',\n },\n },\n calendar: {\n moreEvents: '{0} mere',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} filer',\n counterSize: '{0} filer ({1} total)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Pagineringsnavigation',\n next: 'Næste side',\n previous: 'Forrige side',\n page: 'Gå til side {0}',\n currentPage: 'Nuværende side, Side {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Bedømmelse {0} af {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,QAAQ;EACfC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,KAAK;EACZC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,6BAA6B;IAC5CC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,kBAAkB;IACpCC,SAAS,EAAE;MACTC,cAAc,EAAE,oBAAoB;MACpCC,aAAa,EAAE,oBAAoB;MACnCC,QAAQ,EAAE,gBAAgB;MAC1BC,YAAY,EAAE,kCAAkC;MAChDC,kBAAkB,EAAE,kCAAkC;MACtDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,kBAAkB;IACpCU,eAAe,EAAE,MAAM;IACvBC,QAAQ,EAAE,YAAY;IACtBC,QAAQ,EAAE,cAAc;IACxBC,SAAS,EAAE,aAAa;IACxBC,QAAQ,EAAE,aAAa;IACvBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,wBAAwB;EACpCC,QAAQ,EAAE;IACRC,IAAI,EAAE,kBAAkB;IACxBC,IAAI,EAAE,gBAAgB;IACtB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,WAAW;IACpBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,uBAAuB;MAC7BhB,IAAI,EAAE,YAAY;MAClBiB,QAAQ,EAAE,cAAc;MACxBC,IAAI,EAAE,iBAAiB;MACvBC,WAAW,EAAE,0BAA0B;MACvCC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/de.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/de.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Abzeichen',
|
||||
open: 'Öffnen',
|
||||
close: 'Schließen',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Abbrechen'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Keine Elemente gefunden',
|
||||
loadingText: 'Lade Elemente...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Zeilen pro Seite:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Absteigend sortiert.',
|
||||
sortAscending: 'Aufsteigend sortiert.',
|
||||
sortNone: 'Nicht sortiert.',
|
||||
activateNone: 'Aktivieren um Sortierung zu entfernen.',
|
||||
activateDescending: 'Aktivieren um absteigend zu sortieren.',
|
||||
activateAscending: 'Aktivieren um aufsteigend zu sortieren.'
|
||||
},
|
||||
sortBy: 'Sortiere nach'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elemente pro Seite:',
|
||||
itemsPerPageAll: 'Alle',
|
||||
nextPage: 'Nächste Seite',
|
||||
prevPage: 'Vorherige Seite',
|
||||
firstPage: 'Erste Seite',
|
||||
lastPage: 'Letzte Seite',
|
||||
pageText: '{0}-{1} von {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'bis'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Daten auswählen',
|
||||
header: 'Daten eingeben'
|
||||
},
|
||||
title: 'Datum auswählen',
|
||||
header: 'Datum eingeben',
|
||||
input: {
|
||||
placeholder: 'Datum eingeben'
|
||||
}
|
||||
},
|
||||
noDataText: 'Keine Daten vorhanden',
|
||||
carousel: {
|
||||
prev: 'Vorheriges Bild',
|
||||
next: 'Nächstes Bild',
|
||||
ariaLabel: {
|
||||
delimiter: 'Element {0} von {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} mehr',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: '{0} leeren',
|
||||
prependAction: '{0} vorangestellte Aktion',
|
||||
appendAction: '{0} angehängte Aktion',
|
||||
otp: 'Bitte OTP-Zeichen {0} eingeben'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} Dateien',
|
||||
counterSize: '{0} Dateien ({1} gesamt)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Seitennavigation',
|
||||
next: 'Nächste Seite',
|
||||
previous: 'Vorherige Seite',
|
||||
page: 'Gehe zu Seite {0}',
|
||||
currentPage: 'Aktuelle Seite, Seite {0}',
|
||||
first: 'Erste Seite',
|
||||
last: 'Letzte Seite'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Weiter',
|
||||
prev: 'Zurück'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Bewertung {0} von {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Laden...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Mehr laden',
|
||||
empty: 'Nichts weiteres'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=de.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/de.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/de.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/el.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/el.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Σήμα',
|
||||
open: 'Open',
|
||||
close: 'Close',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Δε βρέθηκαν αποτελέσματα',
|
||||
loadingText: 'Loading item...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Γραμμές ανά σελίδα:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sorted descending.',
|
||||
sortAscending: 'Sorted ascending.',
|
||||
sortNone: 'Not sorted.',
|
||||
activateNone: 'Activate to remove sorting.',
|
||||
activateDescending: 'Activate to sort descending.',
|
||||
activateAscending: 'Activate to sort ascending.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Αντικείμενα ανά σελίδα:',
|
||||
itemsPerPageAll: 'Όλα',
|
||||
nextPage: 'Επόμενη σελίδα',
|
||||
prevPage: 'Προηγούμενη σελίδα',
|
||||
firstPage: 'Πρώτη σελίδα',
|
||||
lastPage: 'Τελευταία σελίδα',
|
||||
pageText: '{0}-{1} από {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Χωρίς δεδομένα',
|
||||
carousel: {
|
||||
prev: 'הקודם חזותי',
|
||||
next: 'הבא חזותי',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} ακόμη',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} files',
|
||||
counterSize: '{0} files ({1} in total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Πλοήγηση με προορισμούς',
|
||||
next: 'Επόμενη σελίδα',
|
||||
previous: 'Προηγούμενη σελίδα',
|
||||
page: 'Πήγαινε στην σελίδα {0}',
|
||||
currentPage: 'Τρέχουσα σελίδα, σελίδα {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=el.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/el.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/el.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/en.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/en.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Badge',
|
||||
open: 'Open',
|
||||
close: 'Close',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'No matching records found',
|
||||
loadingText: 'Loading items...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rows per page:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sorted descending.',
|
||||
sortAscending: 'Sorted ascending.',
|
||||
sortNone: 'Not sorted.',
|
||||
activateNone: 'Activate to remove sorting.',
|
||||
activateDescending: 'Activate to sort descending.',
|
||||
activateAscending: 'Activate to sort ascending.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Items per page:',
|
||||
itemsPerPageAll: 'All',
|
||||
nextPage: 'Next page',
|
||||
prevPage: 'Previous page',
|
||||
firstPage: 'First page',
|
||||
lastPage: 'Last page',
|
||||
pageText: '{0}-{1} of {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'No data available',
|
||||
carousel: {
|
||||
prev: 'Previous visual',
|
||||
next: 'Next visual',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} more',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} files',
|
||||
counterSize: '{0} files ({1} in total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagination Navigation',
|
||||
next: 'Next page',
|
||||
previous: 'Previous page',
|
||||
page: 'Go to page {0}',
|
||||
currentPage: 'Page {0}, Current page',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=en.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/en.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/en.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"en.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/en.ts"],"sourcesContent":["export default {\n badge: 'Badge',\n open: 'Open',\n close: 'Close',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'No matching records found',\n loadingText: 'Loading items...',\n },\n dataTable: {\n itemsPerPageText: 'Rows per page:',\n ariaLabel: {\n sortDescending: 'Sorted descending.',\n sortAscending: 'Sorted ascending.',\n sortNone: 'Not sorted.',\n activateNone: 'Activate to remove sorting.',\n activateDescending: 'Activate to sort descending.',\n activateAscending: 'Activate to sort ascending.',\n },\n sortBy: 'Sort by',\n },\n dataFooter: {\n itemsPerPageText: 'Items per page:',\n itemsPerPageAll: 'All',\n nextPage: 'Next page',\n prevPage: 'Previous page',\n firstPage: 'First page',\n lastPage: 'Last page',\n pageText: '{0}-{1} of {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'No data available',\n carousel: {\n prev: 'Previous visual',\n next: 'Next visual',\n ariaLabel: {\n delimiter: 'Carousel slide {0} of {1}',\n },\n },\n calendar: {\n moreEvents: '{0} more',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} files',\n counterSize: '{0} files ({1} in total)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Pagination Navigation',\n next: 'Next page',\n previous: 'Previous page',\n page: 'Go to page {0}',\n currentPage: 'Page {0}, Current page',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,OAAO;EACdC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,2BAA2B;IAC1CC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,gBAAgB;IAClCC,SAAS,EAAE;MACTC,cAAc,EAAE,oBAAoB;MACpCC,aAAa,EAAE,mBAAmB;MAClCC,QAAQ,EAAE,aAAa;MACvBC,YAAY,EAAE,6BAA6B;MAC3CC,kBAAkB,EAAE,8BAA8B;MAClDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,iBAAiB;IACnCU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,WAAW;IACrBC,QAAQ,EAAE,eAAe;IACzBC,SAAS,EAAE,YAAY;IACvBC,QAAQ,EAAE,WAAW;IACrBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,mBAAmB;EAC/BC,QAAQ,EAAE;IACRC,IAAI,EAAE,iBAAiB;IACvBC,IAAI,EAAE,aAAa;IACnB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,WAAW;IACpBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,uBAAuB;MAC7BhB,IAAI,EAAE,WAAW;MACjBiB,QAAQ,EAAE,eAAe;MACzBC,IAAI,EAAE,gBAAgB;MACtBC,WAAW,EAAE,wBAAwB;MACrCC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/es.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/es.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Placa',
|
||||
open: 'Open',
|
||||
close: 'Cerrar',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Ningún elemento coincide con la búsqueda',
|
||||
loadingText: 'Cargando...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Filas por página:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Orden descendente.',
|
||||
sortAscending: 'Orden ascendente.',
|
||||
sortNone: 'Sin ordenar.',
|
||||
activateNone: 'Pulse para quitar orden.',
|
||||
activateDescending: 'Pulse para ordenar de forma descendente.',
|
||||
activateAscending: 'Pulse para ordenar de forma ascendente.'
|
||||
},
|
||||
sortBy: 'Ordenado por'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elementos por página:',
|
||||
itemsPerPageAll: 'Todos',
|
||||
nextPage: 'Página siguiente',
|
||||
prevPage: 'Página anterior',
|
||||
firstPage: 'Primera página',
|
||||
lastPage: 'Última página',
|
||||
pageText: '{0}-{1} de {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'No hay datos disponibles',
|
||||
carousel: {
|
||||
prev: 'Visual anterior',
|
||||
next: 'Visual siguiente',
|
||||
ariaLabel: {
|
||||
delimiter: 'Visual {0} de {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} más',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} archivos',
|
||||
counterSize: '{0} archivos ({1} en total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navegación de paginación',
|
||||
next: 'Página siguiente',
|
||||
previous: 'Página anterior',
|
||||
page: 'Ir a la página {0}',
|
||||
currentPage: 'Página actual, página {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Puntuación {0} de {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=es.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/es.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/es.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/et.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/et.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Märk',
|
||||
open: 'Open',
|
||||
close: 'Sulge',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Vastavaid kirjeid ei leitud',
|
||||
loadingText: 'Andmeid laaditakse...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Ridu leheküljel:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Kahanevalt sorteeritud.',
|
||||
sortAscending: 'Kasvavalt sorteeritud.',
|
||||
sortNone: 'Ei ole sorteeritud.',
|
||||
activateNone: 'Vajuta uuesti sorteerimise eemaldamiseks.',
|
||||
activateDescending: 'Vajuta uuesti, et sorteerida kahanevalt.',
|
||||
activateAscending: 'Vajuta kasvavalt sorteerimiseks.'
|
||||
},
|
||||
sortBy: 'Sorteerimise alus'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Kirjeid leheküljel:',
|
||||
itemsPerPageAll: 'Kõik',
|
||||
nextPage: 'Järgmine lehekülg',
|
||||
prevPage: 'Eelmine lehekülg',
|
||||
firstPage: 'Esimene lehekülg',
|
||||
lastPage: 'Viimane lehekülg',
|
||||
pageText: '{0}-{1} {2}st'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Andmed puuduvad',
|
||||
carousel: {
|
||||
prev: 'Eelmine visuaalne',
|
||||
next: 'Järgmine visuaalne',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} veel',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} faili',
|
||||
counterSize: '{0} faili (kokku {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagination Navigation',
|
||||
next: 'Järgmine lehekülg',
|
||||
previous: 'Eelmine lehekülg',
|
||||
page: 'Mine lehele {0}',
|
||||
currentPage: 'Praegune leht, leht {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=et.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/et.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/et.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/fa.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/fa.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'نشان',
|
||||
open: 'Open',
|
||||
close: 'بستن',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'لغو'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'نتیجهای یافت نشد',
|
||||
loadingText: 'در حال بارگذاری...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'ردیف در صفحه:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'مرتبسازی نزولی',
|
||||
sortAscending: 'مرتبسازی صعودی',
|
||||
sortNone: 'بدون مرتبسازی',
|
||||
activateNone: 'غیرفعالسازی مرتبسازی',
|
||||
activateDescending: 'غیرفعالسازی مرتبسازی نزولی',
|
||||
activateAscending: 'غیرفعالسازی مرتبسازی صعودی'
|
||||
},
|
||||
sortBy: 'مرتبسازی براساس'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'ردیف در صفحه:',
|
||||
itemsPerPageAll: 'همه',
|
||||
nextPage: 'صفحهی بعد',
|
||||
prevPage: 'صفحهی قبل',
|
||||
firstPage: 'صفحهی یکم',
|
||||
lastPage: 'صفحهی آخر',
|
||||
pageText: '{0} تا {1} از {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'انتخاب تاریخها',
|
||||
header: 'تاریخها را وارد کنید'
|
||||
},
|
||||
title: 'انتخاب تاریخ',
|
||||
header: 'تاریخ را وارد کنید',
|
||||
input: {
|
||||
placeholder: 'تاریخ را وارد کنید'
|
||||
}
|
||||
},
|
||||
noDataText: 'دادهای موجود نیست',
|
||||
carousel: {
|
||||
prev: 'اسلاید قبلی',
|
||||
next: 'اسلاید بعدی',
|
||||
ariaLabel: {
|
||||
delimiter: 'اسلاید {0} از {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{بیشتر {0',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} پرونده',
|
||||
counterSize: '{0} پرونده ({1} در کل)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'قبل از ظهر',
|
||||
pm: 'بعد از ظهر'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'جهت یابی صفحه',
|
||||
next: 'صفحهی بعد',
|
||||
previous: 'صفحهی قبلی',
|
||||
page: 'برو صفحه {0}',
|
||||
currentPage: '{0} صفحهی فعلی ، صفحهی',
|
||||
first: 'صفحهی اول',
|
||||
last: 'صفحهی آخر'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'بعدی',
|
||||
prev: 'قبلی'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'در حال بارگذاری...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'بارگذاری بیشتر',
|
||||
empty: 'پایان'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=fa.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/fa.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/fa.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/fi.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/fi.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Infopiste',
|
||||
open: 'Open',
|
||||
close: 'Sulje',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Ei osumia',
|
||||
loadingText: 'Ladataan kohteita...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rivejä sivulla:',
|
||||
ariaLabel: {
|
||||
sortDescending: ': Järjestetty laskevasti. Poista järjestäminen aktivoimalla.',
|
||||
sortAscending: ': Järjestetty nousevasti. Järjestä laskevasti aktivoimalla.',
|
||||
sortNone: ': Ei järjestetty. Järjestä nousevasti aktivoimalla.',
|
||||
activateNone: 'Aktivoi lajittelun poistamiseksi.',
|
||||
activateDescending: 'Aktivoi laskevien laskevien lajittelemiseksi.',
|
||||
activateAscending: 'Aktivoi lajitella nouseva.'
|
||||
},
|
||||
sortBy: 'Järjestä'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Kohteita sivulla:',
|
||||
itemsPerPageAll: 'Kaikki',
|
||||
nextPage: 'Seuraava sivu',
|
||||
prevPage: 'Edellinen sivu',
|
||||
firstPage: 'Ensimmäinen sivu',
|
||||
lastPage: 'Viimeinen sivu',
|
||||
pageText: '{0}-{1} ({2})'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Ei dataa',
|
||||
carousel: {
|
||||
prev: 'Edellinen kuva',
|
||||
next: 'Seuraava kuva',
|
||||
ariaLabel: {
|
||||
delimiter: 'Karusellin kuva {0}/{1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} lisää',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} tiedostoa',
|
||||
counterSize: '{0} tiedostoa ({1} yhteensä)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'ap.',
|
||||
pm: 'ip.'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagination Navigation',
|
||||
next: 'Seuraava sivu',
|
||||
previous: 'Edellinen sivu',
|
||||
page: 'Mene sivulle {0}',
|
||||
currentPage: 'Nykyinen sivu, Sivu {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Luokitus {0}/{1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=fi.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/fi.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/fi.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/fr.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/fr.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Badge',
|
||||
open: 'Ouvrir',
|
||||
close: 'Fermer',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Annuler'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Aucun enregistrement correspondant trouvé',
|
||||
loadingText: `Chargement de l'élément...`
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Lignes par page :',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Tri décroissant.',
|
||||
sortAscending: 'Tri croissant.',
|
||||
sortNone: 'Non trié.',
|
||||
activateNone: 'Activer pour supprimer le tri.',
|
||||
activateDescending: 'Activer pour trier par ordre décroissant.',
|
||||
activateAscending: 'Activer pour trier par ordre croissant.'
|
||||
},
|
||||
sortBy: 'Trier par'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Éléments par page :',
|
||||
itemsPerPageAll: 'Tous',
|
||||
nextPage: 'Page suivante',
|
||||
prevPage: 'Page précédente',
|
||||
firstPage: 'Première page',
|
||||
lastPage: 'Dernière page',
|
||||
pageText: '{0}-{1} de {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'à'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Sélectionner des dates',
|
||||
header: 'Entrer des dates'
|
||||
},
|
||||
title: 'Sélectionner une date',
|
||||
header: 'Entrer une date',
|
||||
input: {
|
||||
placeholder: 'Entrer une date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Aucune donnée disponible',
|
||||
carousel: {
|
||||
prev: 'Visuel précédent',
|
||||
next: 'Visuel suivant',
|
||||
ariaLabel: {
|
||||
delimiter: 'Diapositive {0} de {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} de plus',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Vider {0}',
|
||||
prependAction: '{0} action avant',
|
||||
appendAction: '{0} action après',
|
||||
otp: 'Caractère {0} du mot de passe à usage unique'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fichier(s)',
|
||||
counterSize: '{0} fichier(s) ({1} au total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigation de pagination',
|
||||
next: 'Page suivante',
|
||||
previous: 'Page précédente',
|
||||
page: 'Aller à la page {0}',
|
||||
currentPage: 'Page actuelle, Page {0}',
|
||||
first: 'Première page',
|
||||
last: 'Dernière page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Suivant',
|
||||
prev: 'Précédent'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Note de {0} sur {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Chargement...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Charger plus',
|
||||
empty: 'Aucune donnée supplémentaire'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=fr.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/fr.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/fr.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/he.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/he.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'תג',
|
||||
open: 'Open',
|
||||
close: 'סגור',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'לא נמצאו תוצאות מתאימות',
|
||||
loadingText: 'טוען פריט...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'שורות לעמוד:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'ממוין לפי סדר עולה. לחץ להספקת המיון.',
|
||||
sortAscending: 'ממוין לפי סדר יורד. לחץ למיון לפי סדר עולה.',
|
||||
sortNone: 'לא ממוין. לחץ למיון לפי סדר עולה.',
|
||||
activateNone: 'הפעל להסרת המיון.',
|
||||
activateDescending: 'הפעל למיון יורד.',
|
||||
activateAscending: 'הפעל למיון עולה.'
|
||||
},
|
||||
sortBy: 'סדר לפי'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'פריטים לדף:',
|
||||
itemsPerPageAll: 'הכל',
|
||||
nextPage: 'עמוד הבא',
|
||||
prevPage: 'עמוד הקודם',
|
||||
firstPage: 'עמוד ראשון',
|
||||
lastPage: 'עמוד אחרון',
|
||||
pageText: '{0}-{1} מתוך {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'אין נתונים זמינים',
|
||||
carousel: {
|
||||
prev: 'מצג קודם',
|
||||
next: 'מצג הבא',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} נוספים',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} קבצים',
|
||||
counterSize: '{0} קבצים ({1} בסך הכל)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'ניווט עימוד',
|
||||
next: 'עמוד הבא',
|
||||
previous: 'עמוד הקודם',
|
||||
page: '{0} לך לעמוד',
|
||||
currentPage: '{0} עמוד נוכחי, עמוד',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=he.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/he.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/he.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/hr.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/hr.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Bedž',
|
||||
open: 'Open',
|
||||
close: 'Zatvori',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nisu pronađene odgovarajuće stavke',
|
||||
loadingText: 'Učitavanje...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Redaka po stranici:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sortirano silazno.',
|
||||
sortAscending: 'Sortirano uzlazno.',
|
||||
sortNone: 'Nije sortirano.',
|
||||
activateNone: 'Odaberite za uklanjanje sortiranja.',
|
||||
activateDescending: 'Odaberite za silazno sortiranje.',
|
||||
activateAscending: 'Odaberite za uzlazno sortiranje.'
|
||||
},
|
||||
sortBy: 'Sortirajte po'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Stavki po stranici:',
|
||||
itemsPerPageAll: 'Sve',
|
||||
nextPage: 'Sljedeća stranica',
|
||||
prevPage: 'Prethodna stranica',
|
||||
firstPage: 'Prva stranica',
|
||||
lastPage: 'Posljednja stranica',
|
||||
pageText: '{0}-{1} od {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nema dostupnih podataka',
|
||||
carousel: {
|
||||
prev: 'Prethodno',
|
||||
next: 'Sljedeće',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Još {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: 'Odabranih datoteka: {0}',
|
||||
counterSize: 'Odabranih datoteka: {0} ({1} ukupno)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigacija stranicama',
|
||||
next: 'Sljedeća stranica',
|
||||
previous: 'Prethodna stranica',
|
||||
page: 'Idi na stranicu {0}',
|
||||
currentPage: 'Trenutna stranica, stranica {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=hr.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/hr.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/hr.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/hu.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/hu.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Jelvény',
|
||||
open: 'Open',
|
||||
close: 'Bezárás',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nincs egyező találat',
|
||||
loadingText: 'Betöltés...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Elem oldalanként:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Csökkenő sorrendbe rendezve.',
|
||||
sortAscending: 'Növekvő sorrendbe rendezve.',
|
||||
sortNone: 'Rendezetlen.',
|
||||
activateNone: 'Rendezés törlése.',
|
||||
activateDescending: 'Aktiváld a csökkenő rendezésért.',
|
||||
activateAscending: 'Aktiváld a növekvő rendezésért.'
|
||||
},
|
||||
sortBy: 'Rendezés'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elem oldalanként:',
|
||||
itemsPerPageAll: 'Mind',
|
||||
nextPage: 'Következő oldal',
|
||||
prevPage: 'Előző oldal',
|
||||
firstPage: 'Első oldal',
|
||||
lastPage: 'Utolsó oldal',
|
||||
pageText: '{0}-{1} / {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nincs elérhető adat',
|
||||
carousel: {
|
||||
prev: 'Előző',
|
||||
next: 'Következő',
|
||||
ariaLabel: {
|
||||
delimiter: 'Dia {0}/{1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} további',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fájl',
|
||||
counterSize: '{0} fájl ({1} összesen)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'de',
|
||||
pm: 'du'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Oldal navigáció',
|
||||
next: 'Következő oldal',
|
||||
previous: 'Előző oldal',
|
||||
page: 'Menj a(z) {0}. oldalra',
|
||||
currentPage: 'Aktuális oldal: {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=hu.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/hu.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/hu.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"hu.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/hu.ts"],"sourcesContent":["export default {\n badge: 'Jelvény',\n open: 'Open',\n close: 'Bezárás',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Nincs egyező találat',\n loadingText: 'Betöltés...',\n },\n dataTable: {\n itemsPerPageText: 'Elem oldalanként:',\n ariaLabel: {\n sortDescending: 'Csökkenő sorrendbe rendezve.',\n sortAscending: 'Növekvő sorrendbe rendezve.',\n sortNone: 'Rendezetlen.',\n activateNone: 'Rendezés törlése.',\n activateDescending: 'Aktiváld a csökkenő rendezésért.',\n activateAscending: 'Aktiváld a növekvő rendezésért.',\n },\n sortBy: 'Rendezés',\n },\n dataFooter: {\n itemsPerPageText: 'Elem oldalanként:',\n itemsPerPageAll: 'Mind',\n nextPage: 'Következő oldal',\n prevPage: 'Előző oldal',\n firstPage: 'Első oldal',\n lastPage: 'Utolsó oldal',\n pageText: '{0}-{1} / {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Nincs elérhető adat',\n carousel: {\n prev: 'Előző',\n next: 'Következő',\n ariaLabel: {\n delimiter: 'Dia {0}/{1}',\n },\n },\n calendar: {\n moreEvents: '{0} további',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} fájl',\n counterSize: '{0} fájl ({1} összesen)',\n },\n timePicker: {\n am: 'de',\n pm: 'du',\n },\n pagination: {\n ariaLabel: {\n root: 'Oldal navigáció',\n next: 'Következő oldal',\n previous: 'Előző oldal',\n page: 'Menj a(z) {0}. oldalra',\n currentPage: 'Aktuális oldal: {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,SAAS;EAChBC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,SAAS;EAChBC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,sBAAsB;IACrCC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,mBAAmB;IACrCC,SAAS,EAAE;MACTC,cAAc,EAAE,8BAA8B;MAC9CC,aAAa,EAAE,6BAA6B;MAC5CC,QAAQ,EAAE,cAAc;MACxBC,YAAY,EAAE,mBAAmB;MACjCC,kBAAkB,EAAE,kCAAkC;MACtDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,mBAAmB;IACrCU,eAAe,EAAE,MAAM;IACvBC,QAAQ,EAAE,iBAAiB;IAC3BC,QAAQ,EAAE,aAAa;IACvBC,SAAS,EAAE,YAAY;IACvBC,QAAQ,EAAE,cAAc;IACxBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,qBAAqB;EACjCC,QAAQ,EAAE;IACRC,IAAI,EAAE,OAAO;IACbC,IAAI,EAAE,WAAW;IACjB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,aAAa;IACzBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,UAAU;IACnBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,iBAAiB;MACvBhB,IAAI,EAAE,iBAAiB;MACvBiB,QAAQ,EAAE,aAAa;MACvBC,IAAI,EAAE,wBAAwB;MAC9BC,WAAW,EAAE,qBAAqB;MAClCC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/id.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/id.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Lencana',
|
||||
open: 'Open',
|
||||
close: 'Tutup',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Tidak ditemukan catatan yang cocok',
|
||||
loadingText: 'Memuat data...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Baris per halaman:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Diurutkan kebawah.',
|
||||
sortAscending: 'Diurutkan keatas.',
|
||||
sortNone: 'Tidak diurutkan.',
|
||||
activateNone: 'Aktifkan untuk menghapus penyortiran.',
|
||||
activateDescending: 'Aktifkan untuk mengurutkan kebawah.',
|
||||
activateAscending: 'Aktifkan untuk mengurutkan keatas.'
|
||||
},
|
||||
sortBy: 'Urutkan berdasar'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Item per halaman:',
|
||||
itemsPerPageAll: 'Semua',
|
||||
nextPage: 'Halaman selanjutnya',
|
||||
prevPage: 'Halaman sebelumnya',
|
||||
firstPage: 'Halaman pertama',
|
||||
lastPage: 'Halaman terakhir',
|
||||
pageText: '{0}-{1} dari {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Tidak ada data tersedia',
|
||||
carousel: {
|
||||
prev: 'Visual sebelumnya',
|
||||
next: 'Visual selanjutnya',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} lagi',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} berkas',
|
||||
counterSize: '{0} berkas (dari total {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigasi Pagination',
|
||||
next: 'Halaman selanjutnya',
|
||||
previous: 'Halaman sebelumnya',
|
||||
page: 'Buka halaman {0}',
|
||||
currentPage: 'Halaman Saat Ini, Halaman {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=id.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/id.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/id.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
4387
VApp/node_modules/vuetify/lib/locale/index.d.mts
generated
vendored
Normal file
4387
VApp/node_modules/vuetify/lib/locale/index.d.mts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
44
VApp/node_modules/vuetify/lib/locale/index.mjs
generated
vendored
Normal file
44
VApp/node_modules/vuetify/lib/locale/index.mjs
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
export { default as af } from "./af.mjs";
|
||||
export { default as ar } from "./ar.mjs";
|
||||
export { default as bg } from "./bg.mjs";
|
||||
export { default as ca } from "./ca.mjs";
|
||||
export { default as ckb } from "./ckb.mjs";
|
||||
export { default as cs } from "./cs.mjs";
|
||||
export { default as da } from "./da.mjs";
|
||||
export { default as de } from "./de.mjs";
|
||||
export { default as el } from "./el.mjs";
|
||||
export { default as en } from "./en.mjs";
|
||||
export { default as es } from "./es.mjs";
|
||||
export { default as et } from "./et.mjs";
|
||||
export { default as fa } from "./fa.mjs";
|
||||
export { default as fi } from "./fi.mjs";
|
||||
export { default as fr } from "./fr.mjs";
|
||||
export { default as hr } from "./hr.mjs";
|
||||
export { default as hu } from "./hu.mjs";
|
||||
export { default as he } from "./he.mjs";
|
||||
export { default as id } from "./id.mjs";
|
||||
export { default as it } from "./it.mjs";
|
||||
export { default as ja } from "./ja.mjs";
|
||||
export { default as km } from "./km.mjs";
|
||||
export { default as ko } from "./ko.mjs";
|
||||
export { default as lv } from "./lv.mjs";
|
||||
export { default as lt } from "./lt.mjs";
|
||||
export { default as nl } from "./nl.mjs";
|
||||
export { default as no } from "./no.mjs";
|
||||
export { default as pl } from "./pl.mjs";
|
||||
export { default as pt } from "./pt.mjs";
|
||||
export { default as ro } from "./ro.mjs";
|
||||
export { default as ru } from "./ru.mjs";
|
||||
export { default as sk } from "./sk.mjs";
|
||||
export { default as sl } from "./sl.mjs";
|
||||
export { default as srCyrl } from "./sr-Cyrl.mjs";
|
||||
export { default as srLatn } from "./sr-Latn.mjs";
|
||||
export { default as sv } from "./sv.mjs";
|
||||
export { default as th } from "./th.mjs";
|
||||
export { default as tr } from "./tr.mjs";
|
||||
export { default as az } from "./az.mjs";
|
||||
export { default as uk } from "./uk.mjs";
|
||||
export { default as vi } from "./vi.mjs";
|
||||
export { default as zhHans } from "./zh-Hans.mjs";
|
||||
export { default as zhHant } from "./zh-Hant.mjs";
|
||||
//# sourceMappingURL=index.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/index.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/index.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.mjs","names":["default","af","ar","bg","ca","ckb","cs","da","de","el","en","es","et","fa","fi","fr","hr","hu","he","id","it","ja","km","ko","lv","lt","nl","no","pl","pt","ro","ru","sk","sl","srCyrl","srLatn","sv","th","tr","az","uk","vi","zhHans","zhHant"],"sources":["../../src/locale/index.ts"],"sourcesContent":["export { default as af } from './af'\nexport { default as ar } from './ar'\nexport { default as bg } from './bg'\nexport { default as ca } from './ca'\nexport { default as ckb } from './ckb'\nexport { default as cs } from './cs'\nexport { default as da } from './da'\nexport { default as de } from './de'\nexport { default as el } from './el'\nexport { default as en } from './en'\nexport { default as es } from './es'\nexport { default as et } from './et'\nexport { default as fa } from './fa'\nexport { default as fi } from './fi'\nexport { default as fr } from './fr'\nexport { default as hr } from './hr'\nexport { default as hu } from './hu'\nexport { default as he } from './he'\nexport { default as id } from './id'\nexport { default as it } from './it'\nexport { default as ja } from './ja'\nexport { default as km } from './km'\nexport { default as ko } from './ko'\nexport { default as lv } from './lv'\nexport { default as lt } from './lt'\nexport { default as nl } from './nl'\nexport { default as no } from './no'\nexport { default as pl } from './pl'\nexport { default as pt } from './pt'\nexport { default as ro } from './ro'\nexport { default as ru } from './ru'\nexport { default as sk } from './sk'\nexport { default as sl } from './sl'\nexport { default as srCyrl } from './sr-Cyrl'\nexport { default as srLatn } from './sr-Latn'\nexport { default as sv } from './sv'\nexport { default as th } from './th'\nexport { default as tr } from './tr'\nexport { default as az } from './az'\nexport { default as uk } from './uk'\nexport { default as vi } from './vi'\nexport { default as zhHans } from './zh-Hans'\nexport { default as zhHant } from './zh-Hant'\n"],"mappings":"SAASA,OAAO,IAAIC,EAAE;AAAA,SACbD,OAAO,IAAIE,EAAE;AAAA,SACbF,OAAO,IAAIG,EAAE;AAAA,SACbH,OAAO,IAAII,EAAE;AAAA,SACbJ,OAAO,IAAIK,GAAG;AAAA,SACdL,OAAO,IAAIM,EAAE;AAAA,SACbN,OAAO,IAAIO,EAAE;AAAA,SACbP,OAAO,IAAIQ,EAAE;AAAA,SACbR,OAAO,IAAIS,EAAE;AAAA,SACbT,OAAO,IAAIU,EAAE;AAAA,SACbV,OAAO,IAAIW,EAAE;AAAA,SACbX,OAAO,IAAIY,EAAE;AAAA,SACbZ,OAAO,IAAIa,EAAE;AAAA,SACbb,OAAO,IAAIc,EAAE;AAAA,SACbd,OAAO,IAAIe,EAAE;AAAA,SACbf,OAAO,IAAIgB,EAAE;AAAA,SACbhB,OAAO,IAAIiB,EAAE;AAAA,SACbjB,OAAO,IAAIkB,EAAE;AAAA,SACblB,OAAO,IAAImB,EAAE;AAAA,SACbnB,OAAO,IAAIoB,EAAE;AAAA,SACbpB,OAAO,IAAIqB,EAAE;AAAA,SACbrB,OAAO,IAAIsB,EAAE;AAAA,SACbtB,OAAO,IAAIuB,EAAE;AAAA,SACbvB,OAAO,IAAIwB,EAAE;AAAA,SACbxB,OAAO,IAAIyB,EAAE;AAAA,SACbzB,OAAO,IAAI0B,EAAE;AAAA,SACb1B,OAAO,IAAI2B,EAAE;AAAA,SACb3B,OAAO,IAAI4B,EAAE;AAAA,SACb5B,OAAO,IAAI6B,EAAE;AAAA,SACb7B,OAAO,IAAI8B,EAAE;AAAA,SACb9B,OAAO,IAAI+B,EAAE;AAAA,SACb/B,OAAO,IAAIgC,EAAE;AAAA,SACbhC,OAAO,IAAIiC,EAAE;AAAA,SACbjC,OAAO,IAAIkC,MAAM;AAAA,SACjBlC,OAAO,IAAImC,MAAM;AAAA,SACjBnC,OAAO,IAAIoC,EAAE;AAAA,SACbpC,OAAO,IAAIqC,EAAE;AAAA,SACbrC,OAAO,IAAIsC,EAAE;AAAA,SACbtC,OAAO,IAAIuC,EAAE;AAAA,SACbvC,OAAO,IAAIwC,EAAE;AAAA,SACbxC,OAAO,IAAIyC,EAAE;AAAA,SACbzC,OAAO,IAAI0C,MAAM;AAAA,SACjB1C,OAAO,IAAI2C,MAAM"}
|
101
VApp/node_modules/vuetify/lib/locale/it.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/it.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Distintivo',
|
||||
open: 'Apri',
|
||||
close: 'Chiudi',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Annulla'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nessun risultato trovato',
|
||||
loadingText: 'Caricamento in corso...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Righe per pagina:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Ordinati in ordine decrescente.',
|
||||
sortAscending: 'Ordinati in ordine crescente.',
|
||||
sortNone: 'Non ordinato.',
|
||||
activateNone: `Attiva per rimuovere l'ordinamento.`,
|
||||
activateDescending: 'Attiva per ordinare in ordine decrescente.',
|
||||
activateAscending: 'Attiva per ordinare in ordine crescente.'
|
||||
},
|
||||
sortBy: 'Ordina per'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elementi per pagina:',
|
||||
itemsPerPageAll: 'Tutti',
|
||||
nextPage: 'Pagina seguente',
|
||||
prevPage: 'Pagina precedente',
|
||||
firstPage: 'Prima pagina',
|
||||
lastPage: 'Ultima pagina',
|
||||
pageText: '{0}-{1} di {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'a'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Seleziona date',
|
||||
header: 'Inserisci date'
|
||||
},
|
||||
title: 'Seleziona data',
|
||||
header: 'Inserisci data',
|
||||
input: {
|
||||
placeholder: 'Inserisci data'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nessun elemento disponibile',
|
||||
carousel: {
|
||||
prev: 'Vista precedente',
|
||||
next: 'Prossima vista',
|
||||
ariaLabel: {
|
||||
delimiter: 'Slide carosello {0} di {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} di più',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Cancella {0}',
|
||||
prependAction: 'Azione precedente {0}',
|
||||
appendAction: 'Azione successiva {0}',
|
||||
otp: 'Inserisci il codice OTP {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} file',
|
||||
counterSize: '{0} file ({1} in totale)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigazione impaginazione',
|
||||
next: 'Pagina seguente',
|
||||
previous: 'Pagina precedente',
|
||||
page: 'Vai alla pagina {0}',
|
||||
currentPage: 'Pagina corrente, pagina {0}',
|
||||
first: 'Prima pagina',
|
||||
last: 'Ultima pagina'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Successivo',
|
||||
prev: 'Precedente'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Valutazione {0} di {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Caricamento...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Carica altro',
|
||||
empty: 'Nessun elemento'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=it.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/it.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/it.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/ja.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ja.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'バッジ',
|
||||
open: 'Open',
|
||||
close: '閉じる',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: '検索結果が見つかりません。',
|
||||
loadingText: '項目をロード中です...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: '1ページあたりの行数:',
|
||||
ariaLabel: {
|
||||
sortDescending: '降順の並び替え。',
|
||||
sortAscending: '昇順の並び替え。',
|
||||
sortNone: 'ソートされていません。',
|
||||
activateNone: 'ソートを削除するには有効にしてください。',
|
||||
activateDescending: '降順の並び替えのためには有効にしてください。',
|
||||
activateAscending: '昇順のソートのためには有効にしてください。'
|
||||
},
|
||||
sortBy: 'ソート方式'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: '1ページあたりの件数:',
|
||||
itemsPerPageAll: 'すべて',
|
||||
nextPage: '次のページ',
|
||||
prevPage: '前のページ',
|
||||
firstPage: '最初のページ',
|
||||
lastPage: '最後のページ',
|
||||
pageText: '{0}-{1} 件目 / {2}件'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'データはありません。',
|
||||
carousel: {
|
||||
prev: '前のビジュアル',
|
||||
next: '次のビジュアル',
|
||||
ariaLabel: {
|
||||
delimiter: 'カルーセルのスライド {0}件目 / {1}件'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'さらに{0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} ファイル',
|
||||
counterSize: '{0} ファイル (合計 {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'ページネーションナビゲーション',
|
||||
next: '次のページ',
|
||||
previous: '前のページ',
|
||||
page: '{0}ページ目に移動',
|
||||
currentPage: '現在のページ、ページ {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: '評価 {1} のうち {0}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ja.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ja.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ja.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/km.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/km.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'ផ្លាក',
|
||||
open: 'បើក',
|
||||
close: 'បិទ',
|
||||
confirmEdit: {
|
||||
ok: 'យល់ព្រម',
|
||||
cancel: 'បោះបង់'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'មិនមានទិន្នន័យដែលត្រូវគ្នាទេ',
|
||||
loadingText: 'កំពុងដំណើរការ...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'ជ្រើសរើសពត៌មានក្នុងមួយទំព័រ:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'តំណទំហំចុះរួម។',
|
||||
sortAscending: 'តំណទំហំឡើងរួម។',
|
||||
sortNone: 'មិនចុះរួម។',
|
||||
activateNone: 'ចុចដើម្បីដកតំណទំហំ។',
|
||||
activateDescending: 'ចុចដើម្បីតំណទំហំចុះរួម។',
|
||||
activateAscending: 'ចុចដើម្បីតំណទំហំឡើងរួម។'
|
||||
},
|
||||
sortBy: 'តម្រៀបតាម'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'ទំនិញក្នុងមួយទំព័រ:',
|
||||
itemsPerPageAll: 'ទាំងអស់',
|
||||
nextPage: 'ទំព័របន្ទាប់',
|
||||
prevPage: 'ទំព័រមុន',
|
||||
firstPage: 'ទំព័រដំបូង',
|
||||
lastPage: 'ទំព័រចុងក្រោយ',
|
||||
pageText: '{0}-{1} នៃ {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'ដល់'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} ត្រូវបានជ្រើសរើស',
|
||||
range: {
|
||||
title: 'ជ្រើសរើសកាលបរិច្ឆេទ',
|
||||
header: 'បញ្ចូលកាលបរិច្ឆេទ'
|
||||
},
|
||||
title: 'ជ្រើសរើសកាលបរិច្ឆេទ',
|
||||
header: 'បញ្ចូលកាលបរិច្ឆេទ',
|
||||
input: {
|
||||
placeholder: 'បញ្ចូលកាលបរិច្ឆេទ'
|
||||
}
|
||||
},
|
||||
noDataText: 'គ្មានទិន្នន័យដែលមាន',
|
||||
carousel: {
|
||||
prev: 'រុករករូបភាពមុន',
|
||||
next: 'រុករករូបភាពបន្ទាប់',
|
||||
ariaLabel: {
|
||||
delimiter: 'រូបភាពទី {0} នៃ {1} ក្នុងកម្រិតការរុករក'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} ទៀត',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'សម្អាត {0}',
|
||||
prependAction: '{0} សម្អាតសកម្ម',
|
||||
appendAction: '{0} សម្អាតសកម្ម',
|
||||
otp: 'សូមបញ្ចូលតួអក្សរ OTP {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} ឯកសារ',
|
||||
counterSize: '{0} ឯកសារ ({1} សរុប)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'ព្រឹក',
|
||||
pm: 'ល្ងាច'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'ការរុករកទំព័រ',
|
||||
next: 'ទំព័របន្ទាប់',
|
||||
previous: 'ទំព័រមុន',
|
||||
page: 'ទៅទំព័រ {0}',
|
||||
currentPage: 'ទំព័រ {0}, ទំព័របច្ចុប្បន្ន',
|
||||
first: 'ទំព័រដំបូង',
|
||||
last: 'ទំព័រចុងក្រោយ'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'បន្ទាប់',
|
||||
prev: 'មុន'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'ការវាយតម្លៃ {0} នៃ {1}'
|
||||
}
|
||||
},
|
||||
loading: 'កំពុងដំណើរការ...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'ទាញយកបន្ថែម',
|
||||
empty: 'គ្មានទំព័រទៀត'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=km.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/km.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/km.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/ko.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ko.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: '배지',
|
||||
open: 'Open',
|
||||
close: '닫기',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: '일치하는 항목이 없습니다.',
|
||||
loadingText: '불러오는 중...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: '페이지 당 행 수:',
|
||||
ariaLabel: {
|
||||
sortDescending: '내림차순 정렬.',
|
||||
sortAscending: '오름차순 정렬.',
|
||||
sortNone: '정렬하지 않음.',
|
||||
activateNone: '정렬을 취소하려면 활성화하세요.',
|
||||
activateDescending: '내림차순 정렬을 위해 활성화하세요.',
|
||||
activateAscending: '오름차순 정렬을 위해 활성화하세요.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: '페이지 당 항목 수:',
|
||||
itemsPerPageAll: '전체',
|
||||
nextPage: '다음 페이지',
|
||||
prevPage: '이전 페이지',
|
||||
firstPage: '첫 페이지',
|
||||
lastPage: '마지막 페이지',
|
||||
pageText: '{2} 중 {0}-{1}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: '데이터가 없습니다.',
|
||||
carousel: {
|
||||
prev: '이전 화면',
|
||||
next: '다음 화면',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} 더보기',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} files',
|
||||
counterSize: '{0} files ({1} in total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: '오전',
|
||||
pm: '오후'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagination Navigation',
|
||||
next: '다음 페이지',
|
||||
previous: '이전 페이지',
|
||||
page: '고토 페이지 {0}',
|
||||
currentPage: '현재 페이지, 페이지 {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ko.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ko.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ko.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/lt.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/lt.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Ženklelis',
|
||||
open: 'Open',
|
||||
close: 'Uždaryti',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nerasta atitinkančių įrašų',
|
||||
loadingText: 'Kraunama...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Eilutės per puslapį:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Išrikiuota mažėjimo tvarka.',
|
||||
sortAscending: 'Išrikiuota didėjimo tvarka.',
|
||||
sortNone: 'Nerikiuota.',
|
||||
activateNone: 'Suaktyvinkite, jei norite rikiavimą pašalinti.',
|
||||
activateDescending: 'Suaktyvinkite, jei norite rikiuoti mažėjimo tvarka.',
|
||||
activateAscending: 'Suaktyvinkite, jei norite rikiuoti didėjimo tvarka.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Įrašai per puslapį:',
|
||||
itemsPerPageAll: 'Visi',
|
||||
nextPage: 'Kitas puslapis',
|
||||
prevPage: 'Ankstesnis puslapis',
|
||||
firstPage: 'Pirmas puslapis',
|
||||
lastPage: 'Paskutinis puslapis',
|
||||
pageText: '{0}-{1} iš {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nėra duomenų',
|
||||
carousel: {
|
||||
prev: 'Ankstesnioji skaidrė',
|
||||
next: 'Kita skaidrė',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Daugiau {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} failų',
|
||||
counterSize: '{0} failų ({1} iš viso)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Puslapio naršymas',
|
||||
next: 'Kitas puslapis',
|
||||
previous: 'Ankstesnis puslapis',
|
||||
page: 'Eiti į puslapį {0}',
|
||||
currentPage: 'Dabartinis puslapis, puslapis {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=lt.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/lt.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/lt.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/lv.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/lv.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Žetons',
|
||||
open: 'Open',
|
||||
close: 'Aizvērt',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nekas netika atrasts',
|
||||
loadingText: 'Ielādē...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rādīt lapā:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sakārtots dilstošā secībā.',
|
||||
sortAscending: 'Sakārtots augošā secībā.',
|
||||
sortNone: 'Nav sakārtots.',
|
||||
activateNone: 'Aktivizēt, lai noņemtu kārtošanu.',
|
||||
activateDescending: 'Aktivizēt, lai sakārtotu dilstošā secībā.',
|
||||
activateAscending: 'Aktivizēt, lai sakārtotu augošā secībā.'
|
||||
},
|
||||
sortBy: 'Sort by'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Rādīt lapā:',
|
||||
itemsPerPageAll: 'Visu',
|
||||
nextPage: 'Nākamā lapa',
|
||||
prevPage: 'Iepriekšējā lapa',
|
||||
firstPage: 'Pirmā lapa',
|
||||
lastPage: 'Pēdējā lapa',
|
||||
pageText: '{0}-{1} no {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nav pieejamu datu',
|
||||
carousel: {
|
||||
prev: 'Iepriekšējais slaids',
|
||||
next: 'Nākamais slaids',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Vēl {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} files',
|
||||
counterSize: '{0} files ({1} in total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigācija paginationā',
|
||||
next: 'Nākamā lapa',
|
||||
previous: 'Iepriekšējā lapa',
|
||||
page: 'Iet uz lapu {0}',
|
||||
currentPage: 'Pašreizējā lapa, lapa {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=lv.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/lv.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/lv.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/nl.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/nl.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'insigne',
|
||||
open: 'Openen',
|
||||
close: 'Sluiten',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Annuleren'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Geen overeenkomende resultaten gevonden',
|
||||
loadingText: 'Items aan het laden...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rijen per pagina:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Aflopend gesorteerd.',
|
||||
sortAscending: 'Oplopend gesorteerd.',
|
||||
sortNone: 'Niet gesorteerd.',
|
||||
activateNone: 'Activeer om de sortering te verwijderen.',
|
||||
activateDescending: 'Activeer om aflopend te sorteren.',
|
||||
activateAscending: 'Activeer om oplopend te sorteren.'
|
||||
},
|
||||
sortBy: 'Sorteer volgens'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Aantal per pagina:',
|
||||
itemsPerPageAll: 'Alles',
|
||||
nextPage: 'Volgende pagina',
|
||||
prevPage: 'Vorige pagina',
|
||||
firstPage: 'Eerste pagina',
|
||||
lastPage: 'Laatste pagina',
|
||||
pageText: '{0}-{1} van {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'tot'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} geselecteerd',
|
||||
range: {
|
||||
title: 'Selecteer datums',
|
||||
header: 'Voer datums in'
|
||||
},
|
||||
title: 'Selecteer datum',
|
||||
header: 'Voer datum in',
|
||||
input: {
|
||||
placeholder: 'Voer datum in'
|
||||
}
|
||||
},
|
||||
noDataText: 'Geen gegevens beschikbaar',
|
||||
carousel: {
|
||||
prev: 'Vorig beeld',
|
||||
next: 'Volgend beeld',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carrousel beeld {0} van {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} meer',
|
||||
today: 'Vandaag'
|
||||
},
|
||||
input: {
|
||||
clear: 'Maak {0} leeg',
|
||||
prependAction: '{0} voorafgaande actie',
|
||||
appendAction: '{0} bijgevoegde actie',
|
||||
otp: 'Vul alsjeblieft OTP karakter {0} in'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} bestanden',
|
||||
counterSize: '{0} bestanden ({1} in totaal)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Pagina navigatie',
|
||||
next: 'Volgende pagina',
|
||||
previous: 'Vorige pagina',
|
||||
page: 'Ga naar pagina {0}',
|
||||
currentPage: 'Huidige pagina, pagina {0}',
|
||||
first: 'Eerste pagina',
|
||||
last: 'Laatste pagina'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Volgende',
|
||||
prev: 'Vorige'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Beoordeling {0} van {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Aan het laden...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Laad meer',
|
||||
empty: 'Niet meer'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=nl.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/nl.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/nl.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/no.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/no.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Skilt',
|
||||
open: 'Open',
|
||||
close: 'Lukk',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Avbryt'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Fant ingen matchende elementer.',
|
||||
loadingText: 'Laster elementer...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rader per side:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sortert synkende.',
|
||||
sortAscending: 'Sortert stigende.',
|
||||
sortNone: 'Ikke sortert.',
|
||||
activateNone: 'Aktiver for å fjerne sortering.',
|
||||
activateDescending: 'Aktiver for å sortere synkende.',
|
||||
activateAscending: 'Aktiver for å sortere stigende.'
|
||||
},
|
||||
sortBy: 'Sorter etter'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Elementer per side:',
|
||||
itemsPerPageAll: 'Alle',
|
||||
nextPage: 'Neste side',
|
||||
prevPage: 'Forrige side',
|
||||
firstPage: 'Første side',
|
||||
lastPage: 'Siste side',
|
||||
pageText: '{0}-{1} av {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'til'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Velg datoer',
|
||||
header: 'Velg datoer'
|
||||
},
|
||||
title: 'Velg dato',
|
||||
header: 'Velg dato',
|
||||
input: {
|
||||
placeholder: 'Fyll inn dato'
|
||||
}
|
||||
},
|
||||
noDataText: 'Ingen data er tilgjengelig',
|
||||
carousel: {
|
||||
prev: 'Forrige bilde',
|
||||
next: 'Neste bilde',
|
||||
ariaLabel: {
|
||||
delimiter: 'Karusellbilde {0} av {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} flere',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Fjern {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} filer',
|
||||
counterSize: '{0} filer ({1} totalt)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Paginasjonsnavigasjon',
|
||||
next: 'Neste side',
|
||||
previous: 'Forrige side',
|
||||
page: 'Gå til side {0}',
|
||||
currentPage: 'Gjeldende side, side {0}',
|
||||
first: 'Første side',
|
||||
last: 'Siste side'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Neste',
|
||||
prev: 'Forrige'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Anmeldelse {0} av {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Laster...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Last flere',
|
||||
empty: 'Det var alt'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=no.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/no.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/no.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"no.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/no.ts"],"sourcesContent":["export default {\n badge: 'Skilt',\n open: 'Open',\n close: 'Lukk',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Avbryt',\n },\n dataIterator: {\n noResultsText: 'Fant ingen matchende elementer.',\n loadingText: 'Laster elementer...',\n },\n dataTable: {\n itemsPerPageText: 'Rader per side:',\n ariaLabel: {\n sortDescending: 'Sortert synkende.',\n sortAscending: 'Sortert stigende.',\n sortNone: 'Ikke sortert.',\n activateNone: 'Aktiver for å fjerne sortering.',\n activateDescending: 'Aktiver for å sortere synkende.',\n activateAscending: 'Aktiver for å sortere stigende.',\n },\n sortBy: 'Sorter etter',\n },\n dataFooter: {\n itemsPerPageText: 'Elementer per side:',\n itemsPerPageAll: 'Alle',\n nextPage: 'Neste side',\n prevPage: 'Forrige side',\n firstPage: 'Første side',\n lastPage: 'Siste side',\n pageText: '{0}-{1} av {2}',\n },\n dateRangeInput: {\n divider: 'til',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Velg datoer',\n header: 'Velg datoer',\n },\n title: 'Velg dato',\n header: 'Velg dato',\n input: {\n placeholder: 'Fyll inn dato',\n },\n },\n noDataText: 'Ingen data er tilgjengelig',\n carousel: {\n prev: 'Forrige bilde',\n next: 'Neste bilde',\n ariaLabel: {\n delimiter: 'Karusellbilde {0} av {1}',\n },\n },\n calendar: {\n moreEvents: '{0} flere',\n today: 'Today',\n },\n input: {\n clear: 'Fjern {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} filer',\n counterSize: '{0} filer ({1} totalt)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Paginasjonsnavigasjon',\n next: 'Neste side',\n previous: 'Forrige side',\n page: 'Gå til side {0}',\n currentPage: 'Gjeldende side, side {0}',\n first: 'Første side',\n last: 'Siste side',\n },\n },\n stepper: {\n next: 'Neste',\n prev: 'Forrige',\n },\n rating: {\n ariaLabel: {\n item: 'Anmeldelse {0} av {1}',\n },\n },\n loading: 'Laster...',\n infiniteScroll: {\n loadMore: 'Last flere',\n empty: 'Det var alt',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,MAAM;EACbC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,iCAAiC;IAChDC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,iBAAiB;IACnCC,SAAS,EAAE;MACTC,cAAc,EAAE,mBAAmB;MACnCC,aAAa,EAAE,mBAAmB;MAClCC,QAAQ,EAAE,eAAe;MACzBC,YAAY,EAAE,iCAAiC;MAC/CC,kBAAkB,EAAE,iCAAiC;MACrDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,qBAAqB;IACvCU,eAAe,EAAE,MAAM;IACvBC,QAAQ,EAAE,YAAY;IACtBC,QAAQ,EAAE,cAAc;IACxBC,SAAS,EAAE,aAAa;IACxBC,QAAQ,EAAE,YAAY;IACtBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,aAAa;MACpBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,WAAW;IAClBC,MAAM,EAAE,WAAW;IACnBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,4BAA4B;EACxCC,QAAQ,EAAE;IACRC,IAAI,EAAE,eAAe;IACrBC,IAAI,EAAE,aAAa;IACnB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,WAAW;IACvBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,WAAW;IACpBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,uBAAuB;MAC7BhB,IAAI,EAAE,YAAY;MAClBiB,QAAQ,EAAE,cAAc;MACxBC,IAAI,EAAE,iBAAiB;MACvBC,WAAW,EAAE,0BAA0B;MACvCC,KAAK,EAAE,aAAa;MACpBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,OAAO;IACbD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,WAAW;EACpBC,cAAc,EAAE;IACdC,QAAQ,EAAE,YAAY;IACtBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/pl.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/pl.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Odznaka',
|
||||
open: 'Otwórz',
|
||||
close: 'Zamknij',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Anuluj'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nie znaleziono danych odpowiadających wyszukiwaniu',
|
||||
loadingText: 'Wczytywanie danych...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Wierszy na stronie:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sortowanie malejąco. Kliknij aby zmienić.',
|
||||
sortAscending: 'Sortowanie rosnąco. Kliknij aby zmienić.',
|
||||
sortNone: 'Bez sortowania. Kliknij aby posortować rosnąco.',
|
||||
activateNone: 'Kliknij aby usunąć sortowanie.',
|
||||
activateDescending: 'Kliknij aby posortować malejąco.',
|
||||
activateAscending: 'Kliknij aby posortować rosnąco.'
|
||||
},
|
||||
sortBy: 'Sortuj według'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Pozycji na stronie:',
|
||||
itemsPerPageAll: 'Wszystkie',
|
||||
nextPage: 'Następna strona',
|
||||
prevPage: 'Poprzednia strona',
|
||||
firstPage: 'Pierwsza strona',
|
||||
lastPage: 'Ostatnia strona',
|
||||
pageText: '{0}-{1} z {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'do'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Wybór zakresu dat',
|
||||
header: 'Wprowadź zakres dat'
|
||||
},
|
||||
title: 'Wybór daty',
|
||||
header: 'Wprowadź datę',
|
||||
input: {
|
||||
placeholder: 'Wprowadź datę'
|
||||
}
|
||||
},
|
||||
noDataText: 'Brak danych',
|
||||
carousel: {
|
||||
prev: 'Poprzedni obraz',
|
||||
next: 'Następny obraz',
|
||||
ariaLabel: {
|
||||
delimiter: 'Obraz {0} z {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} więcej',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Wyczyść {0}',
|
||||
prependAction: '{0} dodatkowa akcja',
|
||||
appendAction: '{0} dodatkowa akcja',
|
||||
otp: 'Proszę wprowadzić znak nr {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: 'Liczba plików: {0}',
|
||||
counterSize: 'Liczba plików: {0} (łącznie {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Nawigacja paginacyjna',
|
||||
next: 'Następna strona',
|
||||
previous: 'Poprzednia strona',
|
||||
page: 'Idź do strony {0}',
|
||||
currentPage: 'Bieżąca strona, strona {0}',
|
||||
first: 'Pierwsza strona',
|
||||
last: 'Ostatnia strona'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Następny',
|
||||
prev: 'Poprzedni'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Ocena {0} na {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Wczytywanie danych...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Wczytaj więcej',
|
||||
empty: 'Brak kolejnych danych'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=pl.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/pl.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/pl.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/pt.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/pt.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Distintivo',
|
||||
open: 'Abrir',
|
||||
close: 'Fechar',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nenhum dado encontrado',
|
||||
loadingText: 'Carregando itens...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Linhas por página:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Ordenado decrescente.',
|
||||
sortAscending: 'Ordenado crescente.',
|
||||
sortNone: 'Não ordenado.',
|
||||
activateNone: 'Ative para remover a ordenação.',
|
||||
activateDescending: 'Ative para ordenar decrescente.',
|
||||
activateAscending: 'Ative para ordenar crescente.'
|
||||
},
|
||||
sortBy: 'Ordenar por'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Itens por página:',
|
||||
itemsPerPageAll: 'Todos',
|
||||
nextPage: 'Próxima página',
|
||||
prevPage: 'Página anterior',
|
||||
firstPage: 'Primeira página',
|
||||
lastPage: 'Última página',
|
||||
pageText: '{0}-{1} de {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selecionados',
|
||||
range: {
|
||||
title: 'Selecione as datas',
|
||||
header: 'Digite as datas'
|
||||
},
|
||||
title: 'Selecione a data',
|
||||
header: 'Digite a data',
|
||||
input: {
|
||||
placeholder: 'Insira a data'
|
||||
}
|
||||
},
|
||||
noDataText: 'Não há dados disponíveis',
|
||||
carousel: {
|
||||
prev: 'Visão anterior',
|
||||
next: 'Próxima visão',
|
||||
ariaLabel: {
|
||||
delimiter: 'Slide {0} de {1} do carrossel'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Mais {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Limpar {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Por favor insira o caracter OTP {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} arquivo(s)',
|
||||
counterSize: '{0} arquivo(s) ({1} no total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navegação de paginação',
|
||||
next: 'Próxima página',
|
||||
previous: 'Página anterior',
|
||||
page: 'Ir à página {0}',
|
||||
currentPage: 'Página atual, página {0}',
|
||||
first: 'Primeira página',
|
||||
last: 'Última página'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Próximo',
|
||||
prev: 'Anterior'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Avaliação {0} de {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Carregando...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Carregar mais',
|
||||
empty: 'Não há mais dados'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=pt.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/pt.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/pt.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/ro.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ro.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Insignă',
|
||||
open: 'Open',
|
||||
close: 'Închideți',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Anulează'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nu s-au găsit înregistrări corespunzătoare',
|
||||
loadingText: 'Se încarcă articolele...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rânduri pe pagină:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sortate descendent.',
|
||||
sortAscending: 'Sortate ascendent.',
|
||||
sortNone: 'Nesortate.',
|
||||
activateNone: 'Activați pentru a elimina sortarea.',
|
||||
activateDescending: 'Activați pentru a sorta descendent.',
|
||||
activateAscending: 'Activați pentru a sorta ascendent.'
|
||||
},
|
||||
sortBy: 'Sortați după'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Articole pe pagină:',
|
||||
itemsPerPageAll: 'Toate',
|
||||
nextPage: 'Pagina următoare',
|
||||
prevPage: 'Pagina anterioară',
|
||||
firstPage: 'Prima pagină',
|
||||
lastPage: 'Ultima pagină',
|
||||
pageText: '{0}-{1} din {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'până la'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Selectați datele',
|
||||
header: 'Introduceți datele'
|
||||
},
|
||||
title: 'Selectați data',
|
||||
header: 'Introduceți data',
|
||||
input: {
|
||||
placeholder: 'Introduceți data'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nu există date disponibile',
|
||||
carousel: {
|
||||
prev: 'Vizualul anterior',
|
||||
next: 'Vizualul următor',
|
||||
ariaLabel: {
|
||||
delimiter: 'Slide carusel {0} din {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'încă {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Șterge {0}',
|
||||
prependAction: '{0} acțiune de inserare la început',
|
||||
appendAction: '{0} acțiune de inserare la sfârșit',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fișiere',
|
||||
counterSize: '{0} fișiere ({1} în total)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigare prin pagini',
|
||||
next: 'Pagina următoare',
|
||||
previous: 'Pagina anterioară',
|
||||
page: 'Mergeți la pagina {0}',
|
||||
currentPage: 'Pagina curentă, pagina {0}',
|
||||
first: 'Prima pagină',
|
||||
last: 'Ultima pagină'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating de {0} din {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Se încarcă...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Încarcă mai multe',
|
||||
empty: 'Nu mai există'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ro.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ro.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ro.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/ru.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/ru.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Знак',
|
||||
open: 'Открыть',
|
||||
close: 'Закрыть',
|
||||
confirmEdit: {
|
||||
ok: 'ОК',
|
||||
cancel: 'Отмена'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Не найдено подходящих записей',
|
||||
loadingText: 'Запись загружается...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Строк на странице:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Упорядочено по убыванию.',
|
||||
sortAscending: 'Упорядочено по возрастанию.',
|
||||
sortNone: 'Не упорядочено.',
|
||||
activateNone: 'Активируйте, чтобы убрать сортировку.',
|
||||
activateDescending: 'Активируйте для упорядочивания убыванию.',
|
||||
activateAscending: 'Активируйте для упорядочивания по возрастанию.'
|
||||
},
|
||||
sortBy: 'Сортировать по'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Записей на странице:',
|
||||
itemsPerPageAll: 'Все',
|
||||
nextPage: 'Следующая страница',
|
||||
prevPage: 'Предыдущая страница',
|
||||
firstPage: 'Первая страница',
|
||||
lastPage: 'Последняя страница',
|
||||
pageText: '{0}-{1} из {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'до'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} выбрано',
|
||||
range: {
|
||||
title: 'Выбранные даты',
|
||||
header: 'Ввод дат'
|
||||
},
|
||||
title: 'Выбор даты',
|
||||
header: 'Ввод даты',
|
||||
input: {
|
||||
placeholder: 'Введите дату'
|
||||
}
|
||||
},
|
||||
noDataText: 'Отсутствуют данные',
|
||||
carousel: {
|
||||
prev: 'Предыдущий слайд',
|
||||
next: 'Следующий слайд',
|
||||
ariaLabel: {
|
||||
delimiter: 'Слайд {0} из {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Еще {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Очистить {0}',
|
||||
prependAction: '{0} предварительных действий',
|
||||
appendAction: '{0} добавочных действий',
|
||||
otp: 'Пожалуйста введите символы OTP {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: 'Файлов: {0}',
|
||||
counterSize: 'Файлов: {0} (всего {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Навигация по страницам',
|
||||
next: 'Следующая страница',
|
||||
previous: 'Предыдущая страница',
|
||||
page: 'Перейти на страницу {0}',
|
||||
currentPage: 'Текущая страница, Страница {0}',
|
||||
first: 'Первая страница',
|
||||
last: 'Последняя страница'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Следующий',
|
||||
prev: 'Предыдущий'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Рейтинг {0} из {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Загрузка...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Загрузить ещё',
|
||||
empty: 'Больше нечего загружать'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=ru.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/ru.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/ru.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/sk.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/sk.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Odznak',
|
||||
open: 'Otvoriť',
|
||||
close: 'Zavrieť',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Zrušiť'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Neboli nájdené žiadne záznamy',
|
||||
loadingText: 'Načítavam položky...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Počet riadkov na stránku:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Zoradené zostupne.',
|
||||
sortAscending: 'Zoradené vzostupne.',
|
||||
sortNone: 'Nezoradené.',
|
||||
activateNone: 'Aktivujte na zrušenie zoradenia.',
|
||||
activateDescending: 'Aktivujte na zoradenie zostupne.',
|
||||
activateAscending: 'Aktivujte na zoradenie vzostupne.'
|
||||
},
|
||||
sortBy: 'Zoradiť podľa'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Počet položiek na stránku:',
|
||||
itemsPerPageAll: 'Všetko',
|
||||
nextPage: 'Ďalšia stránka',
|
||||
prevPage: 'Predchádzajúca stránka',
|
||||
firstPage: 'Prvá stránka',
|
||||
lastPage: 'Posledná stránka',
|
||||
pageText: '{0}–{1} z {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'až'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} vybraných',
|
||||
range: {
|
||||
title: 'Vyberte rozsah dátumov',
|
||||
header: 'Zadajte rozsah dátumov'
|
||||
},
|
||||
title: 'Vyberte dátum',
|
||||
header: 'Zadajte dátum',
|
||||
input: {
|
||||
placeholder: 'Zadajte dátum'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nie sú dostupné žiadne dáta',
|
||||
carousel: {
|
||||
prev: 'Predchádzajúci obrázok',
|
||||
next: 'Další obrázok',
|
||||
ariaLabel: {
|
||||
delimiter: 'Snímka {0} z {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} ďalších',
|
||||
today: 'Dnes'
|
||||
},
|
||||
input: {
|
||||
clear: 'Vymazať {0}',
|
||||
prependAction: 'Akcia pred {0}',
|
||||
appendAction: 'Akcia za {0}',
|
||||
otp: 'Prosím zadajte OTP znak {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} súborov',
|
||||
counterSize: '{0} súborov ({1} celkom)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigácia stránkovania',
|
||||
next: 'Ďalšia stránka',
|
||||
previous: 'Predchádzajúca stránka',
|
||||
page: 'Ísť na stránku {0}',
|
||||
currentPage: 'Aktuálna stránka, stránka {0}',
|
||||
first: 'Prvá stránka',
|
||||
last: 'Posledná stránka'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Ďalší',
|
||||
prev: 'Predchádzajúci'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Hodnotenie {0} z {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Načítavam...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Načítať viac',
|
||||
empty: 'Žiadne ďalšie'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=sk.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/sk.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/sk.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/sl.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/sl.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Značka',
|
||||
open: 'Open',
|
||||
close: 'Zapri',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Ni iskanega zapisa',
|
||||
loadingText: 'Nalaganje...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Vrstic na stran:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Razvrščeno padajoče.',
|
||||
sortAscending: 'Razvrščeno naraščajoče.',
|
||||
sortNone: 'Ni razvrščeno.',
|
||||
activateNone: 'Aktivirajte za odstranitev razvrščanja.',
|
||||
activateDescending: 'Aktivirajte za padajoče razvrščanje.',
|
||||
activateAscending: 'Aktivirajte za naraščajoče razvrščanje.'
|
||||
},
|
||||
sortBy: 'Razvrsti po'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Predmetov na stran:',
|
||||
itemsPerPageAll: 'Vse',
|
||||
nextPage: 'Naslednja stran',
|
||||
prevPage: 'Prejšnja stran',
|
||||
firstPage: 'Prva stran',
|
||||
lastPage: 'Zadnja stran',
|
||||
pageText: '{0}-{1} od {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Ni podatkov',
|
||||
carousel: {
|
||||
prev: 'Prejšnji prikaz',
|
||||
next: 'Naslednji prikaz',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Še {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} datotek',
|
||||
counterSize: '{0} datotek ({1} skupno)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigacija po strani po strani',
|
||||
next: 'Naslednja stran',
|
||||
previous: 'Prejšnja stran',
|
||||
page: 'Pojdi na stran {0}',
|
||||
currentPage: 'Trenutna stran, stran {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=sl.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/sl.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/sl.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"sl.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/sl.ts"],"sourcesContent":["export default {\n badge: 'Značka',\n open: 'Open',\n close: 'Zapri',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Ni iskanega zapisa',\n loadingText: 'Nalaganje...',\n },\n dataTable: {\n itemsPerPageText: 'Vrstic na stran:',\n ariaLabel: {\n sortDescending: 'Razvrščeno padajoče.',\n sortAscending: 'Razvrščeno naraščajoče.',\n sortNone: 'Ni razvrščeno.',\n activateNone: 'Aktivirajte za odstranitev razvrščanja.',\n activateDescending: 'Aktivirajte za padajoče razvrščanje.',\n activateAscending: 'Aktivirajte za naraščajoče razvrščanje.',\n },\n sortBy: 'Razvrsti po',\n },\n dataFooter: {\n itemsPerPageText: 'Predmetov na stran:',\n itemsPerPageAll: 'Vse',\n nextPage: 'Naslednja stran',\n prevPage: 'Prejšnja stran',\n firstPage: 'Prva stran',\n lastPage: 'Zadnja stran',\n pageText: '{0}-{1} od {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Ni podatkov',\n carousel: {\n prev: 'Prejšnji prikaz',\n next: 'Naslednji prikaz',\n ariaLabel: {\n delimiter: 'Carousel slide {0} of {1}',\n },\n },\n calendar: {\n moreEvents: 'Še {0}',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} datotek',\n counterSize: '{0} datotek ({1} skupno)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Navigacija po strani po strani',\n next: 'Naslednja stran',\n previous: 'Prejšnja stran',\n page: 'Pojdi na stran {0}',\n currentPage: 'Trenutna stran, stran {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,QAAQ;EACfC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,OAAO;EACdC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,oBAAoB;IACnCC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,kBAAkB;IACpCC,SAAS,EAAE;MACTC,cAAc,EAAE,sBAAsB;MACtCC,aAAa,EAAE,yBAAyB;MACxCC,QAAQ,EAAE,gBAAgB;MAC1BC,YAAY,EAAE,yCAAyC;MACvDC,kBAAkB,EAAE,sCAAsC;MAC1DC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,qBAAqB;IACvCU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,iBAAiB;IAC3BC,QAAQ,EAAE,gBAAgB;IAC1BC,SAAS,EAAE,YAAY;IACvBC,QAAQ,EAAE,cAAc;IACxBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,aAAa;EACzBC,QAAQ,EAAE;IACRC,IAAI,EAAE,iBAAiB;IACvBC,IAAI,EAAE,kBAAkB;IACxB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,QAAQ;IACpBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,aAAa;IACtBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,gCAAgC;MACtChB,IAAI,EAAE,iBAAiB;MACvBiB,QAAQ,EAAE,gBAAgB;MAC1BC,IAAI,EAAE,oBAAoB;MAC1BC,WAAW,EAAE,2BAA2B;MACxCC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/sr-Cyrl.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/sr-Cyrl.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Значка',
|
||||
open: 'Open',
|
||||
close: 'Затвори',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Ни један запис није пронађен',
|
||||
loadingText: 'Учитавање ставке...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Редова по страници:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Сортирано опадајуће.',
|
||||
sortAscending: 'Сортирано растуће.',
|
||||
sortNone: 'Није сортирано.',
|
||||
activateNone: 'Кликни да уклониш сортирање.',
|
||||
activateDescending: 'Кликни да сортираш опадајуће.',
|
||||
activateAscending: 'Кликни да сортираш растуће.'
|
||||
},
|
||||
sortBy: 'Сортирај по'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Ставки по страници:',
|
||||
itemsPerPageAll: 'Све',
|
||||
nextPage: 'Следећа страница',
|
||||
prevPage: 'Претходна страница',
|
||||
firstPage: 'Прва страница',
|
||||
lastPage: 'Последња страница',
|
||||
pageText: '{0}-{1} од {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Нема доступних података',
|
||||
carousel: {
|
||||
prev: 'Претходна слика',
|
||||
next: 'Следећа слика',
|
||||
ariaLabel: {
|
||||
delimiter: 'Слика {0} од {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} више',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} фајлова',
|
||||
counterSize: '{0} фајлова ({1} укупно)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Навигација страницама',
|
||||
next: 'Следећа страница',
|
||||
previous: 'Претходна страница',
|
||||
page: 'Иди на страну {0}',
|
||||
currentPage: 'Тренутна страница, страница {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Оцена {0} од {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=sr-Cyrl.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/sr-Cyrl.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/sr-Cyrl.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/sr-Latn.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/sr-Latn.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Značka',
|
||||
open: 'Open',
|
||||
close: 'Zatvori',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Nijedan zapis nije pronađen',
|
||||
loadingText: 'Učitavanje stavke...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Redova po stranici:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sortirano opadajuće.',
|
||||
sortAscending: 'Sortirano rastuće.',
|
||||
sortNone: 'Nije sortirano.',
|
||||
activateNone: 'Klikni da ukloniš sortiranje.',
|
||||
activateDescending: 'Klikni da sortiraš opadajuće.',
|
||||
activateAscending: 'Klikni da sortiraš rastuće.'
|
||||
},
|
||||
sortBy: 'Sortiraj po'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Stavki po stranici:',
|
||||
itemsPerPageAll: 'Sve',
|
||||
nextPage: 'Sledeća stranica',
|
||||
prevPage: 'Prethodna stranica',
|
||||
firstPage: 'Prva stranica',
|
||||
lastPage: 'Poslednja stranica',
|
||||
pageText: '{0}-{1} od {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Nema dostupnih podataka',
|
||||
carousel: {
|
||||
prev: 'Prethodna slika',
|
||||
next: 'Sledeća slika',
|
||||
ariaLabel: {
|
||||
delimiter: 'Slika {0} od {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} više',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} fajlova',
|
||||
counterSize: '{0} fajlova ({1} ukupno)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Navigacija stranicama',
|
||||
next: 'Sledeća stranica',
|
||||
previous: 'Prethodna stranica',
|
||||
page: 'Idi na stranu {0}',
|
||||
currentPage: 'Trenutna stranica, stranica {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Ocena {0} od {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=sr-Latn.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/sr-Latn.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/sr-Latn.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"sr-Latn.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/sr-Latn.ts"],"sourcesContent":["export default {\n badge: 'Značka',\n open: 'Open',\n close: 'Zatvori',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: 'Nijedan zapis nije pronađen',\n loadingText: 'Učitavanje stavke...',\n },\n dataTable: {\n itemsPerPageText: 'Redova po stranici:',\n ariaLabel: {\n sortDescending: 'Sortirano opadajuće.',\n sortAscending: 'Sortirano rastuće.',\n sortNone: 'Nije sortirano.',\n activateNone: 'Klikni da ukloniš sortiranje.',\n activateDescending: 'Klikni da sortiraš opadajuće.',\n activateAscending: 'Klikni da sortiraš rastuće.',\n },\n sortBy: 'Sortiraj po',\n },\n dataFooter: {\n itemsPerPageText: 'Stavki po stranici:',\n itemsPerPageAll: 'Sve',\n nextPage: 'Sledeća stranica',\n prevPage: 'Prethodna stranica',\n firstPage: 'Prva stranica',\n lastPage: 'Poslednja stranica',\n pageText: '{0}-{1} od {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: 'Nema dostupnih podataka',\n carousel: {\n prev: 'Prethodna slika',\n next: 'Sledeća slika',\n ariaLabel: {\n delimiter: 'Slika {0} od {1}',\n },\n },\n calendar: {\n moreEvents: '{0} više',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} fajlova',\n counterSize: '{0} fajlova ({1} ukupno)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Navigacija stranicama',\n next: 'Sledeća stranica',\n previous: 'Prethodna stranica',\n page: 'Idi na stranu {0}',\n currentPage: 'Trenutna stranica, stranica {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Ocena {0} od {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,QAAQ;EACfC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,SAAS;EAChBC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,6BAA6B;IAC5CC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,qBAAqB;IACvCC,SAAS,EAAE;MACTC,cAAc,EAAE,sBAAsB;MACtCC,aAAa,EAAE,oBAAoB;MACnCC,QAAQ,EAAE,iBAAiB;MAC3BC,YAAY,EAAE,+BAA+B;MAC7CC,kBAAkB,EAAE,+BAA+B;MACnDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,qBAAqB;IACvCU,eAAe,EAAE,KAAK;IACtBC,QAAQ,EAAE,kBAAkB;IAC5BC,QAAQ,EAAE,oBAAoB;IAC9BC,SAAS,EAAE,eAAe;IAC1BC,QAAQ,EAAE,oBAAoB;IAC9BC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,yBAAyB;EACrCC,QAAQ,EAAE;IACRC,IAAI,EAAE,iBAAiB;IACvBC,IAAI,EAAE,eAAe;IACrB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,aAAa;IACtBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,uBAAuB;MAC7BhB,IAAI,EAAE,kBAAkB;MACxBiB,QAAQ,EAAE,oBAAoB;MAC9BC,IAAI,EAAE,mBAAmB;MACzBC,WAAW,EAAE,iCAAiC;MAC9CC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/sv.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/sv.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Bricka',
|
||||
open: 'Open',
|
||||
close: 'Stäng',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Avbryt'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Hittade inga poster',
|
||||
loadingText: 'Laddar data...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Rader per sida:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Fallande sortering.',
|
||||
sortAscending: 'Stigande sortering.',
|
||||
sortNone: 'Osorterat.',
|
||||
activateNone: 'Aktivera för att ta bort sortering.',
|
||||
activateDescending: 'Aktivera för att sortera fallande.',
|
||||
activateAscending: 'Aktivera för att sortera stigande.'
|
||||
},
|
||||
sortBy: 'Sortera efter'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Objekt per sida:',
|
||||
itemsPerPageAll: 'Alla',
|
||||
nextPage: 'Nästa sida',
|
||||
prevPage: 'Föregående sida',
|
||||
firstPage: 'Första sidan',
|
||||
lastPage: 'Sista sidan',
|
||||
pageText: '{0}-{1} av {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Välj datum',
|
||||
header: 'Välj datum'
|
||||
},
|
||||
title: 'Välj datum',
|
||||
header: 'Välj datum',
|
||||
input: {
|
||||
placeholder: 'Välj datum'
|
||||
}
|
||||
},
|
||||
noDataText: 'Ingen data tillgänglig',
|
||||
carousel: {
|
||||
prev: 'Föregående vy',
|
||||
next: 'Nästa vy',
|
||||
ariaLabel: {
|
||||
delimiter: 'Karusellvy {0} av {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} fler',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Rensa {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} filer',
|
||||
counterSize: '{0} filer ({1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Paginering',
|
||||
next: 'Nästa sida',
|
||||
previous: 'Föregående sida',
|
||||
page: 'Gå till sida {0}',
|
||||
currentPage: 'Aktuell sida, sida {0}',
|
||||
first: 'Första sidan',
|
||||
last: 'Sista sidan'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Betyg {0} av {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=sv.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/sv.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/sv.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"sv.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/sv.ts"],"sourcesContent":["export default {\n badge: 'Bricka',\n open: 'Open',\n close: 'Stäng',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Avbryt',\n },\n dataIterator: {\n noResultsText: 'Hittade inga poster',\n loadingText: 'Laddar data...',\n },\n dataTable: {\n itemsPerPageText: 'Rader per sida:',\n ariaLabel: {\n sortDescending: 'Fallande sortering.',\n sortAscending: 'Stigande sortering.',\n sortNone: 'Osorterat.',\n activateNone: 'Aktivera för att ta bort sortering.',\n activateDescending: 'Aktivera för att sortera fallande.',\n activateAscending: 'Aktivera för att sortera stigande.',\n },\n sortBy: 'Sortera efter',\n },\n dataFooter: {\n itemsPerPageText: 'Objekt per sida:',\n itemsPerPageAll: 'Alla',\n nextPage: 'Nästa sida',\n prevPage: 'Föregående sida',\n firstPage: 'Första sidan',\n lastPage: 'Sista sidan',\n pageText: '{0}-{1} av {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Välj datum',\n header: 'Välj datum',\n },\n title: 'Välj datum',\n header: 'Välj datum',\n input: {\n placeholder: 'Välj datum',\n },\n },\n noDataText: 'Ingen data tillgänglig',\n carousel: {\n prev: 'Föregående vy',\n next: 'Nästa vy',\n ariaLabel: {\n delimiter: 'Karusellvy {0} av {1}',\n },\n },\n calendar: {\n moreEvents: '{0} fler',\n today: 'Today',\n },\n input: {\n clear: 'Rensa {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} filer',\n counterSize: '{0} filer ({1})',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Paginering',\n next: 'Nästa sida',\n previous: 'Föregående sida',\n page: 'Gå till sida {0}',\n currentPage: 'Aktuell sida, sida {0}',\n first: 'Första sidan',\n last: 'Sista sidan',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Betyg {0} av {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,QAAQ;EACfC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,OAAO;EACdC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,qBAAqB;IACpCC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,iBAAiB;IACnCC,SAAS,EAAE;MACTC,cAAc,EAAE,qBAAqB;MACrCC,aAAa,EAAE,qBAAqB;MACpCC,QAAQ,EAAE,YAAY;MACtBC,YAAY,EAAE,qCAAqC;MACnDC,kBAAkB,EAAE,oCAAoC;MACxDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,kBAAkB;IACpCU,eAAe,EAAE,MAAM;IACvBC,QAAQ,EAAE,YAAY;IACtBC,QAAQ,EAAE,iBAAiB;IAC3BC,SAAS,EAAE,cAAc;IACzBC,QAAQ,EAAE,aAAa;IACvBC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,YAAY;MACnBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,YAAY;IACnBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,wBAAwB;EACpCC,QAAQ,EAAE;IACRC,IAAI,EAAE,eAAe;IACrBC,IAAI,EAAE,UAAU;IAChB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,WAAW;IACpBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,YAAY;MAClBhB,IAAI,EAAE,YAAY;MAClBiB,QAAQ,EAAE,iBAAiB;MAC3BC,IAAI,EAAE,kBAAkB;MACxBC,WAAW,EAAE,wBAAwB;MACrCC,KAAK,EAAE,cAAc;MACrBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/th.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/th.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'สัญลักษณ์',
|
||||
open: 'Open',
|
||||
close: 'ปิด',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'ไม่พบข้อมูลที่ค้นหา',
|
||||
loadingText: 'กำลังโหลดข้อมูล...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'แถวต่อหน้า:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'เรียงจากมากไปน้อยอยู่',
|
||||
sortAscending: 'เรียงจากน้อยไปมากอยู่',
|
||||
sortNone: 'ไม่ได้เรียงลำดับ',
|
||||
activateNone: 'กดเพื่อปิดการเรียงลำดับ',
|
||||
activateDescending: 'กดเพื่อเรียงจากมากไปน้อย',
|
||||
activateAscending: 'กดเพื่อเรียงจากน้อยไปมาก'
|
||||
},
|
||||
sortBy: 'เรียงตาม'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'รายการต่อหน้า:',
|
||||
itemsPerPageAll: 'ทั้งหมด',
|
||||
nextPage: 'หน้าต่อไป',
|
||||
prevPage: 'หน้าที่แล้ว',
|
||||
firstPage: 'หน้าแรก',
|
||||
lastPage: 'หน้าสุดท้าย',
|
||||
pageText: '{0}-{1} จาก {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'ไม่มีข้อมูล',
|
||||
carousel: {
|
||||
prev: 'ภาพก่อนหน้า',
|
||||
next: 'ภาพถัดไป',
|
||||
ariaLabel: {
|
||||
delimiter: 'ภาพสไลด์ที่ {0} จาก {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'มีอีก {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} ไฟล์',
|
||||
counterSize: '{0} ไฟล์ (รวม {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'การนำทางไปยังหน้า',
|
||||
next: 'หน้าต่อไป',
|
||||
previous: 'หน้าที่แล้ว',
|
||||
page: 'ไปที่หน้า {0}',
|
||||
currentPage: 'หน้าปัจจุบัน (หน้า {0})',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=th.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/th.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/th.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/tr.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/tr.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'rozet',
|
||||
open: 'Open',
|
||||
close: 'Kapat',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Eşleşen veri bulunamadı',
|
||||
loadingText: 'Yükleniyor... Lütfen bekleyin.'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Sayfa başına satır:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Z den A ya sıralı.',
|
||||
sortAscending: 'A dan Z ye sıralı.',
|
||||
sortNone: 'Sıralı değil. ',
|
||||
activateNone: 'Sıralamayı kaldırmak için etkinleştir.',
|
||||
activateDescending: 'Z den A ya sıralamak için etkinleştir.',
|
||||
activateAscending: 'A dan Z ye sıralamak için etkinleştir.'
|
||||
},
|
||||
sortBy: 'Sırala'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Sayfa başına satır:',
|
||||
itemsPerPageAll: 'Hepsi',
|
||||
nextPage: 'Sonraki sayfa',
|
||||
prevPage: 'Önceki sayfa',
|
||||
firstPage: 'İlk sayfa',
|
||||
lastPage: 'Son sayfa',
|
||||
pageText: '{0} - {1} arası, Toplam: {2} kayıt'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Bu görünümde veri yok.',
|
||||
carousel: {
|
||||
prev: 'Önceki görsel',
|
||||
next: 'Sonraki görsel',
|
||||
ariaLabel: {
|
||||
delimiter: 'Galeri sayfa {0} / {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} tane daha',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} dosya',
|
||||
counterSize: '{0} dosya (toplamda {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Sayfalandırma Navigasyonu',
|
||||
next: 'Sonraki sayfa',
|
||||
previous: 'Önceki sayfa',
|
||||
page: 'Sayfaya git {0}',
|
||||
currentPage: 'Geçerli Sayfa, Sayfa {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=tr.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/tr.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/tr.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/uk.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/uk.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Знак',
|
||||
open: 'Open',
|
||||
close: 'Закрити',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'В результаті пошуку нічого не знайдено',
|
||||
loadingText: 'Завантаження...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Рядків на сторінці:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Відсортовано за спаданням.',
|
||||
sortAscending: 'Відсортовано за зростанням.',
|
||||
sortNone: 'Не відсортовано.',
|
||||
activateNone: 'Активувати, щоб видалити сортування.',
|
||||
activateDescending: 'Активувати, щоб відсортувати за спаданням.',
|
||||
activateAscending: 'Активувати, щоб відсортувати за зростанням.'
|
||||
},
|
||||
sortBy: 'Відсортувати за'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Елементів на сторінці:',
|
||||
itemsPerPageAll: 'Всі',
|
||||
nextPage: 'Наступна сторінка',
|
||||
prevPage: 'Попередня сторінка',
|
||||
firstPage: 'Перша сторінка',
|
||||
lastPage: 'Остання сторінка',
|
||||
pageText: '{0}-{1} з {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Немає даних для відображення',
|
||||
carousel: {
|
||||
prev: 'Попередній слайд',
|
||||
next: 'Наступий слайд',
|
||||
ariaLabel: {
|
||||
delimiter: 'Слайд {0} з {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: 'Ще {0}',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} файлів',
|
||||
counterSize: '{0} файлів ({1} загалом)'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Навігація по сторінках',
|
||||
next: 'Наступна сторінка',
|
||||
previous: 'Попередня сторінка',
|
||||
page: 'Перейти на сторінку {0}',
|
||||
currentPage: 'Поточна сторінка, Сторінка {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=uk.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/uk.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/uk.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/vi.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/vi.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: 'Huy hiệu',
|
||||
open: 'Open',
|
||||
close: 'Đóng',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: 'Không tìm thấy kết quả nào',
|
||||
loadingText: 'Đang tải...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: 'Số hàng mỗi trang:',
|
||||
ariaLabel: {
|
||||
sortDescending: 'Sắp xếp giảm dần.',
|
||||
sortAscending: 'Sắp xếp tăng dần.',
|
||||
sortNone: 'Không sắp xếp.',
|
||||
activateNone: 'Kích hoạt để bỏ sắp xếp.',
|
||||
activateDescending: 'Kích hoạt để sắp xếp giảm dần.',
|
||||
activateAscending: 'Kích hoạt để sắp xếp tăng dần.'
|
||||
},
|
||||
sortBy: 'Sắp xếp'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: 'Số mục mỗi trang:',
|
||||
itemsPerPageAll: 'Toàn bộ',
|
||||
nextPage: 'Trang tiếp theo',
|
||||
prevPage: 'Trang trước',
|
||||
firstPage: 'Trang đầu',
|
||||
lastPage: 'Trang cuối',
|
||||
pageText: '{0}-{1} trên {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: 'Không có dữ liệu',
|
||||
carousel: {
|
||||
prev: 'Ảnh tiếp theo',
|
||||
next: 'Ảnh trước',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} trên {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '{0} nữa',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} tệp',
|
||||
counterSize: '{0} tệp (tổng cộng {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'SA',
|
||||
pm: 'CH'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: 'Điều hướng phân trang',
|
||||
next: 'Trang tiếp theo',
|
||||
previous: 'Trang trước',
|
||||
page: 'Đến trang {0}',
|
||||
currentPage: 'Trang hiện tại, Trang {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Đánh giá {0} trên {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=vi.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/vi.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/vi.mjs.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
101
VApp/node_modules/vuetify/lib/locale/zh-Hans.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/zh-Hans.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: '徽章',
|
||||
open: 'Open',
|
||||
close: '关闭',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: '没有符合条件的结果',
|
||||
loadingText: '加载中……'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: '每页数目:',
|
||||
ariaLabel: {
|
||||
sortDescending: ':降序排列。',
|
||||
sortAscending: ':升序排列。',
|
||||
sortNone: ':未排序。',
|
||||
activateNone: '点击以移除排序。',
|
||||
activateDescending: '点击以降序排列。',
|
||||
activateAscending: '点击以升序排列。'
|
||||
},
|
||||
sortBy: '排序方式'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: '每页数目:',
|
||||
itemsPerPageAll: '全部',
|
||||
nextPage: '下一页',
|
||||
prevPage: '上一页',
|
||||
firstPage: '首页',
|
||||
lastPage: '尾页',
|
||||
pageText: '{0}-{1} 共 {2}'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: '没有数据',
|
||||
carousel: {
|
||||
prev: '上一张',
|
||||
next: '下一张',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '还有 {0} 项',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} 个文件',
|
||||
counterSize: '{0} 个文件(共 {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: '分页导航',
|
||||
next: '下一页',
|
||||
previous: '上一页',
|
||||
page: '转到页面 {0}',
|
||||
currentPage: '当前页 {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=zh-Hans.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/zh-Hans.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/zh-Hans.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"zh-Hans.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/zh-Hans.ts"],"sourcesContent":["export default {\n badge: '徽章',\n open: 'Open',\n close: '关闭',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: '没有符合条件的结果',\n loadingText: '加载中……',\n },\n dataTable: {\n itemsPerPageText: '每页数目:',\n ariaLabel: {\n sortDescending: ':降序排列。',\n sortAscending: ':升序排列。',\n sortNone: ':未排序。',\n activateNone: '点击以移除排序。',\n activateDescending: '点击以降序排列。',\n activateAscending: '点击以升序排列。',\n },\n sortBy: '排序方式',\n },\n dataFooter: {\n itemsPerPageText: '每页数目:',\n itemsPerPageAll: '全部',\n nextPage: '下一页',\n prevPage: '上一页',\n firstPage: '首页',\n lastPage: '尾页',\n pageText: '{0}-{1} 共 {2}',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: '没有数据',\n carousel: {\n prev: '上一张',\n next: '下一张',\n ariaLabel: {\n delimiter: 'Carousel slide {0} of {1}',\n },\n },\n calendar: {\n moreEvents: '还有 {0} 项',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} 个文件',\n counterSize: '{0} 个文件(共 {1})',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: '分页导航',\n next: '下一页',\n previous: '上一页',\n page: '转到页面 {0}',\n currentPage: '当前页 {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,IAAI;EACXC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,IAAI;EACXC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,WAAW;IAC1BC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,OAAO;IACzBC,SAAS,EAAE;MACTC,cAAc,EAAE,QAAQ;MACxBC,aAAa,EAAE,QAAQ;MACvBC,QAAQ,EAAE,OAAO;MACjBC,YAAY,EAAE,UAAU;MACxBC,kBAAkB,EAAE,UAAU;MAC9BC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,OAAO;IACzBU,eAAe,EAAE,IAAI;IACrBC,QAAQ,EAAE,KAAK;IACfC,QAAQ,EAAE,KAAK;IACfC,SAAS,EAAE,IAAI;IACfC,QAAQ,EAAE,IAAI;IACdC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,MAAM;EAClBC,QAAQ,EAAE;IACRC,IAAI,EAAE,KAAK;IACXC,IAAI,EAAE,KAAK;IACX3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,UAAU;IACtBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,SAAS;IAClBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,MAAM;MACZhB,IAAI,EAAE,KAAK;MACXiB,QAAQ,EAAE,KAAK;MACfC,IAAI,EAAE,UAAU;MAChBC,WAAW,EAAE,SAAS;MACtBC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
101
VApp/node_modules/vuetify/lib/locale/zh-Hant.mjs
generated
vendored
Normal file
101
VApp/node_modules/vuetify/lib/locale/zh-Hant.mjs
generated
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
export default {
|
||||
badge: '徽章',
|
||||
open: 'Open',
|
||||
close: '關閉',
|
||||
confirmEdit: {
|
||||
ok: 'OK',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
dataIterator: {
|
||||
noResultsText: '沒有符合條件的結果',
|
||||
loadingText: '讀取中...'
|
||||
},
|
||||
dataTable: {
|
||||
itemsPerPageText: '每頁列數:',
|
||||
ariaLabel: {
|
||||
sortDescending: ':降序排列。',
|
||||
sortAscending: ':升序排列。',
|
||||
sortNone: '無排序方式。點擊以升序排列。',
|
||||
activateNone: '點擊以移除排序方式。',
|
||||
activateDescending: '點擊以降序排列。',
|
||||
activateAscending: '點擊以移除排序方式。'
|
||||
},
|
||||
sortBy: '排序方式'
|
||||
},
|
||||
dataFooter: {
|
||||
itemsPerPageText: '每頁項目:',
|
||||
itemsPerPageAll: '全部',
|
||||
nextPage: '下一頁',
|
||||
prevPage: '上一頁',
|
||||
firstPage: '第一頁',
|
||||
lastPage: '最後頁',
|
||||
pageText: '{2} 條中的 {0}~{1} 條'
|
||||
},
|
||||
dateRangeInput: {
|
||||
divider: 'to'
|
||||
},
|
||||
datePicker: {
|
||||
itemsSelected: '{0} selected',
|
||||
range: {
|
||||
title: 'Select dates',
|
||||
header: 'Enter dates'
|
||||
},
|
||||
title: 'Select date',
|
||||
header: 'Enter date',
|
||||
input: {
|
||||
placeholder: 'Enter date'
|
||||
}
|
||||
},
|
||||
noDataText: '沒有資料',
|
||||
carousel: {
|
||||
prev: '上一張',
|
||||
next: '下一張',
|
||||
ariaLabel: {
|
||||
delimiter: 'Carousel slide {0} of {1}'
|
||||
}
|
||||
},
|
||||
calendar: {
|
||||
moreEvents: '還有其他 {0} 項',
|
||||
today: 'Today'
|
||||
},
|
||||
input: {
|
||||
clear: 'Clear {0}',
|
||||
prependAction: '{0} prepended action',
|
||||
appendAction: '{0} appended action',
|
||||
otp: 'Please enter OTP character {0}'
|
||||
},
|
||||
fileInput: {
|
||||
counter: '{0} 個檔案',
|
||||
counterSize: '{0} 個檔案(共 {1})'
|
||||
},
|
||||
timePicker: {
|
||||
am: 'AM',
|
||||
pm: 'PM'
|
||||
},
|
||||
pagination: {
|
||||
ariaLabel: {
|
||||
root: '分頁導航',
|
||||
next: '下一頁',
|
||||
previous: '上一頁',
|
||||
page: '轉到頁面 {0}',
|
||||
currentPage: '當前頁 {0}',
|
||||
first: 'First page',
|
||||
last: 'Last page'
|
||||
}
|
||||
},
|
||||
stepper: {
|
||||
next: 'Next',
|
||||
prev: 'Previous'
|
||||
},
|
||||
rating: {
|
||||
ariaLabel: {
|
||||
item: 'Rating {0} of {1}'
|
||||
}
|
||||
},
|
||||
loading: 'Loading...',
|
||||
infiniteScroll: {
|
||||
loadMore: 'Load more',
|
||||
empty: 'No more'
|
||||
}
|
||||
};
|
||||
//# sourceMappingURL=zh-Hant.mjs.map
|
1
VApp/node_modules/vuetify/lib/locale/zh-Hant.mjs.map
generated
vendored
Normal file
1
VApp/node_modules/vuetify/lib/locale/zh-Hant.mjs.map
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"zh-Hant.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/zh-Hant.ts"],"sourcesContent":["export default {\n badge: '徽章',\n open: 'Open',\n close: '關閉',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Cancel',\n },\n dataIterator: {\n noResultsText: '沒有符合條件的結果',\n loadingText: '讀取中...',\n },\n dataTable: {\n itemsPerPageText: '每頁列數:',\n ariaLabel: {\n sortDescending: ':降序排列。',\n sortAscending: ':升序排列。',\n sortNone: '無排序方式。點擊以升序排列。',\n activateNone: '點擊以移除排序方式。',\n activateDescending: '點擊以降序排列。',\n activateAscending: '點擊以移除排序方式。',\n },\n sortBy: '排序方式',\n },\n dataFooter: {\n itemsPerPageText: '每頁項目:',\n itemsPerPageAll: '全部',\n nextPage: '下一頁',\n prevPage: '上一頁',\n firstPage: '第一頁',\n lastPage: '最後頁',\n pageText: '{2} 條中的 {0}~{1} 條',\n },\n dateRangeInput: {\n divider: 'to',\n },\n datePicker: {\n itemsSelected: '{0} selected',\n range: {\n title: 'Select dates',\n header: 'Enter dates',\n },\n title: 'Select date',\n header: 'Enter date',\n input: {\n placeholder: 'Enter date',\n },\n },\n noDataText: '沒有資料',\n carousel: {\n prev: '上一張',\n next: '下一張',\n ariaLabel: {\n delimiter: 'Carousel slide {0} of {1}',\n },\n },\n calendar: {\n moreEvents: '還有其他 {0} 項',\n today: 'Today',\n },\n input: {\n clear: 'Clear {0}',\n prependAction: '{0} prepended action',\n appendAction: '{0} appended action',\n otp: 'Please enter OTP character {0}',\n },\n fileInput: {\n counter: '{0} 個檔案',\n counterSize: '{0} 個檔案(共 {1})',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: '分頁導航',\n next: '下一頁',\n previous: '上一頁',\n page: '轉到頁面 {0}',\n currentPage: '當前頁 {0}',\n first: 'First page',\n last: 'Last page',\n },\n },\n stepper: {\n next: 'Next',\n prev: 'Previous',\n },\n rating: {\n ariaLabel: {\n item: 'Rating {0} of {1}',\n },\n },\n loading: 'Loading...',\n infiniteScroll: {\n loadMore: 'Load more',\n empty: 'No more',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,IAAI;EACXC,IAAI,EAAE,MAAM;EACZC,KAAK,EAAE,IAAI;EACXC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,WAAW;IAC1BC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,OAAO;IACzBC,SAAS,EAAE;MACTC,cAAc,EAAE,QAAQ;MACxBC,aAAa,EAAE,QAAQ;MACvBC,QAAQ,EAAE,gBAAgB;MAC1BC,YAAY,EAAE,YAAY;MAC1BC,kBAAkB,EAAE,UAAU;MAC9BC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,OAAO;IACzBU,eAAe,EAAE,IAAI;IACrBC,QAAQ,EAAE,KAAK;IACfC,QAAQ,EAAE,KAAK;IACfC,SAAS,EAAE,KAAK;IAChBC,QAAQ,EAAE,KAAK;IACfC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,cAAc;IAC7BC,KAAK,EAAE;MACLC,KAAK,EAAE,cAAc;MACrBC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,YAAY;IACpBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,MAAM;EAClBC,QAAQ,EAAE;IACRC,IAAI,EAAE,KAAK;IACXC,IAAI,EAAE,KAAK;IACX3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,YAAY;IACxBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,WAAW;IAClBC,aAAa,EAAE,sBAAsB;IACrCC,YAAY,EAAE,qBAAqB;IACnCC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,SAAS;IAClBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,MAAM;MACZhB,IAAI,EAAE,KAAK;MACXiB,QAAQ,EAAE,KAAK;MACfC,IAAI,EAAE,UAAU;MAChBC,WAAW,EAAE,SAAS;MACtBC,KAAK,EAAE,YAAY;MACnBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,MAAM;IACZD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,YAAY;EACrBC,cAAc,EAAE;IACdC,QAAQ,EAAE,WAAW;IACrBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
Reference in New Issue
Block a user