Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added localization #65

Merged
merged 22 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
3d8faac
Displays a 404 error page when trying to access an inexistent wiki page
c-leri Nov 2, 2023
bd7a8e6
Added the possibility to add translations
c-leri Nov 3, 2023
f9d15d7
Started writing french translation
c-leri Nov 3, 2023
cf8c5b2
Added a notice when the selected locale isn't english
c-leri Nov 3, 2023
996a154
More advancement on the french translation
c-leri Nov 3, 2023
74ba48d
Almost done with the french translation
c-leri Nov 3, 2023
676e578
Finished the french translation
c-leri Nov 4, 2023
c77f7bd
Added ES2023 as a lib in tsconfig to be able to use 'toSorted()' on a…
c-leri Nov 4, 2023
a3978c0
Switched 'toSorted()' with 'sort()' so that the github build action h…
c-leri Nov 12, 2023
eb940a1
Changed the behavior of the lang dropdown so that it toggles on click…
c-leri Nov 13, 2023
6e9a70e
Improved the usability of the lang dropdown
c-leri Nov 13, 2023
7b92235
Locale in url instead of local storage
c-leri Nov 15, 2023
e9a2efc
Improved route based translation
c-leri Nov 15, 2023
c560573
Get the first valid locale from the browser's prefered languages list
c-leri Nov 15, 2023
3442f7f
Improved support for browsers with javascript disabled
c-leri Nov 15, 2023
db861cc
404 errors are now displayed properly after build
c-leri Nov 16, 2023
ec3dc8f
Switched to unocss for the icons
c-leri Nov 24, 2023
02b2c38
Better handling of routes with no locales
c-leri Nov 24, 2023
c62f26b
Removal of unneedeed hidden links
c-leri Nov 29, 2023
49291fe
French corrections
c-leri Dec 15, 2023
94b756e
Fix find and replace mistake
c-leri Dec 15, 2023
8c4a213
Gender-neutral language
c-leri Dec 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 28 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,32 +12,40 @@
"format": "prettier --plugin-search-dir . --write . && eslint . --fix"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.20.4",
"@types/node": "^20.3.1",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte": "^2.31.0",
"mdsvex": "^0.10.6",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@iconify-json/fa6-brands": "^1.1.13",
"@iconify-json/fa6-solid": "^1.1.15",
"@iconify-json/tabler": "^1.1.98",
"@jsdevtools/rehype-toc": "^3.0.2",
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.27.2",
"@sveltekit-i18n/base": "^1.3.7",
"@sveltekit-i18n/parser-default": "^1.1.1",
"@types/node": "^20.8.10",
"@types/prismjs": "^1.26.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@unocss/extractor-svelte": "^0.57.7",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-svelte": "^2.34.0",
"mdsvex": "^0.11.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prismjs": "^1.29.0",
"quilt-bulma": "^0.0.23",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^6.0.0",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@jsdevtools/rehype-toc": "^3.0.2",
"rehype-rewrite": "^3.0.6",
"svelte": "^3.59.2",
"svelte-check": "^3.4.4",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"yaml": "^2.3.1"
"rehype-slug": "^6.0.0",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"svelte-markdown": "^0.4.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"unocss": "^0.57.7",
"vite": "^4.5.0",
"yaml": "^2.3.4"
},
"type": "module"
}
Loading