mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:39:08 +00:00
* chore: upgrade api dependencies to latest compatible version * chore: update ui dependencies first pass * chore: migrate ui dependency to latests Migrates i18next-parser from 6.x -> 8.x per documentation * chore: add missing tools file * chore: regenerate files * chore: fix docker build from incorrect depedency bookworms latest stable version of libheif-dev is 1.15.1
26 lines
416 B
JavaScript
26 lines
416 B
JavaScript
module.exports = {
|
|
defaultValue: function (locale, namespace, key, value) {
|
|
if (locale != 'en'){
|
|
return '';
|
|
}
|
|
return value || key;
|
|
},
|
|
sort: true,
|
|
locales: [
|
|
'da',
|
|
'de',
|
|
'en',
|
|
'es',
|
|
'fr',
|
|
'it',
|
|
'pl',
|
|
'pt',
|
|
'ru',
|
|
'sv',
|
|
'zh-CN',
|
|
'zh-HK',
|
|
],
|
|
input: 'src/**/*.{js,ts,jsx,tsx}',
|
|
output: 'src/extractedTranslations/$LOCALE/$NAMESPACE.json',
|
|
}
|