1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Chore: Fixed asset order

This commit is contained in:
Laurent Cozic 2023-07-02 17:48:29 +01:00
parent bc35649dda
commit dfbe628944
2 changed files with 9 additions and 7 deletions

View File

@ -8,12 +8,12 @@ module.exports = [
"de",
"el",
"eo",
"es",
"es_ES",
"es_MX",
"es",
"eu",
"fa_IR",
"fa",
"fa_IR",
"fi",
"fr_FR",
"gl",
@ -21,8 +21,8 @@ module.exports = [
"hr",
"hu_HU",
"id",
"it_IT",
"it",
"it_IT",
"ja",
"kk",
"ko_KR",
@ -32,18 +32,18 @@ module.exports = [
"pl",
"pt_BR",
"pt_PT",
"ro_RO",
"ro",
"ro_RO",
"ru",
"sk",
"sl_SI",
"sl",
"sl_SI",
"sv_SE",
"ta_IN",
"ta",
"ta_IN",
"th_TH",
"tr_TR",
"tr",
"tr_TR",
"uk",
"vi",
"zh_CN",

View File

@ -147,6 +147,8 @@ async function main() {
return s[0];
});
supportedLocales.sort();
const content = `module.exports = ${JSON.stringify(supportedLocales, null, 2)}`;
await writeFile(`${__dirname}/../gui/NoteEditor/NoteBody/TinyMCE/supportedLocales.js`, content, 'utf8');