orca r4033 - in trunk: . src/orca



Author: wwalker
Date: Mon Jul 14 19:04:29 2008
New Revision: 4033
URL: http://svn.gnome.org/viewvc/orca?rev=4033&view=rev

Log:
Fix for i18n bug #542324.


Modified:
   trunk/ChangeLog
   trunk/src/orca/structural_navigation.py

Modified: trunk/src/orca/structural_navigation.py
==============================================================================
--- trunk/src/orca/structural_navigation.py	(original)
+++ trunk/src/orca/structural_navigation.py	Mon Jul 14 19:04:29 2008
@@ -2503,14 +2503,14 @@
             # Translators: this is for navigating in a document by heading.
             # (e.g. <h1> is a heading at level 1).
             #
-            prevDesc = _("Goes to previous heading at level %d." % i)
+            prevDesc = _("Goes to previous heading at level %d.") % i
             prevAtLevelBindings.append([str(i),
                                         settings.SHIFT_MODIFIER_MASK,
                                         prevDesc])
             # Translators: this is for navigating in a document by heading.
             # (e.g. <h1> is a heading at level 1).
             #
-            nextDesc = _("Goes to next heading at level %d." % i)
+            nextDesc = _("Goes to next heading at level %d.") % i
             nextAtLevelBindings.append([str(i),
                                         settings.NO_MODIFIER_MASK,
                                         nextDesc])



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