From: Dan F. <dfa...@us...> - 2009-10-13 03:11:45
|
Update of /cvsroot/libexif/exif/exif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20395/exif Modified Files: actions.c main.c Log Message: Added argument description for --set-value and a missing translation (pointed out by Jorma Karvonen) Index: main.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/main.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -d -r1.75 -r1.76 --- main.c 1 Oct 2009 06:50:34 -0000 1.75 +++ main.c 13 Oct 2009 03:11:33 -0000 1.76 @@ -219,7 +219,7 @@ main (int argc, const char **argv) {"output", 'o', POPT_ARG_STRING, &output, 0, N_("Write data to FILE"), N_("FILE")}, {"set-value", '\0', POPT_ARG_STRING, &p.set_value, 0, - N_("Value of tag"), NULL}, + N_("Value of tag"), N_("STRING")}, {"create-exif", 'c', POPT_ARG_NONE, &create_exif, 0, N_("Create EXIF data if not existing"), NULL}, {"machine-readable", 'm', POPT_ARG_NONE, &p.machine_readable, 0, Index: actions.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/actions.c,v retrieving revision 1.45 retrieving revision 1.46 diff -u -p -d -r1.45 -r1.46 --- actions.c 1 Oct 2009 06:50:34 -0000 1.45 +++ actions.c 13 Oct 2009 03:11:33 -0000 1.46 @@ -221,7 +221,7 @@ action_create_value (ExifData *ed, ExifL ExifEntry *e; if (!((e = exif_content_get_entry (ed->ifd[ifd], tag)))) { - exif_log (log, EXIF_LOG_CODE_DEBUG, "exif", "Adding entry..."); + exif_log (log, EXIF_LOG_CODE_DEBUG, "exif", _("Adding entry...")); e = exif_entry_new (); exif_content_add_entry (ed->ifd[ifd], e); exif_entry_initialize (e, tag); |