X-Git-Url: https://git.plutz.net/?p=confetti;a=blobdiff_plain;f=templates%2Ftext_frame.sh;fp=templates%2Ftext_frame.sh;h=b76b58439baf3f9e35b012bcf0481f9cfd83720a;hp=0000000000000000000000000000000000000000;hb=badf769c566295e6ceaf9a9d80de664c227666a4;hpb=4e49d483fd5121fda86a33cf583c15afa6556ad1 diff --git a/templates/text_frame.sh b/templates/text_frame.sh new file mode 100755 index 0000000..b76b584 --- /dev/null +++ b/templates/text_frame.sh @@ -0,0 +1,27 @@ +# Copyright 2014, 2015 Paul Hänsch +# +# This file is part of Confetti. +# +# Confetti is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Confetti is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Confetti. If not, see . + +declare -A item_name + +item_name[p_attendees]="Teilnehmende" +item_name[p_courses]="Kurse" +item_name[p_email]="Email" +item_name[p_error]="Fehler" + +l10n() { + [ -n "$item_name[$1]" ] && echo -n "$item_name[$1]" || echo -n "$1" +}