diff options
author | Stéphane Aulery <lkppo@free.fr> | 2012-02-11 01:56:06 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-22 17:52:02 +0100 |
commit | 7522753605297a88df8dd9636521436582825171 (patch) | |
tree | b80cdbb515ad0d3c42cd8b6c7fc112ca6d26b0e0 /exiftran.c | |
parent | 6e088b24300a4e38db50b962f829360af8d4ad7a (diff) | |
download | fbida-7522753605297a88df8dd9636521436582825171.tar.gz |
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
Diffstat (limited to 'exiftran.c')
-rw-r--r-- | exiftran.c | 24 |
1 files changed, 13 insertions, 11 deletions
@@ -1,5 +1,7 @@ /* + * Transform digital camera jpeg images * + * (c) 2002-2012 Gerd Hoffmann <kraxel@bytesex.org> */ #include <stdio.h> @@ -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 <text> create/update comment\n" " -g (re)generate thumbnail\n" " -o <file> 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 <kraxel@bytesex.org> [SUSE Labs]\n", + "(c) 2002-2012 Gerd Hoffmann <kraxel@bytesex.org> [SUSE Labs]\n", name); } |