Skip to content

Commit

Permalink
feat(i18n): Move translations into subfolder
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit b0907af
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:41:51 2024 +0200

    feat(i18n): Move translations into subfolder

commit 6630dc2
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:58 2024 +0200

    New translations en.json (Vietnamese)

commit 40487bb
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:57 2024 +0200

    New translations en.json (Chinese Simplified)

commit e4908c1
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:56 2024 +0200

    New translations en.json (Ukrainian)

commit 248defc
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:55 2024 +0200

    New translations en.json (Turkish)

commit d434aaa
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:54 2024 +0200

    New translations en.json (Swedish)

commit 6d3d30d
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:53 2024 +0200

    New translations en.json (Serbian (Cyrillic))

commit c98a46a
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:51 2024 +0200

    New translations en.json (Russian)

commit d442d32
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:50 2024 +0200

    New translations en.json (Portuguese)

commit 8a403d9
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:49 2024 +0200

    New translations en.json (Polish)

commit b1119ed
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:48 2024 +0200

    New translations en.json (Norwegian)

commit 2ccb972
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:47 2024 +0200

    New translations en.json (Dutch)

commit 41b66d3
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:45 2024 +0200

    New translations en.json (Korean)

commit 8cb99e7
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:44 2024 +0200

    New translations en.json (Japanese)

commit a93de7d
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:43 2024 +0200

    New translations en.json (Italian)

commit f44b823
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:42 2024 +0200

    New translations en.json (Hungarian)

commit 69239e2
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:41 2024 +0200

    New translations en.json (Hebrew)

commit 5f30491
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:40 2024 +0200

    New translations en.json (Finnish)

commit 6a65ea7
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:39 2024 +0200

    New translations en.json (Greek)

commit 5e23f7a
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:37 2024 +0200

    New translations en.json (German)

commit 07faeb2
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:36 2024 +0200

    New translations en.json (Danish)

commit 20fb704
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:35 2024 +0200

    New translations en.json (Czech)

commit 7be6c9b
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:33 2024 +0200

    New translations en.json (Catalan)

commit edb9437
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:32 2024 +0200

    New translations en.json (Arabic)

commit 23be74b
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:31 2024 +0200

    New translations en.json (Afrikaans)

commit cfd2398
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:30 2024 +0200

    New translations en.json (Spanish)

commit fc66e8e
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:28 2024 +0200

    New translations en.json (French)

commit 3bd9f0a
Author: Oliver Salzburg <[email protected]>
Date:   Thu Oct 3 18:34:27 2024 +0200

    New translations en.json (Romanian)
  • Loading branch information
oliversalzburg committed Oct 3, 2024
1 parent 8f5fd3a commit 7dea515
Show file tree
Hide file tree
Showing 29 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/kitten-scientists/source/Engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import {
ActivitySummarySection,
ActivityTypeClass,
} from "./helper/ActivitySummary.js";
import de from "./i18n/de.json" assert { type: "json" };
import en from "./i18n/en.json" assert { type: "json" };
import he from "./i18n/he.json" assert { type: "json" };
import zh from "./i18n/zh.json" assert { type: "json" };
import de from "./i18n/translations/de.json" assert { type: "json" };
import he from "./i18n/translations/he.json" assert { type: "json" };
import zh from "./i18n/translations/zh.json" assert { type: "json" };
import { KittenScientists, ksVersion } from "./KittenScientists.js";
import { ReligionManager } from "./ReligionManager.js";
import { ScienceManager } from "./ScienceManager.js";
Expand Down
2 changes: 1 addition & 1 deletion packages/kitten-scientists/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"rootDir": "source",
"types": ["@types/web"]
},
"include": ["../../@types", "source", "source/i18n/*.json"],
"include": ["../../@types", "source", "source/i18n/**/*.json"],
"references": [{ "path": "../action-release-info" }]
}

0 comments on commit 7dea515

Please sign in to comment.