From 3e348be74ca5ba074062acd47e622c1b68354a89 Mon Sep 17 00:00:00 2001 From: Joey Schulze Date: Sat, 10 Nov 2001 22:27:52 +0000 Subject: [PATCH] Rename Klient to Kunde and use iso-8859-1 umlauts, since we're in Germany so people are used to proper umlauts --- dtaus.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dtaus.c b/dtaus.c index 8f16662..3c5f296 100644 --- a/dtaus.c +++ b/dtaus.c @@ -1,6 +1,6 @@ /* dtaus.c - Datenträgeraustausch mit einer Bank - Copyright (c) 1996,8 Martin Schulze + Copyright (c) 1996,8,2001 Martin Schulze This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -286,7 +286,7 @@ char *string2ext (char *s) res[0] = '\0'; if (!strcmp(s, "01")) - sprintf (res, "Klient"); + sprintf (res, "Kunde"); else if (!strcmp(s, "02")) sprintf (res, "Text"); else if (!strcmp(s, "03")) @@ -299,7 +299,7 @@ char *ext2string (char *s) static char res[3]; res[0] = '\0'; - if (!strcmp(s, "Klient")) + if (!strcmp(s, "Kunde")) sprintf (res, "01"); else if (!strcmp(s, "Text")) sprintf (res, "02"); @@ -521,7 +521,7 @@ int dtaus_writeA(FILE *f, char **values) } if (!(((values[A_TRANS][0] == 'L')||(values[A_TRANS][0] == 'G')) &&((values[A_TRANS][1] == 'B')||(values[A_TRANS][1] == 'K')))) { - fprintf (stderr, "Ungueltiger Typ, nur LK, GK, LB oder GB erlaubt.\n"); + fprintf (stderr, "Ungültiger Typ, nur LK, GK, LB oder GB erlaubt.\n"); return 0; } -- 2.20.1