1 # Copyright 2014, 2016, 2019, 2021 Paul Hänsch
3 # This file is part of Confetti.
5 # Confetti is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # Confetti is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU Affero General Public License for more details.
15 # You should have received a copy of the GNU Affero General Public License
16 # along with Confetti. If not, see <http://www.gnu.org/licenses/>.
20 [ $# -eq 0 ] && read -r word || word="$*"
27 cards) printf %s "Teil­neh­mende";;
28 courses) printf %s "Kurse";;
31 PHOTO) printf %s "Foto";;
32 LOGO) printf %s "Logo";;
33 FN) printf %s "Voller Name";;
35 n_pre) printf %s "Titel";;
36 n_first) printf %s "Vorname";;
37 n_middle) printf %s "Mittel­namen";;
38 n_last) printf %s "Nachname";;
39 n_post) printf %s "Zusätze";;
40 NICKNAME) printf %s "Spitz­name";;
41 SOUND) printf %s "Aus­sprache";;
42 GENDER) printf %s "Ge­schlecht";;
43 KIND) printf %s "Typ";;
44 TITLE) printf %s "Beruf";;
45 ROLE) printf %s "Position";;
46 ORG) printf %s "Orga­ni­sation";;
47 MEMBER) printf %s "Mitglied";;
48 CATEGORIES) printf %s "Kategorien";;
49 ANNIVERSARY) printf %s "Jubiläum";;
50 BDAY) printf %s "Geburtstag";;
51 EMAIL) printf %s "E-Mail";;
52 TEL) printf %s "Telefon";;
53 teltype) printf %s "Anschluss­typ:";;
54 TYPE=HOME) printf %s "Privat";;
55 TYPE=WORK) printf %s "Geschäft­lich";;
56 TYPE=CELL) printf %s "Mobil";;
57 TYPE=FAX) printf %s "Fax";;
58 IMPP) printf %s "Chat";;
59 ADR) printf %s "Anschrift";;
60 URL) printf %s "Webseite";;
61 LANG) printf %s "Sprache";;
62 NOTE) printf %s "Notiz";;
63 RELATED) printf %s "Kontakte";;
66 SUMMARY) printf "Bezeichnung";;
67 COMMENT) printf "Kommentar";;
68 DTSTART) printf "Beginn";;
69 DURATION) printf "Dauer";;
70 RRULE) printf "Regelmäßigkeit";;
71 DAILY) printf "Tage";;
72 WEEKLY) printf "Wochen";;
73 MONTHLY) printf "Monate";;
74 YEARLY) printf "Jahre";;
75 sDAILY) printf "Täglich";;
76 sWEEKLY) printf "Wöchentlich";;
77 sMONTHLY) printf "Monatlich";;
78 sYEARLY) printf "Jährlich";;
81 year) printf %s "Jahr";;
82 month) printf %s "Monat";;
83 day) printf %s "Tag";;
84 edit) printf %s "Bearbeiten";;
85 edit_categories) printf %s "Kategorien Bearbeiten";;
86 vcf_export) printf %s "Vcard Exportieren";;
87 control) printf %s "Aktionen";;
88 delete) printf %s "entfernen";;
89 edit_update) printf %s "Daten übernehmen";;
90 edit_cancel) printf %s "Abbrechen";;
91 edit_delete) printf %s "Eintrag löschen";;
92 edit_addfieldtext) printf %s "Neues Feld";;
93 edit_addfield) printf %s "+";;
94 edit_deletefield) printf %s "X";;
96 filter_label) printf %s "Filter";;
97 filter_item) printf %s "Eingrenzung nach";;
98 filter_placeholder) printf %s "Begriffe zur Eingrenzung eingeben";;
99 filter_type) printf %s "Filter­typ";;
100 filter_order) printf %s "Sortie­rung";;
101 filter_any) printf %s "Alles";;
102 filter_name) printf %s "Name";;
103 filter_firstname) printf %s "Vor­name";;
104 filter_lastname) printf %s "Nach­name";;
105 filter_street) printf %s "Straße";;
106 filter_zip) printf %s "PLZ.";;
107 filter_TEL) printf %s "Tele­fon";;
108 filter_BDAY) printf %s "Geburts­jahr";;
109 filter_bdate) printf %s "Geburts­datum";;
110 filter_course) printf %s "Kurs";;
111 filter_CATEGORIES) printf %s "Kate­go­rien";;
112 filter_more) printf %s "+ mehr Filter";;
113 filter_apply) printf %s "Filtern";;
114 filter_cancel) printf %s "Filter löschen";;
115 export_csv) printf %s "Liste als CSV-Datei";;
118 course_attendance) printf %s "Kurs­teil­nahme";;
119 vcf_seed_label) printf "Anmeld. Vorn. Nachn. Geb.Tag Geb.Monat Geb.Jahr Tel. Mobil () EMail () Notiz";;
120 '(unnamed course)') printf '(Unbe\302\255nannter Kurs)';;
122 gender_none) printf %s "keine Angabe";;
123 gender_female) printf %s "Weiblich";;
124 gender_male) printf %s "Männlich";;
125 gender_other) printf %s "Sonstiges";;
127 female) printf %s "♀";;
128 male) printf %s "♂";;
129 other) printf %s "⚥";;
130 none) printf %s "⚪";;
133 *) printf %s "$word";;
138 [ $# -eq 0 ] && read -r time || time="$*"
139 printf '%s\n' "$time" |sed -E '
140 s;Monday;Mon\­\;tag;g; s;Mon\.;Mo.;g;
141 s;Tuesday;Diens\­\;tag;g; s;Tue\.;Di.;g;
142 s;Wednesday;Mitt\­\;woch;g; s;Wed\.;Mi.;g;
143 s;Thursday;Don\­\;ners\­\;tag;g; s;Thu\.;Do.;g;
144 s;Friday;Frei\­\;tag;g; s;Fri\.;Fr.;g;
145 s;Saturday;Sams\­\;tag;g; s;Sat\.;Sa.;g;
146 s;Sunday;Sonn\­\;tag;g; s;Sun\.;So.;g;
148 s;January;Ja\­\;nu\­\;ar;g; s;Jan\.;Jan.;g;
149 s;February;Fe\­\;bru\­\;ar;g; s;Feb\.;Feb.;g;
150 s;March;März;g; s;Mar\.;Mär.;g;
151 s;April;April;g; s;Apr\.;Apr.;g;
152 s;May;Mai;g; s;May\.;Mai.;g;
153 s;June;Juni;g; s;Jun\.;Jun.;g;
154 s;July;Juli;g; s;Jul\.;Jul.;g;
155 s;August;Au\­\;gust;g; s;Aug\.;Aug.;g;
156 s;September;Sep\­\;tem\­\;ber;g; s;Sep\.;Sep.;g;
157 s;October;Ok\­\;to\­\;ber;g; s;Oct\.;Okt.;g;
158 s;November;No\­\;vem\­\;ber;g; s;Nov\.;Nov.;g;
159 s;December;De\­\;zem\­\;ber;g; s;Dec\.;Dez.;g;
164 [ $# -eq 0 ] && read -r date || date="$*"
167 *[0-9].*[0-9].*[0-9])
172 [ $y -lt 100 ] && y="$((y + 2000))"
173 date -d "$(printf '%04i-%02i-%02i' "$y" "$m" "$d")" +%F
175 *) date -d "$date" +%F