[svn] GpgOL - r335 - in trunk: . po src

svn author wk cvs at cvs.gnupg.org
Wed Jul 21 11:06:26 CEST 2010


Author: wk
Date: 2010-07-21 11:06:25 +0200 (Wed, 21 Jul 2010)
New Revision: 335

Added:
   trunk/po/pt.po
Modified:
   trunk/AUTHORS
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.ac
   trunk/po/LINGUAS
   trunk/po/de.po
   trunk/po/sv.po
   trunk/src/ChangeLog
   trunk/src/main.c
Log:
Add Portuguese translation


Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/ChangeLog	2010-07-21 09:06:25 UTC (rev 335)
@@ -1,3 +1,16 @@
+2010-07-21  Werner Koch  <wk at g10code.com>
+
+	Release 1.1.2.
+
+2010-07-21  Marco A.G.Pinto  <marcoagpinto at mail.telepac.pt>  (wk)
+
+	* po/pt.po: New.
+	* po/LINGUAS: Add pt.
+
+2010-07-21  Werner Koch  <wk at g10code.com>
+
+	* configure.ac: Require libgpg-error 1.9 due to gpg_err_deinit.
+
 2010-04-21  Marcus Brinkmann  <marcus at g10code.de>
 
 	* configure.ac (NEED_LIBASSUAN_API, NEED_LIBASSUAN_VERSION): Bump

Modified: trunk/src/ChangeLog
===================================================================
--- trunk/src/ChangeLog	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/src/ChangeLog	2010-07-21 09:06:25 UTC (rev 335)
@@ -1,3 +1,8 @@
+2010-07-21  Werner Koch  <wk at g10code.com>
+
+	* main.c (DllMain): Init and deinit libgpg-error which is now
+	required due to our use of a static libgpg-error.
+
 2010-04-21  Marcus Brinkmann  <marcus at g10code.de>
 
 	* engine-assuan.c (connect_uiserver): Update to new libassuan

Modified: trunk/AUTHORS
===================================================================
--- trunk/AUTHORS	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/AUTHORS	2010-07-21 09:06:25 UTC (rev 335)
@@ -13,6 +13,8 @@
 Daniel Nylander <po at danielnylander.se>
         Swedish translation.
 
+Marco A.G.Pinto  <marcoagpinto at mail.telepac.pt>
+        Portuguese translation.
 
 
 Some files may still contain code from the orginal plugin:

Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/NEWS	2010-07-21 09:06:25 UTC (rev 335)
@@ -1,3 +1,11 @@
+Noteworthy changes for version 1.1.2 (2010-07-21)
+=================================================
+
+ * Add Portuguese translation
+
+ * Fixed linking problems with latest libgpg-error.
+
+
 Noteworthy changes for version 1.1.1 (2010-01-13)
 =================================================
 

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/configure.ac	2010-07-21 09:06:25 UTC (rev 335)
@@ -17,7 +17,7 @@
 # Set my_issvn to "yes" for non-released code.  Remember to run an
 # "svn up" and "autogen.sh" right before creating a distribution.
 m4_define([my_version], [1.1.2])
-m4_define([my_issvn], [yes])
+m4_define([my_issvn], [no])
 
 m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
             || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
@@ -25,7 +25,7 @@
         [my_version[]m4_if(my_issvn,[yes],[-svn[]svn_revision])],
         [bug-gpgol at g10code.com])
 
-NEED_GPG_ERROR_VERSION=1.4
+NEED_GPG_ERROR_VERSION=1.9
 NEED_GPGME_API=1
 NEED_GPGME_VERSION=1.1.0
 NEED_LIBASSUAN_API=2

Modified: trunk/po/LINGUAS
===================================================================
--- trunk/po/LINGUAS	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/po/LINGUAS	2010-07-21 09:06:25 UTC (rev 335)
@@ -1,5 +1,6 @@
 # Set of available languages.
 de 
 sv
+pt
 
 

Modified: trunk/po/de.po  [not shown]
Modified: trunk/po/sv.po  [not shown]
Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c	2010-04-21 03:23:36 UTC (rev 334)
+++ trunk/src/main.c	2010-07-21 09:06:25 UTC (rev 335)
@@ -159,6 +159,9 @@
   if (reason == DLL_PROCESS_ATTACH)
     {
       set_global_hinstance (hinst);
+
+      gpg_err_init ();
+
       /* The next call initializes subsystems of gpgme and should be
          done as early as possible.  The actual return value (the
          version string) is not used here.  It may be called at any
@@ -181,6 +184,7 @@
     }
   else if (reason == DLL_PROCESS_DETACH)
     {
+      gpg_err_deinit (0);
     }
   
   return TRUE;





More information about the Gnupg-commits mailing list