]> git.plutz.net Git - lobster/commitdiff
included localisation from prescriptions
authorPaul Hänsch <paul@plutz.net>
Wed, 8 Jan 2020 18:42:23 +0000 (19:42 +0100)
committerPaul Hänsch <paul@plutz.net>
Wed, 8 Jan 2020 18:42:23 +0000 (19:42 +0100)
therapies/l10n.sh

index bac84e7e437703c502a4e83d96f7e16d32d47081..d03357c8037d4d62ed09457e5a5a48ec4f4be839 100755 (executable)
@@ -20,16 +20,49 @@ l10n(){
   local word
   [ $# -eq 0 ] && read -r word || word="$1"
   case $word in
-    prescriptionlist) printf "Zur Verordnungsliste";;
-    delete_session) printf "Therapiesitzung entfernen";;
-    therapist) printf "Therapeut";;
-    number) printf "Nr.";;
-    signature) printf "Un&shy;ter&shy;schrift";;
-    weekly) printf "p. Woche";;
-    notes) printf "Notizen";;
-    trailsave) printf "Speichern für weitere Felder";;
-    # *) . $_EXEC/templates/text_prescriptions.sh
-    #    l10n "$word"
-    # ;;
+    therapy_prescription) printf '%s\n' "Heil&shy;mit&shy;tel&shy;ver&shy;ord&shy;nung";;
+    prescriptions_current) printf '%s\n' "Aktuelle Verordnungen";;
+    prescriptions_past) printf '%s\n' "Frühere Verordnungen";;
+    newprescription) printf '%s\n' "Neue Verordnung";;
+    date) printf '%s\n' "Datum";;
+    name) printf '%s\n' "Name d. Versicherten";;
+    bday) printf '%s\n' "geb. am";;
+    addcontrib) printf '%s\n' "Zuzahlung";;
+    contribconfirm) printf '%s\n' "Zuzahlung erfolgt am...";;
+    contribreceipt) printf '%s\n' "Quit&shy;tung heraus&shy;ge&shy;ge&shy;ben";;
+    prescreviewed) printf '%s\n' "Verordnung geprüft";;
+    prescreview) printf '%s\n' "Verordnung prüfen!";;
+    quantity) printf '%s\n' "Ver&shy;ord&shy;nungs&shy;men&shy;ge";;
+    remidy) printf '%s\n' "Heil&shy;mit&shy;tel nach Maß&shy;ga&shy;be des Ka&shy;ta&shy;lo&shy;ges";;
+    prescfirst) printf '%s\n' "Erst&shy;ver&shy;ord&shy;nung";;
+    prescfollow1) printf '%s\n' "1. Folge-&shy;VO";;
+    prescfollow2) printf '%s\n' "2. Folge-&shy;VO";;
+    prescother) printf '%s\n' "VO außer&shy;halb des Re&shy;gel&shy;falls";;
+    presccontinual) printf '%s\n' "Lang&shy;frist&shy;ver&shy;ord&shy;nung";;
+    grouptherapy) printf '%s\n' "Grup&shy;pen&shy;the&shy;ra&shy;pie";;
+    housecall) printf '%s\n' "Haus&shy;be&shy;such";;
+    report) printf '%s\n' "The&shy;ra&shy;pie&shy;be&shy;richt";;
+    indicator) printf '%s\n' "In&shy;di&shy;ka&shy;tions&shy;schlüssel";;
+    icd10) printf '%s\n' "ICD-10-Code";;
+    indicator_reading) printf '%s\n' "Befund Beschreibung";;
+    insurance) printf '%s\n' "Krankenkasse bzw. Kostenträger";;
+    prescription_by_catalogue) printf '%s\n' "Verordnung nach Maßgabe des Kataloges (Regelfall)";;
+    therapy_start) printf '%s\n' "Be&shy;hand&shy;lungs&shy;be&shy;ginn spä&shy;test. am";;
+    quantity_weekly) printf '%s\n' "An&shy;zahl pro Wo&shy;che";;
+    save) printf '%s\n' "Speichern";;
+    cancel) printf '%s\n' "Abbrechen";;
+    delete) printf '%s\n' "Löschen";;
+    therapy) printf '%s\n' "Zur Therapie";;
+
+    prescriptionlist) printf '%s\n' "Zur Verordnungsliste";;
+    delete_session) printf '%s\n' "Therapiesitzung entfernen";;
+    therapist) printf '%s\n' "Therapeut";;
+    number) printf '%s\n' "Nr.";;
+    signature) printf '%s\n' "Un&shy;ter&shy;schrift";;
+    weekly) printf '%s\n' "p. Woche";;
+    notes) printf '%s\n' "Notizen";;
+    trailsave) printf '%s\n' "Speichern für weitere Felder";;
+
+    *) HTML "$word";;
   esac
 }