diff --git a/CHANGELOG.md b/CHANGELOG.md
index 758a45979..51d20507e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.3.25] - 2024-09-24
+
+### Fixed
+
+- **🖼️ Image Generation Functionality**: Resolved an issue where image generation was not functioning, restoring full capability for visual content creation.
+- **⚖️ Rate Response Corrections**: Addressed a problem where rate responses were not working, ensuring reliable feedback mechanisms are operational.
+
## [0.3.24] - 2024-09-24
### Added
diff --git a/package-lock.json b/package-lock.json
index bd975a9e6..f3adc3f68 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "open-webui",
- "version": "0.3.24",
+ "version": "0.3.25",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "open-webui",
- "version": "0.3.24",
+ "version": "0.3.25",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6",
diff --git a/package.json b/package.json
index dddd0b0b1..3541edaf4 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "open-webui",
- "version": "0.3.24",
+ "version": "0.3.25",
"private": true,
"scripts": {
"dev": "npm run pyodide:fetch && vite dev --host",
diff --git a/src/lib/components/chat/Messages/RateComment.svelte b/src/lib/components/chat/Messages/RateComment.svelte
index 73261ce66..6bb8cfee2 100644
--- a/src/lib/components/chat/Messages/RateComment.svelte
+++ b/src/lib/components/chat/Messages/RateComment.svelte
@@ -7,9 +7,8 @@
const dispatch = createEventDispatcher();
- export let messageId = null;
- export let show = false;
export let message;
+ export let show = false;
let LIKE_REASONS = [];
let DISLIKE_REASONS = [];
@@ -54,8 +53,10 @@
const submitHandler = () => {
console.log('submitHandler');
- message.annotation.reason = selectedReason;
- message.annotation.comment = comment;
+ if (!selectedReason) {
+ toast.error($i18n.t('Please select a reason'));
+ return;
+ }
dispatch('submit', {
reason: selectedReason,
@@ -69,7 +70,7 @@
{$i18n.t('Tell us more:')}
diff --git a/src/lib/components/chat/Messages/ResponseMessage.svelte b/src/lib/components/chat/Messages/ResponseMessage.svelte
index 6d010bd5a..ff1983cbd 100644
--- a/src/lib/components/chat/Messages/ResponseMessage.svelte
+++ b/src/lib/components/chat/Messages/ResponseMessage.svelte
@@ -304,12 +304,12 @@
console.log(res);
if (res) {
- message.files = res.map((image) => ({
+ const files = res.map((image) => ({
type: 'image',
url: `${image.url}`
}));
- dispatch('save', message);
+ dispatch('save', { ...message, files: files });
}
generatingImage = false;
@@ -1035,11 +1035,17 @@
{#if message.done && showRateComment}
{
- dispatch('update');
+ dispatch('save', {
+ ...message,
+ annotation: {
+ ...message.annotation,
+ comment: e.detail.comment,
+ reason: e.detail.reason
+ }
+ });
(model?.actions ?? [])
.filter((action) => action?.__webui__ ?? false)
.forEach((action) => {
diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json
index 1b3ac0e21..add8f9ed8 100644
--- a/src/lib/i18n/locales/ar-BH/translation.json
+++ b/src/lib/i18n/locales/ar-BH/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "موقف ايجابي",
"Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام",
diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json
index e0341f5c7..8772c5318 100644
--- a/src/lib/i18n/locales/bg-BG/translation.json
+++ b/src/lib/i18n/locales/bg-BG/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Плейграунд",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Позитивна ативност",
"Previous 30 days": "Предыдущите 30 дни",
"Previous 7 days": "Предыдущите 7 дни",
diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json
index e0e63166d..cbd5f9b20 100644
--- a/src/lib/i18n/locales/bn-BD/translation.json
+++ b/src/lib/i18n/locales/bn-BD/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
"Playground": "খেলাঘর",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "পজিটিভ আক্রমণ",
"Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব ৭ দিন",
diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json
index a14aae158..25907c0f2 100644
--- a/src/lib/i18n/locales/ca-ES/translation.json
+++ b/src/lib/i18n/locales/ca-ES/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs",
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
+ "Please select a reason": "",
"Positive attitude": "Actitud positiva",
"Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors",
diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json
index 58d0acdc2..67ff00fcd 100644
--- a/src/lib/i18n/locales/ceb-PH/translation.json
+++ b/src/lib/i18n/locales/ceb-PH/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "",
"Playground": "Dulaanan",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json
index ce965c829..0ce76dfa1 100644
--- a/src/lib/i18n/locales/de-DE/translation.json
+++ b/src/lib/i18n/locales/de-DE/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Testumgebung",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Positive Einstellung",
"Previous 30 days": "Vorherige 30 Tage",
"Previous 7 days": "Vorherige 7 Tage",
diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json
index bc3731583..06d470d53 100644
--- a/src/lib/i18n/locales/dg-DG/translation.json
+++ b/src/lib/i18n/locales/dg-DG/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Playground",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json
index f5087bbb9..70f0f3ad3 100644
--- a/src/lib/i18n/locales/en-GB/translation.json
+++ b/src/lib/i18n/locales/en-GB/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json
index f5087bbb9..70f0f3ad3 100644
--- a/src/lib/i18n/locales/en-US/translation.json
+++ b/src/lib/i18n/locales/en-US/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json
index 1c908a7c2..0ec699400 100644
--- a/src/lib/i18n/locales/es-ES/translation.json
+++ b/src/lib/i18n/locales/es-ES/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Texto plano (.txt)",
"Playground": "Patio de juegos",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Actitud positiva",
"Previous 30 days": "Últimos 30 días",
"Previous 7 days": "Últimos 7 días",
diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json
index fa669d872..003fb8743 100644
--- a/src/lib/i18n/locales/fa-IR/translation.json
+++ b/src/lib/i18n/locales/fa-IR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "متن ساده (.txt)",
"Playground": "زمین بازی",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "نظرات مثبت",
"Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل",
diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json
index 8ffa5282e..4af2134cb 100644
--- a/src/lib/i18n/locales/fi-FI/translation.json
+++ b/src/lib/i18n/locales/fi-FI/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Pelkkä teksti (.txt)",
"Playground": "Leikkipaikka",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Positiivinen asenne",
"Previous 30 days": "Edelliset 30 päivää",
"Previous 7 days": "Edelliset 7 päivää",
diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json
index d108343bc..f8b075ecc 100644
--- a/src/lib/i18n/locales/fr-CA/translation.json
+++ b/src/lib/i18n/locales/fr-CA/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Aire de jeux",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json
index a5ef27c11..5f357560a 100644
--- a/src/lib/i18n/locales/fr-FR/translation.json
+++ b/src/lib/i18n/locales/fr-FR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Playground",
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
+ "Please select a reason": "",
"Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json
index ce50972d5..7d45c394b 100644
--- a/src/lib/i18n/locales/he-IL/translation.json
+++ b/src/lib/i18n/locales/he-IL/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "טקסט פשוט (.txt)",
"Playground": "אזור משחקים",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "גישה חיובית",
"Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים",
diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json
index ebc89ebcc..eec1edf47 100644
--- a/src/lib/i18n/locales/hi-IN/translation.json
+++ b/src/lib/i18n/locales/hi-IN/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "सादा पाठ (.txt)",
"Playground": "कार्यक्षेत्र",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "सकारात्मक रवैया",
"Previous 30 days": "पिछले 30 दिन",
"Previous 7 days": "पिछले 7 दिन",
diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json
index ca18754e7..c5125dfb7 100644
--- a/src/lib/i18n/locales/hr-HR/translation.json
+++ b/src/lib/i18n/locales/hr-HR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Običan tekst (.txt)",
"Playground": "Igralište",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Pozitivan stav",
"Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana",
diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json
index fddfbeae7..3a89d318b 100644
--- a/src/lib/i18n/locales/id-ID/translation.json
+++ b/src/lib/i18n/locales/id-ID/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Teks biasa (.txt)",
"Playground": "Taman bermain",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Sikap positif",
"Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya",
diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json
index c61ab3bc8..bb173a0a0 100644
--- a/src/lib/i18n/locales/it-IT/translation.json
+++ b/src/lib/i18n/locales/it-IT/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Testo normale (.txt)",
"Playground": "Terreno di gioco",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Attitudine positiva",
"Previous 30 days": "Ultimi 30 giorni",
"Previous 7 days": "Ultimi 7 giorni",
diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json
index a14893222..a3edd4af5 100644
--- a/src/lib/i18n/locales/ja-JP/translation.json
+++ b/src/lib/i18n/locales/ja-JP/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "プレーンテキスト (.txt)",
"Playground": "プレイグラウンド",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "陽気な態度",
"Previous 30 days": "前の30日間",
"Previous 7 days": "前の7日間",
diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json
index a8746d04e..a7fff49bd 100644
--- a/src/lib/i18n/locales/ka-GE/translation.json
+++ b/src/lib/i18n/locales/ka-GE/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "ტექსტი (.txt)",
"Playground": "სათამაშო მოედანი",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "პოზიტიური ანგარიში",
"Previous 30 days": "უკან 30 დღე",
"Previous 7 days": "უკან 7 დღე",
diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json
index b619c8206..64fb2d7e1 100644
--- a/src/lib/i18n/locales/ko-KR/translation.json
+++ b/src/lib/i18n/locales/ko-KR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "일반 텍스트(.txt)",
"Playground": "놀이터",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "긍정적인 자세",
"Previous 30 days": "이전 30일",
"Previous 7 days": "이전 7일",
diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json
index 78b18784f..450d2a055 100644
--- a/src/lib/i18n/locales/lt-LT/translation.json
+++ b/src/lib/i18n/locales/lt-LT/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Grynas tekstas (.txt)",
"Playground": "Eksperimentavimo erdvė",
"Please carefully review the following warnings:": "Peržiūrėkite šiuos perspėjimus:",
+ "Please select a reason": "",
"Positive attitude": "Pozityvus elgesys",
"Previous 30 days": "Paskutinės 30 dienų",
"Previous 7 days": "Paskutinės 7 dienos",
diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json
index 46e6544ea..5207a3132 100644
--- a/src/lib/i18n/locales/ms-MY/translation.json
+++ b/src/lib/i18n/locales/ms-MY/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Teks biasa (.txt)",
"Playground": "Taman Permainan",
"Please carefully review the following warnings:": "Sila semak dengan teliti amaran berikut:",
+ "Please select a reason": "",
"Positive attitude": "Sikap positif",
"Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya",
diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json
index e9b48f8e1..de7032752 100644
--- a/src/lib/i18n/locales/nb-NO/translation.json
+++ b/src/lib/i18n/locales/nb-NO/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Ren tekst (.txt)",
"Playground": "Lekeplass",
"Please carefully review the following warnings:": "Vær vennlig å lese gjennom følgende advarsler grundig:",
+ "Please select a reason": "",
"Positive attitude": "Positiv holdning",
"Previous 30 days": "Forrige 30 dager",
"Previous 7 days": "Forrige 7 dager",
diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json
index b951a136d..e41e00c7c 100644
--- a/src/lib/i18n/locales/nl-NL/translation.json
+++ b/src/lib/i18n/locales/nl-NL/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Platte tekst (.txt)",
"Playground": "Speeltuin",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Positieve positie",
"Previous 30 days": "Vorige 30 dagen",
"Previous 7 days": "Vorige 7 dagen",
diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json
index 8e25dddd0..2b57d812e 100644
--- a/src/lib/i18n/locales/pa-IN/translation.json
+++ b/src/lib/i18n/locales/pa-IN/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "ਸਧਾਰਨ ਪਾਠ (.txt)",
"Playground": "ਖੇਡ ਦਾ ਮੈਦਾਨ",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json
index c988035b4..ccf237113 100644
--- a/src/lib/i18n/locales/pl-PL/translation.json
+++ b/src/lib/i18n/locales/pl-PL/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Zwykły tekst (.txt)",
"Playground": "Plac zabaw",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Pozytywne podejście",
"Previous 30 days": "Poprzednie 30 dni",
"Previous 7 days": "Poprzednie 7 dni",
diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json
index 22b9e1bc4..f1aad9ff1 100644
--- a/src/lib/i18n/locales/pt-BR/translation.json
+++ b/src/lib/i18n/locales/pt-BR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Texto simples (.txt)",
"Playground": "Playground",
"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
+ "Please select a reason": "",
"Positive attitude": "Atitude positiva",
"Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias",
diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json
index 06f1c5b29..e86cb8778 100644
--- a/src/lib/i18n/locales/pt-PT/translation.json
+++ b/src/lib/i18n/locales/pt-PT/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Texto sem formatação (.txt)",
"Playground": "Recreio",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Atitude Positiva",
"Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias",
diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json
index ad1cf6f3a..5bbee02f3 100644
--- a/src/lib/i18n/locales/ro-RO/translation.json
+++ b/src/lib/i18n/locales/ro-RO/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Text simplu (.txt)",
"Playground": "Teren de Joacă",
"Please carefully review the following warnings:": "Vă rugăm să revizuiți cu atenție următoarele avertismente:",
+ "Please select a reason": "",
"Positive attitude": "Atitudine pozitivă",
"Previous 30 days": "Ultimele 30 de zile",
"Previous 7 days": "Ultimele 7 zile",
diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json
index fc953e41e..51964cd2f 100644
--- a/src/lib/i18n/locales/ru-RU/translation.json
+++ b/src/lib/i18n/locales/ru-RU/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Текст в формате .txt",
"Playground": "Песочница",
"Please carefully review the following warnings:": "Пожалуйста, внимательно ознакомьтесь со следующими предупреждениями:",
+ "Please select a reason": "",
"Positive attitude": "Позитивный настрой",
"Previous 30 days": "Предыдущие 30 дней",
"Previous 7 days": "Предыдущие 7 дней",
diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json
index 07690a6f0..429211990 100644
--- a/src/lib/i18n/locales/sr-RS/translation.json
+++ b/src/lib/i18n/locales/sr-RS/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Обичан текст (.txt)",
"Playground": "Игралиште",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Позитиван став",
"Previous 30 days": "Претходних 30 дана",
"Previous 7 days": "Претходних 7 дана",
diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json
index 894087aab..f3188cf72 100644
--- a/src/lib/i18n/locales/sv-SE/translation.json
+++ b/src/lib/i18n/locales/sv-SE/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Text (.txt)",
"Playground": "Lekplats",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "Positivt inställning",
"Previous 30 days": "Föregående 30 dagar",
"Previous 7 days": "Föregående 7 dagar",
diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json
index 256793a74..bb2fdcea4 100644
--- a/src/lib/i18n/locales/th-TH/translation.json
+++ b/src/lib/i18n/locales/th-TH/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "ไฟล์ข้อความ (.txt)",
"Playground": "สนามทดสอบ",
"Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด:",
+ "Please select a reason": "",
"Positive attitude": "ทัศนคติด้านบวก",
"Previous 30 days": "30 วันที่ผ่านมา",
"Previous 7 days": "7 วันที่ผ่านมา",
diff --git a/src/lib/i18n/locales/tk-TW/translation.json b/src/lib/i18n/locales/tk-TW/translation.json
index f5087bbb9..70f0f3ad3 100644
--- a/src/lib/i18n/locales/tk-TW/translation.json
+++ b/src/lib/i18n/locales/tk-TW/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
+ "Please select a reason": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json
index 0cc9de264..f902d7e95 100644
--- a/src/lib/i18n/locales/tr-TR/translation.json
+++ b/src/lib/i18n/locales/tr-TR/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Düz metin (.txt)",
"Playground": "Oyun Alanı",
"Please carefully review the following warnings:": "Lütfen aşağıdaki uyarıları dikkatlice inceleyin:",
+ "Please select a reason": "",
"Positive attitude": "Olumlu yaklaşım",
"Previous 30 days": "Önceki 30 gün",
"Previous 7 days": "Önceki 7 gün",
diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json
index b907963ea..daadc20c9 100644
--- a/src/lib/i18n/locales/uk-UA/translation.json
+++ b/src/lib/i18n/locales/uk-UA/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Простий текст (.txt)",
"Playground": "Майданчик",
"Please carefully review the following warnings:": "Будь ласка, уважно ознайомтеся з наступними попередженнями:",
+ "Please select a reason": "",
"Positive attitude": "Позитивне ставлення",
"Previous 30 days": "Попередні 30 днів",
"Previous 7 days": "Попередні 7 днів",
diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json
index 9cb7b409c..59d2bae2c 100644
--- a/src/lib/i18n/locales/vi-VN/translation.json
+++ b/src/lib/i18n/locales/vi-VN/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "Văn bản thô (.txt)",
"Playground": "Thử nghiệm (Playground)",
"Please carefully review the following warnings:": "Vui lòng xem xét cẩn thận các cảnh báo sau:",
+ "Please select a reason": "",
"Positive attitude": "Thái độ tích cực",
"Previous 30 days": "30 ngày trước",
"Previous 7 days": "7 ngày trước",
diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json
index c7f2f8221..219064607 100644
--- a/src/lib/i18n/locales/zh-CN/translation.json
+++ b/src/lib/i18n/locales/zh-CN/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "TXT 文档 (.txt)",
"Playground": "AI 对话游乐场",
"Please carefully review the following warnings:": "请仔细阅读以下警告信息:",
+ "Please select a reason": "",
"Positive attitude": "积极的态度",
"Previous 30 days": "过去 30 天",
"Previous 7 days": "过去 7 天",
diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json
index 3549882ba..d5eb5a4f3 100644
--- a/src/lib/i18n/locales/zh-TW/translation.json
+++ b/src/lib/i18n/locales/zh-TW/translation.json
@@ -497,6 +497,7 @@
"Plain text (.txt)": "純文字 (.txt)",
"Playground": "遊樂場",
"Please carefully review the following warnings:": "請仔細閱讀以下警告:",
+ "Please select a reason": "",
"Positive attitude": "積極的態度",
"Previous 30 days": "過去 30 天",
"Previous 7 days": "過去 7 天",