Update naming consistency and improve JSON module resolution
All checks were successful
forgejo/Czech Quests/addon/pipeline/head This commit looks good

This commit is contained in:
Roman Jaroš 2025-03-27 09:07:00 +01:00
parent d1fa5a6bc7
commit 45b919a41e
5 changed files with 5 additions and 7 deletions

View file

@ -93,9 +93,6 @@ const splitFirst = (text: string, delimiter: string) => {
// for each page from tolgee // for each page from tolgee
for (const tolgeeKey of translations) { for (const tolgeeKey of translations) {
let key = tolgeeKey.keyName; let key = tolgeeKey.keyName;
if (key.startsWith('n')) {
key = key.split('_')[1];
}
addonData[key] = { addonData[key] = {
...addonData[tolgeeKey.keyName], ...addonData[tolgeeKey.keyName],
@ -197,7 +194,7 @@ const splitFirst = (text: string, delimiter: string) => {
if (czechQuest.speeches) { if (czechQuest.speeches) {
let luaQuestRecord = ''; let luaQuestRecord = '';
const key = splitFirst(normalizeTranslation(czechQuest.speeches?.[2]) ?? '', ':').trim(); const key = splitFirst(normalizeTranslation(czechQuest.speeches?.[2]) ?? '', ': ').trim();
const npcNameKey = normalizeTranslation(czechQuest.name).trim(); const npcNameKey = normalizeTranslation(czechQuest.name).trim();
luaQuestRecord += `addon.data.speech["${npcNameKey}_${key}"] = {\n`; luaQuestRecord += `addon.data.speech["${npcNameKey}_${key}"] = {\n`;
luaQuestRecord += '\ttext = "' + normalizeTranslation(czechQuest.speeches?.[0]).trim() + '", \n'; luaQuestRecord += '\ttext = "' + normalizeTranslation(czechQuest.speeches?.[0]).trim() + '", \n';

View file

@ -7,6 +7,7 @@
"esModuleInterop": true, "esModuleInterop": true,
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
}, },
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }

View file

@ -125,7 +125,7 @@ local function InitOthers()
end end
local function InitOptions() local function InitOptions()
local category, layout = Settings.RegisterVerticalLayoutCategory("CzechQuests") local category, layout = Settings.RegisterVerticalLayoutCategory("Czech Quests")
Options.category = category Options.category = category
Options.layout = layout Options.layout = layout

View file

@ -1,5 +1,5 @@
## Interface: 110100 ## Interface: 110100
## Title: CzechQuests ## Title: Czech Quests
## Notes: Addon displays texts of quests in Czech language ## Notes: Addon displays texts of quests in Czech language
## Author: Roman Jaroš ## Author: Roman Jaroš
## Version: 1.0.1 ## Version: 1.0.1

View file

@ -1,5 +1,5 @@
## Interface: 11505 ## Interface: 11505
## Title: CzechQuests ## Title: Czech Quests
## Notes: Addon displays texts of quests in Czech language as tooltip ## Notes: Addon displays texts of quests in Czech language as tooltip
## Author: Roman Jaroš ## Author: Roman Jaroš
## Version: 1.0.1 ## Version: 1.0.1