From: Frederic Marchal Date: Thu, 2 Apr 2015 19:28:24 +0000 (+0200) Subject: More messages merged to reduce the number of messages to translate. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=05a933cce0f9e7d35fd4e82f5167c1bde202fb8c;p=thirdparty%2Fsarg.git More messages merged to reduce the number of messages to translate. --- diff --git a/smartfilter.c b/smartfilter.c index 104a372..df900f2 100644 --- a/smartfilter.c +++ b/smartfilter.c @@ -198,7 +198,9 @@ void smartfilter_report(void) if(ShowSargInfo) { zdate(ftime, sizeof(ftime), df); - fprintf(fp_ou,"

%s %s-%s %s %s
\n",_("Generated by"),URL,PGM,VERSION,_("on"),ftime); + fputs("

",fp_ou); + fprintf(fp_ou,_("Generated by %s-%s on %s"),URL,PGM,VERSION,ftime); + fputs("
\n",fp_ou); } fputs("\n\n",fp_user); @@ -211,7 +213,9 @@ void smartfilter_report(void) fputs("\n",fp_user); if(ShowSargInfo) { zdate(ftime, sizeof(ftime), df); - fprintf(fp_user,"

%s %s-%s %s %s
\n",_("Generated by"),URL,PGM,VERSION,_("on"),ftime); + fputs("

",fp_user); + fprintf(fp_user,_("Generated by %s-%s on %s"),URL,PGM,VERSION,ftime); + fputs("
\n",fp_user); } fputs("\n\n",fp_user); if (fclose(fp_user)==EOF) { diff --git a/util.c b/util.c index 0f4c181..957b464 100644 --- a/util.c +++ b/util.c @@ -1925,7 +1925,7 @@ void show_info(FILE *fp_ou) if(!ShowSargInfo) return; zdate(ftime, sizeof(ftime), df); fputs("
",fp_ou); - fprintf(fp_ou,_("Generated by %s-%s on %s"),URL,PGM,VERSION,ftime); + fprintf(fp_ou,_("Generated by %s-%s on %s"),URL,PGM,VERSION,ftime); fputs("
\n",fp_ou); }