accerciser r460 - in trunk: . debian plugindata/validate src/lib/accerciser



Author: eitani
Date: Mon Feb 25 22:27:26 2008
New Revision: 460
URL: http://svn.gnome.org/viewvc/accerciser?rev=460&view=rev

Log:
* NEWS:
* README:
* configure.in:
* debian/changelog: Release 1.1.92.
* plugindata/validate/basic.py: Translation difficulty when multiple placeholders (bug #518246). Thanks Claude Paroz!
* src/lib/accerciser/about_dialog.py: Fixed accerciser crash (bug #497473). Thanks Rich Burridge!


Modified:
   trunk/NEWS
   trunk/README
   trunk/configure.in
   trunk/debian/changelog
   trunk/plugindata/validate/basic.py
   trunk/src/lib/accerciser/about_dialog.py

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Feb 25 22:27:26 2008
@@ -1,4 +1,20 @@
 ==============
+Version 1.1.92
+==============
+
+What's new
+==========
+- Fixed accerciser crash (bug #497473). Thanks Rich Burridge!
+- Translation difficulty when multiple placeholders (bug
+#518246). Thanks Claude Paroz!
+
+New And Updated Translations
+============================
+- Djihed Afifi (ar)
+- Hendrik Richter (de)
+- David Lodge (en_GB)
+
+==============
 Version 1.1.91
 ==============
 

Modified: trunk/README
==============================================================================
--- trunk/README	(original)
+++ trunk/README	Mon Feb 25 22:27:26 2008
@@ -1,4 +1,4 @@
-Accerciser 1.1.91
+Accerciser 1.1.92
 Just 15 minutes a day for better accessibility!
 
 Description

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Feb 25 22:27:26 2008
@@ -1,4 +1,4 @@
-AC_INIT(Accerciser, 1.1.91, eitan ascender com, accerciser)
+AC_INIT(Accerciser, 1.1.92, eitan ascender com, accerciser)
 AC_CONFIG_SRCDIR(src/accerciser.in)
 AM_INIT_AUTOMAKE
 AM_MAINTAINER_MODE

Modified: trunk/debian/changelog
==============================================================================
--- trunk/debian/changelog	(original)
+++ trunk/debian/changelog	Mon Feb 25 22:27:26 2008
@@ -1,3 +1,9 @@
+accerciser (1.1.92) gutsy; urgency=low
+
+  * New dev release
+
+ -- Eitan Isaacson <eitan ascender com>  Mon, 25 Feb 2008 11:13:06 -0800
+
 accerciser (1.1.5ubuntu1) gutsy; urgency=low
 
   * New dev release. 

Modified: trunk/plugindata/validate/basic.py
==============================================================================
--- trunk/plugindata/validate/basic.py	(original)
+++ trunk/plugindata/validate/basic.py	Mon Feb 25 22:27:26 2008
@@ -289,8 +289,8 @@
         # The first variable is the role name of the object, the second is the
         # given index.
         # 
-        view.error(_('%s index %d does not match row and column') %
-                   (acc.getLocalizedRoleName(), i), acc)
+        view.error(_('%(rolename)s index %(num)d does not match row and column') %
+                   {'rolename':acc.getLocalizedRoleName(), 'num':i}, acc)
         return
 
 class TableRowColParentIndex(Validator):
@@ -319,8 +319,8 @@
         # The first variable is the object's role name, the second and third variables
         # are index numbers.
         #
-        view.error(_('%s parent index %d does not match row and column index %d') %
-                   (acc.getLocalizedRoleName(), ip, i), acc)
+        view.error(_('%(rolename)s parent index %(num1)d does not match row and column index %(num2)d') %
+                   {'rolename':acc.getLocalizedRoleName(), 'num1':ip, 'num2':i}, acc)
         return
 
 class ImageHasName(Validator):

Modified: trunk/src/lib/accerciser/about_dialog.py
==============================================================================
--- trunk/src/lib/accerciser/about_dialog.py	(original)
+++ trunk/src/lib/accerciser/about_dialog.py	Mon Feb 25 22:27:26 2008
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 '''
 Defines the about dialog.
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]