chore(i18n): fix issues with ga

This commit is contained in:
Elian Doran
2026-02-06 20:24:16 +02:00
parent 66de94f050
commit 21d47c3fef
2 changed files with 3 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ const UNSORTED_LOCALES = [
{ id: "en-GB", name: "English (United Kingdom)", electronLocale: "en_GB" },
{ id: "es", name: "Español", electronLocale: "es" },
{ id: "fr", name: "Français", electronLocale: "fr" },
{ id: "ga", name: "Gaeilge", electronLocale: "ga" },
{ id: "ga", name: "Gaeilge", electronLocale: "en" },
{ id: "it", name: "Italiano", electronLocale: "it" },
{ id: "ja", name: "日本語", electronLocale: "ja" },
{ id: "pt_br", name: "Português (Brasil)", electronLocale: "pt_BR" },

View File

@@ -10,7 +10,8 @@ const build = new BuildHelper("packages/pdfjs-viewer");
const watchMode = process.argv.includes("--watch");
const LOCALE_MAPPINGS: Record<string, string> = {
"es": "es-ES"
"es": "es-ES",
"ga": "ga-IE"
};
async function main() {