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: Hans U. N. <hu...@us...> - 2007-05-22 23:30:58
|
Update of /cvsroot/libexif/libexif-testsuite/tests In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23999/tests Modified Files: Makefile.am Log Message: New in 0.7.12: * Added build-config.sh SVN support. * Fetch pel (PHP Exif Library) test images via SVN. * Get rid of autogen.sh. * Always check PEL images. * Use auto-m4 for autoreconf-provided *.m4 files. Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif-testsuite/tests/Makefile.am,v retrieving revision 1.19 retrieving revision 1.20 diff -u -p -d -r1.19 -r1.20 --- Makefile.am 5 May 2005 12:25:40 -0000 1.19 +++ Makefile.am 22 May 2007 23:30:54 -0000 1.20 @@ -21,8 +21,9 @@ check_SCRIPTS = \ check-994706.sh \ check-1054321.sh check-1054322.sh check-1054323.sh \ check-1169170.sh -# This check script takes too long for too few benefits: -# check-general-images.sh + +# This check script may take a little long - but it is invaluable. :) +check_SCRIPTS += check-general-images.sh TESTS = $(check_SCRIPTS) @@ -33,7 +34,7 @@ CLEANFILES = $(check_SCRIPTS) *.out.jpg # The embedded script for @exif@ is supposed to run at the time the # .sh file is running. If not, we try to run the installed version. # If that doesn't work, either, we fail. -%.sh: %.in Makefile +.in.sh: Makefile @echo "Creating $@" @sed 's|@exif\@|`if test -x "$(top_builddir)/src/exif/exif/exif"; then echo "$(top_builddir)/src/exif/exif/exif"; elif test -x "$(bindir)/exif"; then echo "$(bindir)/exif"; else echo "Neither $(top_builddir)/src/exif/exif/exif nor $(bindir)/exif are executable." >&2; echo false; exit 1; fi`|g;s|@top_srcdir\@|$(top_srcdir)|g;s|@srcdir\@|$(srcdir)|g;s|@diff\@|$(DIFF)|g' < $< > $@ @chmod +x $@ |
From: Hans U. N. <hu...@us...> - 2007-05-22 23:30:57
|
Update of /cvsroot/libexif/libexif-testsuite/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23999/auto-m4 Added Files: .cvsignore Log Message: New in 0.7.12: * Added build-config.sh SVN support. * Fetch pel (PHP Exif Library) test images via SVN. * Get rid of autogen.sh. * Always check PEL images. * Use auto-m4 for autoreconf-provided *.m4 files. --- NEW FILE: .cvsignore --- *.m4 |
From: Hans U. N. <hu...@us...> - 2007-05-22 23:27:51
|
Update of /cvsroot/libexif/libexif-testsuite/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22745 Modified Files: de.po Log Message: update-po Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif-testsuite/po/de.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- de.po 15 Apr 2005 04:25:10 -0000 1.3 +++ de.po 22 May 2007 23:27:47 -0000 1.4 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: libexif-testsuite de\n" -"Report-Msgid-Bugs-To: lib...@li...\n" -"POT-Creation-Date: 2005-04-11 20:04+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-23 01:21+0200\n" "PO-Revision-Date: 2005-03-24 01:42+0100\n" "Last-Translator: Hans Ulrich Niedermann <gp...@n-...>\n" "Language-Team: deutsch <de...@li...>\n" @@ -15,6 +15,6 @@ msgstr "" "Content-Type: text/plain; charset=us-ascii\n" "Content-Transfer-Encoding: 7bit\n" -#: testlib/testlib.c:5 +#: testlib/testlib.c:7 msgid "This is the dummy library" msgstr "Dies ist die Dummy-Bibliothek" |
From: Hans U. N. <hu...@us...> - 2007-05-22 23:04:15
|
Update of /cvsroot/libexif/libexif-testsuite/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13121/auto-m4 Log Message: Directory /cvsroot/libexif/libexif-testsuite/auto-m4 added to the repository |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:53:55
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8284/po Modified Files: cs.po de.po es.po fr.po pl.po ru.po sk.po vi.po Log Message: update-po Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/es.po,v retrieving revision 1.23 retrieving revision 1.24 diff -u -p -d -r1.23 -r1.24 --- es.po 18 May 2007 19:53:44 -0000 1.23 +++ es.po 22 May 2007 22:53:48 -0000 1.24 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15: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" @@ -32,6 +32,7 @@ msgstr "Cantidad de componentes no váli #: libexif/canon/mnote-canon-entry.c:61 [...1496 lines suppressed...] +msgstr "Flash" + # This is a very special string. It is used for test purposes, and # we only test the de locale as a proof-of-concept example. There is # no need for anybody to translate it. @@ -4166,14 +4560,6 @@ msgstr "" #~ msgstr "peso centrado" #, fuzzy -#~ msgid "right" -#~ msgstr "Copyright" - -#, fuzzy -#~ msgid "center" -#~ msgstr "centrado" - -#, fuzzy #~ msgid " / Contrast : " #~ msgstr "Contraste" Index: sk.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/sk.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- sk.po 18 May 2007 19:53:44 -0000 1.2 +++ sk.po 22 May 2007 22:53:49 -0000 1.3 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif-0.6.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-11-27 16:11+0100\n" +"POT-Creation-Date: 2007-05-21 15:49+0200\n" "PO-Revision-Date: 2007-03-13 05:51+0100\n" "Last-Translator: helix84 <he...@ce...>\n" "Language-Team: Slovak <sk...@li...>\n" @@ -15,713 +15,1324 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" [...4615 lines suppressed...] +#~ msgstr " (1 dostupný bod zaostrenia)" + +#~ msgid " (%u available focus points)" +#~ msgstr " (%u dostupných bodov zaostrenia)" + +#~ msgid "Zoomed resolution" +#~ msgstr "RozlÃÅ¡enie priblÞenia" + +#~ msgid "Zoomed resolution base" +#~ msgstr "Základ rozlÃÅ¡enia priblÞenia" + +#~ msgid "Flash bias" +#~ msgstr "Skreslenie blesku" + +#~ msgid "" +#~ "Flash fired, compulsory flash mode, red-eye reduction, return light " +#~ "detected." +#~ msgstr "" +#~ "Blesk sa spustil, povinný režim blesku, režim redukcie Äervených oÄÃ, " +#~ "vracajúce sa svetlo detegované." Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/fr.po,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -d -r1.24 -r1.25 --- fr.po 18 May 2007 19:53:44 -0000 1.24 +++ fr.po 22 May 2007 22:53:48 -0000 1.25 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15: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" @@ -32,6 +32,7 @@ msgstr "Nombre invalide de composants (% #: libexif/canon/mnote-canon-entry.c:61 [...1485 lines suppressed...] +msgstr "Flash" + # This is a very special string. It is used for test purposes, and # we only test the de locale as a proof-of-concept example. There is # no need for anybody to translate it. @@ -3950,14 +4344,6 @@ msgstr "" #~ msgstr "Centre pondéré" #, fuzzy -#~ msgid "right" -#~ msgstr "Copyright" - -#, fuzzy -#~ msgid "center" -#~ msgstr "centré" - -#, fuzzy #~ msgid " / Contrast : " #~ msgstr "Contraste" Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/ru.po,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- ru.po 18 May 2007 19:53:44 -0000 1.8 +++ ru.po 22 May 2007 22:53:49 -0000 1.9 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15: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" @@ -35,6 +35,7 @@ msgstr "ÐекоÑÑекÑное ÑиÑÐ #: libexif/canon/mnote-canon-entry.c:61 [...1463 lines suppressed...] #: test/nls/test-nls.c:20 test/nls/test-nls.c:23 test/nls/test-nls.c:24 msgid "[DO_NOT_TRANSLATE_THIS_MARKER]" msgstr "" -#~ msgid "flash did not fire" -#~ msgstr "ÐÑпÑÑка не ÑÑабоÑала" - #~ msgid "auto" #~ msgstr "авÑо" @@ -3927,9 +4318,6 @@ msgstr "" #~ msgid "none (manual focus)" #~ msgstr "ÐиÑего (ÑÑÑÐ½Ð°Ñ ÑокÑÑиÑовка)" -#~ msgid "right" -#~ msgstr "ÐÑаваÑ" - #~ msgid "External E-TTL" #~ msgstr "ÐнеÑнÑÑ E-TTL" Index: de.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/de.po,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -d -r1.36 -r1.37 --- de.po 18 May 2007 19:53:44 -0000 1.36 +++ de.po 22 May 2007 22:53:48 -0000 1.37 @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15:49+0200\n" "PO-Revision-Date: 2006-10-17 17:03+0200\n" "Last-Translator: \n" "Language-Team: <de...@li...>\n" @@ -36,6 +36,7 @@ msgstr "Ungültige Anzahl von Komponente #: libexif/canon/mnote-canon-entry.c:61 [...1490 lines suppressed...] @@ -3964,9 +4368,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER_de #~ "Blitz ausgelöst, fester Blitzmodus, Rote Augen Reduktions Modus, " #~ "Blitzreflektion erkannt." -#~ msgid "flash did not fire" -#~ msgstr "Blitz löste nicht aus." - #~ msgid "auto" #~ msgstr "Automatisch" @@ -4009,9 +4410,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER_de #~ msgid "none (manual focus)" #~ msgstr "keine (manueller Fokus)" -#~ msgid "right" -#~ msgstr "rechts" - #~ msgid "single" #~ msgstr "einzeln" Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/pl.po,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -d -r1.10 -r1.11 --- pl.po 18 May 2007 19:53:44 -0000 1.10 +++ pl.po 22 May 2007 22:53:49 -0000 1.11 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif 0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15: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" @@ -31,6 +31,7 @@ msgstr "BÅÄdna liczba skÅadowych (%i, #: libexif/canon/mnote-canon-entry.c:61 [...1500 lines suppressed...] @@ -4095,9 +4499,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER]" #~ "Flesz siÄ uruchomiÅ w trybie pulsujÄ cym z redukcjÄ czerwonych oczu, " #~ "ÅwiatÅo zwrotne wykryte." -#~ msgid "flash did not fire" -#~ msgstr "flesz siÄ nie uruchomiÅ" - #~ msgid "auto" #~ msgstr "automatyczny" @@ -4140,9 +4541,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER]" #~ msgid "none (manual focus)" #~ msgstr "brak (rÄczna ogniskowa)" -#~ msgid "right" -#~ msgstr "prawy" - #~ msgid "single" #~ msgstr "pojedynczy" Index: cs.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/cs.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- cs.po 21 May 2007 19:28:38 -0000 1.2 +++ cs.po 22 May 2007 22:53:48 -0000 1.3 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-03 15:46+0200\n" +"POT-Creation-Date: 2007-05-21 15:49+0200\n" "PO-Revision-Date: 2007-05-03 15:46+0200\n" "Last-Translator: Jan Patera <pa...@us...>\n" "Language-Team: <cs...@li...>\n" @@ -32,6 +32,7 @@ msgstr "Å patný poÄet položek (%i, oÄ #: libexif/canon/mnote-canon-entry.c:61 [...2085 lines suppressed...] +msgstr "Vzdálenost fotografovaného objektu v metrech." + +#: libexif/pentax/mnote-pentax-tag.c:72 +#, fuzzy +msgid "Bestshot mode" +msgstr "Režim blesku" + # This is a very special string. It is used for test purposes, and # 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:20 test/nls/test-nls.c:23 test/nls/test-nls.c:24 msgid "[DO_NOT_TRANSLATE_THIS_MARKER]" msgstr "" + +#~ msgid "" +#~ "Flash fired, compulsory flash mode, red-eye reduction, return light " +#~ "detected." +#~ msgstr "" +#~ "Blesk bleskl, blesk zapnut, režim redukce Äervených oÄÃ, odraz svÄtla " +#~ "detekován." Index: vi.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/vi.po,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- vi.po 18 May 2007 19:53:44 -0000 1.8 +++ vi.po 22 May 2007 22:53:49 -0000 1.9 @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: libexif-0.6.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2007-05-10 15:58+0200\n" +"POT-Creation-Date: 2007-05-21 15: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" @@ -32,6 +32,7 @@ msgstr "Sá» thà nh phần không hợp #: libexif/canon/mnote-canon-entry.c:61 [...1499 lines suppressed...] @@ -4075,9 +4479,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER]" #~ "Äèn nháy Äã hoạt Äá»ng, chế Äá» nháy bắt buá»c, chế Äá» giảm mặt Äá», phát " #~ "hiá»n ánh sáng trá» vá»." -#~ msgid "flash did not fire" -#~ msgstr "Äèn nháy chưa hoạt Äá»ng" - #~ msgid "auto" #~ msgstr "tá»± Äá»ng" @@ -4120,9 +4521,6 @@ msgstr "[DO_NOT_TRANSLATE_THIS_MARKER]" #~ msgid "none (manual focus)" #~ msgstr "không có (tá»± Äiá»u chá»nh tiêu Äiá»m)" -#~ msgid "right" -#~ msgstr "phải" - #~ msgid "single" #~ msgstr "ÄÆ¡n" |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:53:49
|
Update of /cvsroot/libexif/exif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8249/po Modified Files: de.po es.po fr.po pl.po Log Message: update-po Index: pl.po =================================================================== RCS file: /cvsroot/libexif/exif/po/pl.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- pl.po 15 Aug 2005 20:50:42 -0000 1.1 +++ pl.po 22 May 2007 22:53:41 -0000 1.2 @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: exif 0.6.9\n" -"POT-Creation-Date: 2004-05-27 19:45+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-03-21 18:01+0100\n" "Last-Translator: Jakub Bogusz <qb...@pl...>\n" "Language-Team: Polish <tra...@li...>\n" @@ -13,257 +14,267 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: exif/actions.c:43 +#: exif/actions.c:45 #, c-format msgid "EXIF tags in '%s':" msgstr "Znaczniki EXIF w '%s':" -#: exif/actions.c:109 -#, c-format -msgid "Unknown MakerNote format." +#: exif/actions.c:114 +#, fuzzy, c-format +msgid "Unknown MakerNote format.\n" msgstr "Nieznany format MakerNote." -#: exif/actions.c:116 +#: exif/actions.c:121 #, c-format msgid "MakerNote does not contain any value.\n" msgstr "MakerNote nie zawiera żadnej wartoÅci.\n" -#: exif/actions.c:119 +#: exif/actions.c:124 #, c-format msgid "MakerNote contains 1 value:\n" msgstr "MakerNote zawiera 1 wartoÅÄ:\n" -#: exif/actions.c:122 +#: exif/actions.c:127 #, c-format msgid "MakerNote contains %i values:\n" msgstr "MakerNote zawiera %i wartoÅci:\n" -#: exif/actions.c:139 +#: exif/actions.c:135 +msgid "Unknown tag" +msgstr "" + +#: exif/actions.c:138 +msgid "Unknown value" +msgstr "" + +#: exif/actions.c:163 #, c-format msgid "EXIF tags in '%s' ('%s' byte order):" msgstr "Znaczniki EXIF w '%s' (kolejnoÅÄ bajtów '%s'):" -#: exif/actions.c:144 exif/actions.c:146 +#: exif/actions.c:168 exif/actions.c:170 msgid "Tag" msgstr "Znacznik" -#: exif/actions.c:149 exif/actions.c:151 exif/main.c:282 +#: exif/actions.c:174 exif/actions.c:176 exif/main.c:353 msgid "Value" msgstr "WartoÅÄ" -#: exif/actions.c:157 +#: exif/actions.c:182 #, c-format msgid "EXIF data contains a thumbnail (%i bytes)." msgstr "Dane EXIF zawierajÄ miniaturkÄ (%i bajtów)." -#: exif/actions.c:189 +#: exif/actions.c:218 #, c-format msgid "ThumbnailSize\t%i\n" msgstr "ThumbnailSize\t%i\n" -#: exif/main.c:51 -#, c-format -msgid "Internal error. Please contact <lib...@li...>." -msgstr "BÅÄ d wewnÄtrzny. ProszÄ skontaktowaÄ siÄ z <lib...@li...>." +#: exif/main.c:55 +#, fuzzy, c-format +msgid "Internal error. Please contact <%s>.)" +msgstr "" +"BÅÄ d wewnÄtrzny. ProszÄ skontaktowaÄ siÄ z <lib...@li...urceforge." +"net>." -#: exif/main.c:61 +#: exif/main.c:74 #, c-format msgid "EXIF entry '%s' (0x%x, '%s') exists in IFD '%s':" msgstr "Wpis EXIF '%s' (0x%x, '%s') istnieje w IFD '%s':" -#: exif/main.c:98 +#: exif/main.c:112 #, c-format msgid "Not enough memory." msgstr "Za maÅo pamiÄci." -#: exif/main.c:116 +#: exif/main.c:130 #, c-format msgid "Too few components specified!" msgstr "Podano za maÅo skÅadowych!" -#: exif/main.c:146 +#: exif/main.c:160 #, c-format msgid "Not yet implemented!" msgstr "Jeszcze nie zaimplementowane!" -#: exif/main.c:165 -#, c-format -msgid "Could not parse JPEG file '%s'." -msgstr "Nie można przeanalizowaÄ pliku JPEG '%s'." - -#: exif/main.c:175 +#: exif/main.c:233 #, c-format msgid "Too much EXIF data (%i bytes). Only %i bytes are allowed." msgstr "Zbyt dużo danych EXIF (%i bajtów). Dozwolone jest tylko %i bajtów." -#: exif/main.c:189 exif/main.c:435 +#: exif/main.c:247 exif/main.c:496 #, c-format msgid "Wrote file '%s'." msgstr "Zapisano plik '%s'." -#: exif/main.c:260 +#: exif/main.c:329 +msgid "Display software version" +msgstr "" + +#: exif/main.c:331 msgid "Show IDs instead of tag names" msgstr "Pokazywanie ID zamiast nazw znaczników" -#: exif/main.c:262 +#: exif/main.c:333 msgid "Select tag" msgstr "Wybór znacznika" -#: exif/main.c:262 +#: exif/main.c:333 msgid "tag" msgstr "znacznik" -#: exif/main.c:264 +#: exif/main.c:335 msgid "Select IFD" msgstr "Wybór IFD" -#: exif/main.c:264 +#: exif/main.c:335 msgid "IFD" msgstr "IFD" -#: exif/main.c:266 +#: exif/main.c:337 msgid "List all EXIF tags" msgstr "Wypisanie wszystkich znaczników EXIF" -#: exif/main.c:268 +#: exif/main.c:339 msgid "Show contents of tag MakerNote" msgstr "Pokazanie zawartoÅci znacznika MakerNote" -#: exif/main.c:270 +#: exif/main.c:341 msgid "Remove tag or ifd" msgstr "UsuniÄcie znacznika lub IFD" -#: exif/main.c:272 +#: exif/main.c:343 msgid "Show description of tag" msgstr "Pokazanie opisu znacznika" -#: exif/main.c:274 +#: exif/main.c:345 msgid "Extract thumbnail" msgstr "WyciÄ gniÄcie miniaturki" -#: exif/main.c:276 +#: exif/main.c:347 msgid "Remove thumbnail" msgstr "UsuniÄcie miniaturki" -#: exif/main.c:278 +#: exif/main.c:349 msgid "Insert FILE as thumbnail" msgstr "Wstawienie PLIKU jako miniaturki" -#: exif/main.c:278 exif/main.c:280 +#: exif/main.c:349 exif/main.c:351 msgid "FILE" msgstr "PLIK" -#: exif/main.c:280 +#: exif/main.c:351 msgid "Write data to FILE" msgstr "Zapis danych do PLIKU" -#: exif/main.c:284 +#: exif/main.c:355 msgid "Output in a machine-readable (tab delimited) format" msgstr "WyjÅcie w formacie czytelnym dla maszyny (ograniczonym tabulacjami)" -#: exif/main.c:287 +#: exif/main.c:358 +msgid "Output in a XML format" +msgstr "" + +#: exif/main.c:361 msgid "Show debugging messages" msgstr "Pokazywanie komunikatów diagnostycznych" -#: exif/main.c:304 +#: exif/main.c:378 msgid "[OPTION...] file" msgstr "[OPCJA...] plik" -#: exif/main.c:321 -#, c-format -msgid "Invalid tag '%s'!" -msgstr "BÅÄdny znacznik '%s'!" - -#: exif/main.c:332 +#: exif/main.c:403 #, c-format msgid "" "Invalid IFD '%s'. Valid IFDs are '0', '1', 'EXIF', 'GPS', and " "'Interoperability'." msgstr "" -"BÅÄdny IFD '%s'. Poprawne IFD to '0', '1', 'EXIF', 'GPS' oraz 'Interoperability'." +"BÅÄdny IFD '%s'. Poprawne IFD to '0', '1', 'EXIF', 'GPS' oraz " +"'Interoperability'." -#: exif/main.c:342 +#: exif/main.c:411 #, c-format +msgid "Invalid tag '%s'!" +msgstr "BÅÄdny znacznik '%s'!" + +#: exif/main.c:416 msgid "Please specify a tag!" msgstr "ProszÄ podaÄ znacznik!" -#: exif/main.c:346 +#: exif/main.c:417 #, c-format msgid "Tag '%s' (0x%04x, '%s'): %s" msgstr "Znacznik '%s' (0x%04x, '%s'): %s" -#: exif/main.c:370 +#: exif/main.c:446 #, c-format msgid "'%s' does not contain EXIF data!" msgstr "'%s' nie zawiera danych EXIF!" -#: exif/main.c:396 +#: exif/main.c:469 #, c-format msgid "IFD '%s' does not contain tag '%s'." msgstr "IFD '%s' nie zawiera znacznika '%s'." -#: exif/main.c:410 +#: exif/main.c:478 #, c-format msgid "'%s' does not contain a thumbnail!" msgstr "'%s' nie zawiera miniaturki!" -#: exif/main.c:422 +#: exif/main.c:486 #, c-format msgid "Could not open '%s' for writing (%m)!" msgstr "Nie można otworzyÄ '%s' do zapisu (%m)!" -#: exif/main.c:426 +#: exif/main.c:490 #, c-format msgid "Could not open '%s' for writing (%s)!" msgstr "Nie można otworzyÄ '%s' do zapisu (%s)!" -#: exif/main.c:464 +#: exif/main.c:525 #, c-format msgid "Could not open '%s' (%m)!" msgstr "Nie można otworzyÄ '%s' (%m)!" -#: exif/main.c:467 +#: exif/main.c:528 #, c-format msgid "Could not open '%s' (%s)!" msgstr "Nie można otworzyÄ '%s' (%s)!" -#: exif/main.c:478 -#, c-format -msgid "Could not allocate %i byte(s)." -msgstr "Nie można przydzieliÄ %i bajtów." - -#: exif/main.c:488 +#: exif/main.c:540 #, c-format msgid "Could not read '%s' (%m)." msgstr "Nie można odczytaÄ '%s' (%m)." -#: exif/main.c:491 +#: exif/main.c:543 #, c-format msgid "Could not read '%s' (%s)." msgstr "Nie można odczytaÄ '%s' (%s)." -#: exif/main.c:506 -#, c-format +#: exif/main.c:554 msgid "You need to specify a tag!" msgstr "Trzeba podaÄ znacznik!" -#: exif/main.c:515 exif/main.c:538 -#, c-format +#: exif/main.c:559 exif/main.c:578 msgid "You need to specify an IFD!" msgstr "Trzeba podaÄ IFD!" -#: exif/main.c:554 +#: exif/main.c:590 #, c-format msgid "IFD '%s' does not contain a tag '%s'!" msgstr "IFD '%s' nie zawiera znacznika '%s'!" -#. popt.h: -msgid "Help options:" -msgstr "Opcje pomocy:" +#~ msgid "Could not parse JPEG file '%s'." +#~ msgstr "Nie można przeanalizowaÄ pliku JPEG '%s'." -#. popt -msgid "Show this help message" -msgstr "Pokazanie tej pomocy" +#~ msgid "Could not allocate %i byte(s)." +#~ msgstr "Nie można przydzieliÄ %i bajtów." -msgid "Display brief usage message" -msgstr "WyÅwietlenie skróconego sposóbu użycia" +#~ msgid "Help options:" +#~ msgstr "Opcje pomocy:" + +#~ msgid "Show this help message" +#~ msgstr "Pokazanie tej pomocy" + +#~ msgid "Display brief usage message" +#~ msgstr "WyÅwietlenie skróconego sposóbu użycia" Index: es.po =================================================================== RCS file: /cvsroot/libexif/exif/po/es.po,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -d -r1.7 -r1.8 --- es.po 29 Mar 2005 05:23:18 -0000 1.7 +++ es.po 22 May 2007 22:53:41 -0000 1.8 @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: exif\n" -"Report-Msgid-Bugs-To: lib...@li...\n" -"POT-Creation-Date: 2005-03-29 06:04+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-03-14 04:20+0100\n" "Last-Translator: Fabian Mandelbaum <fa...@ma...>\n" "Language-Team: Spanish <es...@li...>\n" @@ -19,174 +19,172 @@ msgstr "" msgid "EXIF tags in '%s':" msgstr "Etiquetas EXIF en '%s':" -#: exif/actions.c:113 +#: exif/actions.c:114 #, c-format msgid "Unknown MakerNote format.\n" msgstr "" -#: exif/actions.c:120 +#: exif/actions.c:121 #, fuzzy, c-format msgid "MakerNote does not contain any value.\n" msgstr "IFD '%s' no contiene la etiqueta '%s'." -#: exif/actions.c:123 +#: exif/actions.c:124 #, c-format msgid "MakerNote contains 1 value:\n" msgstr "" -#: exif/actions.c:126 +#: exif/actions.c:127 #, fuzzy, c-format msgid "MakerNote contains %i values:\n" msgstr "Etiquetas EXIF en '%s':" -#: exif/actions.c:134 +#: exif/actions.c:135 msgid "Unknown tag" msgstr "" -#: exif/actions.c:137 +#: exif/actions.c:138 msgid "Unknown value" msgstr "" -#: exif/actions.c:162 +#: exif/actions.c:163 #, c-format msgid "EXIF tags in '%s' ('%s' byte order):" msgstr "Etiquetas EXIF en '%s' ('%s' es el orden de bytes):" -#: exif/actions.c:167 exif/actions.c:169 +#: exif/actions.c:168 exif/actions.c:170 msgid "Tag" msgstr "Etiqueta" -#: exif/actions.c:173 exif/actions.c:175 exif/main.c:297 +#: exif/actions.c:174 exif/actions.c:176 exif/main.c:353 msgid "Value" msgstr "Valor" -#: exif/actions.c:181 +#: exif/actions.c:182 #, c-format msgid "EXIF data contains a thumbnail (%i bytes)." msgstr "Los datos EXIF contienen una diapositiva (%i bytes)." -#: exif/actions.c:216 +#: exif/actions.c:218 #, c-format msgid "ThumbnailSize\t%i\n" msgstr "" -#: exif/main.c:51 +#: exif/main.c:55 #, c-format msgid "Internal error. Please contact <%s>.)" msgstr "Error interno. Por favor, contacte con <%s>." -#: exif/main.c:68 +#: exif/main.c:74 #, c-format msgid "EXIF entry '%s' (0x%x, '%s') exists in IFD '%s':" msgstr "La entrada EXIF '%s' (0x%x, '%s') existe en IFD '%s':" -#: exif/main.c:105 +#: exif/main.c:112 #, c-format msgid "Not enough memory." msgstr "No hay memoria suficiente." -#: exif/main.c:123 +#: exif/main.c:130 #, c-format msgid "Too few components specified!" msgstr "" -#: exif/main.c:153 +#: exif/main.c:160 #, c-format msgid "Not yet implemented!" msgstr "¡TodavÃa no implementado!" -#: exif/main.c:172 -#, c-format -msgid "Could not parse JPEG file '%s'." -msgstr "No se pudo analizar archivo JPEG '%s'." - -#: exif/main.c:182 +#: exif/main.c:233 #, c-format msgid "Too much EXIF data (%i bytes). Only %i bytes are allowed." msgstr "" -#: exif/main.c:196 exif/main.c:450 +#: exif/main.c:247 exif/main.c:496 #, c-format msgid "Wrote file '%s'." msgstr "Se escribió archivo '%s'." -#: exif/main.c:275 +#: exif/main.c:329 +msgid "Display software version" +msgstr "" + +#: exif/main.c:331 msgid "Show IDs instead of tag names" msgstr "Mostrar IDs en vez de nombres de etiqueta" -#: exif/main.c:277 +#: exif/main.c:333 msgid "Select tag" msgstr "Seleccionar etiqueta" -#: exif/main.c:277 +#: exif/main.c:333 msgid "tag" msgstr "etiqueta" -#: exif/main.c:279 +#: exif/main.c:335 msgid "Select IFD" msgstr "Seleccionar IFD" -#: exif/main.c:279 +#: exif/main.c:335 msgid "IFD" msgstr "IFD" -#: exif/main.c:281 +#: exif/main.c:337 msgid "List all EXIF tags" msgstr "Listar todas las etiquetas EXIF" -#: exif/main.c:283 +#: exif/main.c:339 #, fuzzy msgid "Show contents of tag MakerNote" msgstr "Mostrar IDs en vez de nombres de etiqueta" -#: exif/main.c:285 +#: exif/main.c:341 msgid "Remove tag or ifd" msgstr "" -#: exif/main.c:287 +#: exif/main.c:343 msgid "Show description of tag" msgstr "Mostrar descripción de la etiqueta" -#: exif/main.c:289 +#: exif/main.c:345 msgid "Extract thumbnail" msgstr "Extraer diapositiva" -#: exif/main.c:291 +#: exif/main.c:347 #, fuzzy msgid "Remove thumbnail" msgstr "Extraer diapositiva" -#: exif/main.c:293 +#: exif/main.c:349 msgid "Insert FILE as thumbnail" msgstr "Insertar ARCHIVO como diapositiva" -#: exif/main.c:293 exif/main.c:295 +#: exif/main.c:349 exif/main.c:351 msgid "FILE" msgstr "ARCHIVO" -#: exif/main.c:295 +#: exif/main.c:351 #, fuzzy msgid "Write data to FILE" msgstr "Escribir salida en ARCHIVO" -#: exif/main.c:299 +#: exif/main.c:355 msgid "Output in a machine-readable (tab delimited) format" msgstr "" -#: exif/main.c:302 +#: exif/main.c:358 +msgid "Output in a XML format" +msgstr "" + +#: exif/main.c:361 msgid "Show debugging messages" msgstr "" -#: exif/main.c:319 +#: exif/main.c:378 msgid "[OPTION...] file" msgstr "[OPCIÃN...] archivo" -#: exif/main.c:336 -#, c-format -msgid "Invalid tag '%s'!" -msgstr "¡Etiqueta '%s' no válida!" - -#: exif/main.c:347 +#: exif/main.c:403 #, c-format msgid "" "Invalid IFD '%s'. Valid IFDs are '0', '1', 'EXIF', 'GPS', and " @@ -195,81 +193,84 @@ msgstr "" "IFD '%s' no válido. Los IFD válidos son '0', '1', 'EXIF', 'GPS', e " "'Interoperability'." -#: exif/main.c:357 +#: exif/main.c:411 #, c-format +msgid "Invalid tag '%s'!" +msgstr "¡Etiqueta '%s' no válida!" + +#: exif/main.c:416 msgid "Please specify a tag!" msgstr "¡Especifique una etiqueta por favor!" -#: exif/main.c:361 +#: exif/main.c:417 #, c-format msgid "Tag '%s' (0x%04x, '%s'): %s" msgstr "Etiqueta '%s' (0x%04x, '%s'): %s" -#: exif/main.c:385 +#: exif/main.c:446 #, c-format msgid "'%s' does not contain EXIF data!" msgstr "¡'%s' no contiene datos EXIF!" -#: exif/main.c:411 +#: exif/main.c:469 #, c-format msgid "IFD '%s' does not contain tag '%s'." msgstr "IFD '%s' no contiene la etiqueta '%s'." -#: exif/main.c:425 +#: exif/main.c:478 #, c-format msgid "'%s' does not contain a thumbnail!" msgstr "¡'%s' no contiene una diapositiva!" -#: exif/main.c:437 +#: exif/main.c:486 #, c-format msgid "Could not open '%s' for writing (%m)!" msgstr "¡No se pudo abrir '%s' para escribir (%m)!" -#: exif/main.c:441 +#: exif/main.c:490 #, c-format msgid "Could not open '%s' for writing (%s)!" msgstr "¡No se pudo abrir '%s' para escribir (%s)!" -#: exif/main.c:479 +#: exif/main.c:525 #, c-format msgid "Could not open '%s' (%m)!" msgstr "¡No se pudo abrir '%s' (%m)!" -#: exif/main.c:482 +#: exif/main.c:528 #, c-format msgid "Could not open '%s' (%s)!" msgstr "¡No se pudo abrir '%s' (%s)!" -#: exif/main.c:493 -#, c-format -msgid "Could not allocate %i byte(s)." -msgstr "No se pudo asignar %i byte(s)." - -#: exif/main.c:503 +#: exif/main.c:540 #, c-format msgid "Could not read '%s' (%m)." msgstr "No se pudo leer '%s' (%m)." -#: exif/main.c:506 +#: exif/main.c:543 #, c-format msgid "Could not read '%s' (%s)." msgstr "No se pudo leer '%s' (%s)." -#: exif/main.c:521 -#, c-format +#: exif/main.c:554 msgid "You need to specify a tag!" msgstr "¡Debe especificar una etiqueta!" -#: exif/main.c:530 exif/main.c:553 -#, c-format +#: exif/main.c:559 exif/main.c:578 msgid "You need to specify an IFD!" msgstr "¡Debe especificar un IFD!" -#: exif/main.c:569 +#: exif/main.c:590 #, c-format msgid "IFD '%s' does not contain a tag '%s'!" msgstr "IFD '%s' no contiene la etiqueta '%s'." +#~ msgid "Could not parse JPEG file '%s'." +#~ msgstr "No se pudo analizar archivo JPEG '%s'." + +#~ msgid "Could not allocate %i byte(s)." +#~ msgstr "No se pudo asignar %i byte(s)." + #, fuzzy #~ msgid "EXIF MakerNote tags in '%s' ('%s' byte order):" #~ msgstr "Etiquetas EXIF en '%s' ('%s' es el orden de bytes):" Index: fr.po =================================================================== RCS file: /cvsroot/libexif/exif/po/fr.po,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- fr.po 29 Mar 2005 05:23:18 -0000 1.8 +++ fr.po 22 May 2007 22:53:41 -0000 1.9 @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: exif\n" -"Report-Msgid-Bugs-To: lib...@li...\n" -"POT-Creation-Date: 2005-03-29 06:04+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-03-14 04:17+0100\n" "Last-Translator: Arnaud Launay <as...@la...>\n" "Language-Team: Français <tr...@tr...>\n" @@ -20,173 +20,171 @@ msgstr "" msgid "EXIF tags in '%s':" msgstr "Marqueurs EXIF dans '%s' :" -#: exif/actions.c:113 +#: exif/actions.c:114 #, c-format msgid "Unknown MakerNote format.\n" msgstr "" -#: exif/actions.c:120 +#: exif/actions.c:121 #, fuzzy, c-format msgid "MakerNote does not contain any value.\n" msgstr "Makernote ne contient pas le marqueur '%s'." -#: exif/actions.c:123 +#: exif/actions.c:124 #, c-format msgid "MakerNote contains 1 value:\n" msgstr "" -#: exif/actions.c:126 +#: exif/actions.c:127 #, fuzzy, c-format msgid "MakerNote contains %i values:\n" msgstr "Marqueurs EXIF MakerNote dans '%s' :" -#: exif/actions.c:134 +#: exif/actions.c:135 msgid "Unknown tag" msgstr "" -#: exif/actions.c:137 +#: exif/actions.c:138 msgid "Unknown value" msgstr "" -#: exif/actions.c:162 +#: exif/actions.c:163 #, c-format msgid "EXIF tags in '%s' ('%s' byte order):" msgstr "Marqueurs EXIF dans'%s' (ordre des octets '%s') :" -#: exif/actions.c:167 exif/actions.c:169 +#: exif/actions.c:168 exif/actions.c:170 msgid "Tag" msgstr "Marqueur" -#: exif/actions.c:173 exif/actions.c:175 exif/main.c:297 +#: exif/actions.c:174 exif/actions.c:176 exif/main.c:353 msgid "Value" msgstr "Valeur" -#: exif/actions.c:181 +#: exif/actions.c:182 #, c-format msgid "EXIF data contains a thumbnail (%i bytes)." msgstr "Les données EXIF contiennent une vignette (%i octets)." -#: exif/actions.c:216 +#: exif/actions.c:218 #, c-format msgid "ThumbnailSize\t%i\n" msgstr "" -#: exif/main.c:51 +#: exif/main.c:55 #, c-format msgid "Internal error. Please contact <%s>.)" msgstr "Erreur interne. Veuillez contacter <%s>." -#: exif/main.c:68 +#: exif/main.c:74 #, c-format msgid "EXIF entry '%s' (0x%x, '%s') exists in IFD '%s':" msgstr "L'entrée EXIF '%s' (0x%x, '%s') existe dans l'IFD '%s' :" -#: exif/main.c:105 +#: exif/main.c:112 #, c-format msgid "Not enough memory." msgstr "Pas assez de mémoire." -#: exif/main.c:123 +#: exif/main.c:130 #, c-format msgid "Too few components specified!" msgstr "" -#: exif/main.c:153 +#: exif/main.c:160 #, c-format msgid "Not yet implemented!" msgstr "Pas encore implémenté !" -#: exif/main.c:172 -#, c-format -msgid "Could not parse JPEG file '%s'." -msgstr "Ne peut parcourir le fichier JPEG '%s'." - -#: exif/main.c:182 +#: exif/main.c:233 #, c-format msgid "Too much EXIF data (%i bytes). Only %i bytes are allowed." msgstr "Trop de données EXIF (%i octets). Seuls %i octets sont autorisés." -#: exif/main.c:196 exif/main.c:450 +#: exif/main.c:247 exif/main.c:496 #, c-format msgid "Wrote file '%s'." msgstr "Ãcrit le fichier '%s'." -#: exif/main.c:275 +#: exif/main.c:329 +msgid "Display software version" +msgstr "" + +#: exif/main.c:331 msgid "Show IDs instead of tag names" msgstr "Montre les ID plutôt que les noms des marqueurs" -#: exif/main.c:277 +#: exif/main.c:333 msgid "Select tag" msgstr "Sélection du marqueur" -#: exif/main.c:277 +#: exif/main.c:333 msgid "tag" msgstr "marqueur" -#: exif/main.c:279 +#: exif/main.c:335 msgid "Select IFD" msgstr "Sélection de l'IFD" -#: exif/main.c:279 +#: exif/main.c:335 msgid "IFD" msgstr "IFD" -#: exif/main.c:281 +#: exif/main.c:337 msgid "List all EXIF tags" msgstr "Liste tous les marqueurs EXIF" -#: exif/main.c:283 +#: exif/main.c:339 #, fuzzy msgid "Show contents of tag MakerNote" msgstr "Montre les ID plutôt que les noms des marqueurs" -#: exif/main.c:285 +#: exif/main.c:341 msgid "Remove tag or ifd" msgstr "Supprime le marqueur ou l'ifd" -#: exif/main.c:287 +#: exif/main.c:343 msgid "Show description of tag" msgstr "Montre la description du marqueur" -#: exif/main.c:289 +#: exif/main.c:345 msgid "Extract thumbnail" msgstr "Extrait la vignette" -#: exif/main.c:291 +#: exif/main.c:347 msgid "Remove thumbnail" msgstr "Supprime la vignette" -#: exif/main.c:293 +#: exif/main.c:349 msgid "Insert FILE as thumbnail" msgstr "Insère le FICHIER comme vignette" -#: exif/main.c:293 exif/main.c:295 +#: exif/main.c:349 exif/main.c:351 msgid "FILE" msgstr "FICHIER" -#: exif/main.c:295 +#: exif/main.c:351 #, fuzzy msgid "Write data to FILE" msgstr "Ãcrit la sortie vers le FICHIER" -#: exif/main.c:299 +#: exif/main.c:355 msgid "Output in a machine-readable (tab delimited) format" msgstr "" -#: exif/main.c:302 +#: exif/main.c:358 +msgid "Output in a XML format" +msgstr "" + +#: exif/main.c:361 msgid "Show debugging messages" msgstr "" -#: exif/main.c:319 +#: exif/main.c:378 msgid "[OPTION...] file" msgstr "[OPTION...] fichier" -#: exif/main.c:336 -#, c-format -msgid "Invalid tag '%s'!" -msgstr "Marqueur '%s' invalide !" - -#: exif/main.c:347 +#: exif/main.c:403 #, c-format msgid "" "Invalid IFD '%s'. Valid IFDs are '0', '1', 'EXIF', 'GPS', and " @@ -195,81 +193,84 @@ msgstr "" "IFD '%s' invalide. Les IFDs valides sont '0', '1', 'EXIF', 'GPS', " "et'Interoperability'." -#: exif/main.c:357 +#: exif/main.c:411 #, c-format +msgid "Invalid tag '%s'!" +msgstr "Marqueur '%s' invalide !" + +#: exif/main.c:416 msgid "Please specify a tag!" msgstr "Veuillez spécifier un marqueur !" -#: exif/main.c:361 +#: exif/main.c:417 #, c-format msgid "Tag '%s' (0x%04x, '%s'): %s" msgstr "Marqueur '%s' (0x%04x, '%s'): %s" -#: exif/main.c:385 +#: exif/main.c:446 #, c-format msgid "'%s' does not contain EXIF data!" msgstr "'%s' ne contient pas de données EXIF !" -#: exif/main.c:411 +#: exif/main.c:469 #, c-format msgid "IFD '%s' does not contain tag '%s'." msgstr "L'IFD '%s' ne contient pas de marqueur '%s'." -#: exif/main.c:425 +#: exif/main.c:478 #, c-format msgid "'%s' does not contain a thumbnail!" msgstr "'%s' ne contient pas de vignette !" -#: exif/main.c:437 +#: exif/main.c:486 #, c-format msgid "Could not open '%s' for writing (%m)!" msgstr "Ne peut ouvrir '%s' pour l'écriture (%m) !" -#: exif/main.c:441 +#: exif/main.c:490 #, c-format msgid "Could not open '%s' for writing (%s)!" msgstr "Ne peut ouvrir '%s' pour l'écriture (%s) !" -#: exif/main.c:479 +#: exif/main.c:525 #, c-format msgid "Could not open '%s' (%m)!" msgstr "Ne peut ouvrir '%s' (%m) !" -#: exif/main.c:482 +#: exif/main.c:528 #, c-format msgid "Could not open '%s' (%s)!" msgstr "Ne peut ouvrir '%s' (%s) !" -#: exif/main.c:493 -#, c-format -msgid "Could not allocate %i byte(s)." -msgstr "Ne peut allouer %i octet(s)." - -#: exif/main.c:503 +#: exif/main.c:540 #, c-format msgid "Could not read '%s' (%m)." msgstr "Ne peut lire '%s' (%m)." -#: exif/main.c:506 +#: exif/main.c:543 #, c-format msgid "Could not read '%s' (%s)." msgstr "Ne peut lire '%s' (%s)." -#: exif/main.c:521 -#, c-format +#: exif/main.c:554 msgid "You need to specify a tag!" msgstr "Vous devez spécifier un marqueur !" -#: exif/main.c:530 exif/main.c:553 -#, c-format +#: exif/main.c:559 exif/main.c:578 msgid "You need to specify an IFD!" msgstr "Vous devez spécifier un IFD !" -#: exif/main.c:569 +#: exif/main.c:590 #, c-format msgid "IFD '%s' does not contain a tag '%s'!" msgstr "L'IFD '%s' ne contient pas de marqueur '%s' !" +#~ msgid "Could not parse JPEG file '%s'." +#~ msgstr "Ne peut parcourir le fichier JPEG '%s'." + +#~ msgid "Could not allocate %i byte(s)." +#~ msgstr "Ne peut allouer %i octet(s)." + #~ msgid "EXIF MakerNote tags in '%s' ('%s' byte order):" #~ msgstr "Marqueurs EXIF MakerNote dans '%s' (ordre des octets '%s') :" Index: de.po =================================================================== RCS file: /cvsroot/libexif/exif/po/de.po,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- de.po 28 Sep 2005 06:54:53 -0000 1.12 +++ de.po 22 May 2007 22:53:41 -0000 1.13 @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2005-09-28 08:52+0200\n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-09-28 08:54+0200\n" "Last-Translator: Marcus Meissner <ma...@je...>\n" "Language-Team: <de...@li...>\n" @@ -59,7 +59,7 @@ msgstr "EXIF Einträge in '%s' ('%s' Byt msgid "Tag" msgstr "Eintrag" -#: exif/actions.c:174 exif/actions.c:176 exif/main.c:349 +#: exif/actions.c:174 exif/actions.c:176 exif/main.c:353 msgid "Value" msgstr "Wert" @@ -103,157 +103,164 @@ msgstr "Noch nicht implementiert!" msgid "Too much EXIF data (%i bytes). Only %i bytes are allowed." msgstr "Zuviel EXIF Daten (%i Bytes). Das Maximum ist %i Bytes." -#: exif/main.c:247 exif/main.c:484 +#: exif/main.c:247 exif/main.c:496 #, c-format msgid "Wrote file '%s'." msgstr "Datei '%s' geschrieben." -#: exif/main.c:327 +#: exif/main.c:329 +msgid "Display software version" +msgstr "" + +#: exif/main.c:331 msgid "Show IDs instead of tag names" msgstr "Zeige IDs anstelle der Namen der Einträge" -#: exif/main.c:329 +#: exif/main.c:333 msgid "Select tag" msgstr "Wähle Eintrag" -#: exif/main.c:329 +#: exif/main.c:333 msgid "tag" msgstr "Eintrag" -#: exif/main.c:331 +#: exif/main.c:335 msgid "Select IFD" msgstr "Wähle IFD" -#: exif/main.c:331 +#: exif/main.c:335 msgid "IFD" msgstr "IFD" -#: exif/main.c:333 +#: exif/main.c:337 msgid "List all EXIF tags" msgstr "Liste alle EXIF Einträge auf" -#: exif/main.c:335 +#: exif/main.c:339 msgid "Show contents of tag MakerNote" msgstr "Zeige Inhalt des MakerNote-Eintrags" -#: exif/main.c:337 +#: exif/main.c:341 msgid "Remove tag or ifd" msgstr "Entferne Tag oder IFD" -#: exif/main.c:339 +#: exif/main.c:343 msgid "Show description of tag" msgstr "Zeige Beschreibung des Eintrags" -#: exif/main.c:341 +#: exif/main.c:345 msgid "Extract thumbnail" msgstr "Extrahiere Vorschau" -#: exif/main.c:343 +#: exif/main.c:347 msgid "Remove thumbnail" msgstr "Lösche Vorschaubild" -#: exif/main.c:345 +#: exif/main.c:349 msgid "Insert FILE as thumbnail" msgstr "Füge DATEI als Vorschau ein" -#: exif/main.c:345 exif/main.c:347 +#: exif/main.c:349 exif/main.c:351 msgid "FILE" msgstr "DATEI" -#: exif/main.c:347 +#: exif/main.c:351 msgid "Write data to FILE" msgstr "Schreibe Daten in DATEI" -#: exif/main.c:351 +#: exif/main.c:355 msgid "Output in a machine-readable (tab delimited) format" msgstr "Gebe maschinenlesbares Format (tab delimited) aus." -#: exif/main.c:354 +#: exif/main.c:358 +msgid "Output in a XML format" +msgstr "" + +#: exif/main.c:361 msgid "Show debugging messages" msgstr "Zeige Diagnose-Nachrichten" -#: exif/main.c:371 +#: exif/main.c:378 msgid "[OPTION...] file" msgstr "[OPTION...] datei" -#: exif/main.c:391 +#: exif/main.c:403 #, c-format msgid "" "Invalid IFD '%s'. Valid IFDs are '0', '1', 'EXIF', 'GPS', and " "'Interoperability'." msgstr "" -"Unzulässiger IFD '%s'. Zulässige IFDs sind '0', '1', 'EXIF', 'GPS' " -"und 'Interoperability'." +"Unzulässiger IFD '%s'. Zulässige IFDs sind '0', '1', 'EXIF', 'GPS' und " +"'Interoperability'." -#: exif/main.c:399 +#: exif/main.c:411 #, c-format msgid "Invalid tag '%s'!" msgstr "Ungültiger Eintrag '%s'!" -#: exif/main.c:404 +#: exif/main.c:416 msgid "Please specify a tag!" msgstr "Bitte geben Sie einen Eintrag an!" -#: exif/main.c:405 +#: exif/main.c:417 #, c-format msgid "Tag '%s' (0x%04x, '%s'): %s" msgstr "Eintrag '%s' (0x%04x, '%s'): %s" -#: exif/main.c:434 +#: exif/main.c:446 #, c-format msgid "'%s' does not contain EXIF data!" msgstr "'%s' enthält keine EXIF Daten!" -#: exif/main.c:457 +#: exif/main.c:469 #, c-format msgid "IFD '%s' does not contain tag '%s'." msgstr "IFD '%s' enthält keinen Eintrag '%s'." -#: exif/main.c:466 +#: exif/main.c:478 #, c-format msgid "'%s' does not contain a thumbnail!" msgstr "'%s' enthält keine Vorschau!" -#: exif/main.c:474 +#: exif/main.c:486 #, c-format msgid "Could not open '%s' for writing (%m)!" msgstr "Konnte '%s' nicht zum Schreiben öffnen (%m)!" -#: exif/main.c:478 +#: exif/main.c:490 #, c-format msgid "Could not open '%s' for writing (%s)!" msgstr "Konnte '%s' nicht zum Schreiben öffnen (%s)!" -#: exif/main.c:513 +#: exif/main.c:525 #, c-format msgid "Could not open '%s' (%m)!" msgstr "Konnte '%s' nicht öffnen (%m)!" -#: exif/main.c:516 +#: exif/main.c:528 #, c-format msgid "Could not open '%s' (%s)!" msgstr "Konnte '%s' nicht öffnen (%s)!" -#: exif/main.c:528 +#: exif/main.c:540 #, c-format msgid "Could not read '%s' (%m)." msgstr "Konnte '%s' nicht lesen (%m)." -#: exif/main.c:531 +#: exif/main.c:543 #, c-format msgid "Could not read '%s' (%s)." msgstr "Konnte '%s' nicht lesen (%s)." -#: exif/main.c:542 +#: exif/main.c:554 msgid "You need to specify a tag!" msgstr "Bitte geben Sie einen Eintrag an!" -#: exif/main.c:547 exif/main.c:566 +#: exif/main.c:559 exif/main.c:578 msgid "You need to specify an IFD!" msgstr "Bitte geben Sie einen IFD an!" -#: exif/main.c:578 +#: exif/main.c:590 #, c-format msgid "IFD '%s' does not contain a tag '%s'!" msgstr "IFD '%s' enthält keinen Eintrag '%s'!" - |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:53:35
|
Update of /cvsroot/libexif/libexif-gtk/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8187/po Modified Files: es.po fr.po pl.po ru.po Log Message: update-po Index: pl.po =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/po/pl.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- pl.po 15 Aug 2005 20:48:16 -0000 1.1 +++ pl.po 22 May 2007 22:53:31 -0000 1.2 @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: libexif-gtk 0.3.5\n" -"POT-Creation-Date: 2004-10-17 16:44+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-03-21 17:20+0100\n" "Last-Translator: Jakub Bogusz <qb...@pl...>\n" "Language-Team: Polish <tra...@li...>\n" Index: es.po =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/po/es.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- es.po 15 Apr 2005 04:31:49 -0000 1.4 +++ es.po 22 May 2007 22:53:31 -0000 1.5 @@ -1,51 +1,56 @@ # libexif-gtk Spanish Translation. -# Copyright © 2002 Free Software Foundation, Inc. +# Copyright © 2002 Free Software Foundation, Inc. # Fabian Mandelbaum <fa...@ma...>, 2002. # msgid "" msgstr "" "Project-Id-Version: libexif-gtk\n" -"POT-Creation-Date: 2002-07-25 19:01+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2002-09-05 22:32-0300\n" "Last-Translator: Fabian Mandelbaum <fa...@ma...>\n" "Language-Team: Spanish <es...@li...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: libexif-gtk/gtk-exif-browser.c:367 +#: libexif-gtk/gtk-exif-browser.c:145 +msgid "Nothing selected." +msgstr "" + +#: libexif-gtk/gtk-exif-browser.c:393 msgid "No thumbnail available." msgstr "Sin diapositiva disponible." -#: libexif-gtk/gtk-exif-browser.c:375 +#: libexif-gtk/gtk-exif-browser.c:401 msgid "Could not parse thumbnail data." msgstr "No se pueden analizar datos de diapositiva." -#: libexif-gtk/gtk-exif-browser.c:390 +#: libexif-gtk/gtk-exif-browser.c:416 #, c-format msgid "Size: %i byte(s)." -msgstr "Tamaño: %i byte(s)." +msgstr "Tamaño: %i byte(s)." -#: libexif-gtk/gtk-exif-browser.c:459 +#: libexif-gtk/gtk-exif-browser.c:485 msgid "Load..." msgstr "Cargar..." -#: libexif-gtk/gtk-exif-browser.c:499 +#: libexif-gtk/gtk-exif-browser.c:525 msgid "Save As..." msgstr "Guardar como..." -#: libexif-gtk/gtk-exif-browser.c:549 +#: libexif-gtk/gtk-exif-browser.c:575 msgid "Thumbnail" msgstr "Diapositiva" -#: libexif-gtk/gtk-exif-browser.c:566 +#: libexif-gtk/gtk-exif-browser.c:592 msgid "Load" msgstr "Cargar" -#: libexif-gtk/gtk-exif-browser.c:571 +#: libexif-gtk/gtk-exif-browser.c:597 msgid "Save" msgstr "Guardar" -#: libexif-gtk/gtk-exif-browser.c:576 +#: libexif-gtk/gtk-exif-browser.c:602 msgid "Delete" msgstr "Borrar" Index: fr.po =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/po/fr.po,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- fr.po 15 Apr 2005 04:31:49 -0000 1.4 +++ fr.po 22 May 2007 22:53:31 -0000 1.5 @@ -1,52 +1,57 @@ # LIBEXIF-GTK PO FILE -# Copyright © 2003 Free Software Foundation, Inc. +# Copyright © 2003 Free Software Foundation, Inc. # This file is distributed under the same license as the LIBEXIF-GTK package. # Arnaud Launay <as...@la...>, 2003. # msgid "" msgstr "" "Project-Id-Version: libexif-gtk 0.3.3\n" -"POT-Creation-Date: 2003-01-07 17:11+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2003-01-07 17:30+0100\n" "Last-Translator: Arnaud Launay <as...@la...>\n" -"Language-Team: Français <tr...@tr...>\n" +"Language-Team: Français <tr...@tr...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: libexif-gtk/gtk-exif-browser.c:371 +#: libexif-gtk/gtk-exif-browser.c:145 +msgid "Nothing selected." +msgstr "" + +#: libexif-gtk/gtk-exif-browser.c:393 msgid "No thumbnail available." msgstr "Pas de vignette disponible." -#: libexif-gtk/gtk-exif-browser.c:379 +#: libexif-gtk/gtk-exif-browser.c:401 msgid "Could not parse thumbnail data." -msgstr "Ne peut parcourir les donneés de la vignette." +msgstr "Ne peut parcourir les donneés de la vignette." -#: libexif-gtk/gtk-exif-browser.c:394 +#: libexif-gtk/gtk-exif-browser.c:416 #, c-format msgid "Size: %i byte(s)." msgstr "Taille: %i octet(s)." -#: libexif-gtk/gtk-exif-browser.c:463 +#: libexif-gtk/gtk-exif-browser.c:485 msgid "Load..." msgstr "Chargement..." -#: libexif-gtk/gtk-exif-browser.c:503 +#: libexif-gtk/gtk-exif-browser.c:525 msgid "Save As..." msgstr "Sauver sous..." -#: libexif-gtk/gtk-exif-browser.c:553 +#: libexif-gtk/gtk-exif-browser.c:575 msgid "Thumbnail" msgstr "Vignette" -#: libexif-gtk/gtk-exif-browser.c:570 +#: libexif-gtk/gtk-exif-browser.c:592 msgid "Load" msgstr "Charger" -#: libexif-gtk/gtk-exif-browser.c:575 +#: libexif-gtk/gtk-exif-browser.c:597 msgid "Save" msgstr "Sauver" -#: libexif-gtk/gtk-exif-browser.c:580 +#: libexif-gtk/gtk-exif-browser.c:602 msgid "Delete" msgstr "Effacer" Index: ru.po =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/po/ru.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- ru.po 15 Apr 2005 04:31:49 -0000 1.3 +++ ru.po 22 May 2007 22:53:31 -0000 1.4 @@ -6,47 +6,52 @@ msgid "" msgstr "" "Project-Id-Version: libexif-gtk 0.3.3\n" -"POT-Creation-Date: 2003-03-21 00:19+0300\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2003-03-19 21:37+0300\n" "Last-Translator: ÐÑÑеÑлав Ðиконов <sdi...@ma...>\n" "Language-Team: Russian <ru...@li...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: libexif-gtk/gtk-exif-browser.c:371 +#: libexif-gtk/gtk-exif-browser.c:145 +msgid "Nothing selected." +msgstr "" + +#: libexif-gtk/gtk-exif-browser.c:393 msgid "No thumbnail available." msgstr "ÐÐµÑ Ð¼Ð¸Ð½Ð¸Ð°ÑÑÑного изобÑажениÑ." -#: libexif-gtk/gtk-exif-browser.c:379 +#: libexif-gtk/gtk-exif-browser.c:401 msgid "Could not parse thumbnail data." msgstr "Ðевозможно пÑоÑеÑÑÑ Ð¼Ð¸Ð½Ð¸Ð°ÑÑÑное изобÑажение." -#: libexif-gtk/gtk-exif-browser.c:394 +#: libexif-gtk/gtk-exif-browser.c:416 #, c-format msgid "Size: %i byte(s)." msgstr "РазмеÑ: %i байÑ." -#: libexif-gtk/gtk-exif-browser.c:463 +#: libexif-gtk/gtk-exif-browser.c:485 msgid "Load..." msgstr "ÐагÑÑзиÑÑ..." -#: libexif-gtk/gtk-exif-browser.c:503 +#: libexif-gtk/gtk-exif-browser.c:525 msgid "Save As..." msgstr "Ð¡Ð¾Ñ ÑаниÑÑ ÐºÐ°Ðº..." -#: libexif-gtk/gtk-exif-browser.c:553 +#: libexif-gtk/gtk-exif-browser.c:575 msgid "Thumbnail" msgstr "ÐиниаÑÑÑа" -#: libexif-gtk/gtk-exif-browser.c:570 +#: libexif-gtk/gtk-exif-browser.c:592 msgid "Load" msgstr "ÐагÑÑзиÑÑ" -#: libexif-gtk/gtk-exif-browser.c:575 +#: libexif-gtk/gtk-exif-browser.c:597 msgid "Save" msgstr "Ð¡Ð¾Ñ ÑаниÑÑ" -#: libexif-gtk/gtk-exif-browser.c:580 +#: libexif-gtk/gtk-exif-browser.c:602 msgid "Delete" msgstr "УдалиÑÑ" |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:53:35
|
Update of /cvsroot/libexif/gexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8150/po Modified Files: de.po es.po fr.po pl.po Log Message: update-po Index: pl.po =================================================================== RCS file: /cvsroot/libexif/gexif/po/pl.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- pl.po 15 Aug 2005 20:52:47 -0000 1.1 +++ pl.po 22 May 2007 22:53:30 -0000 1.2 @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: gexif 0.5\n" -"POT-Creation-Date: 2003-01-07 19:11+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2005-03-21 18:20+0100\n" "Last-Translator: Jakub Bogusz <qb...@pl...>\n" "Language-Team: Polish <tra...@li...>\n" Index: es.po =================================================================== RCS file: /cvsroot/libexif/gexif/po/es.po,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- es.po 15 Dec 2002 11:39:21 -0000 1.2 +++ es.po 22 May 2007 22:53:30 -0000 1.3 @@ -1,16 +1,17 @@ # gexif Spanish Translation. -# Copyright © 2002 Free Software Foundation, Inc. +# Copyright © 2002 Free Software Foundation, Inc. # Fabian Mandelbaum <fa...@ma...>, 2002. # msgid "" msgstr "" "Project-Id-Version: gexif\n" -"POT-Creation-Date: 2002-07-23 11:00+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2002-09-03 20:10-0300\n" "Last-Translator: Fabian Mandelbaum <fa...@ma...>\n" "Language-Team: Spanish <es...@li...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: gexif/gexif-main.c:239 Index: fr.po =================================================================== RCS file: /cvsroot/libexif/gexif/po/fr.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- fr.po 7 Jan 2003 18:07:35 -0000 1.1 +++ fr.po 22 May 2007 22:53:30 -0000 1.2 @@ -1,17 +1,18 @@ # GEXIF PO FILE -# Copyright © 2003 Free Software Foundation, Inc. +# Copyright © 2003 Free Software Foundation, Inc. # This file is distributed under the same license as the GEXIF package. # Arnaud Launay <as...@la...>, 2002. # msgid "" msgstr "" "Project-Id-Version: gexif 0.5\n" -"POT-Creation-Date: 2003-01-07 18:59+0100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2003-01-07 19:00+0100\n" "Last-Translator: Arnaud Launay <as...@la...>\n" -"Language-Team: Français <tr...@tr...>\n" +"Language-Team: Français <tr...@tr...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: gexif/gexif-main.c:239 Index: de.po =================================================================== RCS file: /cvsroot/libexif/gexif/po/de.po,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- de.po 13 Jul 2003 08:04:38 -0000 1.3 +++ de.po 22 May 2007 22:53:30 -0000 1.4 @@ -1,12 +1,13 @@ msgid "" msgstr "" "Project-Id-Version: gexif\n" -"POT-Creation-Date: 2002-07-23 11:00+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-05-17 17:23+0200\n" "PO-Revision-Date: 2002-03-21 16:33GMT\n" -"Last-Translator: Lutz Müller <lu...@us...>\n" +"Last-Translator: Lutz Müller <lu...@us...>\n" "Language-Team: Deutsch <de...@li...>\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: gexif/gexif-main.c:239 @@ -30,7 +31,7 @@ msgstr "" #~ msgstr "Konnte Kamera nicht initialisieren." #~ msgid "Could not get abilities of model '%s'." -#~ msgstr "Konnte die Fähigkeiten des Modells »%s« nicht abfragen." +#~ msgstr "Konnte die Fähigkeiten des Modells »%s« nicht abfragen." #~ msgid "Detecting cameras..." #~ msgstr "Erkenne Kameras..." @@ -42,7 +43,7 @@ msgstr "" #~ msgstr "Konnte keine Kameras finden." #~ msgid "Select Camera" -#~ msgstr "Wähle Kamera aus" +#~ msgstr "Wähle Kamera aus" #~ msgid "Model:" #~ msgstr "Modell:" @@ -68,10 +69,10 @@ msgstr "" #~ msgstr "Erweitert" #~ msgid "Could not get number of supported camera models" -#~ msgstr "Konnte die Anzahl der unterstützten Kameras nicht abfragen" +#~ msgstr "Konnte die Anzahl der unterstützten Kameras nicht abfragen" #~ msgid "Could not get number of ports." -#~ msgstr "Konnte die Anzahl der Anschlüsse nicht abfragen." +#~ msgstr "Konnte die Anzahl der Anschlüsse nicht abfragen." #~ msgid "Applying configuration..." #~ msgstr "Setze Konfiguration..." @@ -80,28 +81,28 @@ msgstr "" #~ msgstr "Konnte die Konfiguration nicht setzen." #~ msgid "No additional information available. (1)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (1)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (1)" #~ msgid "General Settings" #~ msgstr "Allgemeine Einstellungen" #~ msgid "Could not execute command." -#~ msgstr "Konnte den Befehl nicht ausführen." +#~ msgstr "Konnte den Befehl nicht ausführen." #~ msgid "No additional information available. (2)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (2)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (2)" #~ msgid "No additional information available. (3)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (3)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (3)" #~ msgid "No additional information available. (4)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (4)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (4)" #~ msgid "No additional information available. (5)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (5)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (5)" #~ msgid "No additional information available. (6)" -#~ msgstr "Keine zusätzlichen Informationen verfügbar. (6)" +#~ msgstr "Keine zusätzlichen Informationen verfügbar. (6)" #~ msgid "Getting configuration..." #~ msgstr "Frage Konfiguration ab..." @@ -110,7 +111,7 @@ msgstr "" #~ msgstr "Konnte die Konfiguration nicht abfragen." #~ msgid "Could not open '%s'!" -#~ msgstr "Konnte »%s« nicht öffnen!" +#~ msgstr "Konnte »%s« nicht öffnen!" #~ msgid "Type of messages to log:" #~ msgstr "Art der zu loggenden Meldungen:" @@ -119,7 +120,7 @@ msgstr "" #~ msgstr "Fehler" #~ msgid "Verbose" -#~ msgstr "Gesprächig" +#~ msgstr "Gesprächig" #~ msgid "Debug" #~ msgstr "Debug" @@ -128,42 +129,42 @@ msgstr "" #~ msgstr "Daten" #~ msgid "Deleting all files in '%s'..." -#~ msgstr "Lösche alle Dateien in »%s«..." +#~ msgstr "Lösche alle Dateien in »%s«..." #~ msgid "Could not delete all files in '%s'." -#~ msgstr "Konnte nicht alle Dateien in »%s« löschen." +#~ msgstr "Konnte nicht alle Dateien in »%s« löschen." #~ msgid "Deleting file '%s' from folder '%s'..." -#~ msgstr "Lösche Datei »%s« aus Verzeichnis »%s«..." +#~ msgstr "Lösche Datei »%s« aus Verzeichnis »%s«..." #~ msgid "Could not delete file '%s' in folder '%s'." -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." #~ msgid "Do you really want to delete the following file?" -#~ msgstr "Möchten Sie die folgende Datei wirklich löschen?" +#~ msgstr "Möchten Sie die folgende Datei wirklich löschen?" #~ msgid "Do you really want to delete the following %i files?" -#~ msgstr "Möchten Sie die folgenden %i Dateien wirklich löschen?" +#~ msgstr "Möchten Sie die folgenden %i Dateien wirklich löschen?" #, fuzzy #~ msgid "'%s' in folder '%s'" -#~ msgstr "Lade »%s« in das Verzeichnis »%s« hoch..." +#~ msgstr "Lade »%s« in das Verzeichnis »%s« hoch..." #, fuzzy #~ msgid "All files in folder '%s'" -#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." +#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." #~ msgid "More" #~ msgstr "Mehr" #, fuzzy #~ msgid "Getting EXIF information for file '%s' in folder '%s'..." -#~ msgstr "Hole Informationen über Datei »%s« im Verzeichnis »%s«..." +#~ msgstr "Hole Informationen über Datei »%s« im Verzeichnis »%s«..." #, fuzzy #~ msgid "Could not get exif information for '%s' in folder '%s'" #~ msgstr "" -#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." +#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." #, fuzzy #~ msgid "Could not interpret EXIF data." @@ -176,33 +177,33 @@ msgstr "" #~ msgstr "<Toolbox>/Datei/Acquire/Aufnahme von Kamera machen..." #~ msgid "Loads files from digital cameras" -#~ msgstr "Lädt Dateien von digitalen Kameras" +#~ msgstr "Lädt Dateien von digitalen Kameras" #~ msgid "<Toolbox>/File/Acquire/Load from Camera..." #~ msgstr "<Toolbox>/Datei/Acquire/Lade von Kamera..." #~ msgid "Downloading '%s' from '%s'..." -#~ msgstr "Lade »%s« aus »%s« herunter..." +#~ msgstr "Lade »%s« aus »%s« herunter..." #~ msgid "Could not download file '%s' from folder '%s'." -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« holen." +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« holen." #, fuzzy #~ msgid "Setting information for file '%s' in '%s'..." -#~ msgstr "Hole Informationen über Datei »%s« in »%s«..." +#~ msgstr "Hole Informationen über Datei »%s« in »%s«..." #, fuzzy #~ msgid "Could not set file information for '%s' in folder '%s'" #~ msgstr "" -#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." +#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." #~ msgid "Getting information about file '%s' in folder '%s'..." -#~ msgstr "Hole Informationen über Datei »%s« im Verzeichnis »%s«..." +#~ msgstr "Hole Informationen über Datei »%s« im Verzeichnis »%s«..." #, fuzzy #~ msgid "Could not get information about file '%s' in '%s' in folder '%s'." #~ msgstr "" -#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." +#~ "Konnte keine Informationen über Datei »%s« im Verzeichnis »%s« bekommen." #~ msgid "File" #~ msgstr "Datei" @@ -217,7 +218,7 @@ msgstr "" #~ msgstr "Zuletzt modifiziert:" #~ msgid "Size:" -#~ msgstr "Größe:" +#~ msgstr "GröÃe:" #~ msgid "%li bytes" #~ msgstr "%li Bytes" @@ -229,7 +230,7 @@ msgstr "" #~ msgstr "Lesen" #~ msgid "Delete" -#~ msgstr "Löschen" +#~ msgstr "Löschen" #~ msgid "Preview" #~ msgstr "Vorschau" @@ -242,21 +243,21 @@ msgstr "" #, fuzzy #~ msgid "Downloading thumbnail of '%s' from folder '%s'..." -#~ msgstr "Hole Vorschaubild der Datei »%s« im Verzeichnis »%s«..." +#~ msgstr "Hole Vorschaubild der Datei »%s« im Verzeichnis »%s«..." #, fuzzy #~ msgid "Changing name of '%s' to '%s'..." -#~ msgstr "Lege Verzeichnis »%s« im Verzeichnis »%s« an..." +#~ msgstr "Lege Verzeichnis »%s« im Verzeichnis »%s« an..." #, fuzzy #~ msgid "Could not change the name of '%s' to '%s'." -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." #~ msgid "Listing files in folder '%s'..." -#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." +#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." #~ msgid "Could not get file list for folder '%s'" -#~ msgstr "Fehler beim Herunterladen der Dateiliste des Verzeichnisses »%s«" +#~ msgstr "Fehler beim Herunterladen der Dateiliste des Verzeichnisses »%s«" #~ msgid "" #~ "%s %s\n" @@ -277,15 +278,15 @@ msgstr "" #~ "\n" #~ "gtKam wurde geschrieben von:\n" #~ " - Scott Fritzinger <sc...@un...>,\n" -#~ " - Lutz Müller <lu...@us...>\n" +#~ " - Lutz Müller <lu...@us...>\n" #~ "und vielen anderen.\n" #~ "\n" #~ "gtKam verwendet libgphoto2, eine Bibliothek,\n" #~ "um viele digitale Kameras anzusprechen. Mehr\n" #~ "Informationen sind unter\n" -#~ "http://www.gphoto.net erhältlich.\n" +#~ "http://www.gphoto.net erhältlich.\n" #~ "\n" -#~ "Viel Spaß mit gphoto!" +#~ "Viel Spaà mit gphoto!" #~ msgid "_Help" #~ msgstr "_Hilfe" @@ -294,7 +295,7 @@ msgstr "" #~ msgstr "_Debug..." #~ msgid "_About..." -#~ msgstr "_Über..." +#~ msgstr "_Ãber..." #~ msgid "Index Settings" #~ msgstr "Indexeinstellungen" @@ -303,15 +304,15 @@ msgstr "" #~ msgstr "Zeige Vorschaubilder" #~ msgid "Creating folder '%s' in folder '%s'..." -#~ msgstr "Lege Verzeichnis »%s« im Verzeichnis »%s« an..." +#~ msgstr "Lege Verzeichnis »%s« im Verzeichnis »%s« an..." #~ msgid "Could not create folder '%s' in folder '%s'." -#~ msgstr "Konnte Verzeichnis »%s« nicht im Verzeichnis »%s« anlegen." +#~ msgstr "Konnte Verzeichnis »%s« nicht im Verzeichnis »%s« anlegen." #~ msgid "" #~ "Please choose a name for the directory that should be created in '%s':" #~ msgstr "" -#~ "Bitte wählen Sie einen Namen für das Verzeichnis, welches in »%s« " +#~ "Bitte wählen Sie einen Namen für das Verzeichnis, welches in »%s« " #~ "angelegt werden soll:" #~ msgid "New directory" @@ -320,7 +321,7 @@ msgstr "" #, fuzzy #~ msgid "Could not find and io-driver for port '%s' ('%s')." #~ msgstr "" -#~ "Konnte Verzeichnisliste des Verzeichnisses »%s« nicht herunterladen." +#~ "Konnte Verzeichnisliste des Verzeichnisses »%s« nicht herunterladen." #~ msgid "Capturing image..." #~ msgstr "Mache Aufnahme..." @@ -341,29 +342,29 @@ msgstr "" #~ msgstr "-90 Grad" #~ msgid "Rotate thumbnail by -90 degrees" -#~ msgstr "Vorschaubild um -90° rotieren" +#~ msgstr "Vorschaubild um -90° rotieren" #~ msgid "+90 degrees" #~ msgstr "+90 Grad" #, fuzzy #~ msgid "Rotate thumbnail by 90 degrees" -#~ msgstr "Vorschaubild um 90° rotieren" +#~ msgstr "Vorschaubild um 90° rotieren" #~ msgid "180 degrees" #~ msgstr "180 Grad" #~ msgid "Rotate thumbnail by 180 degrees" -#~ msgstr "Vorschaubild um 180° rotieren" +#~ msgstr "Vorschaubild um 180° rotieren" #~ msgid "'%s' already exists." -#~ msgstr "»%s« existiert bereits." +#~ msgstr "»%s« existiert bereits." #~ msgid "Could not save file to '%s'." -#~ msgstr "Konnte Datei nicht unter »%s« speichern." +#~ msgstr "Konnte Datei nicht unter »%s« speichern." #~ msgid "Could not get '%s' from folder '%s'." -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« holen." +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« holen." #~ msgid "Downloading %i files..." #~ msgstr "Lade %i Dateien herunter..." @@ -402,7 +403,7 @@ msgstr "" #~ msgstr "EXIF-Daten werden gespeichert, wenn dies angekreuzt ist" #~ msgid "Open image(s) with: " -#~ msgstr "Öffne Bild(er) mit: " +#~ msgstr "Ãffne Bild(er) mit: " #~ msgid "" #~ "Type in the name of the program you want to run, leave blank for none" @@ -415,35 +416,35 @@ msgstr "" #~ msgstr "Verwende die Dateinamen der Kamera" #~ msgid "Choose whether to use the filename provided by the camera" -#~ msgstr "Auswählen, ob die Dateinamen der Kamera verwendet werden sollen" +#~ msgstr "Auswählen, ob die Dateinamen der Kamera verwendet werden sollen" #~ msgid "Filename prefix: " -#~ msgstr "Dateinamen-Präfix" +#~ msgstr "Dateinamen-Präfix" #~ msgid "Save '%s'..." -#~ msgstr "Speichere »%s«..." +#~ msgstr "Speichere »%s«..." #~ msgid "Save photos..." #~ msgstr "Speichere Photos..." #, fuzzy #~ msgid "Listing folders in '%s'..." -#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." +#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." #, fuzzy #~ msgid "Could not list folders in '%s'." -#~ msgstr "Konnte nicht alle Dateien in »%s« löschen." +#~ msgstr "Konnte nicht alle Dateien in »%s« löschen." #~ msgid "Could not open '%s'." -#~ msgstr "Konnte »%s« nicht öffnen." +#~ msgstr "Konnte »%s« nicht öffnen." #, fuzzy #~ msgid "Uploading '%s' into folder '%s'..." -#~ msgstr "Konnte Datei »%s« nicht in das Verzeichnis »%s« hochladen." +#~ msgstr "Konnte Datei »%s« nicht in das Verzeichnis »%s« hochladen." #, fuzzy #~ msgid "Could not upload '%s' into '%s'." -#~ msgstr "Konnte Datei »%s« nicht in das Verzeichnis »%s« hochladen." +#~ msgstr "Konnte Datei »%s« nicht in das Verzeichnis »%s« hochladen." #, fuzzy #~ msgid "Upload into '%s'..." @@ -451,14 +452,14 @@ msgstr "" #, fuzzy #~ msgid "Removing directory '%s'..." -#~ msgstr "Entferne »%s« aus »%s«..." +#~ msgstr "Entferne »%s« aus »%s«..." #, fuzzy #~ msgid "Could not remove directory '%s'." -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen." #~ msgid "Getting information about the camera..." -#~ msgstr "Frage Informationen über die Kamera ab..." +#~ msgstr "Frage Informationen über die Kamera ab..." #~ msgid "Getting information about the driver..." #~ msgstr "Frage Treiberinformationen ab..." @@ -484,12 +485,12 @@ msgstr "" #~ "Could not display '%s'. Either the image type ('%s') is not supported by " #~ "gtk or the file itself is corrupt." #~ msgstr "" -#~ "Konnte »%s« nicht anzeigen. Entweder wird der Bildtyp (»%s«) nicht von " -#~ "GTK unterstützt oder die Datei selbst ist nicht in Ordnung." +#~ "Konnte »%s« nicht anzeigen. Entweder wird der Bildtyp (»%s«) nicht von " +#~ "GTK unterstützt oder die Datei selbst ist nicht in Ordnung." #, fuzzy #~ msgid "Couldn't find pixmap file: %s" -#~ msgstr "Konnte Datei »%s« nicht holen." +#~ msgstr "Konnte Datei »%s« nicht holen." #, fuzzy #~ msgid "Error loading pixmap file: %s" @@ -499,7 +500,7 @@ msgstr "" #~ msgstr "Abbrechen" #~ msgid "Add" -#~ msgstr "Hinzufügen" +#~ msgstr "Hinzufügen" #~ msgid "Ok" #~ msgstr "Ok" @@ -511,32 +512,32 @@ msgstr "" #~ msgstr "Dateiname" #~ msgid "Getting file '%s' from folder '%s'..." -#~ msgstr "Hole Datei »%s« aus Verzeichnis »%s«..." +#~ msgstr "Hole Datei »%s« aus Verzeichnis »%s«..." #~ msgid "Could not get file '%s'." -#~ msgstr "Konnte Datei »%s« nicht holen." +#~ msgstr "Konnte Datei »%s« nicht holen." #~ msgid "Getting list of files in folder '%s'..." -#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." +#~ msgstr "Hole Dateiliste des Verzeichnisses »%s«..." #~ msgid "Could not get file list for folder '%s'." -#~ msgstr "Konnte Dateiliste des Verzeichnisses »%s« nicht holen." +#~ msgstr "Konnte Dateiliste des Verzeichnisses »%s« nicht holen." #~ msgid "Close" -#~ msgstr "Schließen" +#~ msgstr "SchlieÃen" #~ msgid "Background" #~ msgstr "Hintergrund" #~ msgid "Could not set file information for '%s'" -#~ msgstr "Konnte Dateiinformationen für »%s« nicht setzen" +#~ msgstr "Konnte Dateiinformationen für »%s« nicht setzen" #~ msgid "Reset" -#~ msgstr "Zurücksetzen" +#~ msgstr "Zurücksetzen" #~ msgid "Could not get preview of file '%s' in folder '%s'" #~ msgstr "" -#~ "Konnte Vorschaubild der Datei »%s« im Verzeichnis »%s« nicht herunterladen" +#~ "Konnte Vorschaubild der Datei »%s« im Verzeichnis »%s« nicht herunterladen" #~ msgid "Info" #~ msgstr "Info" @@ -548,22 +549,22 @@ msgstr "" #~ msgstr "Speichern" #~ msgid "Getting preview of file '%s' in folder '%s'..." -#~ msgstr "Hole Vorschau der Datei »%s« im Verzeichnis »%s«..." +#~ msgstr "Hole Vorschau der Datei »%s« im Verzeichnis »%s«..." #~ msgid "Could not get preview of file '%s' in folder '%s'." -#~ msgstr "Konnte Vorschau der Datei »%s« im Verzeichnis »%s« nicht holen." +#~ msgstr "Konnte Vorschau der Datei »%s« im Verzeichnis »%s« nicht holen." #~ msgid "_File" #~ msgstr "_Datei" #~ msgid "_Save Selected Photos..." -#~ msgstr "_Speichere ausgewählte Photos..." +#~ msgstr "_Speichere ausgewählte Photos..." #~ msgid "_Delete Photos" -#~ msgstr "_Lösche Photos" +#~ msgstr "_Lösche Photos" #~ msgid "_Selected" -#~ msgstr "_Ausgewählte" +#~ msgstr "_Ausgewählte" #~ msgid "_All" #~ msgstr "_Alle" @@ -572,7 +573,7 @@ msgstr "" #~ msgstr "_Beenden" #~ msgid "_Select" -#~ msgstr "_Auswählen" +#~ msgstr "_Auswählen" #~ msgid "_Inverse" #~ msgstr "_Umkehren" @@ -585,7 +586,7 @@ msgstr "" #, fuzzy #~ msgid "_Add Camera..." -#~ msgstr "_Wähle Kamera..." +#~ msgstr "_Wähle Kamera..." #, fuzzy #~ msgid "Manual" @@ -593,13 +594,13 @@ msgstr "" #, fuzzy #~ msgid "About the driver" -#~ msgstr "_Über den Treiber..." +#~ msgstr "_Ãber den Treiber..." #~ msgid "Save selected photos..." -#~ msgstr "Speichere ausgewählte Photos..." +#~ msgstr "Speichere ausgewählte Photos..." #~ msgid "Delete selected photos" -#~ msgstr "Lösche ausgewählte Photos" +#~ msgstr "Lösche ausgewählte Photos" #~ msgid "Exit" #~ msgstr "Beenden" @@ -608,40 +609,40 @@ msgstr "" #~ msgstr "100%" #~ msgid "Don't enlarge thumbnail" -#~ msgstr "Vorschaubild nicht vergrößern" +#~ msgstr "Vorschaubild nicht vergröÃern" #~ msgid "150%" #~ msgstr "150%" #~ msgid "Enlarge thumbnail by 50%" -#~ msgstr "Vorschaubild um 50% vergrößern" +#~ msgstr "Vorschaubild um 50% vergröÃern" #~ msgid "200%" #~ msgstr "200%" #~ msgid "Enlarge thumbnail by 100%" -#~ msgstr "Vorschaubild um 100% vergrößern" +#~ msgstr "Vorschaubild um 100% vergröÃern" #~ msgid "250%" #~ msgstr "250%" #~ msgid "Enlarge thumbnail by 150%" -#~ msgstr "Vorschaubild um 150% vergrößern" +#~ msgstr "Vorschaubild um 150% vergröÃern" #~ msgid "Configure" #~ msgstr "Konfigurieren" #~ msgid "Could not remove '%s' from '%s'" -#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen" +#~ msgstr "Konnte Datei »%s« nicht aus Verzeichnis »%s« löschen" #~ msgid "Make" #~ msgstr "Machen" #~ msgid "Remove" -#~ msgstr "Löschen" +#~ msgstr "Löschen" #~ msgid "Do you really want to delete ALL files in '%s'?" -#~ msgstr "Möchten Sie wirklich ALLE Dateien in »%s« löschen?" +#~ msgstr "Möchten Sie wirklich ALLE Dateien in »%s« löschen?" #~ msgid "Could not retrieve manual." #~ msgstr "Konnte die Kameraanleitung nicht abfragen." @@ -650,7 +651,7 @@ msgstr "" #~ msgstr "Konnte die Treiberinformationen nicht abfragen." #~ msgid "Removing folder '%s' from folder '%s'..." -#~ msgstr "Entferne Verzeichnis »%s« aus Verzeichnis »%s«..." +#~ msgstr "Entferne Verzeichnis »%s« aus Verzeichnis »%s«..." #~ msgid "Upload..." #~ msgstr "Hochladen..." @@ -659,7 +660,7 @@ msgstr "" #~ msgstr "_Anlegen..." #~ msgid "_Remove..." -#~ msgstr "_Löschen..." +#~ msgstr "_Löschen..." #~ msgid "Ca_pture..." #~ msgstr "_Bild aufnehmen..." @@ -674,13 +675,13 @@ msgstr "" #~ msgstr "Konfiguriere Kamera..." #~ msgid "No camera set" -#~ msgstr "Keine Kamera ausgewählt" +#~ msgstr "Keine Kamera ausgewählt" #~ msgid "Listing contents of folder '%s'..." -#~ msgstr "Liste Inhalt des Verzeichnisses »%s«..." +#~ msgstr "Liste Inhalt des Verzeichnisses »%s«..." #~ msgid "Could not retrieve file list for folder '%s'." -#~ msgstr "Konnte Dateiliste des Verzeichnisses »%s« nicht herunterladen." +#~ msgstr "Konnte Dateiliste des Verzeichnisses »%s« nicht herunterladen." #~ msgid "Getting list of folders in '%s'..." -#~ msgstr "Hole Verzeichnisliste in »%s«..." +#~ msgstr "Hole Verzeichnisliste in »%s«..." |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:41:46
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3307 Modified Files: configure.ac Log Message: fix --enable-internal-docs Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/libexif/configure.ac,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -d -r1.28 -r1.29 --- configure.ac 21 May 2007 23:27:46 -0000 1.28 +++ configure.ac 22 May 2007 22:41:39 -0000 1.29 @@ -126,26 +126,26 @@ GP_CHECK_DOXYGEN # # This takes quite some time due to the generation of lots of call # graphs, so it is disabled by default. -enable_internal_docs=no +set_enable_internal_docs=no AC_ARG_ENABLE([internal-docs], [dnl AS_HELP_STRING([--enable-internal-docs], [Build internal code docs if doxygen available])], [dnl +dnl If either --enable-foo nor --disable-foo were given, execute this. if test "x$enableval" = xno \ || test "x$enableval" = xoff \ || test "x$enableval" = xfalse; then - enable_internal_docs=no + set_enable_internal_docs=no elif test "x$enableval" = xyes \ || test "x$enableval" = xon \ || test "x$enableval" = xtrue then - enable_internal_docs=yes + set_enable_internal_docs=yes fi ]) AC_MSG_CHECKING([whether to create internal code docs]) -AC_MSG_RESULT([${enable_internal_docs}]) -AM_CONDITIONAL([ENABLE_INTERNAL_DOCS], - [test "x${enable_internal_docs}" = "xyes"]) +AC_MSG_RESULT([${set_enable_internal_docs}]) +AM_CONDITIONAL([ENABLE_INTERNAL_DOCS], [test "x${set_enable_internal_docs}" = "xyes"]) # --------------------------------------------------------------------------- |
From: Hans U. N. <hu...@us...> - 2007-05-22 22:41:27
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3250/doc Modified Files: Makefile.am Log Message: reorganize doxygen rules Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -d -r1.11 -r1.12 --- Makefile.am 21 May 2007 23:27:34 -0000 1.11 +++ Makefile.am 22 May 2007 22:41:22 -0000 1.12 @@ -11,63 +11,59 @@ DOXYGEN_UNINSTALL_TARGETS = DOXYGEN_CLEAN_TARGETS = -if HAVE_DOXYGEN +DOXYGEN_TARBALLS = -DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp -DOXYGEN_UPLOAD += $(HTML_APIDOC_DIR).uploaded +# FIXME: Depending on the source files would be sufficient. +# Depending on libexif.la works at least, however. +$(top_builddir)/libexif/libexif.la: + cd $(top_builddir)/libexif && $(MAKE) libexif.la -if ENABLE_INTERNAL_DOCS -DOXYGEN_STAMPS += $(HTML_APIDOC_INTERNALS_DIR).stamp -DOXYGEN_UPLOAD += $(HTML_APIDOC_INTERNALS_DIR).uploaded -endif +if HAVE_DOXYGEN -DOXYGEN_STAMPS += $(DOXYGEN_OUTPUT_DIR).stamp +DOXYGEN_UPLOAD += $(HTML_APIDOC_DIR).uploaded -# FIXME: Depending on the source files would be sufficient... +DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp $(HTML_APIDOC_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la - doxygen $< - echo > $@ - -# FIXME: Depending on the source files would be sufficient... -$(HTML_APIDOC_INTERNALS_DIR).stamp: Doxyfile-internals $(top_builddir)/libexif/libexif.la - doxygen $< + $(DOXYGEN) $< echo > $@ -$(DOXYGEN_OUTPUT_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la - doxygen $< - echo > $@ +DOXYGEN_TARBALLS += $(HTML_APIDOC_DIR).tar.gz +$(HTML_APIDOC_DIR).tar.gz: $(HTML_APIDOC_DIR).stamp + (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@ -$(top_builddir)/libexif/libexif.la: - cd $(top_builddir)/libexif && $(MAKE) libexif.la +if ENABLE_INTERNAL_DOCS +DOXYGEN_UPLOAD += $(HTML_APIDOC_INTERNALS_DIR).uploaded -$(HTML_APIDOC_DIR).tar.gz: $(DOXYGEN_OUTPUT_DIR).stamp - (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@ +DOXYGEN_STAMPS += $(HTML_APIDOC_INTERNALS_DIR).stamp +$(HTML_APIDOC_INTERNALS_DIR).stamp: Doxyfile-internals $(top_builddir)/libexif/libexif.la + $(DOXYGEN) $< + echo > $@ -$(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(DOXYGEN_OUTPUT_DIR).stamp +DOXYGEN_TARBALLS += $(HTML_APIDOC_INTERNALS_DIR).tar.gz +$(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(HTML_APIDOC_INTERNALS_DIR).stamp (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_INTERNALS_DIR) | GZIP=--best gzip -c) > $@ -DOC_APIDOC_HTML = api.html -DOC_APIDOC_INTERNALS_HTML = internals.html - -if ENABLE_INTERNAL_DOCS DOXYGEN_INSTALL_TARGETS += install-apidocs-internals install-apidocs-internals: $(HTML_APIDOC_INTERNALS_DIR).stamp $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_INTERNALS_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML)/ -endif -DOXYGEN_INSTALL_TARGETS += install-apidocs -install-apidocs: $(HTML_APIDOC_DIR).stamp - $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) - $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/ - -if ENABLE_INTERNAL_DOCS DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs-internals uninstall-apidocs-internals: cd "$(DESTDIR)$(docdir)" && rm -f $(DOC_APIDOC_INTERNALS_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) + endif +# Directory names used while installing +DOC_APIDOC_HTML = api.html +DOC_APIDOC_INTERNALS_HTML = internals.html + +DOXYGEN_INSTALL_TARGETS += install-apidocs +install-apidocs: $(HTML_APIDOC_DIR).stamp + $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) + $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/ + DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs uninstall-apidocs: cd "$(DESTDIR)$(docdir)" && rm -f $(DOC_APIDOC_HTML)/* @@ -76,7 +72,7 @@ uninstall-apidocs: DOXYGEN_CLEAN_TARGETS += clean-apidocs clean-apidocs: rm -rf $(DOXYGEN_OUTPUT_DIR) - rm -f $(HTML_APIDOC_DIR).tar.gz + rm -f $(HTML_APIDOC_DIR).tar.gz $(HTML_APIDOC_INTERNALS_DIR).tar.gz $(DOXYGEN_UPLOAD): $(DOXYGEN_STAMPS) find $(DOXYGEN_OUTPUT_DIR) \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ |
From: Hans U. N. <hu...@us...> - 2007-05-22 09:22:18
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16858/static Modified Files: index.html Log Message: update webpage: improved links, package overview, remove non-existing SVN reference Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- index.html 30 Jun 2006 12:47:36 -0000 1.12 +++ index.html 22 May 2007 09:22:14 -0000 1.13 @@ -6,12 +6,53 @@ <head> <title>The libexif C EXIF library</title> <style type="text/css"> +body { + color: #000; + background-color: #fff; +} + +a:link { + color: #00f; + background-color: inherit; + text-decoration: underline; +} + +a:active { + color: #f00; + background-color: inherit; + text-decoration: underline; +} + +a:visited { + color: #a0a; + background-color: inherit; + text-decoration: underline; +} + +a:hover { + color: #f00; + background-color: inherit; + text-decoration: underline; +} + div.banners { border: solid 1px #000; padding: 2px; margin: 0; background-color: #ddd; - height: 31px; + color: #000; + height: 37px; +} + +div.banners * { +vertical-align: middle; +} + +pre { + border: dashed 1px #000; + padding: 2px; + background-color: #eee; + color: #000; } </style> </head> @@ -25,30 +66,38 @@ div.banners { <li>runs under POSIX systems (e.g. GNU/Linux, xBSD, MacOS X, etc.) and Win32. Win64 untested.</li> </ul> -<h2>About libexif</h2> +<h2>About the libexif project</h2> <ul> <li><a href="https://sourceforge.net/projects/libexif">SF.net project page</a></li> <li><a href="api/">libexif API documentation</a> (preliminary)</li> <li><a href="internals/">libexif code internals documentation</a> (preliminary)</li> +<li>The libexif project maintains these four software packages:<ul> +<li><strong>libexif</strong>, the EXIF parsing library.</li> +<li><strong>exif</strong>, the simple command line interface to libexif.</li> +<li><strong>libexif-gtk</strong>, the library of GTK+ based graphical user interface elements for libexif.</li> +<li><strong>gexif</strong>, the GTK+ based GUI interface to libexif-gtk.</li> +</ul> +</li> <li>Download libexif source code<ul> -<li>as <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">release tarballs</a></li> -<li>from CVS (will be disabled some time in mid-2006): +<li>as <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">libexif source tarball releases</a></li> +<li>from CVS (empty password on login) <pre> cvs -d:pserver:ano...@cv...:/cvsroot/libexif login -cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P libexif -cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P exif -cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P libexif-gtk -cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P gexif +cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P <a href="http://libexif.cvs.sourceforge.net/libexif/libexif/" title="libexif in ViewVC">libexif</a> +cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P <a href="http://libexif.cvs.sourceforge.net/libexif/exif/" title="exif in ViewVC">exif</a> +cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P <a href="http://libexif.cvs.sourceforge.net/libexif/libexif-gtk/" title="libexif-gtk in ViewVC">libexif-gtk</a> +cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P <a href="http://libexif.cvs.sourceforge.net/libexif/gexif/" title="gexif in ViewVC">gexif</a> </pre> +CVS will be replaced by something better some time. </li> -<li>from SVN (will be enabled some time in mid-2006): +<!--li>from SVN (will be enabled some time in mid-2006): <pre> svn co https://svn.sourceforge.net/svnroot/libexif/trunk/libexif svn co https://svn.sourceforge.net/svnroot/libexif/trunk/exif svn co https://svn.sourceforge.net/svnroot/libexif/trunk/libexif-gtk svn co https://svn.sourceforge.net/svnroot/libexif/trunk/gexif </pre> -</li> +</li--> </ul> </li> </ul> @@ -57,7 +106,7 @@ svn co https://svn.sourceforge.net/svnro <ul> <li><a href="https://sourceforge.net/tracker/?group_id=12272&atid=112272">Bug Tracker</a> - - <a href="https://sourceforge.net/tracker/?func=add&group_id=12272&atid=112272">submit your bugs here</a></li> + <a href="https://sourceforge.net/tracker/?func=add&group_id=12272&atid=112272">submit your bug reports here</a></li> <li><a href="https://sourceforge.net/mail/?group_id=12272">libexif mailing list</a></li> <li><a href="irc://irc.freenode.net/#libexif">libexif IRC Channel</a> - #libexif on irc.freenode.net</li> <li><a href="irc://irc.freenode.net/#gphoto">gphoto IRC Channel</a> - #gphoto on irc.freenode.net @@ -82,6 +131,7 @@ svn co https://svn.sourceforge.net/svnro style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" /></a> +<span>Last update: 2007-05-22</span> </div> </body> |
From: Hans U. N. <hu...@us...> - 2007-05-22 08:46:52
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2132 Modified Files: NEWS Log Message: NEWS: Note about cs, sk translations Index: NEWS =================================================================== RCS file: /cvsroot/libexif/libexif/NEWS,v retrieving revision 1.17 retrieving revision 1.18 diff -u -p -d -r1.17 -r1.18 --- NEWS 21 May 2007 18:33:55 -0000 1.17 +++ NEWS 22 May 2007 08:46:47 -0000 1.18 @@ -8,6 +8,8 @@ New in 0.6.14.cvs2 since 0.6.14 (2007-05 * Bug fixes: [ 1443183 ] install error when doxygen is not present. + * New translations: Czech, Slovak. + * Improved doxygen generated API and code internals documentation. Made building of code internals docs optional (--enable-internal-docs) as the call graphs take quite long to |
From: Hans U. N. <hu...@us...> - 2007-05-22 08:40:29
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv31888 Modified Files: Makefile.am Log Message: ChangeLog.cvs generation uses UTC timestamps and users.SF.net mail domain now Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/Makefile.am,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -d -r1.43 -r1.44 --- Makefile.am 17 May 2007 14:57:25 -0000 1.43 +++ Makefile.am 22 May 2007 08:40:12 -0000 1.44 @@ -41,7 +41,7 @@ $(srcdir)/ChangeLog.cvs: else \ usermap=""; \ fi; \ - (cd "$(srcdir)" && cvs2cl $${usermap} -f "ChangeLog.cvs") + (cd "$(srcdir)" && cvs2cl $${usermap} --utc --domain users.sourceforge.net -f "ChangeLog.cvs") .PHONY: cvs-tag-release cvs-tag-release: |
From: Hans U. N. <hu...@us...> - 2007-05-21 23:27:50
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5102 Modified Files: configure.ac Log Message: sort ALL_LINGUAS alphabetically Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/libexif/configure.ac,v retrieving revision 1.27 retrieving revision 1.28 diff -u -p -d -r1.27 -r1.28 --- configure.ac 21 May 2007 19:34:28 -0000 1.27 +++ configure.ac 21 May 2007 23:27:46 -0000 1.28 @@ -151,7 +151,7 @@ AM_CONDITIONAL([ENABLE_INTERNAL_DOCS], # --------------------------------------------------------------------------- # i18n support # --------------------------------------------------------------------------- -ALL_LINGUAS="de es fr pl ru vi sk cs" +ALL_LINGUAS="cs de es fr pl ru sk vi" GP_GETTEXT_HACK([${PACKAGE}-${LIBEXIF_CURRENT_MIN}], [Lutz Mueller and others]) AM_GNU_GETTEXT_VERSION([0.14.1]) |
From: Hans U. N. <hu...@us...> - 2007-05-21 23:27:37
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5047/doc Modified Files: Makefile.am Log Message: add a few quotes to be on the safe side Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -d -r1.10 -r1.11 --- Makefile.am 21 May 2007 18:50:45 -0000 1.10 +++ Makefile.am 21 May 2007 23:27:34 -0000 1.11 @@ -64,13 +64,13 @@ install-apidocs: $(HTML_APIDOC_DIR).stam if ENABLE_INTERNAL_DOCS DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs-internals uninstall-apidocs-internals: - cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_INTERNALS_HTML)/* + cd "$(DESTDIR)$(docdir)" && rm -f $(DOC_APIDOC_INTERNALS_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) endif DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs uninstall-apidocs: - cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_HTML)/* + cd "$(DESTDIR)$(docdir)" && rm -f $(DOC_APIDOC_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) DOXYGEN_CLEAN_TARGETS += clean-apidocs |
From: Jan P. <pa...@us...> - 2007-05-21 19:34:58
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7952 Modified Files: ChangeLog configure.ac Log Message: Added Czech & Slovak localizations Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/libexif/configure.ac,v retrieving revision 1.26 retrieving revision 1.27 diff -u -p -d -r1.26 -r1.27 --- configure.ac 21 May 2007 18:33:55 -0000 1.26 +++ configure.ac 21 May 2007 19:34:28 -0000 1.27 @@ -151,7 +151,7 @@ AM_CONDITIONAL([ENABLE_INTERNAL_DOCS], # --------------------------------------------------------------------------- # i18n support # --------------------------------------------------------------------------- -ALL_LINGUAS="de es fr pl ru vi" +ALL_LINGUAS="de es fr pl ru vi sk cs" GP_GETTEXT_HACK([${PACKAGE}-${LIBEXIF_CURRENT_MIN}], [Lutz Mueller and others]) AM_GNU_GETTEXT_VERSION([0.14.1]) Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.245 retrieving revision 1.246 diff -u -p -d -r1.245 -r1.246 --- ChangeLog 15 May 2007 18:33:40 -0000 1.245 +++ ChangeLog 21 May 2007 19:34:28 -0000 1.246 @@ -1,3 +1,8 @@ +2007-05-21 Jan Patera <pa...@us...> + + * First version of Czech localization (cs.po) + * First version of Slovak localization (sk.po), submitted by Ivan Masar + 2007-05-15 Jan Patera <pa...@us...> * Windows XP Explorer writes Title, Comment, Author, Keywords, and |
From: Jan P. <pa...@us...> - 2007-05-21 19:28:43
|
Update of /cvsroot/libexif/libexif/po In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5311 Modified Files: cs.po Log Message: First version of the Czech localization Index: cs.po =================================================================== RCS file: /cvsroot/libexif/libexif/po/cs.po,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- cs.po 10 May 2007 17:22:07 -0000 1.1 +++ cs.po 21 May 2007 19:28:38 -0000 1.2 @@ -1,15 +1,16 @@ -# LIBEXIF PO FILE +# libexif +# LIBEXIF PO FILE - Czech Translation # Copyright: -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# Jan Patera <pa...@us...>, 2007. # This file is distributed under the same license as the libexif package. # msgid "" msgstr "" -"Project-Id-Version: cs\n" [...3172 lines suppressed...] @@ -3630,13 +3663,16 @@ msgid "PrintIM Settings" msgstr "" #: libexif/pentax/mnote-pentax-tag.c:59 -msgid "TimeZone" -msgstr "" +msgid "Time Zone" +msgstr "Äasové pásmo" #: libexif/pentax/mnote-pentax-tag.c:60 msgid "DaylightSavings" -msgstr "" +msgstr "Letnà Äas" +# This is a very special string. It is used for test purposes, and +# 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:20 test/nls/test-nls.c:23 test/nls/test-nls.c:24 msgid "[DO_NOT_TRANSLATE_THIS_MARKER]" msgstr "" |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:50:51
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22254/doc Modified Files: Makefile.am Log Message: robuster doxygen targets Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- Makefile.am 21 May 2007 18:33:56 -0000 1.9 +++ Makefile.am 21 May 2007 18:50:45 -0000 1.10 @@ -6,6 +6,11 @@ DOXYGEN_FILES = DOXYGEN_STAMPS = DOXYGEN_UPLOAD = +DOXYGEN_INSTALL_TARGETS = +DOXYGEN_UNINSTALL_TARGETS = + +DOXYGEN_CLEAN_TARGETS = + if HAVE_DOXYGEN DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp @@ -44,22 +49,31 @@ $(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(D DOC_APIDOC_HTML = api.html DOC_APIDOC_INTERNALS_HTML = internals.html +if ENABLE_INTERNAL_DOCS +DOXYGEN_INSTALL_TARGETS += install-apidocs-internals install-apidocs-internals: $(HTML_APIDOC_INTERNALS_DIR).stamp $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_INTERNALS_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML)/ +endif +DOXYGEN_INSTALL_TARGETS += install-apidocs install-apidocs: $(HTML_APIDOC_DIR).stamp $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/ +if ENABLE_INTERNAL_DOCS +DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs-internals uninstall-apidocs-internals: cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_INTERNALS_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) +endif +DOXYGEN_UNINSTALL_TARGETS += uninstall-apidocs uninstall-apidocs: cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) +DOXYGEN_CLEAN_TARGETS += clean-apidocs clean-apidocs: rm -rf $(DOXYGEN_OUTPUT_DIR) rm -f $(HTML_APIDOC_DIR).tar.gz @@ -68,18 +82,11 @@ $(DOXYGEN_UPLOAD): $(DOXYGEN_STAMPS) find $(DOXYGEN_OUTPUT_DIR) \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) rsync -avz --progress $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/ sf:/home/users/h/hu/hun/libexif/htdocs/api/ +if ENABLE_INTERNAL_DOCS rsync -avz --progress $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_INTERNALS_DIR)/ sf:/home/users/h/hu/hun/libexif/htdocs/internals/ +endif ssh "sf" "find /home/groups/l/li/libexif/htdocs/internals /home/groups/l/li/libexif/htdocs/api \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" -else - -# Dummy targets for non-doxygen case -install-apidocs: -install-apidocs-internals: -uninstall-apidocs: -uninstall-apidocs-internals: -clean-apidocs: - endif @@ -93,11 +100,11 @@ doc_DATA = $(DOXYGEN_FILES) README.apido all-local: $(DOXYGEN_STAMPS) -install-data-local: install-apidocs install-apidocs-internals +install-data-local: $(DOXYGEN_INSTALL_TARGETS) -uninstall-local: uninstall-apidocs uninstall-apidocs-internals +uninstall-local: $(DOXYGEN_UNINSTALL_TARGETS) -clean-local: clean-apidocs +clean-local: $(DOXYGEN_CLEAN_TARGETS) upload: $(DOXYGEN_UPLOAD) |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:39:22
|
Update of /cvsroot/libexif/gexif/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16860/auto-m4 Added Files: .cvsignore Log Message: auto-m4 .cvsignore --- NEW FILE: .cvsignore --- *.m4 |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:39:17
|
Update of /cvsroot/libexif/libexif-gtk/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16813/auto-m4 Added Files: .cvsignore Log Message: auto-m4 .cvsignore --- NEW FILE: .cvsignore --- *.m4 |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:39:13
|
Update of /cvsroot/libexif/exif/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16717/auto-m4 Added Files: .cvsignore Log Message: auto-m4 .cvsignore --- NEW FILE: .cvsignore --- *.m4 |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:39:13
|
Update of /cvsroot/libexif/libexif/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16716/auto-m4 Added Files: .cvsignore Log Message: auto-m4 .cvsignore --- NEW FILE: .cvsignore --- *.m4 |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:38:20
|
Update of /cvsroot/libexif/libexif/auto-m4 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16173/auto-m4 Log Message: Directory /cvsroot/libexif/libexif/auto-m4 added to the repository |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:36:52
|
Update of /cvsroot/libexif/gexif In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15236 Modified Files: Makefile.am configure.ac NEWS Log Message: 0.5.0cvs2, use auto-m4 for auto-added m4 macros Index: NEWS =================================================================== RCS file: /cvsroot/libexif/gexif/NEWS,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- NEWS 25 Jan 2002 14:21:12 -0000 1.1 +++ NEWS 21 May 2007 18:36:48 -0000 1.2 @@ -0,0 +1,2 @@ +New in 0.5.0cvs2: + * Misc. (build) bug fixes. Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/gexif/configure.ac,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -d -r1.6 -r1.7 --- configure.ac 17 May 2007 15:32:01 -0000 1.6 +++ configure.ac 21 May 2007 18:36:48 -0000 1.7 @@ -1,7 +1,8 @@ AC_PREREQ(2.59) -AC_INIT([GTK EXIF viewer/editor],[0.5],[lib...@li...],[gexif]) +AC_INIT([GTK EXIF viewer/editor],[0.5.0cvs2],[lib...@li...],[gexif]) AC_CONFIG_SRCDIR([gexif/gexif.c]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([auto-m4]) AM_INIT_AUTOMAKE([gnu 1.8 dist-bzip2]) if test ! -d "$srcdir/m4m"; then Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/gexif/Makefile.am,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- Makefile.am 9 Apr 2005 19:50:41 -0000 1.12 +++ Makefile.am 21 May 2007 18:36:48 -0000 1.13 @@ -2,4 +2,4 @@ SUBDIRS = m4m po libjpeg gexif EXTRA_DIST = autogen.sh -ACLOCAL_AMFLAGS = -I m4m +ACLOCAL_AMFLAGS = -I auto-m4 -I m4m |
From: Hans U. N. <hu...@us...> - 2007-05-21 18:36:15
|
Update of /cvsroot/libexif/libexif-gtk In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv15035 Modified Files: Makefile.am configure.ac NEWS Log Message: 0.3.6cvs2, use auto-m4 for auto-added m4 macros Index: NEWS =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/NEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- NEWS 11 May 2007 07:12:38 -0000 1.2 +++ NEWS 21 May 2007 18:36:10 -0000 1.3 @@ -1,3 +1,3 @@ -New in 0.3.6: +New in 0.3.6cvs2: * Bug fixes: #1643242: need uninstalled.pc file for libexif-gtk Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/configure.ac,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -d -r1.7 -r1.8 --- configure.ac 17 May 2007 15:31:38 -0000 1.7 +++ configure.ac 21 May 2007 18:36:10 -0000 1.8 @@ -1,8 +1,9 @@ AC_PREREQ(2.59) -AC_INIT([EXIF GTK widget library],[0.3.6],[lib...@li...],[libexif-gtk]) +AC_INIT([EXIF GTK widget library],[0.3.6cvs2],[lib...@li...],[libexif-gtk]) AC_CONFIG_SRCDIR([libexif-gtk/gtk-exif-browser.c]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([gnu 1.8 dist-bzip2]) +AC_CONFIG_MACRO_DIR([auto-m4]) +AM_INIT_AUTOMAKE([-Wall gnu 1.9 dist-bzip2 check-news]) if test ! -d "$srcdir/m4m"; then AC_MSG_ERROR([ Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif-gtk/Makefile.am,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -d -r1.12 -r1.13 --- Makefile.am 17 May 2007 14:56:24 -0000 1.12 +++ Makefile.am 21 May 2007 18:36:10 -0000 1.13 @@ -10,4 +10,4 @@ EXTRA_DIST += libexif-gtk.pc.in noinst_DATA = libexif-gtk-uninstalled.pc EXTRA_DIST += libexif-gtk-uninstalled.pc.in -ACLOCAL_AMFLAGS = -I m4m +ACLOCAL_AMFLAGS = -I auto-m4 -I m4m |