[orca] Fix for bgo#586385 - When I using where am I function with Openoffice.org Calc, the spoken row and c



commit 7d2575f3e42dbd779851ca6186490baf1d3b6749
Author: Willie Walker <william walker sun com>
Date:   Fri Jun 19 12:52:32 2009 -0400

    Fix for bgo#586385 - When I using where am I function with Openoffice.org Calc, the spoken row and column information are not marked for translation

 src/orca/speech_generator.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/orca/speech_generator.py b/src/orca/speech_generator.py
index 90a4a93..dba22db 100644
--- a/src/orca/speech_generator.py
+++ b/src/orca/speech_generator.py
@@ -1131,7 +1131,7 @@ class SpeechGenerator:
         if col >= 0:
             # Translators: this is in references to a column in a
             # table.
-            result.append(_("column %d" % (col + 1)))
+            result.append(_("column %d") % (col + 1))
         return result
 
     def _generateRow(self, obj, **args):
@@ -1154,7 +1154,7 @@ class SpeechGenerator:
         if row >= 0:
             # Translators: this is in references to a row in a table.
             #
-            result.append(_("row %d" % (row + 1)))
+            result.append(_("row %d") % (row + 1))
         return result
 
     def _generateColumnAndRow(self, obj, **args):



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