diff --git a/frontend/components/Inbox/InboxItems.tsx b/frontend/components/Inbox/InboxItems.tsx index 17f4fd2..f115ab1 100644 --- a/frontend/components/Inbox/InboxItems.tsx +++ b/frontend/components/Inbox/InboxItems.tsx @@ -134,10 +134,12 @@ const InboxItems: React.FC = () => { }; }, [t, showSuccessToast]); // Include dependencies that are actually used - const handleProcessItem = async (id: number) => { + const handleProcessItem = async (id: number, showToast: boolean = true) => { try { await processInboxItemWithStore(id); - showSuccessToast(t('inbox.itemProcessed')); + if (showToast) { + showSuccessToast(t('inbox.itemProcessed')); + } } catch (error) { console.error('Failed to process inbox item:', error); showErrorToast(t('inbox.processError')); @@ -263,7 +265,7 @@ const InboxItems: React.FC = () => { // Process the inbox item after successful task creation if (currentConversionItemId !== null) { - await handleProcessItem(currentConversionItemId); + await handleProcessItem(currentConversionItemId, false); setCurrentConversionItemId(null); } @@ -281,7 +283,7 @@ const InboxItems: React.FC = () => { // Process the inbox item after successful project creation if (currentConversionItemId !== null) { - await handleProcessItem(currentConversionItemId); + await handleProcessItem(currentConversionItemId, false); setCurrentConversionItemId(null); } @@ -320,7 +322,7 @@ const InboxItems: React.FC = () => { // Process the inbox item after successful note creation if (currentConversionItemId !== null) { - await handleProcessItem(currentConversionItemId); + await handleProcessItem(currentConversionItemId, false); setCurrentConversionItemId(null); } diff --git a/frontend/components/Note/NoteDetails.tsx b/frontend/components/Note/NoteDetails.tsx index 0d780f8..c08a8f4 100644 --- a/frontend/components/Note/NoteDetails.tsx +++ b/frontend/components/Note/NoteDetails.tsx @@ -5,6 +5,7 @@ import { TrashIcon, TagIcon, DocumentTextIcon, + FolderIcon, } from '@heroicons/react/24/solid'; import ConfirmDialog from '../Shared/ConfirmDialog'; import NoteModal from './NoteModal'; @@ -144,9 +145,45 @@ const NoteDetails: React.FC = () => {
-

- {note.title} -

+
+

+ {note.title} +

