Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit 65fbc24

Browse files
lgallgal
authored andcommitted
SORMAS-Foundation#3610 fix captions and merge issues
1 parent 0c5fd2c commit 65fbc24

5 files changed

Lines changed: 18 additions & 16 deletions

File tree

sormas-api/src/main/java/de/symeda/sormas/api/caze/InfectionSetting.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
public enum InfectionSetting {
2121

2222
UNKNOWN(null),
23-
AMBULANT(null),
24-
MEDICAL_PRACTICE(AMBULANT),
25-
OPERATIVE_1200(AMBULANT),
26-
HOSPITAL_1300(AMBULANT),
27-
OTHER_OUTPATIENT_FACILITY(AMBULANT),
23+
AMBULATORY(null),
24+
MEDICAL_PRACTICE(AMBULATORY),
25+
OPERATIVE_1200(AMBULATORY),
26+
HOSPITAL_1300(AMBULATORY),
27+
OTHER_OUTPATIENT_FACILITY(AMBULATORY),
2828
STATIONARY(null),
2929
HOSPITAL_2100(STATIONARY),
3030
NORMAL_WARD(HOSPITAL_2100),

sormas-api/src/main/resources/captions_de-DE.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ CaseData.quarantineReasonBeforeIsolationDetails=Anderer Grund
390390
CaseData.endOfIsolationReason=Grund für das Ende der Isolation
391391
CaseData.endOfIsolationReasonDetails=Anderer Grund
392392
CaseData.sormasToSormasOriginInfo=Geteilt von
393-
CaseData.nosocomialOutbreak=Nosocomialer Ausbruch
393+
CaseData.nosocomialOutbreak=Nosokomialer Ausbruch
394394
CaseData.infectionSetting=Infektionsumfeld
395395

396396
# CaseExport

sormas-api/src/main/resources/enum.properties

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1220,8 +1220,9 @@ EndOfQuarantineReason.ISOLATED_AS_CASE=Isolated as Case
12201220
EndOfQuarantineReason.LOST_TO_FOLLOWUP=Lost to follow-up
12211221
EndOfQuarantineReason.OTHER=Other
12221222

1223+
#InfectionSetting
12231224
InfectionSetting.UNKNOWN=Unknown
1224-
InfectionSetting.AMBULANT=Ambulant
1225+
InfectionSetting.AMBULANT=Ambulatory
12251226
InfectionSetting.MEDICAL_PRACTICE=Medical practice
12261227
InfectionSetting.OPERATIVE_1200=Operative
12271228
InfectionSetting.HOSPITAL_1300=Hospital
@@ -1234,7 +1235,7 @@ InfectionSetting.NOT_OPERATIVE=Non-operative
12341235
InfectionSetting.HEMATOLOGICAL_ONCOLOGY=Hematological oncology
12351236
InfectionSetting.CHILDREN_WARD=Children's ward
12361237
InfectionSetting.NEONATOLOGY=Neonatology
1237-
InfectionSetting.INTENSIVE_CARE_UNIT=Intensive Care Unit
1238+
InfectionSetting.INTENSIVE_CARE_UNIT=Intensive care unit
12381239
InfectionSetting.OTHER_STATION=Other station
12391240
InfectionSetting.NURSING_HOME=Nursing home
12401241
InfectionSetting.REHAB_FACILITY=Rehab facility

sormas-api/src/main/resources/enum_de-DE.properties

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,22 +1215,23 @@ EndOfQuarantineReason.ISOLATED_AS_CASE=Als Fall isoliert
12151215
EndOfQuarantineReason.LOST_TO_FOLLOWUP=Keine Nachverfolgung möglich
12161216
EndOfQuarantineReason.OTHER=Sonstiges
12171217

1218+
#InfectionSetting
12181219
InfectionSetting.UNKNOWN=Nicht erhoben
12191220
InfectionSetting.AMBULANT=Ambulant
12201221
InfectionSetting.MEDICAL_PRACTICE=Arztpraxis
12211222
InfectionSetting.OPERATIVE_1200=Operativ
12221223
InfectionSetting.HOSPITAL_1300=Krankenhaus
1223-
InfectionSetting.OTHER_OUTPATIENT_FACILITY=Sonstige Ambulante Einrichtung
1224+
InfectionSetting.OTHER_OUTPATIENT_FACILITY=Sonstige ambulante Einrichtung
12241225
InfectionSetting.STATIONARY=Stationär
12251226
InfectionSetting.HOSPITAL_2100=Krankenhaus
12261227
InfectionSetting.NORMAL_WARD=Normalstation
12271228
InfectionSetting.OPERATIVE_2111=Operativ
1228-
InfectionSetting.NOT_OPERATIVE=Nicht Operativ
1229-
InfectionSetting.HEMATOLOGICAL_ONCOLOGY=Hamatoonkologie
1229+
InfectionSetting.NOT_OPERATIVE=Nicht operativ
1230+
InfectionSetting.HEMATOLOGICAL_ONCOLOGY=Hämatoonkologie
12301231
InfectionSetting.CHILDREN_WARD=Kinderstation
12311232
InfectionSetting.NEONATOLOGY=Neonatologie
12321233
InfectionSetting.INTENSIVE_CARE_UNIT=Intensivstation
12331234
InfectionSetting.OTHER_STATION=Sonstige Station
1234-
InfectionSetting.NURSING_HOME=Pflege Einrichtung
1235+
InfectionSetting.NURSING_HOME=Pflegeeinrichtung
12351236
InfectionSetting.REHAB_FACILITY=Reha-Einrichtung
1236-
InfectionSetting.OTHER_STATIONARY_FACILITY=Sonstige Stationare Einrichtung
1237+
InfectionSetting.OTHER_STATIONARY_FACILITY=Sonstige stationäre Einrichtung

sormas-app/app/src/main/java/de/symeda/sormas/app/backend/common/DatabaseHelper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public class DatabaseHelper extends OrmLiteSqliteOpenHelper {
152152
public static final String DATABASE_NAME = "sormas.db";
153153
// any time you make changes to your database objects, you may have to increase the database version
154154

155-
public static final int DATABASE_VERSION = 249;
155+
public static final int DATABASE_VERSION = 250;
156156

157157
private static DatabaseHelper instance = null;
158158

@@ -1783,8 +1783,8 @@ public void onUpgrade(SQLiteDatabase db, ConnectionSource connectionSource, int
17831783

17841784
getDao(Person.class).executeRaw("ALTER TABLE person ADD COLUMN armedForcesRelationType varchar(255);");
17851785

1786-
case 248:
1787-
currentVersion = 248;
1786+
case 249:
1787+
currentVersion = 249;
17881788

17891789
getDao(Case.class).executeRaw("ALTER TABLE cases ADD COLUMN nosocomialOutbreak boolean DEFAULT false");
17901790
getDao(Case.class).executeRaw("ALTER TABLE cases ADD COLUMN infectionSetting varchar(255)");

0 commit comments

Comments
 (0)