You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(22) |
Sep
(57) |
Oct
(39) |
Nov
(93) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(15) |
Feb
(8) |
Mar
(12) |
Apr
(25) |
May
(2) |
Jun
|
Jul
(11) |
Aug
(32) |
Sep
(18) |
Oct
(53) |
Nov
|
Dec
(11) |
2004 |
Jan
(19) |
Feb
(1) |
Mar
(15) |
Apr
(17) |
May
(56) |
Jun
(19) |
Jul
(6) |
Aug
(16) |
Sep
(44) |
Oct
(31) |
Nov
(36) |
Dec
(13) |
2005 |
Jan
(2) |
Feb
(41) |
Mar
(304) |
Apr
(176) |
May
(19) |
Jun
(33) |
Jul
(14) |
Aug
(21) |
Sep
(4) |
Oct
(3) |
Nov
|
Dec
(8) |
2006 |
Jan
(18) |
Feb
(9) |
Mar
(5) |
Apr
(2) |
May
(2) |
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(7) |
Oct
(10) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(4) |
May
(124) |
Jun
(59) |
Jul
(1) |
Aug
(13) |
Sep
(3) |
Oct
(11) |
Nov
(30) |
Dec
(35) |
2008 |
Jan
(31) |
Feb
(42) |
Mar
(4) |
Apr
(5) |
May
(2) |
Jun
(12) |
Jul
(8) |
Aug
(2) |
Sep
(4) |
Oct
(5) |
Nov
(89) |
Dec
(23) |
2009 |
Jan
(71) |
Feb
(5) |
Mar
(8) |
Apr
(7) |
May
(8) |
Jun
(7) |
Jul
|
Aug
(4) |
Sep
(58) |
Oct
(74) |
Nov
(53) |
Dec
(32) |
2010 |
Jan
(8) |
Feb
(13) |
Mar
(4) |
Apr
|
May
|
Jun
(10) |
Jul
(1) |
Aug
(2) |
Sep
(12) |
Oct
(17) |
Nov
(2) |
Dec
(24) |
2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(24) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(20) |
Mar
(18) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(12) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(5) |
From: Jan P. <pa...@us...> - 2007-05-08 09:09:11
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29698 Modified Files: exif-data.c exif-entry.c Log Message: 1) Added support for Olympus S760 & S770 makernote (bug #1703284) 2) Interoperability Version value is now obtained 3) Fixed crashes when looking up invalid values (bug #1457501) Index: exif-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.c,v retrieving revision 1.96 retrieving revision 1.97 diff -u -p -d -r1.96 -r1.97 --- exif-entry.c 26 Apr 2007 17:00:26 -0000 1.96 +++ exif-entry.c 8 May 2007 09:09:06 -0000 1.97 @@ -533,7 +533,8 @@ static struct { { EXIF_TAG_COLOR_SPACE, { {1, {N_("sRGB"), NULL}}, {2, {N_("Adobe RGB"), NULL}}, - {0xffff, {N_("Uncalibrated"), NULL}}}}, + {0xffff, {N_("Uncalibrated"), NULL}}, + {0x0000, {NULL}}}}, {0, } }; @@ -918,7 +919,7 @@ exif_entry_get_value (ExifEntry *e, char } /* Find the value */ - for (j = 0; list2[i].elem[j].values && + for (j = 0; list2[i].elem[j].values[0] && (list2[i].elem[j].index < v_short); j++); if (list2[i].elem[j].index != v_short) { snprintf (val, maxlen, _("Internal error (unknown " @@ -928,8 +929,7 @@ exif_entry_get_value (ExifEntry *e, char /* Find a short enough value */ memset (val, 0, maxlen); - for (k = 0; list2[i].elem[j].values && - list2[i].elem[j].values[k]; k++) { + for (k = 0; list2[i].elem[j].values[k]; k++) { l = strlen (_(list2[i].elem[j].values[k])); if ((maxlen > l) && (strlen (val) < l)) strncpy (val, _(list2[i].elem[j].values[k]), maxlen - 1); @@ -968,6 +968,10 @@ exif_entry_get_value (ExifEntry *e, char else strncpy (val, _(list[i].strings[j]), maxlen - 1); break; + case EXIF_TAG_INTEROPERABILITY_VERSION: + CF (e, EXIF_FORMAT_UNDEFINED, val, maxlen); + strncpy (val, (char *) e->data, MIN (maxlen, e->size)); + break; default: if (!e->components) break; switch (e->format) { Index: exif-data.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.c,v retrieving revision 1.87 retrieving revision 1.88 diff -u -p -d -r1.87 -r1.88 --- exif-data.c 3 Oct 2006 19:41:36 -0000 1.87 +++ exif-data.c 8 May 2007 09:09:06 -0000 1.88 @@ -663,8 +663,8 @@ exif_data_get_type_maker_note (ExifData return EXIF_DATA_TYPE_MAKER_NOTE_NONE; /* Olympus & Nikon */ - if ((e->size >= 5) && (!memcmp (e->data, "OLYMP", 5) || - !memcmp (e->data, "Nikon", 5))) + if ((e->size >= 8) && (!memcmp (e->data, "OLYMP", 6) || + !memcmp (e->data, "OLYMPUS", 8) || !memcmp (e->data, "Nikon", 6))) return EXIF_DATA_TYPE_MAKER_NOTE_OLYMPUS; em = exif_data_get_entry (d, EXIF_TAG_MAKE); |
From: Jan P. <pa...@us...> - 2007-05-06 17:51:59
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8021 Modified Files: ChangeLog Log Message: libexif/olympus/exif-mnote-data-olympus.c: Nikon v1 makernotes were saved with wrong offsets, Nikon v1 & v2 maker notes were saved with wrong offset to 2nd IFD (Reported by Joakim Larsson as patch #1664543) Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.240 retrieving revision 1.241 diff -u -p -d -r1.240 -r1.241 --- ChangeLog 24 Apr 2007 04:49:58 -0000 1.240 +++ ChangeLog 6 May 2007 17:51:52 -0000 1.241 @@ -1,3 +1,9 @@ +2007-05-06 Jan Patera <pa...@us...> + + * libexif/olympus/exif-mnote-data-olympus.c: Nikon v1 makernotes were saved + with wrong offsets, Nikon v1 & v2 maker notes were saved with wrong offset + to 2nd IFD (Reported by Joakim Larsson as patch #1664543) + 2007-04-24 Jan Patera <pa...@us...> * libexif/canon/mnote-canon-entry.c: Added hook for ISO settings of Canon |
From: Jan P. <pa...@us...> - 2007-05-06 17:42:01
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2423 Modified Files: exif-mnote-data-olympus.c Log Message: Nikon v1 makernotes were saved with wrong offsets, Nikon v1 & v2 maker notes were saved with wrong offset to 2nd IFD (Spotted by Joakim Larsson as patch #1664543) Index: exif-mnote-data-olympus.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/exif-mnote-data-olympus.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -d -r1.25 -r1.26 --- exif-mnote-data-olympus.c 5 Jul 2005 08:29:32 -0000 1.25 +++ exif-mnote-data-olympus.c 6 May 2007 17:41:57 -0000 1.26 @@ -108,11 +108,14 @@ exif_mnote_data_olympus_save (ExifMnoteD case nikonV1: base = MNOTE_NIKON1_TAG_BASE; + /* v1 has offsets based to main IFD, not makernote IFD */ + datao += n->offset + 10; /* subtract the size here, so the increment in the next case will not harm us */ - *buf_size -= 8; + *buf_size -= 8 + 2; /* Fall through */ case nikonV2: - *buf_size += 8; + *buf_size += 8 + 2; + *buf_size += 4; /* Next IFD pointer */ *buf = exif_mem_alloc (ne->mem, *buf_size); if (!*buf) return; @@ -120,7 +123,6 @@ exif_mnote_data_olympus_save (ExifMnoteD strcpy ((char *)*buf, "Nikon"); (*buf)[6] = n->version; - *buf_size += 2; if (n->version == nikonV2) { exif_set_short (*buf + 10, n->order, (ExifShort) ( (n->order == EXIF_BYTE_ORDER_INTEL) ? @@ -130,7 +132,9 @@ exif_mnote_data_olympus_save (ExifMnoteD exif_set_long (*buf + 14, n->order, (ExifShort) 8); o2 += 2 + 8; } - datao = -10; + datao -= 10; + /* Reset next IFD pointer */ + exif_set_long (*buf + o2 + 2 + n->count * 12, n->order, 0); break; default: |
From: Jan P. <pa...@us...> - 2007-05-05 09:25:20
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8850 Modified Files: de.po es.po fr.po pl.po ru.po vi.po Log Message: Cleanup of some fuzzy translations Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/es.po,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -d -r1.19 -r1.20 --- es.po 4 May 2007 06:08:28 -0000 1.19 +++ es.po 5 May 2007 09:25:14 -0000 1.20 @@ -32,9 +32,9 @@ msgstr "Cantidad de componentes no váli #: libexif/canon/mnote-canon-entry.c:61 #: libexif/olympus/mnote-olympus-entry.c:59 -#, fuzzy, c-format +#, c-format msgid "Invalid number of components (%i, expected %i or %i)." -msgstr "Cantidad de componentes no válida (%i, se esperaba %i)." +msgstr "Cantidad de componentes no válida (%i, se esperaba %i o %i)." #: libexif/canon/mnote-canon-entry.c:75 libexif/canon/mnote-canon-entry.c:120 #: libexif/canon/mnote-canon-entry.c:168 libexif/exif-entry.c:529 @@ -461,7 +461,7 @@ msgstr "Luz de dÃa" #: libexif/canon/mnote-canon-entry.c:180 libexif/canon/mnote-canon-entry.c:303 #, fuzzy msgid "Center" -msgstr "CentÃmetro" +msgstr "Centrado" #: libexif/canon/mnote-canon-entry.c:181 libexif/canon/mnote-canon-entry.c:305 msgid "Left" @@ -872,7 +872,7 @@ msgstr "abajo - derecha" #: libexif/canon/mnote-canon-entry.c:307 #, fuzzy msgid "Left + Center" -msgstr "CentÃmetro" +msgstr "abajo centrado" #: libexif/canon/mnote-canon-entry.c:308 msgid "All" @@ -967,7 +967,7 @@ msgid "%.2f EV" msgstr "" #: libexif/canon/mnote-canon-entry.c:547 libexif/exif-entry.c:775 -#, fuzzy, c-format +#, c-format msgid "1/%d" msgstr "1/%d" @@ -995,9 +995,8 @@ msgid "Settings (second part)" msgstr "" #: libexif/canon/mnote-canon-tag.c:37 -#, fuzzy msgid "Panorama" -msgstr "normal" +msgstr "Panorama" #: libexif/canon/mnote-canon-tag.c:38 #, fuzzy @@ -1018,9 +1017,8 @@ msgid "Owner name" msgstr "" #: libexif/canon/mnote-canon-tag.c:42 libexif/olympus/mnote-olympus-tag.c:81 -#, fuzzy msgid "Serial number" -msgstr "El número F." +msgstr "" #: libexif/canon/mnote-canon-tag.c:43 #, fuzzy @@ -1226,14 +1224,12 @@ msgid "White balance" msgstr "Balance de blanco" #: libexif/canon/mnote-canon-tag.c:98 -#, fuzzy msgid "Sequence number" -msgstr "El número F." +msgstr "" #: libexif/canon/mnote-canon-tag.c:99 -#, fuzzy msgid "Flash guide number" -msgstr "ID único de imagen" +msgstr "" #: libexif/canon/mnote-canon-tag.c:101 libexif/olympus/mnote-olympus-tag.c:52 msgid "Flash exposure compensation" @@ -1260,38 +1256,32 @@ msgid "Focus distance lower" msgstr "Balance de blanco manual" #: libexif/canon/mnote-canon-tag.c:106 libexif/exif-tag.c:297 -#, fuzzy msgid "FNumber" msgstr "El número F." #: libexif/canon/mnote-canon-tag.c:107 -#, fuzzy msgid "Exposure time" msgstr "Tiempo de exposición" #: libexif/canon/mnote-canon-tag.c:108 -#, fuzzy msgid "Bulb duration" -msgstr "Saturación" +msgstr "" #: libexif/canon/mnote-canon-tag.c:109 -#, fuzzy msgid "Camera type" -msgstr "Ancho de la imagen" +msgstr "" #: libexif/canon/mnote-canon-tag.c:110 -#, fuzzy msgid "Auto rotate" -msgstr "Auto bracket" +msgstr "" #: libexif/canon/mnote-canon-tag.c:111 msgid "ND filter" msgstr "" #: libexif/canon/mnote-canon-tag.c:114 -#, fuzzy msgid "Panorama frame" -msgstr "normal" +msgstr "" #: libexif/canon/mnote-canon-tag.c:115 msgid "Panorama direction" @@ -1323,9 +1313,8 @@ msgid "Unknown encoding." msgstr "Desconocido" #: libexif/exif-data.c:1100 -#, fuzzy msgid "Ignore unknown tags" -msgstr "Desconocido" +msgstr "" #: libexif/exif-data.c:1101 msgid "Ignore unknown tags when loading EXIF data." @@ -1478,7 +1467,7 @@ msgstr "" #: libexif/exif-entry.c:400 msgid "YCbCr" -msgstr "TCvCr" +msgstr "YCbCr" #: libexif/exif-entry.c:400 msgid "CieLAB" @@ -1588,7 +1577,6 @@ msgid "Uncompressed" msgstr "Descomprimido" #: libexif/exif-entry.c:439 -#, fuzzy msgid "LZW compression" msgstr "compresión LZW" @@ -1597,12 +1585,10 @@ msgid "JPEG compression" msgstr "compresión JPEG" #: libexif/exif-entry.c:442 -#, fuzzy msgid "Deflate/ZIP compression" msgstr "compresión Deflate/ZIP" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "compresión PackBits" @@ -1754,7 +1740,6 @@ msgstr "Flash" #: libexif/exif-entry.c:492 libexif/olympus/mnote-olympus-entry.c:138 #: libexif/olympus/mnote-olympus-entry.c:162 -#, fuzzy msgid "Yes" msgstr "sÃ" @@ -1917,7 +1902,7 @@ msgid "Uncalibrated" msgstr "Descalibrado" #: libexif/exif-entry.c:589 -#, fuzzy, c-format +#, c-format msgid "Invalid size of entry (%i, expected %li x %i)." msgstr "Cantidad de componentes no válida (%i, se esperaba %li x %i)." @@ -1944,9 +1929,9 @@ msgid "Unknown Exif Version" msgstr "Versión Exif" #: libexif/exif-entry.c:658 -#, fuzzy, c-format +#, c-format msgid "Exif Version %d.%d" -msgstr "Versión Exif" +msgstr "Versión Exif %d.%d" #: libexif/exif-entry.c:669 msgid "FlashPix Version 1.0" @@ -1991,17 +1976,16 @@ msgid " (35 equivalent: %d mm)" msgstr " (equivalente 35: %d mm)" #: libexif/exif-entry.c:779 libexif/exif-entry.c:780 -#, fuzzy msgid " sec." msgstr " seg." #: libexif/exif-entry.c:794 -#, fuzzy, c-format +#, c-format msgid " 1/%d sec.)" msgstr " 1/%d seg.)" #: libexif/exif-entry.c:796 -#, fuzzy, c-format +#, c-format msgid " %d sec.)" msgstr " %d seg.)" @@ -2102,32 +2086,28 @@ msgid "Long" msgstr "" #: libexif/exif-format.c:37 -#, fuzzy msgid "Rational" -msgstr "acción" +msgstr "" #: libexif/exif-format.c:38 msgid "SByte" msgstr "" #: libexif/exif-format.c:39 -#, fuzzy msgid "SShort" -msgstr "Lugar" +msgstr "" #: libexif/exif-format.c:40 msgid "SLong" msgstr "" #: libexif/exif-format.c:41 -#, fuzzy msgid "SRational" -msgstr "acción" +msgstr "" #: libexif/exif-format.c:42 -#, fuzzy msgid "Float" -msgstr "Flash" +msgstr "" #: libexif/exif-format.c:43 msgid "Double" @@ -3588,9 +3568,8 @@ msgid "VGA Basic" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:89 -#, fuzzy msgid "VGA Normal" -msgstr "Normal" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:90 msgid "VGA Fine" @@ -3601,9 +3580,8 @@ msgid "SXGA Basic" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:92 -#, fuzzy msgid "SXGA Normal" -msgstr "Normal" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:93 msgid "SXGA Fine" @@ -3632,14 +3610,12 @@ msgid "Monochrome" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:104 -#, fuzzy msgid "Bright+" -msgstr "Copyright" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:105 -#, fuzzy msgid "Bright-" -msgstr "Copyright" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:106 #, fuzzy @@ -3689,9 +3665,8 @@ msgid "No Fisheye" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:126 -#, fuzzy msgid "Fisheye On" -msgstr "Flash" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:129 msgid "SQ" @@ -3758,9 +3733,8 @@ msgid "AF Position: Left" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:317 -#, fuzzy msgid "AF Position: Right" -msgstr "Posicionamiento YCbCr" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:318 msgid "AF Position: Upper-left" @@ -3787,18 +3761,17 @@ msgid "AF Position: Far Right" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:324 -#, fuzzy msgid "Unknown AF Position" -msgstr "Versión Exif" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:357 msgid "Internal error" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:378 -#, fuzzy, c-format +#, c-format msgid "Unknown value %hi" -msgstr "Desconocido" +msgstr "" #: libexif/olympus/mnote-olympus-entry.c:407 msgid "Infinite" @@ -3817,9 +3790,8 @@ msgid "fast" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:430 -#, fuzzy msgid "panorama" -msgstr "normal" +msgstr "panorama" #: libexif/olympus/mnote-olympus-entry.c:433 #: libexif/olympus/mnote-olympus-entry.c:453 @@ -3866,14 +3838,13 @@ msgid "One-touch" msgstr "" #: libexif/olympus/mnote-olympus-entry.c:571 -#, fuzzy, c-format +#, c-format msgid "%li bytes unknown data: " -msgstr "%li bytes de datos desconocidos" +msgstr "%li bytes de datos desconocidos: " #: libexif/olympus/mnote-olympus-tag.c:37 -#, fuzzy msgid "Firmware Version" -msgstr "Versión Exif" +msgstr "" #: libexif/olympus/mnote-olympus-tag.c:38 #: libexif/olympus/mnote-olympus-tag.c:53 @@ -3937,9 +3908,8 @@ msgid "Exposurediff ?" msgstr "Modo de exposición" #: libexif/olympus/mnote-olympus-tag.c:54 -#, fuzzy msgid "Image Boundary" -msgstr "ID único de imagen" +msgstr "" #: libexif/olympus/mnote-olympus-tag.c:56 msgid "Flash exposure bracket value" @@ -3951,9 +3921,8 @@ msgstr "" #: libexif/olympus/mnote-olympus-tag.c:58 #: libexif/olympus/mnote-olympus-tag.c:96 -#, fuzzy msgid "Image Adjustment" -msgstr "Longitud de la imagen" +msgstr "" #: libexif/olympus/mnote-olympus-tag.c:59 msgid "Tonecompensation" @@ -3994,9 +3963,8 @@ msgid "AF Focus position" msgstr "" #: libexif/olympus/mnote-olympus-tag.c:67 -#, fuzzy msgid "Bracketing" -msgstr "acción" +msgstr "" #: libexif/olympus/mnote-olympus-tag.c:69 msgid "Lens F stops" @@ -4014,9 +3982,8 @@ msgid "Colormode" msgstr "Espacio de color" #: libexif/olympus/mnote-olympus-tag.c:72 -#, fuzzy msgid "Lighttype" -msgstr "Escena nocturna" +msgstr "" #: libexif/olympus/mnote-olympus-tag.c:74 msgid "Hue Adjustment" @@ -4141,9 +4108,8 @@ msgid "Capture Mode" msgstr "Modo de exposición" #: libexif/pentax/mnote-pentax-tag.c:35 -#, fuzzy msgid "Quality Level" -msgstr "Nivel de la baterÃa" +msgstr "" #: libexif/pentax/mnote-pentax-tag.c:53 #, fuzzy Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/fr.po,v retrieving revision 1.20 retrieving revision 1.21 diff -u -p -d -r1.20 -r1.21 --- fr.po 4 May 2007 06:08:28 -0000 1.20 +++ fr.po 5 May 2007 09:25:14 -0000 1.21 @@ -32,9 +32,9 @@ msgstr "Nombre invalide de composants (% #: libexif/canon/mnote-canon-entry.c:61 #: libexif/olympus/mnote-olympus-entry.c:59 -#, fuzzy, c-format +#, c-format msgid "Invalid number of components (%i, expected %i or %i)." -msgstr "Nombre invalide de composants (%i, attendait %i)." +msgstr "Nombre invalide de composants (%i, attendait %i ou %i)." #: libexif/canon/mnote-canon-entry.c:75 libexif/canon/mnote-canon-entry.c:120 #: libexif/canon/mnote-canon-entry.c:168 libexif/exif-entry.c:529 @@ -968,7 +968,7 @@ msgid "%.2f EV" msgstr "" #: libexif/canon/mnote-canon-entry.c:547 libexif/exif-entry.c:775 -#, fuzzy, c-format +#, c-format msgid "1/%d" msgstr "1/%d" @@ -996,21 +996,18 @@ msgid "Settings (second part)" msgstr "" #: libexif/canon/mnote-canon-tag.c:37 -#, fuzzy msgid "Panorama" -msgstr "normal" +msgstr "" #: libexif/canon/mnote-canon-tag.c:38 -#, fuzzy msgid "Image type" -msgstr "Hauteur de l'image" +msgstr "" #: libexif/canon/mnote-canon-tag.c:39 libexif/olympus/mnote-olympus-tag.c:112 msgid "Firmware version" msgstr "" #: libexif/canon/mnote-canon-tag.c:40 -#, fuzzy msgid "Image number" msgstr "ID unique de l'image" @@ -1019,9 +1016,8 @@ msgid "Owner name" msgstr "" #: libexif/canon/mnote-canon-tag.c:42 libexif/olympus/mnote-olympus-tag.c:81 -#, fuzzy msgid "Serial number" -msgstr "Le nombre F." +msgstr "" #: libexif/canon/mnote-canon-tag.c:43 #, fuzzy @@ -1166,9 +1162,8 @@ msgid "Zoom source width" msgstr "" #: libexif/canon/mnote-canon-tag.c:82 -#, fuzzy msgid "Zoom target width" -msgstr "Hauteur de l'image" +msgstr "" #: libexif/canon/mnote-canon-tag.c:83 msgid "Photo effect" @@ -1227,28 +1222,24 @@ msgid "White balance" msgstr "Balance des blancs" #: libexif/canon/mnote-canon-tag.c:98 -#, fuzzy msgid "Sequence number" -msgstr "Le nombre F." +msgstr "" #: libexif/canon/mnote-canon-tag.c:99 -#, fuzzy msgid "Flash guide number" -msgstr "ID unique de l'image" +msgstr "" #: libexif/canon/mnote-canon-tag.c:101 libexif/olympus/mnote-olympus-tag.c:52 msgid "Flash exposure compensation" msgstr "" #: libexif/canon/mnote-canon-tag.c:102 -#, fuzzy msgid "AE bracketing" -msgstr "action" +msgstr "" #: libexif/canon/mnote-canon-tag.c:103 -#, fuzzy msgid "AE bracket value" -msgstr "Bracketing automatique" +msgstr "" #: libexif/canon/mnote-canon-tag.c:104 #, fuzzy @@ -1271,28 +1262,24 @@ msgid "Exposure time" msgstr "Temps d'exposition" #: libexif/canon/mnote-canon-tag.c:108 -#, fuzzy msgid "Bulb duration" -msgstr "Saturation" +msgstr "" #: libexif/canon/mnote-canon-tag.c:109 -#, fuzzy msgid "Camera type" -msgstr "Hauteur de l'image" +msgstr "" #: libexif/canon/mnote-canon-tag.c:110 -#, fuzzy msgid "Auto rotate" -msgstr "Bracketing automatique" +msgstr "" #: libexif/canon/mnote-canon-tag.c:111 msgid "ND filter" msgstr "" #: libexif/canon/mnote-canon-tag.c:114 -#, fuzzy msgid "Panorama frame" -msgstr "normal" +msgstr "" #: libexif/canon/mnote-canon-tag.c:115 msgid "Panorama direction" @@ -1373,10 +1360,10 @@ msgid "The tag '%s' contains data of an msgstr "Format invalide '%s', attendait '%s'." #: libexif/exif-entry.c:373 -#, fuzzy, c-format +#, c-format msgid "" "The tag '%s' contains an invalid number of components (%i, expected %i)." -msgstr "Nombre invalide de composants (%i, attendait %i)." +msgstr "" #: libexif/exif-entry.c:386 msgid "chunky format" @@ -1589,7 +1576,6 @@ msgid "Uncompressed" msgstr "Non compressé" #: libexif/exif-entry.c:439 -#, fuzzy msgid "LZW compression" msgstr "Compression LZW" @@ -1598,12 +1584,10 @@ msgid "JPEG compression" msgstr "Compression JPEG" #: libexif/exif-entry.c:442 -#, fuzzy msgid "Deflate/ZIP compression" msgstr "Compression Deflate/ZIP" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "Compression PackBits" @@ -1755,7 +1739,6 @@ msgstr "Flash" #: libexif/exif-entry.c:492 libexif/olympus/mnote-olympus-entry.c:138 #: libexif/olympus/mnote-olympus-entry.c:162 -#, fuzzy msgid "Yes" msgstr "oui" @@ -1776,7 +1759,6 @@ msgid "W. strobe" msgstr "" #: libexif/exif-entry.c:496 -#, fuzzy msgid "Flash did not fire, compulsory flash mode" msgstr "Flash non déclenché, mode de flash obligatoire." @@ -1798,7 +1780,6 @@ msgstr "" "Flash déclenché, mode de flash obligatoire, lumière de retour détectée." #: libexif/exif-entry.c:502 -#, fuzzy msgid "Flash did not fire, compulsory flash mode." msgstr "Flash non déclenché, mode de flash obligatoire." @@ -1913,7 +1894,7 @@ msgid "Uncalibrated" msgstr "Non calibré" #: libexif/exif-entry.c:589 -#, fuzzy, c-format +#, c-format msgid "Invalid size of entry (%i, expected %li x %i)." msgstr "Nombre invalide de composants (%i, attendait %li x %i)." @@ -1935,14 +1916,13 @@ msgid "Byte at position %i: 0x%02x" msgstr "" #: libexif/exif-entry.c:654 -#, fuzzy msgid "Unknown Exif Version" -msgstr "Version d'exif" +msgstr "Version d'exif inconnu" #: libexif/exif-entry.c:658 -#, fuzzy, c-format +#, c-format msgid "Exif Version %d.%d" -msgstr "Version d'exif" +msgstr "Version d'exif %d.%d" #: libexif/exif-entry.c:669 msgid "FlashPix Version 1.0" Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/ru.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- ru.po 4 May 2007 06:08:29 -0000 1.4 +++ ru.po 5 May 2007 09:25:14 -0000 1.5 @@ -393,9 +393,8 @@ msgid "400" msgstr "400" #: libexif/canon/mnote-canon-entry.c:158 -#, fuzzy msgid "800" -msgstr "100" +msgstr "800" #: libexif/canon/mnote-canon-entry.c:159 msgid "Default" @@ -508,9 +507,8 @@ msgid "A-DEP" msgstr "A-DEP" #: libexif/canon/mnote-canon-entry.c:189 -#, fuzzy msgid "M-DEP" -msgstr "A-DEP" +msgstr "M-DEP" #: libexif/canon/mnote-canon-entry.c:190 msgid "Canon EF 50mm f/1.8" @@ -741,9 +739,8 @@ msgid "FP sync used" msgstr "" #: libexif/canon/mnote-canon-entry.c:248 -#, fuzzy msgid "Internal" -msgstr "Intel" +msgstr "" #: libexif/canon/mnote-canon-entry.c:249 #, fuzzy @@ -965,14 +962,14 @@ msgid "%i (ms)" msgstr "" #: libexif/canon/mnote-canon-entry.c:476 -#, fuzzy, c-format +#, c-format msgid "%i" msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 -#, fuzzy, c-format +#, c-format msgid "%.2f mm" -msgstr "%.2f EV" +msgstr "%.2f mm" #: libexif/canon/mnote-canon-entry.c:537 #, c-format @@ -1588,12 +1585,10 @@ msgid "JPEG compression" msgstr "СжаÑие JPEG" #: libexif/exif-entry.c:442 -#, fuzzy msgid "Deflate/ZIP compression" msgstr "СжаÑие Deflate/ZIP" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "СжаÑие PackBits" @@ -1938,9 +1933,9 @@ msgstr "(РедакÑоÑ)" #: libexif/exif-entry.c:719 libexif/exif-entry.c:788 libexif/exif-entry.c:808 #: libexif/exif-entry.c:846 -#, fuzzy, c-format +#, c-format msgid "%.02f EV" -msgstr "%.2f EV" +msgstr "%.02f EV" #: libexif/exif-entry.c:720 #, c-format @@ -1957,12 +1952,12 @@ msgid " sec." msgstr " Ñек." #: libexif/exif-entry.c:794 -#, fuzzy, c-format +#, c-format msgid " 1/%d sec.)" msgstr " 1/%d Ñек.)" #: libexif/exif-entry.c:796 -#, fuzzy, c-format +#, c-format msgid " %d sec.)" msgstr " %d Ñек.)" @@ -3472,12 +3467,10 @@ msgid "SHQ" msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 -#, fuzzy msgid "SQ1" msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 -#, fuzzy msgid "SQ2" msgstr "SQ2" Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.32 retrieving revision 1.33 diff -u -p -d -r1.32 -r1.33 --- de.po 4 May 2007 06:08:28 -0000 1.32 +++ de.po 5 May 2007 09:25:14 -0000 1.33 @@ -916,7 +916,7 @@ msgid "%i (ms)" msgstr "%i (ms)" #: libexif/canon/mnote-canon-entry.c:476 -#, fuzzy, c-format +#, c-format msgid "%i" msgstr "%i" @@ -1531,7 +1531,6 @@ msgid "Deflate/ZIP compression" msgstr "Deflate/ZIP Kompression" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "PackBits Kompression" @@ -1881,9 +1880,9 @@ msgstr "(Editor)" #: libexif/exif-entry.c:719 libexif/exif-entry.c:788 libexif/exif-entry.c:808 #: libexif/exif-entry.c:846 -#, fuzzy, c-format +#, c-format msgid "%.02f EV" -msgstr "%.2f EV" +msgstr "%.02f EV" #: libexif/exif-entry.c:720 #, c-format @@ -1900,12 +1899,12 @@ msgid " sec." msgstr "sek." #: libexif/exif-entry.c:794 -#, fuzzy, c-format +#, c-format msgid " 1/%d sec.)" msgstr "1/%dsek.)" #: libexif/exif-entry.c:796 -#, fuzzy, c-format +#, c-format msgid " %d sec.)" msgstr " %dsek.)" @@ -3535,12 +3534,10 @@ msgid "SHQ" msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 -#, fuzzy msgid "SQ1" msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 -#, fuzzy msgid "SQ2" msgstr "SQ2" Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/pl.po,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -d -r1.6 -r1.7 --- pl.po 4 May 2007 06:08:28 -0000 1.6 +++ pl.po 5 May 2007 09:25:14 -0000 1.7 @@ -142,14 +142,12 @@ msgid "Continuous, speed priority" msgstr "Tryb ciÄ gÅego przesuwania" #: libexif/canon/mnote-canon-entry.c:94 -#, fuzzy msgid "Continuous, low" -msgstr "CiÄ gÅy" +msgstr "" #: libexif/canon/mnote-canon-entry.c:95 -#, fuzzy msgid "Continuous, high" -msgstr "CiÄ gÅy" +msgstr "" #: libexif/canon/mnote-canon-entry.c:96 #, fuzzy @@ -396,9 +394,8 @@ msgid "400" msgstr "400" #: libexif/canon/mnote-canon-entry.c:158 -#, fuzzy msgid "800" -msgstr "100" +msgstr "800" #: libexif/canon/mnote-canon-entry.c:159 msgid "Default" @@ -471,9 +468,8 @@ msgid "Auto-selected" msgstr "automatycznie wybrany" #: libexif/canon/mnote-canon-entry.c:179 libexif/canon/mnote-canon-entry.c:302 -#, fuzzy msgid "Right" -msgstr "noc" +msgstr "" #: libexif/canon/mnote-canon-entry.c:180 libexif/canon/mnote-canon-entry.c:303 #, fuzzy @@ -513,9 +509,8 @@ msgid "A-DEP" msgstr "A-DEP" #: libexif/canon/mnote-canon-entry.c:189 -#, fuzzy msgid "M-DEP" -msgstr "A-DEP" +msgstr "M-DEP" #: libexif/canon/mnote-canon-entry.c:190 msgid "Canon EF 50mm f/1.8" @@ -747,9 +742,8 @@ msgid "FP sync used" msgstr "Użyto FP sync" #: libexif/canon/mnote-canon-entry.c:248 -#, fuzzy msgid "Internal" -msgstr "Intel" +msgstr "" #: libexif/canon/mnote-canon-entry.c:249 #, fuzzy @@ -971,14 +965,14 @@ msgid "%i (ms)" msgstr "%i (ms)" #: libexif/canon/mnote-canon-entry.c:476 -#, fuzzy, c-format +#, c-format msgid "%i" msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 -#, fuzzy, c-format +#, c-format msgid "%.2f mm" -msgstr "%.2f EV" +msgstr "%.2f mm" #: libexif/canon/mnote-canon-entry.c:537 #, c-format @@ -1144,7 +1138,7 @@ msgstr "Maksymalna jasnoÅÄ" #: libexif/canon/mnote-canon-tag.c:74 #, fuzzy msgid "Minimal aperture" -msgstr "Maksymalna jasnoÅÄ" +msgstr "Minmalna jasnoÅÄ" #: libexif/canon/mnote-canon-tag.c:75 msgid "Flash activity" @@ -1160,9 +1154,8 @@ msgid "AE setting" msgstr "Ustawienie ISO" #: libexif/canon/mnote-canon-tag.c:79 -#, fuzzy msgid "Image stabilization" -msgstr "Opis obrazu" +msgstr "" #: libexif/canon/mnote-canon-tag.c:80 #, fuzzy @@ -1211,9 +1204,8 @@ msgid "Auto ISO" msgstr "Auto" #: libexif/canon/mnote-canon-tag.c:91 -#, fuzzy msgid "Shot ISO" -msgstr "Short" +msgstr "" #: libexif/canon/mnote-canon-tag.c:92 msgid "Measured EV" @@ -1287,9 +1279,8 @@ msgid "Camera type" msgstr "ID aparatu" #: libexif/canon/mnote-canon-tag.c:110 -#, fuzzy msgid "Auto rotate" -msgstr "Auto bracket" +msgstr "" #: libexif/canon/mnote-canon-tag.c:111 msgid "ND filter" @@ -1476,9 +1467,8 @@ msgid "Reversed mono" msgstr "" #: libexif/exif-entry.c:399 -#, fuzzy msgid "Normal mono" -msgstr "Standard" +msgstr "" #: libexif/exif-entry.c:399 msgid "RGB" @@ -1491,7 +1481,7 @@ msgstr "Wzorzec" #: libexif/exif-entry.c:400 msgid "CMYK" -msgstr "" +msgstr "CMYK" #: libexif/exif-entry.c:400 msgid "YCbCr" @@ -1499,7 +1489,7 @@ msgstr "YCbCr" #: libexif/exif-entry.c:400 msgid "CieLAB" -msgstr "" +msgstr "CieLAB" #: libexif/exif-entry.c:402 msgid "Normal process" @@ -1611,12 +1601,10 @@ msgid "JPEG compression" msgstr "Kompresja JPEG" #: libexif/exif-entry.c:442 -#, fuzzy msgid "Deflate/ZIP compression" msgstr "Kompresja Deflate/ZIP" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "Kompresja PackBits" @@ -1972,9 +1960,9 @@ msgstr "(Redaktor)" #: libexif/exif-entry.c:719 libexif/exif-entry.c:788 libexif/exif-entry.c:808 #: libexif/exif-entry.c:846 -#, fuzzy, c-format +#, c-format msgid "%.02f EV" -msgstr "%.2f EV" +msgstr "%.02f EV" #: libexif/exif-entry.c:720 #, c-format @@ -1991,12 +1979,12 @@ msgid " sec." msgstr " sek." #: libexif/exif-entry.c:794 -#, fuzzy, c-format +#, c-format msgid " 1/%d sec.)" msgstr " 1/%d sek.)" #: libexif/exif-entry.c:796 -#, fuzzy, c-format +#, c-format msgid " %d sec.)" msgstr " %d sek.)" @@ -3668,12 +3656,10 @@ msgid "SHQ" msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 -#, fuzzy msgid "SQ1" msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 -#, fuzzy msgid "SQ2" msgstr "SQ2" Index: vi.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/vi.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- vi.po 4 May 2007 06:08:29 -0000 1.4 +++ vi.po 5 May 2007 09:25:14 -0000 1.5 @@ -398,9 +398,8 @@ msgid "400" msgstr "400" #: libexif/canon/mnote-canon-entry.c:158 -#, fuzzy msgid "800" -msgstr "100" +msgstr "800" #: libexif/canon/mnote-canon-entry.c:159 msgid "Default" @@ -515,9 +514,8 @@ msgid "A-DEP" msgstr "A-DEP" #: libexif/canon/mnote-canon-entry.c:189 -#, fuzzy msgid "M-DEP" -msgstr "A-DEP" +msgstr "M-DEP" #: libexif/canon/mnote-canon-entry.c:190 msgid "Canon EF 50mm f/1.8" @@ -750,9 +748,8 @@ msgstr "Äá»ng bá» FP Äã dùng" # Name: don't translate / Tên: Äừng dá»ch #: libexif/canon/mnote-canon-entry.c:248 -#, fuzzy msgid "Internal" -msgstr "Intel" +msgstr "" #: libexif/canon/mnote-canon-entry.c:249 #, fuzzy @@ -975,14 +972,14 @@ msgstr "%i (miligiây)" # Variable: don't translate / Biến: Äừng dá»ch #: libexif/canon/mnote-canon-entry.c:476 -#, fuzzy, c-format +#, c-format msgid "%i" msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 -#, fuzzy, c-format +#, c-format msgid "%.2f mm" -msgstr "%.2f EV" +msgstr "%.2f mm" #: libexif/canon/mnote-canon-entry.c:537 #, c-format @@ -1616,12 +1613,10 @@ msgid "JPEG compression" msgstr "Nén JPEG" #: libexif/exif-entry.c:442 -#, fuzzy msgid "Deflate/ZIP compression" msgstr "Nén Deflate/ZIP" #: libexif/exif-entry.c:443 -#, fuzzy msgid "PackBits compression" msgstr "Nén PackBits" @@ -1979,9 +1974,9 @@ msgstr "(Nhà soạn thảo)" #: libexif/exif-entry.c:719 libexif/exif-entry.c:788 libexif/exif-entry.c:808 #: libexif/exif-entry.c:846 -#, fuzzy, c-format +#, c-format msgid "%.02f EV" -msgstr "%.2f EV" +msgstr "%.02f EV" #: libexif/exif-entry.c:720 #, c-format @@ -1998,12 +1993,12 @@ msgid " sec." msgstr " giây" #: libexif/exif-entry.c:794 -#, fuzzy, c-format +#, c-format msgid " 1/%d sec.)" msgstr " 1/%d giây)" #: libexif/exif-entry.c:796 -#, fuzzy, c-format +#, c-format msgid " %d sec.)" msgstr " %d giây)" @@ -3640,12 +3635,10 @@ msgid "SHQ" msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 -#, fuzzy msgid "SQ1" msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 -#, fuzzy msgid "SQ2" msgstr "SQ2" |
From: Marcus M. <ma...@je...> - 2007-05-04 06:18:39
|
On Fri, May 04, 2007 at 06:08:32AM +0000, Jan Patera wrote: > Update of /cvsroot/libexif/libexif/po > In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30384 > > Modified Files: > de.po es.po fr.po pl.po ru.po vi.po > Log Message: > Corrected evident errors (introduced by the automated localization tools???) This is actually not the right way to fix .po files. Please note that all these entries are marked "fuzzy". Fuzzy means that the tool guessed the translations, and the string will not be translated in this case. If you clean up the fuzzy strings, also remove the "fuzzy" option above it. (if its in a lone line, remove the whole line, otherwise just the fuzzy and the , ) Better is BTW to use a PO editor, like kbabel. Ciao, Marcus |
From: Jan P. <pa...@us...> - 2007-05-04 06:08:34
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30384 Modified Files: de.po es.po fr.po pl.po ru.po vi.po Log Message: Corrected evident errors (introduced by the automated localization tools???) Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/es.po,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -d -r1.18 -r1.19 --- es.po 3 May 2007 13:47:19 -0000 1.18 +++ es.po 4 May 2007 06:08:28 -0000 1.19 @@ -969,7 +969,7 @@ msgstr "" #: libexif/canon/mnote-canon-entry.c:547 libexif/exif-entry.c:775 #, fuzzy, c-format msgid "1/%d" -msgstr "1/%d seg." +msgstr "1/%d" #: libexif/canon/mnote-canon-entry.c:549 libexif/exif-entry.c:778 #, c-format @@ -1590,7 +1590,7 @@ msgstr "Descomprimido" #: libexif/exif-entry.c:439 #, fuzzy msgid "LZW compression" -msgstr "compresión JPEG" +msgstr "compresión LZW" #: libexif/exif-entry.c:440 libexif/exif-entry.c:441 msgid "JPEG compression" @@ -1599,12 +1599,12 @@ msgstr "compresión JPEG" #: libexif/exif-entry.c:442 #, fuzzy msgid "Deflate/ZIP compression" -msgstr "compresión JPEG" +msgstr "compresión Deflate/ZIP" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "compresión JPEG" +msgstr "compresión PackBits" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -1919,7 +1919,7 @@ msgstr "Descalibrado" #: libexif/exif-entry.c:589 #, fuzzy, c-format msgid "Invalid size of entry (%i, expected %li x %i)." -msgstr "Cantidad de componentes no válida (%i, se esperaba %i)." +msgstr "Cantidad de componentes no válida (%i, se esperaba %li x %i)." #: libexif/exif-entry.c:622 msgid "Unsupported UNICODE string" @@ -1993,17 +1993,17 @@ msgstr " (equivalente 35: %d mm)" #: libexif/exif-entry.c:779 libexif/exif-entry.c:780 #, fuzzy msgid " sec." -msgstr "%d seg." +msgstr " seg." #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr "%d seg." +msgstr " 1/%d seg.)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr "%d seg." +msgstr " %d seg.)" #: libexif/exif-entry.c:809 #, c-format @@ -3868,7 +3868,7 @@ msgstr "" #: libexif/olympus/mnote-olympus-entry.c:571 #, fuzzy, c-format msgid "%li bytes unknown data: " -msgstr "%i bytes de datos desconocidos" +msgstr "%li bytes de datos desconocidos" #: libexif/olympus/mnote-olympus-tag.c:37 #, fuzzy Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/fr.po,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -d -r1.19 -r1.20 --- fr.po 3 May 2007 13:47:19 -0000 1.19 +++ fr.po 4 May 2007 06:08:28 -0000 1.20 @@ -970,7 +970,7 @@ msgstr "" #: libexif/canon/mnote-canon-entry.c:547 libexif/exif-entry.c:775 #, fuzzy, c-format msgid "1/%d" -msgstr "1/%d sec." +msgstr "1/%d" #: libexif/canon/mnote-canon-entry.c:549 libexif/exif-entry.c:778 #, c-format @@ -1591,7 +1591,7 @@ msgstr "Non compressé" #: libexif/exif-entry.c:439 #, fuzzy msgid "LZW compression" -msgstr "Compression JPEG" +msgstr "Compression LZW" #: libexif/exif-entry.c:440 libexif/exif-entry.c:441 msgid "JPEG compression" @@ -1600,12 +1600,12 @@ msgstr "Compression JPEG" #: libexif/exif-entry.c:442 #, fuzzy msgid "Deflate/ZIP compression" -msgstr "Compression JPEG" +msgstr "Compression Deflate/ZIP" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "Compression JPEG" +msgstr "Compression PackBits" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -1915,7 +1915,7 @@ msgstr "Non calibré" #: libexif/exif-entry.c:589 #, fuzzy, c-format msgid "Invalid size of entry (%i, expected %li x %i)." -msgstr "Nombre invalide de composants (%i, attendait %i)." +msgstr "Nombre invalide de composants (%i, attendait %li x %i)." #: libexif/exif-entry.c:622 msgid "Unsupported UNICODE string" @@ -1989,17 +1989,17 @@ msgstr " (équivalent 35mm: %d mm)" #: libexif/exif-entry.c:779 libexif/exif-entry.c:780 #, fuzzy msgid " sec." -msgstr "%d sec." +msgstr " sec." #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr "%d sec." +msgstr " 1/%d sec.)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr "%d sec." +msgstr "%d sec.)" #: libexif/exif-entry.c:809 #, c-format @@ -3638,7 +3638,7 @@ msgstr "" #: libexif/olympus/mnote-olympus-entry.c:571 #, fuzzy, c-format msgid "%li bytes unknown data: " -msgstr "%i de données inconnues" +msgstr "%li de données inconnues" #: libexif/olympus/mnote-olympus-tag.c:37 #, fuzzy Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/ru.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- ru.po 3 May 2007 13:47:19 -0000 1.3 +++ ru.po 4 May 2007 06:08:29 -0000 1.4 @@ -967,7 +967,7 @@ msgstr "" #: libexif/canon/mnote-canon-entry.c:476 #, fuzzy, c-format msgid "%i" -msgstr "%li" +msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 #, fuzzy, c-format @@ -1590,12 +1590,12 @@ msgstr "СжаÑие JPEG" #: libexif/exif-entry.c:442 #, fuzzy msgid "Deflate/ZIP compression" -msgstr "СжаÑие LZW" +msgstr "СжаÑие Deflate/ZIP" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "СжаÑие JPEG" +msgstr "СжаÑие PackBits" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -1959,12 +1959,12 @@ msgstr " Ñек." #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr " Ñек." +msgstr " 1/%d Ñек.)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr " Ñек." +msgstr " %d Ñек.)" #: libexif/exif-entry.c:809 #, c-format @@ -3474,12 +3474,12 @@ msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 #, fuzzy msgid "SQ1" -msgstr "SQ" +msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 #, fuzzy msgid "SQ2" -msgstr "SQ" +msgstr "SQ2" #: libexif/olympus/mnote-olympus-entry.c:137 #: libexif/olympus/mnote-olympus-entry.c:161 Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.31 retrieving revision 1.32 diff -u -p -d -r1.31 -r1.32 --- de.po 3 May 2007 13:47:19 -0000 1.31 +++ de.po 4 May 2007 06:08:28 -0000 1.32 @@ -918,7 +918,7 @@ msgstr "%i (ms)" #: libexif/canon/mnote-canon-entry.c:476 #, fuzzy, c-format msgid "%i" -msgstr "%li" +msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 #, c-format @@ -1459,7 +1459,7 @@ msgstr "High gain up" #: libexif/exif-entry.c:412 msgid "Low gain down" -msgstr "Low gain up" +msgstr "Low gain down" #: libexif/exif-entry.c:412 msgid "High gain down" @@ -1533,7 +1533,7 @@ msgstr "Deflate/ZIP Kompression" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "JPEG Kompression" +msgstr "PackBits Kompression" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -1902,12 +1902,12 @@ msgstr "sek." #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr "sek." +msgstr "1/%dsek.)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr "sek." +msgstr " %dsek.)" #: libexif/exif-entry.c:809 #, c-format @@ -3537,12 +3537,12 @@ msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 #, fuzzy msgid "SQ1" -msgstr "SQ" +msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 #, fuzzy msgid "SQ2" -msgstr "SQ" +msgstr "SQ2" #: libexif/olympus/mnote-olympus-entry.c:137 #: libexif/olympus/mnote-olympus-entry.c:161 Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/pl.po,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- pl.po 3 May 2007 13:47:19 -0000 1.5 +++ pl.po 4 May 2007 06:08:28 -0000 1.6 @@ -973,7 +973,7 @@ msgstr "%i (ms)" #: libexif/canon/mnote-canon-entry.c:476 #, fuzzy, c-format msgid "%i" -msgstr "%li" +msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 #, fuzzy, c-format @@ -1547,7 +1547,7 @@ msgstr "Niskie wzmocnienie na dole" #: libexif/exif-entry.c:412 msgid "High gain down" -msgstr "Wysokie wzmocnienie na górze" +msgstr "Wysokie wzmocnienie na dole" #: libexif/exif-entry.c:414 msgid "Low saturation" @@ -1613,12 +1613,12 @@ msgstr "Kompresja JPEG" #: libexif/exif-entry.c:442 #, fuzzy msgid "Deflate/ZIP compression" -msgstr "Kompresja LZW" +msgstr "Kompresja Deflate/ZIP" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "Kompresja JPEG" +msgstr "Kompresja PackBits" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -1993,12 +1993,12 @@ msgstr " sek." #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr " sek." +msgstr " 1/%d sek.)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr " sek." +msgstr " %d sek.)" #: libexif/exif-entry.c:809 #, c-format @@ -3670,12 +3670,12 @@ msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 #, fuzzy msgid "SQ1" -msgstr "SQ" +msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 #, fuzzy msgid "SQ2" -msgstr "SQ" +msgstr "SQ2" #: libexif/olympus/mnote-olympus-entry.c:137 #: libexif/olympus/mnote-olympus-entry.c:161 Index: vi.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/vi.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- vi.po 3 May 2007 13:47:19 -0000 1.3 +++ vi.po 4 May 2007 06:08:29 -0000 1.4 @@ -977,7 +977,7 @@ msgstr "%i (miligiây)" #: libexif/canon/mnote-canon-entry.c:476 #, fuzzy, c-format msgid "%i" -msgstr "%li" +msgstr "%i" #: libexif/canon/mnote-canon-entry.c:515 #, fuzzy, c-format @@ -1618,12 +1618,12 @@ msgstr "Nén JPEG" #: libexif/exif-entry.c:442 #, fuzzy msgid "Deflate/ZIP compression" -msgstr "Nén LZW" +msgstr "Nén Deflate/ZIP" #: libexif/exif-entry.c:443 #, fuzzy msgid "PackBits compression" -msgstr "Nén JPEG" +msgstr "Nén PackBits" #: libexif/exif-entry.c:447 libexif/olympus/mnote-olympus-entry.c:118 #: libexif/pentax/mnote-pentax-entry.c:85 @@ -2000,12 +2000,12 @@ msgstr " giây" #: libexif/exif-entry.c:794 #, fuzzy, c-format msgid " 1/%d sec.)" -msgstr " giây" +msgstr " 1/%d giây)" #: libexif/exif-entry.c:796 #, fuzzy, c-format msgid " %d sec.)" -msgstr " giây" +msgstr " %d giây)" #: libexif/exif-entry.c:809 #, c-format @@ -3642,12 +3642,12 @@ msgstr "SHQ" #: libexif/olympus/mnote-olympus-entry.c:133 #, fuzzy msgid "SQ1" -msgstr "SQ" +msgstr "SQ1" #: libexif/olympus/mnote-olympus-entry.c:134 #, fuzzy msgid "SQ2" -msgstr "SQ" +msgstr "SQ2" #: libexif/olympus/mnote-olympus-entry.c:137 #: libexif/olympus/mnote-olympus-entry.c:161 |
From: Marcus M. <mar...@us...> - 2007-05-03 13:47:26
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv21414 Modified Files: de.po es.po fr.po pl.po ru.po vi.po Log Message: make update-po Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/es.po,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -d -r1.17 -r1.18 --- es.po 17 Oct 2006 08:09:31 -0000 1.17 +++ es.po 3 May 2007 13:47:19 -0000 1.18 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2005-03-12 05:43+0100\n" "Last-Translator: Fabian Mandelbaum <fa...@ma...>\n" "Language-Team: Spanish <es...@li...>\n" @@ -37,18 +37,18 @@ msgid "Invalid number of components (%i, msgstr "Cantidad de componentes no válida (%i, se esperaba %i)." [...1183 lines suppressed...] +#: libexif/olympus/mnote-olympus-entry.c:509 msgid "Automatic" msgstr "" -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 #, fuzzy msgid "Manual: Unknown" msgstr "desconocido" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, fuzzy, c-format msgid "%li bytes unknown data: " msgstr "%i bytes de datos desconocidos" Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/fr.po,v retrieving revision 1.18 retrieving revision 1.19 diff -u -p -d -r1.18 -r1.19 --- fr.po 17 Oct 2006 08:09:31 -0000 1.18 +++ fr.po 3 May 2007 13:47:19 -0000 1.19 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2005-03-12 05:42+0100\n" "Last-Translator: Arnaud Launay <as...@la...>\n" "Language-Team: Français <tr...@tr...>\n" @@ -37,18 +37,18 @@ msgid "Invalid number of components (%i, msgstr "Nombre invalide de composants (%i, attendait %i)." [...1179 lines suppressed...] +#: libexif/olympus/mnote-olympus-entry.c:509 msgid "Automatic" msgstr "" -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 #, fuzzy msgid "Manual: Unknown" msgstr "inconnu" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, fuzzy, c-format msgid "%li bytes unknown data: " msgstr "%i de données inconnues" Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/ru.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- ru.po 17 Oct 2006 08:09:31 -0000 1.2 +++ ru.po 3 May 2007 13:47:19 -0000 1.3 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2006-01-12 13:25+0300\n" "Last-Translator: Alexandre Prokoudine <ale...@gm...>\n" "Language-Team: Russian <ru...@li...>\n" @@ -40,18 +40,18 @@ msgid "Invalid number of components (%i, msgstr "ÐекоÑÑекÑное ÑиÑло компоненÑов (%i, ожидалоÑÑ %i или %i)." [...1143 lines suppressed...] -#: libexif/olympus/mnote-olympus-entry.c:506 +#: libexif/olympus/mnote-olympus-entry.c:509 msgid "Automatic" msgstr "ÐвÑомаÑиÑеÑкий" -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 msgid "Manual: Unknown" msgstr "Ð ÑÑной: ÐеизвеÑÑно" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "One-touch" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, c-format msgid "%li bytes unknown data: " msgstr "%li Ð±Ð°Ð¹Ñ Ð½ÐµÐ¸Ð·Ð²ÐµÑÑнÑÑ Ð´Ð°Ð½Ð½ÑÑ : " Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.30 retrieving revision 1.31 diff -u -p -d -r1.30 -r1.31 --- de.po 17 Oct 2006 15:04:45 -0000 1.30 +++ de.po 3 May 2007 13:47:19 -0000 1.31 @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2006-10-17 17:03+0200\n" "Last-Translator: \n" "Language-Team: <de...@li...>\n" @@ -41,18 +41,18 @@ msgid "Invalid number of components (%i, msgstr "Ungültige Anzahl von Komponenten (%i, %i oder %i wurden erwartet)." [...1231 lines suppressed...] -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 msgid "Manual: Unknown" msgstr "Manuell: Unbekannt" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "One-touch" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, c-format msgid "%li bytes unknown data: " msgstr "%li Byte unbekannte Daten: " @@ -3941,4 +4028,3 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER_de #~ msgid "Subject distance" #~ msgstr "Entfernung des Objekts" - Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/pl.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- pl.po 17 Oct 2006 08:09:31 -0000 1.4 +++ pl.po 3 May 2007 13:47:19 -0000 1.5 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif 0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2006-01-05 18:20+0100\n" "Last-Translator: Jakub Bogusz <qb...@pl...>\n" "Language-Team: Polish <tra...@li...>\n" @@ -36,18 +36,18 @@ msgid "Invalid number of components (%i, msgstr "BÅÄdna liczba skÅadowych (%i, a oczekiwano %i lub %i)." [...1160 lines suppressed...] -#: libexif/olympus/mnote-olympus-entry.c:506 +#: libexif/olympus/mnote-olympus-entry.c:509 msgid "Automatic" msgstr "Automatyczny" -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 msgid "Manual: Unknown" msgstr "RÄczny: nieznany" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "One-touch" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, c-format msgid "%li bytes unknown data: " msgstr "%li bajtów nieznanych danych: " Index: vi.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/vi.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- vi.po 17 Oct 2006 08:09:31 -0000 1.2 +++ vi.po 3 May 2007 13:47:19 -0000 1.3 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif-0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-16 13:49+0200\n" +"POT-Creation-Date: 2007-05-03 15:46+0200\n" "PO-Revision-Date: 2006-02-11 22:57+1030\n" "Last-Translator: Clytie Siddall <cl...@ri...>\n" "Language-Team: Vietnamese <gno...@li...>\n" @@ -37,18 +37,18 @@ msgid "Invalid number of components (%i, msgstr "Sá» thà nh phần không hợp lá» (%i, còn ngá» %i hay %i)." [...1167 lines suppressed...] -#: libexif/olympus/mnote-olympus-entry.c:506 +#: libexif/olympus/mnote-olympus-entry.c:509 msgid "Automatic" msgstr "Tá»± Äá»ng" -#: libexif/olympus/mnote-olympus-entry.c:539 +#: libexif/olympus/mnote-olympus-entry.c:542 msgid "Manual: Unknown" msgstr "Thá»§ công: không rõ" -#: libexif/olympus/mnote-olympus-entry.c:545 +#: libexif/olympus/mnote-olympus-entry.c:548 msgid "One-touch" msgstr "Bấm ÄÆ¡n" -#: libexif/olympus/mnote-olympus-entry.c:568 +#: libexif/olympus/mnote-olympus-entry.c:571 #, c-format msgid "%li bytes unknown data: " msgstr "%li byte dữ liá»u không rõ : " |
From: Jan P. <pa...@us...> - 2007-04-26 17:01:40
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12166 Modified Files: mnote-olympus-entry.c Log Message: Added value 4 (RAW) of MNOTE_OLYMPUS_TAG_QUALITY Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -d -r1.27 -r1.28 --- mnote-olympus-entry.c 14 Feb 2007 07:11:16 -0000 1.27 +++ mnote-olympus-entry.c 26 Apr 2007 17:01:36 -0000 1.28 @@ -129,6 +129,7 @@ static struct { { {1, N_("SQ")}, {2, N_("HQ")}, {3, N_("SHQ")}, + {4, N_("RAW")}, {5, N_("SQ1")}, {6, N_("SQ2")}, {0, NULL}}}, |
From: Jan P. <pa...@us...> - 2007-04-26 17:00:53
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11906 Modified Files: exif-entry.c Log Message: Added value 8 of EXIF_TAG_FLASH: seen from Olympus E-330 Index: exif-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.c,v retrieving revision 1.95 retrieving revision 1.96 diff -u -p -d -r1.95 -r1.96 --- exif-entry.c 17 Mar 2007 11:41:52 -0000 1.95 +++ exif-entry.c 26 Apr 2007 17:00:26 -0000 1.96 @@ -493,6 +493,7 @@ static struct { {0x0005, {N_("Strobe return light not detected."), N_("W/o strobe"), NULL}}, {0x0007, {N_("Strobe return light detected."), N_("W. strobe"), NULL}}, + {0x0008, {N_("Flash did not fire, compulsory flash mode"), NULL}}, /* Olympus E-330 */ {0x0009, {N_("Flash fired, compulsory flash mode"), NULL}}, {0x000d, {N_("Flash fired, compulsory flash mode, return light " "not detected."), NULL}}, |
From: Jan P. <pa...@us...> - 2007-04-24 04:50:01
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11457 Modified Files: ChangeLog Log Message: Added hook for ISO settings of Canon PowerShot S3 IS - unlike other Canons, it doesn't use index into LUT, but direct ISO value ored w/ 0x4000 Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.239 retrieving revision 1.240 diff -u -p -d -r1.239 -r1.240 --- ChangeLog 25 Feb 2007 16:12:47 -0000 1.239 +++ ChangeLog 24 Apr 2007 04:49:58 -0000 1.240 @@ -1,19 +1,39 @@ +2007-04-24 Jan Patera <pa...@us...> + + * libexif/canon/mnote-canon-entry.c: Added hook for ISO settings of Canon + PowerShot S3 IS - unlike other Canons, it doesn't use index into LUT, but + direct ISO value ored w/ 0x4000 + +2007-03-17 Jan Patera <pa...@us...> + + * libexif/exif-entry.c: Fixed values of EXIF_TAG_PHOTOMETRIC_INTERPRETATION, + updated values of EXIF_TAG_COMPRESSION. + 2007-02-25 Lutz Mueller <lu...@us...> - Suggestions by Jef Driesen <jef...@ho...>: + Suggestions by Jef Driesen <jef...@ho...>: - * libexif/exif-entry.c: Correct formulas regarding to APEX values. + * libexif/exif-entry.c: Correct formulas regarding to APEX values. + +2007-02-14 Jan Patera <pa...@us...> + + * libexif/olympus/mnote-olympus-entry.c: + Updated MNOTE_OLYMPUS_TAG_QUALITY & MNOTE_OLYMPUS_TAG_VERSION 2006-10-03 Marcus Meissner <ma...@je...> * libexif/olympus/*.[ch]: Added several Nikon Makernotes entries, extracted from exiftool. +2006-09-19 Jan Patera <pa...@us...> + + * libexif/exif-loader.c: exif_loader_write() skips non-EXIF APP1 markers + 2006-09-17 Lutz Mueller <lu...@us...> - Patch by Jef Driesen <jef...@ho...>: + Patch by Jef Driesen <jef...@ho...>: - * libexif/canon/*: Improve support for canon maker notes. + * libexif/canon/*: Improve support for canon maker notes. 2006-05-05 Jan Patera <pa...@us...> * libexif/exif-content.c: fixed bug #1471060: wasted space in |
From: Jan P. <pa...@us...> - 2007-04-24 04:48:34
|
Update of /cvsroot/libexif/libexif/libexif/canon In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10897/canon Modified Files: mnote-canon-entry.c Log Message: Added hook for ISO settings of Canon PowerShot S3 IS - unlike other Canons, it doesn't use index into LUT, but direct ISO value ored w/ 0x4000 Index: mnote-canon-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/canon/mnote-canon-entry.c,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -d -r1.19 -r1.20 --- mnote-canon-entry.c 21 Sep 2006 05:45:14 -0000 1.19 +++ mnote-canon-entry.c 24 Apr 2007 04:48:29 -0000 1.20 @@ -470,6 +470,15 @@ mnote_canon_entry_get_value (const Mnote if (!vs) break; snprintf (val, maxlen, _("%i (ms)"), vs * 100); break; + case 15: + if (((vs & 0xC000) == 0x4000) && (vs != 0x7FFF)) { + /* Canon S3 IS - directly specified value */ + snprintf (val, maxlen, _("%i"), vs & ~0x4000); + } else { + /* Standard Canon - index into lookup table */ + canon_search_table_value (entries_settings_1, t, vs, val, maxlen); + } + break; case 22: case 23: case 24: |
From: Jan P. <pa...@us...> - 2007-03-18 12:59:55
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22305/libexif Modified Files: exif-entry.c Log Message: ibexif/exif-entry.c: Fixed values of EXIF_TAG_PHOTOMETRIC_INTERPRETATION, updated values of EXIF_TAG_COMPRESSION Index: exif-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.c,v retrieving revision 1.94 retrieving revision 1.95 diff -u -p -d -r1.94 -r1.95 --- exif-entry.c 25 Feb 2007 16:12:48 -0000 1.94 +++ exif-entry.c 17 Mar 2007 11:41:52 -0000 1.95 @@ -395,7 +395,9 @@ static struct { N_("right - bottom"), N_("left - bottom"), NULL}}, { EXIF_TAG_YCBCR_POSITIONING, { "", N_("centered"), N_("co-sited"), NULL}}, - { EXIF_TAG_PHOTOMETRIC_INTERPRETATION, {"", N_("RGB"), N_("YCbCr"), NULL}}, + { EXIF_TAG_PHOTOMETRIC_INTERPRETATION, + {N_("Reversed mono"), N_("Normal mono"), N_("RGB"), N_("Palette"), "", + N_("CMYK"), N_("YCbCr"), "", N_("CieLAB"), NULL}}, { EXIF_TAG_CUSTOM_RENDERED, { N_("Normal process"), N_("Custom process"), NULL}}, { EXIF_TAG_EXPOSURE_MODE, @@ -436,7 +438,9 @@ static struct { { {1, {N_("Uncompressed"), NULL}}, {5, {N_("LZW compression"), NULL}}, {6, {N_("JPEG compression"), NULL}}, + {7, {N_("JPEG compression"), NULL}}, {8, {N_("Deflate/ZIP compression"), NULL}}, + {32773, {N_("PackBits compression"), NULL}}, {0, {NULL}}}}, { EXIF_TAG_LIGHT_SOURCE, { { 0, {N_("Unknown"), NULL}}, |
From: Lutz M. <lu...@us...> - 2007-02-25 16:12:52
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23741/libexif Modified Files: exif-entry.c Log Message: 2007-02-25 Lutz Mueller <lu...@us...> Suggestions by Jef Driesen <jef...@ho...>: * libexif/exif-entry.c: Correct formulas regarding to APEX values. Index: exif-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-entry.c,v retrieving revision 1.93 retrieving revision 1.94 diff -u -p -d -r1.93 -r1.94 --- exif-entry.c 2 Mar 2006 20:29:19 -0000 1.93 +++ exif-entry.c 25 Feb 2007 16:12:48 -0000 1.94 @@ -705,13 +705,16 @@ exif_entry_get_value (ExifEntry *e, char (float) v_rat.denominator); break; case EXIF_TAG_APERTURE_VALUE: + case EXIF_TAG_MAX_APERTURE_VALUE: CF (e, EXIF_FORMAT_RATIONAL, val, maxlen); CC (e, 1, val, maxlen); v_rat = exif_get_rational (e->data, o); if (!v_rat.denominator) return val; - snprintf (val, maxlen, "f/%.01f", - pow (2 , ((float) v_rat.numerator / - (float) v_rat.denominator) / 2.)); + d = (double) v_rat.numerator / (double) v_rat.denominator; + snprintf (val, maxlen, _("%.02f EV"), d); + snprintf (b, sizeof (b), _(" (f/%.01f)"), pow (2, d / 2.)); + if (maxlen > strlen (val) + strlen (b)) + strncat (val, b, maxlen - strlen (val) - 1); break; case EXIF_TAG_FOCAL_LENGTH: CF (e, EXIF_FORMAT_RATIONAL, val, maxlen); @@ -776,23 +779,32 @@ exif_entry_get_value (ExifEntry *e, char CC (e, 1, val, maxlen); v_srat = exif_get_srational (e->data, o); if (!v_srat.denominator) return val; - snprintf (val, maxlen, "%.0f/%.0f", (float) v_srat.numerator, - (float) v_srat.denominator); - if (maxlen > strlen (val) + strlen (_(" sec."))) - strncat (val, _(" sec."), maxlen - strlen (val) - 1); - snprintf (b, sizeof (b), " (APEX: %i)", - (int) pow (sqrt(2), (float) v_srat.numerator / - (float) v_srat.denominator)); + d = (double) v_srat.numerator / (double) v_srat.denominator; + snprintf (val, maxlen, _("%.02f EV"), d); + snprintf (b, sizeof (b), " (APEX: %i)", (int) pow (sqrt(2), d)); if (maxlen > strlen (val) + strlen (b)) strncat (val, b, maxlen - strlen (val) - 1); + d = 1. / pow (2, d); + if (d < 1) + snprintf (b, sizeof (b), _(" 1/%d sec.)"), (int) (1. / d)); + else + snprintf (b, sizeof (b), _(" %d sec.)"), (int) d); + if (maxlen > strlen (val) + strlen (b)) { + val[strlen (val) - 1] = ','; + strncat (val, b, maxlen - strlen (val) - 1); + } break; case EXIF_TAG_BRIGHTNESS_VALUE: CF (e, EXIF_FORMAT_SRATIONAL, val, maxlen); CC (e, 1, val, maxlen); v_srat = exif_get_srational (e->data, o); - snprintf (val, maxlen, "%i/%i", (int) v_srat.numerator, - (int) v_srat.denominator); - /* FIXME: How do I calculate the APEX value? */ + if (!v_srat.denominator) return val; + d = (double) v_srat.numerator / (double) v_srat.denominator; + snprintf (val, maxlen, _("%.02f EV"), d); + snprintf (b, sizeof (b), _(" (%.02f cd/m^2)"), + 1. / (M_PI * 0.3048 * 0.3048) * pow (2, d)); + if (maxlen > strlen (val) + strlen (b)) + strncat (val, b, maxlen - strlen (val) - 1); break; case EXIF_TAG_FILE_SOURCE: CF (e, EXIF_FORMAT_UNDEFINED, val, maxlen); @@ -825,10 +837,8 @@ exif_entry_get_value (ExifEntry *e, char CC (e, 1, val, maxlen); v_srat = exif_get_srational (e->data, o); if (!v_srat.denominator) return val; - snprintf (val, maxlen, "%s%.01f", - v_srat.denominator * v_srat.numerator > 0 ? "+" : "", - (double) v_srat.numerator / - (double) v_srat.denominator); + d = (double) v_srat.numerator / (double) v_srat.denominator; + snprintf (val, maxlen, _("%.02f EV"), d); break; case EXIF_TAG_YCBCR_SUB_SAMPLING: CF (e, EXIF_FORMAT_SHORT, val, maxlen); |
From: Lutz M. <lu...@us...> - 2007-02-25 16:12:51
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23741 Modified Files: ChangeLog Log Message: 2007-02-25 Lutz Mueller <lu...@us...> Suggestions by Jef Driesen <jef...@ho...>: * libexif/exif-entry.c: Correct formulas regarding to APEX values. Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.238 retrieving revision 1.239 diff -u -p -d -r1.238 -r1.239 --- ChangeLog 3 Oct 2006 13:50:23 -0000 1.238 +++ ChangeLog 25 Feb 2007 16:12:47 -0000 1.239 @@ -1,3 +1,9 @@ +2007-02-25 Lutz Mueller <lu...@us...> + + Suggestions by Jef Driesen <jef...@ho...>: + + * libexif/exif-entry.c: Correct formulas regarding to APEX values. + 2006-10-03 Marcus Meissner <ma...@je...> * libexif/olympus/*.[ch]: Added several Nikon Makernotes |
From: Jan P. <pa...@us...> - 2007-02-14 07:11:21
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6456/libexif/olympus Modified Files: mnote-olympus-entry.c Log Message: Updated MNOTE_OLYMPUS_TAG_QUALITY & MNOTE_OLYMPUS_TAG_VERSION Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -d -r1.26 -r1.27 --- mnote-olympus-entry.c 3 Oct 2006 19:42:16 -0000 1.26 +++ mnote-olympus-entry.c 14 Feb 2007 07:11:16 -0000 1.27 @@ -54,7 +54,7 @@ #define CC2(number,t1,t2,v,maxlen) \ { \ - if ((number != t1) && (number != t2)) { \ + if ((number < t1) || (number > t2)) { \ snprintf (v, maxlen, \ _("Invalid number of components (%i, " \ "expected %i or %i)."), (int) number, \ @@ -129,6 +129,8 @@ static struct { { {1, N_("SQ")}, {2, N_("HQ")}, {3, N_("SHQ")}, + {5, N_("SQ1")}, + {6, N_("SQ2")}, {0, NULL}}}, { MNOTE_OLYMPUS_TAG_MACRO, EXIF_FORMAT_SHORT, { {0, N_("No")}, |
From: Marcus M. <mar...@us...> - 2006-10-17 15:04:48
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv20479 Modified Files: de.po Log Message: udpated german translation Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.29 retrieving revision 1.30 diff -u -p -d -r1.29 -r1.30 --- de.po 17 Oct 2006 08:09:31 -0000 1.29 +++ de.po 17 Oct 2006 15:04:45 -0000 1.30 @@ -1,5 +1,4 @@ # translation of de.po to -# translation of de.po to deutsch # German Translation # Copyright: # Free Software Foundation, Inc., 2002 @@ -12,13 +11,13 @@ msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-10-16 13:49+0200\n" -"PO-Revision-Date: 2006-01-13 08:54+0100\n" -"Last-Translator: Marcus Meissner <ma...@je...>\n" [...1294 lines suppressed...] +msgstr "BilddatengrõÃe" #: libexif/olympus/mnote-olympus-tag.c:84 msgid "Total number of pictures taken" @@ -3884,9 +3758,8 @@ msgid "Optimize Image" msgstr "Bild optimieren" #: libexif/olympus/mnote-olympus-tag.c:88 -#, fuzzy msgid "Vari Program" -msgstr "Programm" +msgstr "Vari Programm" #: libexif/olympus/mnote-olympus-tag.c:89 msgid "Capture Editor Data" @@ -4068,3 +3941,4 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER_de #~ msgid "Subject distance" #~ msgstr "Entfernung des Objekts" + |
From: Marcus M. <mar...@us...> - 2006-10-17 08:09:35
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv20641 Modified Files: de.po es.po fr.po pl.po ru.po vi.po Log Message: make update-po ... massive changes Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/es.po,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -d -r1.16 -r1.17 --- es.po 14 Jul 2005 22:13:43 -0000 1.16 +++ es.po 17 Oct 2006 08:09:31 -0000 1.17 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-07-11 22:36+0200\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2005-03-12 05:43+0100\n" "Last-Translator: Fabian Mandelbaum <fa...@ma...>\n" "Language-Team: Spanish <es...@li...>\n" @@ -16,6 +16,1281 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...3360 lines suppressed...] -# we only test the de locale as a proof-of-concept example. There is -# no need for anybody to translate it. -#: test/nls/test-nls.c:19 test/nls/test-nls.c:22 test/nls/test-nls.c:23 -msgid "[DO_NOT_TRANSLATE_THIS_MARKER]" -msgstr "" +#~ msgid " / Subject Distance (mm) : %u" +#~ msgstr "Distancia del sujeto" #~ msgid "center-weight" #~ msgstr "peso centrado" @@ -3224,9 +4193,6 @@ msgstr "" #~ msgid "manual" #~ msgstr "manual" -#~ msgid "aperture" -#~ msgstr "apertura" - #~ msgid "portrait" #~ msgstr "retrato" Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/fr.po,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -d -r1.17 -r1.18 --- fr.po 14 Jul 2005 22:13:58 -0000 1.17 +++ fr.po 17 Oct 2006 08:09:31 -0000 1.18 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-07-11 22:36+0200\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2005-03-12 05:42+0100\n" "Last-Translator: Arnaud Launay <as...@la...>\n" "Language-Team: Français <tr...@tr...>\n" @@ -16,6 +16,1282 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...3332 lines suppressed...] -# we only test the de locale as a proof-of-concept example. There is -# no need for anybody to translate it. -#: test/nls/test-nls.c:19 test/nls/test-nls.c:22 test/nls/test-nls.c:23 -msgid "[DO_NOT_TRANSLATE_THIS_MARKER]" -msgstr "" +#~ msgid " / Subject Distance (mm) : %u" +#~ msgstr "Distance au sujet" #~ msgid "center-weight" #~ msgstr "Centre pondéré" @@ -2997,9 +3962,6 @@ msgstr "" #~ msgid "manual" #~ msgstr "manuel" -#~ msgid "aperture" -#~ msgstr "ouverture" - #~ msgid "portrait" #~ msgstr "portrait" Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/ru.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- ru.po 13 Jan 2006 07:34:39 -0000 1.1 +++ ru.po 17 Oct 2006 08:09:31 -0000 1.2 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-12-27 22:18+0100\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2006-01-12 13:25+0300\n" "Last-Translator: Alexandre Prokoudine <ale...@gm...>\n" "Language-Team: Russian <ru...@li...>\n" @@ -16,694 +16,1276 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...2983 lines suppressed...] +#~ msgid "none (manual focus)" +#~ msgstr "ÐиÑего (ÑÑÑÐ½Ð°Ñ ÑокÑÑиÑовка)" + +#~ msgid "right" +#~ msgstr "ÐÑаваÑ" + +#~ msgid "External E-TTL" +#~ msgstr "ÐнеÑнÑÑ E-TTL" + +#~ msgid "Flourescent" +#~ msgstr "ФлÑоÑеÑÑенÑÐ½Ð°Ñ Ð»Ð°Ð¼Ð¿Ð°" + +#~ msgid " (1 available focus point)" +#~ msgstr " (1 доÑÑÑÐ¿Ð½Ð°Ñ ÑоÑка ÑокÑÑиÑовки)" + +#~ msgid " (%u available focus points)" +#~ msgstr " (доÑÑÑпнÑÑ Ð¸ÑÑек ÑокÑÑиÑовки - %u)" + +#~ msgid "Subject distance" +#~ msgstr "РаÑÑÑоÑние до обÑекÑа" Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -d -r1.28 -r1.29 --- de.po 13 Jan 2006 07:55:37 -0000 1.28 +++ de.po 17 Oct 2006 08:09:31 -0000 1.29 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-01-13 08:51+0100\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2006-01-13 08:54+0100\n" "Last-Translator: Marcus Meissner <ma...@je...>\n" "Language-Team: <de...@li...>\n" @@ -21,692 +21,1292 @@ msgstr "" "X-Generator: KBabel 1.10.2\n" "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n" [...2777 lines suppressed...] + +#~ msgid "Flourescent" +#~ msgstr "Neonlicht" + +#~ msgid " (1 available focus point)" +#~ msgid_plural " (%u available focus points)" +#~ msgstr[0] " (1 vorhandener Fokuspunkt)" +#~ msgstr[1] " (%u vorhandene Fokuspunkte)" + +#~ msgid "Zoomed resolution" +#~ msgstr "gezoomte Auflösung" + +#~ msgid "Zoomed resolution base" +#~ msgstr "Basis der gezoomten Auflösung" + +#~ msgid "Flash bias" +#~ msgstr "Blitzabweichung" + +#~ msgid "Subject distance" +#~ msgstr "Entfernung des Objekts" Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/pl.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- pl.po 14 Jan 2006 15:04:13 -0000 1.3 +++ pl.po 17 Oct 2006 08:09:31 -0000 1.4 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif 0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-12-27 22:18+0100\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2006-01-05 18:20+0100\n" "Last-Translator: Jakub Bogusz <qb...@pl...>\n" "Language-Team: Polish <tra...@li...>\n" @@ -15,692 +15,1289 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...4192 lines suppressed...] +#~ msgid "Flourescent" +#~ msgstr "Fluorescencyjny" + +#~ msgid " (1 available focus point)" +#~ msgstr " (1 dostÄpny punkt ogniskowania)" + +#~ msgid " (%u available focus points)" +#~ msgstr " (%u dostÄpne punkty ogniskowania)" + +#~ msgid "Zoomed resolution" +#~ msgstr "PowiÄkszona rozdzielczoÅÄ" + +#~ msgid "Zoomed resolution base" +#~ msgstr "Podstawa powiÄkszonej rozdzielczoÅci" + +#~ msgid "Flash bias" +#~ msgstr "Wyprzedzenie flesza" + +#~ msgid "Subject distance" +#~ msgstr "OdlegÅoÅÄ obiektu" Index: vi.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/vi.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- vi.po 18 Feb 2006 20:39:37 -0000 1.1 +++ vi.po 17 Oct 2006 08:09:31 -0000 1.2 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif-0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-12-27 22:18+0100\n" +"POT-Creation-Date: 2006-10-16 13:49+0200\n" "PO-Revision-Date: 2006-02-11 22:57+1030\n" "Last-Translator: Clytie Siddall <cl...@ri...>\n" "Language-Team: Vietnamese <gno...@li...>\n" @@ -16,692 +16,1292 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0\n" "X-Generator: LocFactoryEditor 1.6b36\n" [...4135 lines suppressed...] +#~ msgid "Flourescent" +#~ msgstr "Huỳnh quang" + +#~ msgid " (1 available focus point)" +#~ msgstr " (2 Äiá»m tiêu Äiá»m sẵn sà ng)" + +#~ msgid " (%u available focus points)" +#~ msgstr " (%u Äiá»m tiêu Äiá»m sẵn sà ng)" + +#~ msgid "Zoomed resolution" +#~ msgstr "Äá» phân giải Äã phóng to" + +#~ msgid "Zoomed resolution base" +#~ msgstr "CÆ¡ bản Äá» phân giải Äã phóng to" + +#~ msgid "Flash bias" +#~ msgstr "Khuynh hưá»ng Äèn nháy" + +#~ msgid "Subject distance" +#~ msgstr "Khoảng cách chá»§ thá»" |
From: Marcus M. <mar...@us...> - 2006-10-16 09:56:55
|
Update of /cvsroot/libexif/libexif/libexif/canon In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30848 Modified Files: mnote-canon-tag.c Log Message: also do not translate name in sub entries. Index: mnote-canon-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/canon/mnote-canon-tag.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -d -r1.10 -r1.11 --- mnote-canon-tag.c 16 Oct 2006 09:43:14 -0000 1.10 +++ mnote-canon-tag.c 16 Oct 2006 09:56:50 -0000 1.11 @@ -122,7 +122,7 @@ mnote_canon_tag_get_name (MnoteCanonTag unsigned int i; for (i = 0; i < sizeof (table) / sizeof (table[0]); i++) - if (table[i].tag == t) return (table[i].name); /* do not translate */ + if (table[i].tag == t) return table[i].name; /* do not translate */ return NULL; } @@ -132,7 +132,7 @@ mnote_canon_tag_get_name_sub (MnoteCanon unsigned int i; for (i = 0; i < sizeof (table_sub) / sizeof (table_sub[0]); i++) if ((table_sub[i].tag == t) && (table_sub[i].subtag == s)) - return _(table_sub[i].name); + return table_sub[i].name; return mnote_canon_tag_get_name (t); } |
From: Marcus M. <mar...@us...> - 2006-10-16 09:43:18
|
Update of /cvsroot/libexif/libexif/libexif/canon In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25800 Modified Files: mnote-canon-tag.c Log Message: do not translate the "name" entry, its meant to be always the same. Index: mnote-canon-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/canon/mnote-canon-tag.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- mnote-canon-tag.c 17 Sep 2006 10:18:29 -0000 1.9 +++ mnote-canon-tag.c 16 Oct 2006 09:43:14 -0000 1.10 @@ -122,7 +122,7 @@ mnote_canon_tag_get_name (MnoteCanonTag unsigned int i; for (i = 0; i < sizeof (table) / sizeof (table[0]); i++) - if (table[i].tag == t) return (_(table[i].name)); + if (table[i].tag == t) return (table[i].name); /* do not translate */ return NULL; } |
From: Jan P. <pa...@us...> - 2006-10-03 19:42:19
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2105 Modified Files: mnote-olympus-entry.c Log Message: Added some AF Position values Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -d -r1.25 -r1.26 --- mnote-olympus-entry.c 3 Oct 2006 14:44:27 -0000 1.25 +++ mnote-olympus-entry.c 3 Oct 2006 19:42:16 -0000 1.26 @@ -312,6 +312,12 @@ mnote_olympus_entry_get_value (MnoteOlym case 2: strncpy (v, _("AF Position: Bottom"), maxlen); break; case 3: strncpy (v, _("AF Position: Left"), maxlen); break; case 4: strncpy (v, _("AF Position: Right"), maxlen); break; + case 5: strncpy (v, _("AF Position: Upper-left"), maxlen); break; + case 6: strncpy (v, _("AF Position: Upper-right"), maxlen); break; + case 7: strncpy (v, _("AF Position: Lower-left"), maxlen); break; + case 8: strncpy (v, _("AF Position: Lower-right"), maxlen); break; + case 9: strncpy (v, _("AF Position: Far Left"), maxlen); break; + case 10: strncpy (v, _("AF Position: Far Right"), maxlen); break; default: strncpy (v, _("Unknown AF Position"), maxlen); } break; |
From: Jan P. <pa...@us...> - 2006-10-03 19:41:44
|
Update of /cvsroot/libexif/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1688 Modified Files: exif-data.c exif-loader.c exif-utils.h Log Message: #definition of MAX moved to exif-utils.h where we already have MIN Index: exif-utils.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-utils.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -d -r1.14 -r1.15 --- exif-utils.h 19 Feb 2006 11:08:35 -0000 1.14 +++ exif-utils.h 3 Oct 2006 19:41:36 -0000 1.15 @@ -72,6 +72,9 @@ void exif_array_set_byte_order (ExifForm #undef MIN #define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#undef MAX +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) + /* For compatibility with older versions */ #define EXIF_TAG_SUBSEC_TIME EXIF_TAG_SUB_SEC_TIME Index: exif-data.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-data.c,v retrieving revision 1.86 retrieving revision 1.87 diff -u -p -d -r1.86 -r1.87 --- exif-data.c 19 Jan 2006 07:40:25 -0000 1.86 +++ exif-data.c 3 Oct 2006 19:41:36 -0000 1.87 @@ -37,9 +37,6 @@ #include <stdio.h> #include <string.h> -#undef MAX -#define MAX(a, b) (((a) > (b)) ? (a) : (b)) - #if defined(__WATCOMC__) || defined(_MSC_VER) # define strncasecmp strnicmp #endif Index: exif-loader.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/exif-loader.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -d -r1.23 -r1.24 --- exif-loader.c 27 Sep 2006 09:33:58 -0000 1.23 +++ exif-loader.c 3 Oct 2006 19:41:36 -0000 1.24 @@ -21,6 +21,7 @@ #include <config.h> #include <libexif/exif-loader.h> +#include <libexif/exif-utils.h> #include <libexif/i18n.h> #include <stdlib.h> @@ -40,9 +41,6 @@ #undef JPEG_MARKER_COM #define JPEG_MARKER_COM 0xfe -#undef MAX -#define MAX(a, b) (((a) > (b)) ? (a) : (b)) - typedef enum { EL_READ = 0, EL_READ_SIZE_BYTE_24, |
From: Marcus M. <mar...@us...> - 2006-10-03 14:44:31
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13353/olympus Modified Files: mnote-olympus-entry.c mnote-olympus-tag.c mnote-olympus-tag.h Log Message: added some more nikon tags. Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -d -r1.24 -r1.25 --- mnote-olympus-entry.c 3 Oct 2006 14:22:00 -0000 1.24 +++ mnote-olympus-entry.c 3 Oct 2006 14:44:27 -0000 1.25 @@ -225,7 +225,7 @@ mnote_olympus_entry_get_value (MnoteOlym case MNOTE_NIKON_TAG_FLASHMODE: case MNOTE_NIKON_TAG_IMAGEADJUSTMENT: case MNOTE_NIKON_TAG_ADAPTER: - case MNOTE_NIKON_TAG_SATURATION: + case MNOTE_NIKON_TAG_SATURATION2: CF (entry->format, EXIF_FORMAT_ASCII, v, maxlen); memcpy(v, entry->data, MIN (maxlen, entry->components)); break; @@ -252,6 +252,7 @@ mnote_olympus_entry_get_value (MnoteOlym vl = exif_get_long (entry->data, entry->order); snprintf (v, maxlen, "%.1f", ((long unsigned int) vl>>24)/6.0 ); break; + case MNOTE_NIKON_TAG_SATURATION: case MNOTE_NIKON_TAG_WHITEBALANCEFINE: CF (entry->format, EXIF_FORMAT_SSHORT, v, maxlen); CC (entry->components, 1, v, maxlen); Index: mnote-olympus-tag.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- mnote-olympus-tag.h 3 Oct 2006 13:49:21 -0000 1.5 +++ mnote-olympus-tag.h 3 Oct 2006 14:44:27 -0000 1.6 @@ -63,22 +63,22 @@ enum _MnoteOlympusTag { MNOTE_NIKON_TAG_LENS_FSTOPS = 0x008b, MNOTE_NIKON_TAG_CURVE = 0x008c, MNOTE_NIKON_TAG_COLORMODE = 0x008d, - MNOTE_NIKON_TAG_LIGHTYPE = 0x0090, + MNOTE_NIKON_TAG_LIGHTTYPE = 0x0090, MNOTE_NIKON_TAG_UNKNOWN_0X0091 = 0x0091, MNOTE_NIKON_TAG_HUE = 0x0092, - MNOTE_NIKON_TAG_UNKNOWN_0X0094 = 0x0094, + MNOTE_NIKON_TAG_SATURATION = 0x0094, MNOTE_NIKON_TAG_NOISEREDUCTION = 0x0095, MNOTE_NIKON_TAG_UNKNOWN_0X0097 = 0x0097, MNOTE_NIKON_TAG_UNKNOWN_0X0098 = 0x0098, MNOTE_NIKON_TAG_SENSORPIXELSIZE = 0x009a, MNOTE_NIKON_TAG_UNKNOWN_0X009B = 0x009b, - MNOTE_NIKON_TAG_UNKNOWN_0X00A0 = 0x00a0, - MNOTE_NIKON_TAG_UNKNOWN_0X00A2 = 0x00a2, + MNOTE_NIKON_TAG_SERIALNUMBER = 0x00a0, + MNOTE_NIKON_TAG_IMAGE_DATASIZE = 0x00a2, MNOTE_NIKON_TAG_UNKNOWN_0X00A3 = 0x00a3, MNOTE_NIKON_TAG_TOTALPICTURES = 0x00a7, MNOTE_NIKON_TAG_UNKNOWN_0X00A8 = 0x00a8, MNOTE_NIKON_TAG_OPTIMIZATION = 0x00a9, - MNOTE_NIKON_TAG_SATURATION = 0x00aa, + MNOTE_NIKON_TAG_SATURATION2 = 0x00aa, MNOTE_NIKON_TAG_VARIPROGRAM = 0x00ab, MNOTE_NIKON_TAG_CAPTUREEDITORDATA = 0x0e01, MNOTE_NIKON_TAG_CAPTUREEDITORVER = 0x0e09, Index: mnote-olympus-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -d -r1.10 -r1.11 --- mnote-olympus-tag.c 3 Oct 2006 13:49:21 -0000 1.10 +++ mnote-olympus-tag.c 3 Oct 2006 14:44:27 -0000 1.11 @@ -57,7 +57,7 @@ static struct { {MNOTE_NIKON_TAG_EXPOSUREBRACKETVAL, "EXPOSUREBRACKETVAL", N_("Exposure bracket value"), NULL}, {MNOTE_NIKON_TAG_IMAGEADJUSTMENT, "ImageAdjustment", N_("Image Adjustment"), NULL}, {MNOTE_NIKON_TAG_TONECOMPENSATION, "TONECOMPENSATION", N_("Tonecompensation"), NULL}, - {MNOTE_NIKON_TAG_ADAPTER, "Adapter", N_("Adapter"), NULL}, + {MNOTE_NIKON_TAG_ADAPTER, "ADAPTER", N_("Adapter"), NULL}, {MNOTE_NIKON_TAG_LENSTYPE, "LENSTYPE", N_("Lenstype"), NULL}, {MNOTE_NIKON_TAG_LENS, "LENS", N_("Lens"), NULL}, {MNOTE_NIKON_TAG_MANUALFOCUSDISTANCE, "MANUALFOCUSDISTANCE", N_("Manual Focus Distance"), NULL}, @@ -69,17 +69,17 @@ static struct { {MNOTE_NIKON_TAG_LENS_FSTOPS, "LENSFSTOPS", N_("Lens F stops"), NULL}, {MNOTE_NIKON_TAG_CURVE, "CURVE,", N_("Contrast curve"), NULL}, {MNOTE_NIKON_TAG_COLORMODE, "COLORMODE,", N_("Colormode"), NULL}, - {MNOTE_NIKON_TAG_LIGHTYPE, "LIGHTYPE,", N_("Lightype"), NULL}, + {MNOTE_NIKON_TAG_LIGHTTYPE, "LIGHTTYPE,", N_("Lighttype"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0091, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_HUE, "Hue,", N_("Hue Adjustment"), NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X0094, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_HUE, "HUE", N_("Hue Adjustment"), NULL}, + {MNOTE_NIKON_TAG_SATURATION, "SATURATION", N_("Saturation"), NULL}, {MNOTE_NIKON_TAG_NOISEREDUCTION, "NOISEREDUCTION,", N_("Noisereduction"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0097, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0098, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_SENSORPIXELSIZE, "SENSORPIXELSIZE", N_("Sensor pixel size"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X009B, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X00A0, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X00A2, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_SERIALNUMBER, "SERIALNUMBER", N_("Serial number"), NULL}, + {MNOTE_NIKON_TAG_IMAGE_DATASIZE, "IMAGEDATASIZE", N_("Image datasize"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X00A3, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_TOTALPICTURES, "TOTALPICTURES,", N_("Total number of pictures taken"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X00A8, NULL, NULL, NULL}, |
From: Marcus M. <mar...@us...> - 2006-10-03 14:22:09
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv4136/olympus Modified Files: mnote-olympus-entry.c Log Message: merge lens fstops and exposure diff cases Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -d -r1.23 -r1.24 --- mnote-olympus-entry.c 3 Oct 2006 13:49:21 -0000 1.23 +++ mnote-olympus-entry.c 3 Oct 2006 14:22:00 -0000 1.24 @@ -235,6 +235,7 @@ mnote_olympus_entry_get_value (MnoteOlym vl = exif_get_long (entry->data, entry->order); snprintf (v, maxlen, "%lu", (long unsigned int) vl ); break; + case MNOTE_NIKON_TAG_LENS_FSTOPS: case MNOTE_NIKON_TAG_EXPOSUREDIFF: { unsigned char a,b,c,d; CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); @@ -244,15 +245,6 @@ mnote_olympus_entry_get_value (MnoteOlym snprintf (v, maxlen, "%.1f", c?(float)a*((float)b/(float)c):0 ); break; } - case MNOTE_NIKON_TAG_LENS_FSTOPS: { - unsigned char a,b,c,d; - CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); - CC (entry->components, 4, v, maxlen); - vl = exif_get_long (entry->data, entry->order); - a = (vl>>24)&0xff; b = (vl>>16)&0xff; c = (vl>>8)&0xff; d = (vl)&0xff; - snprintf (v, maxlen, "%.2f", c?(float)a*((float)b/(float)c):0 ); - break; - } case MNOTE_NIKON_TAG_FLASHEXPCOMPENSATION: case MNOTE_NIKON_TAG_FLASHEXPOSUREBRACKETVAL: CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); |
From: Marcus M. <mar...@us...> - 2006-10-03 13:50:26
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv24408 Modified Files: ChangeLog Log Message: changes Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.237 retrieving revision 1.238 diff -u -p -d -r1.237 -r1.238 --- ChangeLog 17 Sep 2006 10:18:27 -0000 1.237 +++ ChangeLog 3 Oct 2006 13:50:23 -0000 1.238 @@ -1,3 +1,8 @@ +2006-10-03 Marcus Meissner <ma...@je...> + + * libexif/olympus/*.[ch]: Added several Nikon Makernotes + entries, extracted from exiftool. + 2006-09-17 Lutz Mueller <lu...@us...> Patch by Jef Driesen <jef...@ho...>: |
From: Marcus M. <mar...@us...> - 2006-10-03 13:49:26
|
Update of /cvsroot/libexif/libexif/libexif/olympus In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23942/olympus Modified Files: mnote-olympus-entry.c mnote-olympus-tag.c mnote-olympus-tag.h Log Message: interpret some more Nikon MakerNote tags. Index: mnote-olympus-entry.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-entry.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -d -r1.22 -r1.23 --- mnote-olympus-entry.c 13 Feb 2006 07:31:55 -0000 1.22 +++ mnote-olympus-entry.c 3 Oct 2006 13:49:21 -0000 1.23 @@ -167,7 +167,7 @@ mnote_olympus_entry_get_value (MnoteOlym char buf[30]; ExifLong vl; ExifShort vs = 0; - ExifRational vr; + ExifRational vr, vr2; int i, j; double r, b; @@ -225,6 +225,7 @@ mnote_olympus_entry_get_value (MnoteOlym case MNOTE_NIKON_TAG_FLASHMODE: case MNOTE_NIKON_TAG_IMAGEADJUSTMENT: case MNOTE_NIKON_TAG_ADAPTER: + case MNOTE_NIKON_TAG_SATURATION: CF (entry->format, EXIF_FORMAT_ASCII, v, maxlen); memcpy(v, entry->data, MIN (maxlen, entry->components)); break; @@ -234,6 +235,31 @@ mnote_olympus_entry_get_value (MnoteOlym vl = exif_get_long (entry->data, entry->order); snprintf (v, maxlen, "%lu", (long unsigned int) vl ); break; + case MNOTE_NIKON_TAG_EXPOSUREDIFF: { + unsigned char a,b,c,d; + CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); + CC (entry->components, 4, v, maxlen); + vl = exif_get_long (entry->data, entry->order); + a = (vl>>24)&0xff; b = (vl>>16)&0xff; c = (vl>>8)&0xff; d = (vl)&0xff; + snprintf (v, maxlen, "%.1f", c?(float)a*((float)b/(float)c):0 ); + break; + } + case MNOTE_NIKON_TAG_LENS_FSTOPS: { + unsigned char a,b,c,d; + CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); + CC (entry->components, 4, v, maxlen); + vl = exif_get_long (entry->data, entry->order); + a = (vl>>24)&0xff; b = (vl>>16)&0xff; c = (vl>>8)&0xff; d = (vl)&0xff; + snprintf (v, maxlen, "%.2f", c?(float)a*((float)b/(float)c):0 ); + break; + } + case MNOTE_NIKON_TAG_FLASHEXPCOMPENSATION: + case MNOTE_NIKON_TAG_FLASHEXPOSUREBRACKETVAL: + CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); + CC (entry->components, 4, v, maxlen); + vl = exif_get_long (entry->data, entry->order); + snprintf (v, maxlen, "%.1f", ((long unsigned int) vl>>24)/6.0 ); + break; case MNOTE_NIKON_TAG_WHITEBALANCEFINE: CF (entry->format, EXIF_FORMAT_SSHORT, v, maxlen); CC (entry->components, 1, v, maxlen); @@ -269,6 +295,21 @@ mnote_olympus_entry_get_value (MnoteOlym r = (double)vr.numerator / vr.denominator; snprintf (v, maxlen, "%2.2f", r); break; + case MNOTE_NIKON_TAG_SENSORPIXELSIZE: + CF (entry->format, EXIF_FORMAT_RATIONAL, v, maxlen); + CC (entry->components, 2, v, maxlen); + vr = exif_get_rational (entry->data, entry->order); + vr2 = exif_get_rational (entry->data+8, entry->order); + r = (double)vr.numerator / vr.denominator; + b = (double)vr2.numerator / vr2.denominator; + snprintf (v, maxlen, "%2.2f x %2.2f um", r, b); + break; + case MNOTE_NIKON_TAG_HUE: + CF (entry->format, EXIF_FORMAT_SSHORT, v, maxlen); + CC (entry->components, 1, v, maxlen); + vs = exif_get_short (entry->data, entry->order); + snprintf (v, maxlen, "%hd", vs); + break; case MNOTE_NIKON_TAG_AFFOCUSPOSITION: CF (entry->format, EXIF_FORMAT_UNDEFINED, v, maxlen); CC (entry->components, 4, v, maxlen); Index: mnote-olympus-tag.h =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- mnote-olympus-tag.h 22 Jun 2004 18:10:48 -0000 1.4 +++ mnote-olympus-tag.h 3 Oct 2006 13:49:21 -0000 1.5 @@ -42,13 +42,13 @@ enum _MnoteOlympusTag { MNOTE_NIKON_TAG_UNKNOWN_0X000D = 0x000d, MNOTE_NIKON_TAG_EXPOSUREDIFF = 0x000e, MNOTE_NIKON_TAG_ISOSELECTION = 0x000f, - MNOTE_NIKON_TAG_UNKNOWN_0X0011 = 0x0011, - MNOTE_NIKON_TAG_FLASHCOMPENSATION = 0x0012, + MNOTE_NIKON_TAG_PREVIEWIMAGE = 0x0011, + MNOTE_NIKON_TAG_FLASHEXPCOMPENSATION = 0x0012, MNOTE_NIKON_TAG_ISO2 = 0x0013, - MNOTE_NIKON_TAG_UNKNOWN_0X0016 = 0x0016, + MNOTE_NIKON_TAG_IMAGEBOUNDARY = 0x0016, MNOTE_NIKON_TAG_UNKNOWN_0X0017 = 0x0017, - MNOTE_NIKON_TAG_UNKNOWN_0X0018 = 0x0018, - MNOTE_NIKON_TAG_UNKNOWN_0X0019 = 0x0019, + MNOTE_NIKON_TAG_FLASHEXPOSUREBRACKETVAL = 0x0018, + MNOTE_NIKON_TAG_EXPOSUREBRACKETVAL = 0x0019, MNOTE_NIKON_TAG_IMAGEADJUSTMENT = 0x0080, MNOTE_NIKON_TAG_TONECOMPENSATION = 0x0081, MNOTE_NIKON_TAG_ADAPTER = 0x0082, @@ -60,7 +60,7 @@ enum _MnoteOlympusTag { MNOTE_NIKON_TAG_AFFOCUSPOSITION = 0x0088, MNOTE_NIKON_TAG_BRACKETING = 0x0089, MNOTE_NIKON_TAG_UNKNOWN_0X008A = 0x008a, - MNOTE_NIKON_TAG_UNKNOWN_0X008B = 0x008b, + MNOTE_NIKON_TAG_LENS_FSTOPS = 0x008b, MNOTE_NIKON_TAG_CURVE = 0x008c, MNOTE_NIKON_TAG_COLORMODE = 0x008d, MNOTE_NIKON_TAG_LIGHTYPE = 0x0090, @@ -70,7 +70,7 @@ enum _MnoteOlympusTag { MNOTE_NIKON_TAG_NOISEREDUCTION = 0x0095, MNOTE_NIKON_TAG_UNKNOWN_0X0097 = 0x0097, MNOTE_NIKON_TAG_UNKNOWN_0X0098 = 0x0098, - MNOTE_NIKON_TAG_UNKNOWN_0X009A = 0x009a, + MNOTE_NIKON_TAG_SENSORPIXELSIZE = 0x009a, MNOTE_NIKON_TAG_UNKNOWN_0X009B = 0x009b, MNOTE_NIKON_TAG_UNKNOWN_0X00A0 = 0x00a0, MNOTE_NIKON_TAG_UNKNOWN_0X00A2 = 0x00a2, @@ -78,8 +78,8 @@ enum _MnoteOlympusTag { MNOTE_NIKON_TAG_TOTALPICTURES = 0x00a7, MNOTE_NIKON_TAG_UNKNOWN_0X00A8 = 0x00a8, MNOTE_NIKON_TAG_OPTIMIZATION = 0x00a9, - MNOTE_NIKON_TAG_UNKNOWN_0X00AA = 0x00aa, - MNOTE_NIKON_TAG_UNKNOWN_0X00AB = 0x00ab, + MNOTE_NIKON_TAG_SATURATION = 0x00aa, + MNOTE_NIKON_TAG_VARIPROGRAM = 0x00ab, MNOTE_NIKON_TAG_CAPTUREEDITORDATA = 0x0e01, MNOTE_NIKON_TAG_CAPTUREEDITORVER = 0x0e09, MNOTE_NIKON_TAG_UNKNOWN_0X0E0E = 0x0e0e, Index: mnote-olympus-tag.c =================================================================== RCS file: /cvsroot/libexif/libexif/libexif/olympus/mnote-olympus-tag.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- mnote-olympus-tag.c 17 Mar 2005 16:00:26 -0000 1.9 +++ mnote-olympus-tag.c 3 Oct 2006 13:49:21 -0000 1.10 @@ -47,14 +47,14 @@ static struct { {MNOTE_NIKON_TAG_WHITEBALANCERB, "WHITEBALANCERB", N_("Whitebalance RB"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X000D, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_ISOSELECTION, "ISOSELECTION", N_("Isoselection"), NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X0011, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_PREVIEWIMAGE, "PREVIEWIMAGE", N_("Preview Image"), NULL}, {MNOTE_NIKON_TAG_EXPOSUREDIFF, "EXPOSUREDIFF", N_("Exposurediff ?"), NULL}, - {MNOTE_NIKON_TAG_FLASHCOMPENSATION, "FLASHCOMPENSATION", N_("Flashcompensation ?"), NULL}, + {MNOTE_NIKON_TAG_FLASHEXPCOMPENSATION, "FLASHEXPCOMPENSATION", N_("Flash exposure compensation"), NULL}, {MNOTE_NIKON_TAG_ISO2, "ISO", N_("ISO Setting"), NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X0016, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_IMAGEBOUNDARY, "IMAGEBOUNDARY", N_("Image Boundary"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0017, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X0018, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X0019, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_FLASHEXPOSUREBRACKETVAL, "FLASHEXPOSUREBRACKETVAL", N_("Flash exposure bracket value"), NULL}, + {MNOTE_NIKON_TAG_EXPOSUREBRACKETVAL, "EXPOSUREBRACKETVAL", N_("Exposure bracket value"), NULL}, {MNOTE_NIKON_TAG_IMAGEADJUSTMENT, "ImageAdjustment", N_("Image Adjustment"), NULL}, {MNOTE_NIKON_TAG_TONECOMPENSATION, "TONECOMPENSATION", N_("Tonecompensation"), NULL}, {MNOTE_NIKON_TAG_ADAPTER, "Adapter", N_("Adapter"), NULL}, @@ -66,7 +66,7 @@ static struct { {MNOTE_NIKON_TAG_AFFOCUSPOSITION, "AFFOCUSPOSITION", N_("AF Focus position"), NULL}, {MNOTE_NIKON_TAG_BRACKETING, "BRACKETING", N_("Bracketing"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X008A, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X008B, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_LENS_FSTOPS, "LENSFSTOPS", N_("Lens F stops"), NULL}, {MNOTE_NIKON_TAG_CURVE, "CURVE,", N_("Contrast curve"), NULL}, {MNOTE_NIKON_TAG_COLORMODE, "COLORMODE,", N_("Colormode"), NULL}, {MNOTE_NIKON_TAG_LIGHTYPE, "LIGHTYPE,", N_("Lightype"), NULL}, @@ -76,7 +76,7 @@ static struct { {MNOTE_NIKON_TAG_NOISEREDUCTION, "NOISEREDUCTION,", N_("Noisereduction"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0097, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0098, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X009A, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_SENSORPIXELSIZE, "SENSORPIXELSIZE", N_("Sensor pixel size"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X009B, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X00A0, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X00A2, NULL, NULL, NULL}, @@ -84,8 +84,8 @@ static struct { {MNOTE_NIKON_TAG_TOTALPICTURES, "TOTALPICTURES,", N_("Total number of pictures taken"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X00A8, NULL, NULL, NULL}, {MNOTE_NIKON_TAG_OPTIMIZATION, "OPTIMIZATION,", N_("Optimize Image"), NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X00AA, NULL, NULL, NULL}, - {MNOTE_NIKON_TAG_UNKNOWN_0X00AB, NULL, NULL, NULL}, + {MNOTE_NIKON_TAG_SATURATION, "SATURATION", N_("Saturation"), NULL}, + {MNOTE_NIKON_TAG_VARIPROGRAM, "VARIPROGRAM", N_("Vari Program"), NULL}, {MNOTE_NIKON_TAG_CAPTUREEDITORDATA, "CAPTUREEDITORDATA", N_("Capture Editor Data"), NULL}, {MNOTE_NIKON_TAG_CAPTUREEDITORVER, "CAPTUREEDITORVER", N_("Capture Editor Version"), NULL}, {MNOTE_NIKON_TAG_UNKNOWN_0X0E0E, NULL, NULL, NULL}, |