+ {/* Project and Tags under title */} + {((note.project || note.Project) || + (note.tags && note.tags.length > 0) || + (note.Tags && note.Tags.length > 0)) && ( +
+ {(note.project || note.Project) && ( +
+ + + {(note.project || note.Project)?.name} + +
+ )} + {(note.project || note.Project) && + ((note.tags && note.tags.length > 0) || + (note.Tags && note.Tags.length > 0)) && ( + + )} + {((note.tags && note.tags.length > 0) || + (note.Tags && note.Tags.length > 0)) && ( +
+ + + {(note.tags || note.Tags || []) + .map((tag) => tag.name) + .join(', ')} + +
+ )} +
+ )} +
{/* Action Buttons */}
@@ -168,67 +205,6 @@ const NoteDetails: React.FC = () => {
- {/* Tags and Project */} - {(note.tags && note.tags.length > 0) || - (note.Tags && note.Tags.length > 0) || - note.project || - note.Project ? ( -
- {/* Note Tags */} - {((note.tags && note.tags.length > 0) || - (note.Tags && note.Tags.length > 0)) && ( -
-
- -
- - Tags: - -
- {(note.tags || note.Tags || []).map( - (tag) => ( - - ) - )} -
-
-
-
- )} - {/* Note Project */} - {(note.project || note.Project) && ( -
0) || - (note.Tags && note.Tags.length > 0) - ? 'mt-4' - : '' - } - > -

- Project -

- - {(note.project || note.Project)?.name} - -
- )} -
- ) : null} {/* Note Content */}
diff --git a/public/locales/ar/translation.json b/public/locales/ar/translation.json index 560452a..d582eed 100644 --- a/public/locales/ar/translation.json +++ b/public/locales/ar/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "أدخل اسم الوسم", "tagInputPlaceholder": "اكتب لإضافة وسم", "createTagOption": "+ إنشاء \"{{tagName}}\"", - "removeTagAriaLabel": "إزالة الوسم {{tagName}}" + "removeTagAriaLabel": "إزالة الوسم {{tagName}}", + "projectDescriptionPlaceholder": "أدخل وصف المشروع" }, "auth": { "login": "تسجيل الدخول", @@ -604,7 +605,8 @@ "deleted": "مهمة", "deletedSuccessfully": "تم حذفها بنجاح!", "suggestions": { - "short": "حاول أن تكون أكثر تحديدًا بشأن ما يجب القيام به" + "short": "حاول أن تكون أكثر تحديدًا بشأن ما يجب القيام به", + "noVerb": "ما الإجراء المحدد الذي تحتاج إلى اتخاذه؟ حاول البدء بفعل." }, "nameHelper": { "title": "اجعلها أكثر وصفًا!", diff --git a/public/locales/bg/translation.json b/public/locales/bg/translation.json index dd6762a..58e5c00 100644 --- a/public/locales/bg/translation.json +++ b/public/locales/bg/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Въведете име на етикет", "tagInputPlaceholder": "Напишете, за да добавите етикет", "createTagOption": "+ Създайте \"{{tagName}}\"", - "removeTagAriaLabel": "Премахнете етикет {{tagName}}" + "removeTagAriaLabel": "Премахнете етикет {{tagName}}", + "projectDescriptionPlaceholder": "Въведете описание на проекта" }, "auth": { "login": "Вход", @@ -604,7 +605,8 @@ "deleted": "Задача", "deletedSuccessfully": "успешно изтрита!", "suggestions": { - "short": "Опитайте се да бъдете по-конкретни относно това, което трябва да бъде направено" + "short": "Опитайте се да бъдете по-конкретни относно това, което трябва да бъде направено", + "noVerb": "Какво конкретно действие трябва да предприемете? Опитайте да започнете с глагол." }, "nameHelper": { "title": "Направете го по-описателно!", diff --git a/public/locales/da/translation.json b/public/locales/da/translation.json index e6b795c..09011d9 100644 --- a/public/locales/da/translation.json +++ b/public/locales/da/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Indtast tag navn", "tagInputPlaceholder": "Skriv for at tilføje et tag", "createTagOption": "+ Opret \"{{tagName}}\"", - "removeTagAriaLabel": "Fjern tag {{tagName}}" + "removeTagAriaLabel": "Fjern tag {{tagName}}", + "projectDescriptionPlaceholder": "Indtast projektbeskrivelse" }, "auth": { "login": "Log ind", @@ -604,7 +605,8 @@ "deleted": "Opgave", "deletedSuccessfully": "slettet med succes!", "suggestions": { - "short": "Prøv at være mere specifik omkring, hvad der skal gøres" + "short": "Prøv at være mere specifik omkring, hvad der skal gøres", + "noVerb": "Hvilken specifik handling skal du udføre? Prøv at starte med et verbum." }, "nameHelper": { "title": "Gør det mere beskrivende!", diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json index 73f91b9..befaf9a 100644 --- a/public/locales/de/translation.json +++ b/public/locales/de/translation.json @@ -207,7 +207,8 @@ "tagNamePlaceholder": "Tag-Name eingeben", "tagInputPlaceholder": "Tippen, um ein Tag hinzuzufügen", "createTagOption": "+ Erstellen \"{{tagName}}\"", - "removeTagAriaLabel": "Tag {{tagName}} entfernen" + "removeTagAriaLabel": "Tag {{tagName}} entfernen", + "projectDescriptionPlaceholder": "Projektbeschreibung eingeben" }, "modals": { "updateNote": "Notiz aktualisieren", @@ -519,7 +520,8 @@ }, "task": { "suggestions": { - "short": "Versuchen Sie, spezifischer zu beschreiben, was getan werden muss" + "short": "Versuchen Sie, spezifischer zu beschreiben, was getan werden muss", + "noVerb": "Welche spezifische Handlung müssen Sie durchführen? Versuchen Sie, mit einem Verb zu beginnen." }, "nameHelper": { "title": "Machen Sie es beschreibender!", diff --git a/public/locales/el/translation.json b/public/locales/el/translation.json index 55fcf4b..e3a386b 100644 --- a/public/locales/el/translation.json +++ b/public/locales/el/translation.json @@ -511,7 +511,8 @@ "noVerb": "Ποια συγκεκριμένη ενέργεια πρέπει να κάνετε; Δοκιμάστε να ξεκινήσετε με ένα ρήμα.", "vague": "Δοκιμάστε να ξεκινήσετε με ένα ρήμα δράσης όπως \"Καλέστε\", \"Γράψτε\", \"Προγραμματίστε\", ή \"Έρευνα\"" } - } + }, + "projectDescriptionPlaceholder": "Εισάγετε περιγραφή έργου" }, "priority": { "low": "Χαμηλή", diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index c9e8875..7ae0e8f 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -605,7 +605,8 @@ "deleted": "Task", "deletedSuccessfully": "deleted successfully!", "suggestions": { - "short": "Try to be more specific about what needs to be done" + "short": "Try to be more specific about what needs to be done", + "noVerb": "What specific action do you need to take? Try starting with a verb." }, "nameHelper": { "title": "Make it more descriptive!", diff --git a/public/locales/es/translation.json b/public/locales/es/translation.json index 0b03174..e50415e 100644 --- a/public/locales/es/translation.json +++ b/public/locales/es/translation.json @@ -483,7 +483,8 @@ "noVerb": "¿Qué acción específica necesitas tomar? Intenta comenzar con un verbo.", "vague": "Intenta comenzar con un verbo de acción como \"Llamar\", \"Escribir\", \"Programar\", o \"Investigar\"" } - } + }, + "projectDescriptionPlaceholder": "Ingrese la descripción del proyecto" }, "dateFormats": { "long": "EEEE, d 'de' MMMM 'de' yyyy", @@ -546,7 +547,8 @@ "createError": "Error al crear tarea", "saveAsTask": "Guardar como Tarea", "suggestions": { - "short": "Trata de ser más específico acerca de lo que necesita hacerse" + "short": "Trata de ser más específico acerca de lo que necesita hacerse", + "noVerb": "¿Qué acción específica necesita realizar? Intente comenzar con un verbo." }, "nameHelper": { "title": "¡Hazlo más descriptivo!", diff --git a/public/locales/fi/translation.json b/public/locales/fi/translation.json index 365340d..ba8eeda 100644 --- a/public/locales/fi/translation.json +++ b/public/locales/fi/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Syötä tunnisteen nimi", "tagInputPlaceholder": "Kirjoita lisätäksesi tunniste", "createTagOption": "+ Luo \"{{tagName}}\"", - "removeTagAriaLabel": "Poista tunniste {{tagName}}" + "removeTagAriaLabel": "Poista tunniste {{tagName}}", + "projectDescriptionPlaceholder": "Syötä projektin kuvaus" }, "auth": { "login": "Kirjaudu", @@ -604,7 +605,8 @@ "deleted": "Tehtävä", "deletedSuccessfully": "poistettiin onnistuneesti!", "suggestions": { - "short": "Yritä olla tarkempi siitä, mitä on tehtävä" + "short": "Yritä olla tarkempi siitä, mitä on tehtävä", + "noVerb": "Mitä erityistä toimintoa sinun tarvitsee tehdä? Yritä aloittaa verbillä." }, "nameHelper": { "title": "Tee siitä kuvaavampi!", diff --git a/public/locales/fr/translation.json b/public/locales/fr/translation.json index 8aa30e2..c1b4ff6 100644 --- a/public/locales/fr/translation.json +++ b/public/locales/fr/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Entrez le nom de l'étiquette", "tagInputPlaceholder": "Tapez pour ajouter une étiquette", "createTagOption": "+ Créer \"{{tagName}}\"", - "removeTagAriaLabel": "Supprimer l'étiquette {{tagName}}" + "removeTagAriaLabel": "Supprimer l'étiquette {{tagName}}", + "projectDescriptionPlaceholder": "Entrez la description du projet" }, "auth": { "login": "Connexion", @@ -604,7 +605,8 @@ "deleted": "Tâche", "deletedSuccessfully": "supprimée avec succès !", "suggestions": { - "short": "Essayez d'être plus spécifique sur ce qui doit être fait" + "short": "Essayez d'être plus spécifique sur ce qui doit être fait", + "noVerb": "Quelle action spécifique devez-vous entreprendre ? Essayez de commencer par un verbe." }, "nameHelper": { "title": "Rendez-le plus descriptif !", diff --git a/public/locales/id/translation.json b/public/locales/id/translation.json index 230228f..4db7a20 100644 --- a/public/locales/id/translation.json +++ b/public/locales/id/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Masukkan nama tag", "tagInputPlaceholder": "Ketik untuk menambahkan tag", "createTagOption": "+ Buat \"{{tagName}}\"", - "removeTagAriaLabel": "Hapus tag {{tagName}}" + "removeTagAriaLabel": "Hapus tag {{tagName}}", + "projectDescriptionPlaceholder": "Masukkan deskripsi proyek" }, "auth": { "login": "Masuk", @@ -604,7 +605,8 @@ "deleted": "Tugas", "deletedSuccessfully": "berhasil dihapus!", "suggestions": { - "short": "Cobalah untuk lebih spesifik tentang apa yang perlu dilakukan" + "short": "Cobalah untuk lebih spesifik tentang apa yang perlu dilakukan", + "noVerb": "Apa tindakan spesifik yang perlu Anda ambil? Cobalah mulai dengan kata kerja." }, "nameHelper": { "title": "Buat lebih deskriptif!", diff --git a/public/locales/it/translation.json b/public/locales/it/translation.json index 12fdb71..f2766f1 100644 --- a/public/locales/it/translation.json +++ b/public/locales/it/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Inserisci nome tag", "tagInputPlaceholder": "Digita per aggiungere un tag", "createTagOption": "+ Crea \"{{tagName}}\"", - "removeTagAriaLabel": "Rimuovi tag {{tagName}}" + "removeTagAriaLabel": "Rimuovi tag {{tagName}}", + "projectDescriptionPlaceholder": "Inserisci la descrizione del progetto" }, "auth": { "login": "Accedi", @@ -605,7 +606,8 @@ "deleted": "Attività", "deletedSuccessfully": "eliminata con successo!", "suggestions": { - "short": "Prova a essere più specifico su cosa deve essere fatto" + "short": "Prova a essere più specifico su cosa deve essere fatto", + "noVerb": "Quale azione specifica devi intraprendere? Prova a iniziare con un verbo." }, "nameHelper": { "title": "Rendila più descrittiva!", diff --git a/public/locales/jp/translation.json b/public/locales/jp/translation.json index 19e0841..950f43b 100644 --- a/public/locales/jp/translation.json +++ b/public/locales/jp/translation.json @@ -398,7 +398,8 @@ "tagNamePlaceholder": "タグ名を入力", "tagInputPlaceholder": "タグを追加するために入力", "createTagOption": "+ 「{{tagName}}」を作成", - "removeTagAriaLabel": "タグ{{tagName}}を削除" + "removeTagAriaLabel": "タグ{{tagName}}を削除", + "projectDescriptionPlaceholder": "プロジェクトの説明を入力してください" }, "auth": { "login": "ログイン", @@ -635,7 +636,8 @@ }, "task": { "suggestions": { - "short": "何をする必要があるかについて、より具体的に記述してください" + "short": "何をする必要があるかについて、より具体的に記述してください", + "noVerb": "どの具体的なアクションを取る必要がありますか?動詞から始めてみてください。" }, "nameHelper": { "title": "もっと詳しく記述しましょう!", diff --git a/public/locales/ko/translation.json b/public/locales/ko/translation.json index 36c5c06..626fda6 100644 --- a/public/locales/ko/translation.json +++ b/public/locales/ko/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "태그 이름을 입력하세요", "tagInputPlaceholder": "태그 추가를 위해 입력하세요", "createTagOption": "+ \"{{tagName}}\" 생성", - "removeTagAriaLabel": "태그 {{tagName}} 제거" + "removeTagAriaLabel": "태그 {{tagName}} 제거", + "projectDescriptionPlaceholder": "프로젝트 설명을 입력하세요" }, "auth": { "login": "로그인", @@ -604,7 +605,8 @@ "deleted": "작업", "deletedSuccessfully": "성공적으로 삭제되었습니다!", "suggestions": { - "short": "무엇을 해야 하는지 더 구체적으로 작성해 보세요" + "short": "무엇을 해야 하는지 더 구체적으로 작성해 보세요", + "noVerb": "어떤 특정한 행동을 취해야 하나요? 동사로 시작해 보세요." }, "nameHelper": { "title": "더 설명적으로 만들어 보세요!", diff --git a/public/locales/nl/translation.json b/public/locales/nl/translation.json index a7ec43d..25fb1b3 100644 --- a/public/locales/nl/translation.json +++ b/public/locales/nl/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Voer de tagnaam in", "tagInputPlaceholder": "Typ om een tag toe te voegen", "createTagOption": "+ Maak \"{{tagName}}\"", - "removeTagAriaLabel": "Verwijder tag {{tagName}}" + "removeTagAriaLabel": "Verwijder tag {{tagName}}", + "projectDescriptionPlaceholder": "Voer projectbeschrijving in" }, "auth": { "login": "Inloggen", @@ -604,7 +605,8 @@ "deleted": "Taak", "deletedSuccessfully": "succesvol verwijderd!", "suggestions": { - "short": "Probeer specifieker te zijn over wat er gedaan moet worden" + "short": "Probeer specifieker te zijn over wat er gedaan moet worden", + "noVerb": "Welke specifieke actie moet je ondernemen? Probeer te beginnen met een werkwoord." }, "nameHelper": { "title": "Maak het beschrijvender!", diff --git a/public/locales/no/translation.json b/public/locales/no/translation.json index 5889719..4aaa8d7 100644 --- a/public/locales/no/translation.json +++ b/public/locales/no/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Skriv inn tagnavn", "tagInputPlaceholder": "Skriv for å legge til en tag", "createTagOption": "+ Opprett \"{{tagName}}\"", - "removeTagAriaLabel": "Fjern tag {{tagName}}" + "removeTagAriaLabel": "Fjern tag {{tagName}}", + "projectDescriptionPlaceholder": "Skriv inn prosjektbeskrivelse" }, "auth": { "login": "Logg inn", @@ -604,7 +605,8 @@ "deleted": "Oppgave", "deletedSuccessfully": "slettet vellykket!", "suggestions": { - "short": "Prøv å være mer spesifikk om hva som må gjøres" + "short": "Prøv å være mer spesifikk om hva som må gjøres", + "noVerb": "Hvilken spesifikk handling må du ta? Prøv å starte med et verb." }, "nameHelper": { "title": "Gjør det mer beskrivende!", diff --git a/public/locales/pl/translation.json b/public/locales/pl/translation.json index 3f39386..f40962b 100644 --- a/public/locales/pl/translation.json +++ b/public/locales/pl/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Wprowadź nazwę tagu", "tagInputPlaceholder": "Wpisz, aby dodać tag", "createTagOption": "+ Utwórz \"{{tagName}}\"", - "removeTagAriaLabel": "Usuń tag {{tagName}}" + "removeTagAriaLabel": "Usuń tag {{tagName}}", + "projectDescriptionPlaceholder": "Wprowadź opis projektu" }, "auth": { "login": "Zaloguj się", @@ -604,7 +605,8 @@ "deleted": "Zadanie", "deletedSuccessfully": "usunięte pomyślnie!", "suggestions": { - "short": "Spróbuj być bardziej szczegółowy w tym, co należy zrobić" + "short": "Spróbuj być bardziej szczegółowy w tym, co należy zrobić", + "noVerb": "Jaką konkretną akcję musisz podjąć? Spróbuj zacząć od czasownika." }, "nameHelper": { "title": "Uczyń to bardziej opisowym!", diff --git a/public/locales/pt/translation.json b/public/locales/pt/translation.json index 984fccf..079da2d 100644 --- a/public/locales/pt/translation.json +++ b/public/locales/pt/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Digite o nome da tag", "tagInputPlaceholder": "Digite para adicionar uma tag", "createTagOption": "+ Criar \"{{tagName}}\"", - "removeTagAriaLabel": "Remover tag {{tagName}}" + "removeTagAriaLabel": "Remover tag {{tagName}}", + "projectDescriptionPlaceholder": "Digite a descrição do projeto" }, "auth": { "login": "Entrar", @@ -604,7 +605,8 @@ "deleted": "Tarefa", "deletedSuccessfully": "excluída com sucesso!", "suggestions": { - "short": "Tente ser mais específico sobre o que precisa ser feito" + "short": "Tente ser mais específico sobre o que precisa ser feito", + "noVerb": "Qual ação específica você precisa realizar? Tente começar com um verbo." }, "nameHelper": { "title": "Torne-o mais descritivo!", diff --git a/public/locales/ro/translation.json b/public/locales/ro/translation.json index 83aedb6..124ce85 100644 --- a/public/locales/ro/translation.json +++ b/public/locales/ro/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Introduceți numele etichetei", "tagInputPlaceholder": "Scrieți pentru a adăuga o etichetă", "createTagOption": "+ Creați \"{{tagName}}\"", - "removeTagAriaLabel": "Eliminați eticheta {{tagName}}" + "removeTagAriaLabel": "Eliminați eticheta {{tagName}}", + "projectDescriptionPlaceholder": "Introduceți descrierea proiectului" }, "auth": { "login": "Conectare", @@ -604,7 +605,8 @@ "deleted": "Sarcină", "deletedSuccessfully": "ștearsă cu succes!", "suggestions": { - "short": "Încercați să fiți mai specific cu privire la ceea ce trebuie făcut" + "short": "Încercați să fiți mai specific cu privire la ceea ce trebuie făcut", + "noVerb": "Ce acțiune specifică trebuie să întreprindeți? Încercați să începeți cu un verb." }, "nameHelper": { "title": "Faceți-l mai descriptiv!", diff --git a/public/locales/ru/translation.json b/public/locales/ru/translation.json index 5f1cc2e..9543d01 100644 --- a/public/locales/ru/translation.json +++ b/public/locales/ru/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Введите название тега", "tagInputPlaceholder": "Введите, чтобы добавить тег", "createTagOption": "+ Создать \"{{tagName}}\"", - "removeTagAriaLabel": "Удалить тег {{tagName}}" + "removeTagAriaLabel": "Удалить тег {{tagName}}", + "projectDescriptionPlaceholder": "Введите описание проекта" }, "auth": { "login": "Войти", @@ -604,7 +605,8 @@ "deleted": "Задача", "deletedSuccessfully": "успешно удалена!", "suggestions": { - "short": "Попробуйте быть более конкретным в том, что нужно сделать" + "short": "Попробуйте быть более конкретным в том, что нужно сделать", + "noVerb": "Какое конкретное действие вам нужно предпринять? Попробуйте начать с глагола." }, "nameHelper": { "title": "Сделайте это более описательным!", diff --git a/public/locales/sl/translation.json b/public/locales/sl/translation.json index bcfdadb..6f4dcf3 100644 --- a/public/locales/sl/translation.json +++ b/public/locales/sl/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Vnesite ime oznake", "tagInputPlaceholder": "Vtipkajte za dodajanje oznake", "createTagOption": "+ Ustvari \"{{tagName}}\"", - "removeTagAriaLabel": "Odstrani oznako {{tagName}}" + "removeTagAriaLabel": "Odstrani oznako {{tagName}}", + "projectDescriptionPlaceholder": "Vnesite opis projekta" }, "auth": { "login": "Prijava", @@ -604,7 +605,8 @@ "deleted": "Naloga", "deletedSuccessfully": "uspešno izbrisano!", "suggestions": { - "short": "Poskusite biti bolj specifični glede tega, kaj je treba narediti" + "short": "Poskusite biti bolj specifični glede tega, kaj je treba narediti", + "noVerb": "Katero specifično dejanje morate izvesti? Poskusite začeti z glagolom." }, "nameHelper": { "title": "Naredite ga bolj opisnega!", diff --git a/public/locales/sv/translation.json b/public/locales/sv/translation.json index ad607b9..8d358f0 100644 --- a/public/locales/sv/translation.json +++ b/public/locales/sv/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Ange taggnamn", "tagInputPlaceholder": "Skriv för att lägga till en tagg", "createTagOption": "+ Skapa \"{{tagName}}\"", - "removeTagAriaLabel": "Ta bort tagg {{tagName}}" + "removeTagAriaLabel": "Ta bort tagg {{tagName}}", + "projectDescriptionPlaceholder": "Ange projektbeskrivning" }, "auth": { "login": "Logga in", @@ -604,7 +605,8 @@ "deleted": "Uppgift", "deletedSuccessfully": "borttagen framgångsrikt!", "suggestions": { - "short": "Försök att vara mer specifik om vad som behöver göras" + "short": "Försök att vara mer specifik om vad som behöver göras", + "noVerb": "Vilken specifik åtgärd behöver du vidta? Försök börja med ett verb." }, "nameHelper": { "title": "Gör den mer beskrivande!", diff --git a/public/locales/tr/translation.json b/public/locales/tr/translation.json index 8629c84..13d5fa9 100644 --- a/public/locales/tr/translation.json +++ b/public/locales/tr/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Etiket adını girin", "tagInputPlaceholder": "Etiket eklemek için yazın", "createTagOption": "+ \"{{tagName}}\" oluştur", - "removeTagAriaLabel": "Etiketi kaldır {{tagName}}" + "removeTagAriaLabel": "Etiketi kaldır {{tagName}}", + "projectDescriptionPlaceholder": "Proje açıklamasını girin" }, "auth": { "login": "Giriş Yap", @@ -604,7 +605,8 @@ "deleted": "Görev", "deletedSuccessfully": "başarıyla silindi!", "suggestions": { - "short": "Ne yapılması gerektiği konusunda daha spesifik olmaya çalışın" + "short": "Ne yapılması gerektiği konusunda daha spesifik olmaya çalışın", + "noVerb": "Hangi spesifik eylemi gerçekleştirmeniz gerekiyor? Bir fiil ile başlamayı deneyin." }, "nameHelper": { "title": "Daha açıklayıcı hale getirin!", diff --git a/public/locales/ua/translation.json b/public/locales/ua/translation.json index 5ea344d..8163b3d 100644 --- a/public/locales/ua/translation.json +++ b/public/locales/ua/translation.json @@ -233,7 +233,8 @@ "tagNamePlaceholder": "Введіть назву тегу", "tagInputPlaceholder": "Введіть, щоб додати тег", "createTagOption": "+ Створити \"{{tagName}}\"", - "removeTagAriaLabel": "Видалити тег {{tagName}}" + "removeTagAriaLabel": "Видалити тег {{tagName}}", + "projectDescriptionPlaceholder": "Введіть опис проекту" }, "nextTask": { "suggestion": "Оскільки нічого не виконується, як щодо початку з", @@ -545,7 +546,8 @@ }, "task": { "suggestions": { - "short": "Спробуйте бути більш конкретними щодо того, що потрібно зробити" + "short": "Спробуйте бути більш конкретними щодо того, що потрібно зробити", + "noVerb": "Яку конкретну дію вам потрібно вжити? Спробуйте почати з дієслова." }, "nameHelper": { "title": "Зробіть це більш описовим!", diff --git a/public/locales/vi/translation.json b/public/locales/vi/translation.json index 3920537..c1eeb5d 100644 --- a/public/locales/vi/translation.json +++ b/public/locales/vi/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "Nhập tên thẻ", "tagInputPlaceholder": "Gõ để thêm thẻ", "createTagOption": "+ Tạo \"{{tagName}}\"", - "removeTagAriaLabel": "Xóa thẻ {{tagName}}" + "removeTagAriaLabel": "Xóa thẻ {{tagName}}", + "projectDescriptionPlaceholder": "Nhập mô tả dự án" }, "auth": { "login": "Đăng Nhập", @@ -604,7 +605,8 @@ "deleted": "Nhiệm vụ", "deletedSuccessfully": "đã được xóa thành công!", "suggestions": { - "short": "Cố gắng cụ thể hơn về những gì cần làm" + "short": "Cố gắng cụ thể hơn về những gì cần làm", + "noVerb": "Bạn cần thực hiện hành động cụ thể nào? Hãy thử bắt đầu bằng một động từ." }, "nameHelper": { "title": "Hãy làm cho nó mô tả hơn!", diff --git a/public/locales/zh/translation.json b/public/locales/zh/translation.json index 21371b8..6e96a4d 100644 --- a/public/locales/zh/translation.json +++ b/public/locales/zh/translation.json @@ -415,7 +415,8 @@ "tagNamePlaceholder": "输入标签名称", "tagInputPlaceholder": "输入以添加标签", "createTagOption": "+ 创建 \"{{tagName}}\"", - "removeTagAriaLabel": "移除标签 {{tagName}}" + "removeTagAriaLabel": "移除标签 {{tagName}}", + "projectDescriptionPlaceholder": "输入项目描述" }, "auth": { "login": "登录", @@ -604,7 +605,8 @@ "deleted": "任务", "deletedSuccessfully": "成功删除!", "suggestions": { - "short": "尽量更具体地说明需要完成的任务" + "short": "尽量更具体地说明需要完成的任务", + "noVerb": "您需要采取什么具体行动?尝试以动词开头。" }, "nameHelper": { "title": "让它更具描述性!",