Update ja-JP translation.
Add translations for the Automations feature and other missing texts.
Additional Information
"Automation title" (create dialog) and "Automation Name" (edit dialog) should be unified.
"Create and manage scheduled automations" was not yet translated.
Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.
Note
Deleting the CLA section will lead to immediate closure of your PR and it will not be merged in.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
## 📋 Pull Request Information
**Original PR:** https://github.com/open-webui/open-webui/pull/23616
**Author:** [@zolgear](https://github.com/zolgear)
**Created:** 4/12/2026
**Status:** ❌ Closed
**Base:** `main` ← **Head:** `translation_ja-JP`
---
### 📝 Commits (10+)
- [`bcb71bb`](https://github.com/open-webui/open-webui/commit/bcb71bb5206ac01d97a39fde8ecf0e0541dde636) feat: tasks
- [`2388dd7`](https://github.com/open-webui/open-webui/commit/2388dd7dc3530b5dd5419c5d0bb1bcdcb7544099) refac
- [`2040095`](https://github.com/open-webui/open-webui/commit/2040095050056d01c61aa597c5010445449a42c7) enh: shortcode emojis
- [`6c2b2f2`](https://github.com/open-webui/open-webui/commit/6c2b2f2c3e5f4c86273c408b901b5af9b3c7d6d6) refac
- [`012ce95`](https://github.com/open-webui/open-webui/commit/012ce95f27d57bea8911bd63bfb923443c5797ae) enh: swipe to reply
- [`64da99a`](https://github.com/open-webui/open-webui/commit/64da99a32218171d41b3af5acc14783de8dbdf49) refac
- [`edb8971`](https://github.com/open-webui/open-webui/commit/edb8971c7dbd974322c3207c4655ff66479c3ee2) refac
- [`1b1d85f`](https://github.com/open-webui/open-webui/commit/1b1d85fe2e3a5505e371848105bf70c140d77f5e) refac
- [`4777f4f`](https://github.com/open-webui/open-webui/commit/4777f4fa3256a04d837338797327653273ffa94a) refac
- [`a06685a`](https://github.com/open-webui/open-webui/commit/a06685a47b89fb19dd6124fbe391ff78b54f451d) refac
### 📊 Changes
**182 files changed** (+14016 additions, -2768 deletions)
<details>
<summary>View changed files</summary>
📝 `README.md` (+0 -2)
📝 `backend/open_webui/config.py` (+37 -6)
📝 `backend/open_webui/env.py` (+36 -6)
📝 `backend/open_webui/functions.py` (+1 -12)
📝 `backend/open_webui/main.py` (+55 -4)
➕ `backend/open_webui/migrations/versions/a3dd5bedd151_add_tasks_and_summary_to_chat.py` (+28 -0)
➕ `backend/open_webui/migrations/versions/b7c8d9e0f1a2_add_last_read_at_to_chat.py` (+27 -0)
➕ `backend/open_webui/migrations/versions/d4e5f6a7b8c9_add_automation_tables.py` (+55 -0)
➕ `backend/open_webui/models/automations.py` (+375 -0)
📝 `backend/open_webui/models/chat_messages.py` (+15 -11)
📝 `backend/open_webui/models/chats.py` (+132 -18)
📝 `backend/open_webui/models/feedbacks.py` (+16 -0)
📝 `backend/open_webui/models/models.py` (+15 -0)
📝 `backend/open_webui/models/users.py` (+3 -8)
📝 `backend/open_webui/routers/audio.py` (+103 -0)
📝 `backend/open_webui/routers/auths.py` (+14 -1)
➕ `backend/open_webui/routers/automations.py` (+317 -0)
📝 `backend/open_webui/routers/channels.py` (+22 -20)
📝 `backend/open_webui/routers/chats.py` (+3 -2)
📝 `backend/open_webui/routers/evaluations.py` (+15 -1)
_...and 80 more files_
</details>
### 📄 Description
# Changelog Entry
### Description
Update ja-JP translation.
Add translations for the Automations feature and other missing texts.
---
### Additional Information
- "Automation title" (create dialog) and "Automation Name" (edit dialog) should be unified.
- "Create and manage scheduled automations" was not yet translated.
### Contributor License Agreement
<!--
🚨 DO NOT DELETE THE TEXT BELOW 🚨
Keep the "Contributor License Agreement" confirmation text intact.
Deleting it will trigger the CLA-Bot to INVALIDATE your PR.
Your PR will NOT be reviewed or merged until you check the box below confirming that you have read and agree to the terms of the CLA.
-->
- [x] By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](https://github.com/open-webui/open-webui/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms.
> [!NOTE]
> Deleting the CLA section will lead to immediate closure of your PR and it will not be merged in.
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/23616
Author: @zolgear
Created: 4/12/2026
Status: ❌ Closed
Base:
main← Head:translation_ja-JP📝 Commits (10+)
bcb71bbfeat: tasks2388dd7refac2040095enh: shortcode emojis6c2b2f2refac012ce95enh: swipe to reply64da99arefacedb8971refac1b1d85frefac4777f4frefaca06685arefac📊 Changes
182 files changed (+14016 additions, -2768 deletions)
View changed files
📝
README.md(+0 -2)📝
backend/open_webui/config.py(+37 -6)📝
backend/open_webui/env.py(+36 -6)📝
backend/open_webui/functions.py(+1 -12)📝
backend/open_webui/main.py(+55 -4)➕
backend/open_webui/migrations/versions/a3dd5bedd151_add_tasks_and_summary_to_chat.py(+28 -0)➕
backend/open_webui/migrations/versions/b7c8d9e0f1a2_add_last_read_at_to_chat.py(+27 -0)➕
backend/open_webui/migrations/versions/d4e5f6a7b8c9_add_automation_tables.py(+55 -0)➕
backend/open_webui/models/automations.py(+375 -0)📝
backend/open_webui/models/chat_messages.py(+15 -11)📝
backend/open_webui/models/chats.py(+132 -18)📝
backend/open_webui/models/feedbacks.py(+16 -0)📝
backend/open_webui/models/models.py(+15 -0)📝
backend/open_webui/models/users.py(+3 -8)📝
backend/open_webui/routers/audio.py(+103 -0)📝
backend/open_webui/routers/auths.py(+14 -1)➕
backend/open_webui/routers/automations.py(+317 -0)📝
backend/open_webui/routers/channels.py(+22 -20)📝
backend/open_webui/routers/chats.py(+3 -2)📝
backend/open_webui/routers/evaluations.py(+15 -1)...and 80 more files
📄 Description
Changelog Entry
Description
Update ja-JP translation.
Add translations for the Automations feature and other missing texts.
Additional Information
Contributor License Agreement
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.