From 7522753605297a88df8dd9636521436582825171 Mon Sep 17 00:00:00 2001 From: Stéphane Aulery Date: Sat, 11 Feb 2012 01:56:06 +0100 Subject: Improvement and french translation of exiftran help * exiftran.c : small typos + clarify help text * exiftran.man : - typos; - clarify rotate commands; - improvement. * exiftran.man.fr : French translation of exiftran.man --- exiftran.c | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'exiftran.c') diff --git a/exiftran.c b/exiftran.c index c9ab867..671dfd3 100644 --- a/exiftran.c +++ b/exiftran.c @@ -1,5 +1,7 @@ /* + * Transform digital camera jpeg images * + * (c) 2002-2012 Gerd Hoffmann */ #include @@ -82,30 +84,30 @@ usage(FILE *fp, char *name) "\n" "transform options:\n" " -a automatic (using exif orientation tag)\n" - " -9 rotate by 90 degrees\n" - " -1 rotate by 180 degrees\n" - " -2 rotate by 270 degrees\n" - " -f flip vertical\n" - " -F flip horizontal\n" - " -t transpose\n" - " -T transverse\n" + " -9 rotate by 90 degrees clockwise\n" + " -1 rotate by 180 degrees clockwise\n" + " -2 rotate by 270 degrees clockwise\n" + " -f mirror image vertically (top / bottom)\n" + " -F mirror image horizontally (left to right)\n" + " -t transpose (across UL-to-LR corner)\n" + " -T transverse (across UR-to-LL corner)\n" "\n" " -nt don't rotate exif thumbnail\n" " -ni don't rotate jpeg image\n" " -no don't update the orientation tag\n" "\n" "other options:\n" - " -h print this text\n" + " -h print this help text\n" " -d dump exif data\n" " -c create/update comment\n" " -g (re)generate thumbnail\n" " -o output file\n" " -i change files inplace\n" - " -b create a backup file (with -i)\n" - " -p preserve timestamps (with -i)\n" + " -b create a backup file (with -i)\n" + " -p preserve timestamps (with -i)\n" "\n" "-- \n" - "Gerd Hoffmann [SUSE Labs]\n", + "(c) 2002-2012 Gerd Hoffmann [SUSE Labs]\n", name); } -- cgit