Skip to content

Commit

Permalink
Korean i18n (#503)
Browse files Browse the repository at this point in the history
* Update email.md

Removing the single quotes allow SMTP to work -- it did not work otherwise. Also, [Google recommends TLS over SSL](https://support.google.com/a/answer/2520500?sjid=7564827219172741277-NA)

* Update immich_integration.md

Added the /api to the example URL for the Immich server.

* Add Korean language support to Navbar and layout

* chore: Korean translation (#502)

* correct ko translation at Navbar.svelte

* correct ko.json

correct ko.json::adventures

auto commit

auto commit

auto commit

auto commit

auto commit

adventures

collection

dashboard

home

immich

immich

map

navbar

auto commit

notes

profile

recommendations

settings

share

transportations

auto commit

worldtravel

polishing

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

auto commit

---------

Co-authored-by: Patrick McGuire <60325264+mcguirepr89@users.noreply.github.com>
Co-authored-by: motox986 <49492476+motox986@users.noreply.github.com>
Co-authored-by: Seongjun Ji <metalg0su@gmail.com>
  • Loading branch information
4 people authored Feb 17, 2025
1 parent 2713b36 commit b449650
Show file tree
Hide file tree
Showing 5 changed files with 582 additions and 10 deletions.
14 changes: 7 additions & 7 deletions documentation/docs/configuration/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ environment:
```yaml
environment:
- EMAIL_BACKEND='email'
- EMAIL_HOST='smtp.gmail.com'
- EMAIL_USE_TLS=False
- EMAIL_BACKEND=email
- EMAIL_HOST=smtp.gmail.com
- EMAIL_USE_TLS=True
- EMAIL_PORT=587
- EMAIL_USE_SSL=True
- EMAIL_HOST_USER='user'
- EMAIL_HOST_PASSWORD='password'
- DEFAULT_FROM_EMAIL='user@example.com'
- EMAIL_USE_SSL=False
- EMAIL_HOST_USER=user
- EMAIL_HOST_PASSWORD=password
- DEFAULT_FROM_EMAIL=user@example.com
```
## Customizing Emails
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/configuration/immich_integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To integrate Immich with AdventureLog, you need to have an Immich server running
- Click `New API Key` and name it something like `AdventureLog`.
- Copy the generated API Key, you will need it in the next step.
2. Go to the AdventureLog web interface, click on your user profile picture, go to `Settings` and scroll down to the `Immich Integration` section.
- Enter the URL of your Immich server, e.g. `https://immich.example.com`. Note that `localhost` or `127.0.0.1` will probably not work because Immich and AdventureLog are running on different docker networks. It is recommended to use the IP address of the server where Immich is running ex `http://my-server-ip:port` or a domain name.
- Enter the URL of your Immich server, e.g. `https://immich.example.com/api`. Note that `localhost` or `127.0.0.1` will probably not work because Immich and AdventureLog are running on different docker networks. It is recommended to use the IP address of the server where Immich is running ex `http://my-server-ip:port` or a domain name.
- Paste the API Key you obtained in the previous step.
- Click `Enable Immich` to save the settings.
3. Now, when you are adding images to an adventure, you will see an option to search for images in Immich or upload from an album.
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/lib/components/Navbar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
nl: 'Nederlands',
sv: 'Svenska',
zh: '中文',
pl: 'Polski'
pl: 'Polski',
ko: '한국어'
};
let query: string = '';
Expand Down
Loading

0 comments on commit b449650

Please sign in to comment.