Skip to content

Commit

Permalink
Update documentation and add Polish locale support
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmorley15 committed Nov 27, 2024
1 parent 0878008 commit 7defdac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions documentation/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ export default defineConfig({

footer: {
message: "AdventureLog",
copyright:
'Copyright © 2023-2024 <a target="_blank" href="https:/seanmorley.com">Sean Morley</a>',
copyright: "Copyright © 2023-2024 Sean Morley",
},

logo: "/adventurelog.png",
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/intro/adventurelog_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ AdventureLog is open-source software, licensed under the GPL-3.0 license. This m

## About the Maintainer

AdventureLog is created and maintined by [Sean Morley](https://seanmorley.com), a Computer Science student at the University of Connecticut. Sean is passionate about open-source software and building modern tools that help people solve real-world problems.
AdventureLog is created and maintained by [Sean Morley](https://seanmorley.com), a Computer Science student at the University of Connecticut. Sean is passionate about open-source software and building modern tools that help people solve real-world problems.
3 changes: 2 additions & 1 deletion frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
register('zh', () => import('../locales/zh.json'));
register('nl', () => import('../locales/nl.json'));
register('sv', () => import('../locales/sv.json'));
register('pl', () => import('../locales/pl.json'));
let locales = ['en', 'es', 'fr', 'de', 'it', 'zh', 'nl', 'sv'];
let locales = ['en', 'es', 'fr', 'de', 'it', 'zh', 'nl', 'sv', 'pl'];
if (browser) {
init({
Expand Down

0 comments on commit 7defdac

Please sign in to comment.