X-Git-Url: https://git.plutz.net/?p=confetti;a=blobdiff_plain;f=cards%2Fl10n.sh;h=841adb4977ddc45c3fbddfc051af61ea58c3d0d4;hp=c9161733bbf8b14385605141eed975e005bf7497;hb=39d5084924d723c5bbea52c2b62fdfc39d39fe23;hpb=d5fb0b81bce3f19153b9c74f4bc17fe7a3043a7c diff --git a/cards/l10n.sh b/cards/l10n.sh index c916173..841adb4 100755 --- a/cards/l10n.sh +++ b/cards/l10n.sh @@ -16,7 +16,9 @@ # along with Confetti. If not, see . l10n(){ - case $1 in + local word + [ $# -eq 0 ] && read -r word || word="$1" + case $word in PHOTO) printf %s "Foto";; LOGO) printf %s "Logo";; FN) printf %s "Voller Name";; @@ -89,10 +91,10 @@ l10n(){ new_prescription) printf %s "Neue Verordnung";; no_icd) printf %s "Kein ICD Code";; - X-ZACK-JOINDATE) printf %s "An­mel­de­da­tum";; + X-ZACK-JOINDATE) printf %s "An­mel­de­da­tum";; X-ZACK-LEAVEDATE) printf %s "Ab­mel­de­da­tum";; - label_join) printf %s "Anm.";; - label_leave) printf %s "Abm.";; + X-ZACK-JOINDATE_short) printf %s "Anm.";; + X-ZACK-LEAVEDATE_short) printf %s "Abm.";; edit) printf %s "Bearbeiten";; edit_categories) printf %s "Kategorien Bearbeiten";; @@ -133,6 +135,13 @@ l10n(){ male) printf %s "♂";; other) printf %s "⚥";; none) printf %s "⚪";; + + teltype) printf %s "Anschlusstyp:";; + HOME) printf %s "Privat";; + WORK) printf %s "Geschäftlich";; + CELL) printf %s "Mobil";; + FAX) printf %s "Fax";; + *) printf %s "$1";; esac }