Skip to content

Commit

Permalink
Add an end date field to symptom data
Browse files Browse the repository at this point in the history
  • Loading branch information
GwonHyeok committed Feb 21, 2025
1 parent 8d8a583 commit 6d91692
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions messages/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "Neue Symptome",
"uploadSymptomsDescription": "Heutige Symptome aufzeichnen.",
"date": "Datum",
"endDate": "Enddatum",
"description": "Beschreibung",
"symptoms": "Symptome",
"selectModel": "Modell auswählen",
Expand Down
1 change: 1 addition & 0 deletions messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "New Symptoms",
"uploadSymptomsDescription": "Record today's symptoms.",
"date": "Date",
"endDate": "End Date",
"description": "Description",
"symptoms": "Symptoms",
"selectModel": "Select Model",
Expand Down
1 change: 1 addition & 0 deletions messages/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "Nuevos síntomas",
"uploadSymptomsDescription": "Registrar los síntomas de hoy.",
"date": "Fecha",
"endDate": "Fecha final",
"description": "Descripción",
"symptoms": "Síntomas",
"selectModel": "Seleccionar modelo",
Expand Down
1 change: 1 addition & 0 deletions messages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "Nouveaux symptômes",
"uploadSymptomsDescription": "Enregistrer les symptômes d'aujourd'hui.",
"date": "Date",
"endDate": "Date de fin",
"description": "Description",
"symptoms": "Symptômes",
"selectModel": "Sélectionner le modèle",
Expand Down
1 change: 1 addition & 0 deletions messages/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "新規症状",
"uploadSymptomsDescription": "今日の症状を記録。",
"date": "日付",
"endDate": "終了日",
"description": "説明",
"symptoms": "症状",
"selectModel": "モデルを選択",
Expand Down
1 change: 1 addition & 0 deletions messages/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "증상 추가",
"uploadSymptomsDescription": "오늘의 증상을 기록합니다.",
"date": "날짜",
"endDate": "종료일",
"description": "설명",
"symptoms": "증상",
"selectModel": "모델 선택",
Expand Down
1 change: 1 addition & 0 deletions messages/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "Новые симптомы",
"uploadSymptomsDescription": "Записать сегодняшние симптомы.",
"date": "Дата",
"endDate": "Дата окончания",
"description": "Описание",
"symptoms": "Симптомы",
"selectModel": "Выбрать модель",
Expand Down
1 change: 1 addition & 0 deletions messages/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "Нові симптоми",
"uploadSymptomsDescription": "Записати сьогоднішні симптоми.",
"date": "Дата",
"endDate": "Дата закінчення",
"description": "Опис",
"symptoms": "Симптоми",
"selectModel": "Вибрати модель",
Expand Down
1 change: 1 addition & 0 deletions messages/ur.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "نئی علامات",
"uploadSymptomsDescription": "آج کی علامات ریکارڈ کریں۔",
"date": "تاریخ",
"endDate": "آخری تاریخ",
"description": "تفصیل",
"symptoms": "علامات",
"selectModel": "ماڈل منتخب کریں",
Expand Down
1 change: 1 addition & 0 deletions messages/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"uploadSymptoms": "新症状",
"uploadSymptomsDescription": "记录今天的症状。",
"date": "日期",
"endDate": "结束日期",
"description": "描述",
"symptoms": "症状",
"selectModel": "选择模型",
Expand Down
1 change: 1 addition & 0 deletions src/components/source/source-add-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ const personalInfoFields = (t: any, top: any): Field[] => {

const symptomsFields = (t: any): Field[] => [
{key: 'date', label: t('date'), type: 'date'},
{key: 'endDate', label: t('endDate'), type: 'date'},
{key: 'description', label: t('description'), type: 'textarea'}
];

Expand Down

0 comments on commit 6d91692

Please sign in to comment.