Skip to content

Commit

Permalink
Translate excel sheet name reporting message (PR #6866)
Browse files Browse the repository at this point in the history
Translate excel sheet name reporting message.

Fixes #6848
  • Loading branch information
feerrenrut authored Mar 14, 2017
1 parent 08c2f3e commit 9880a8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/NVDAObjects/window/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,8 @@ def _get_columnNumber(self):
def getCellPosition(self):
rowAndColumn = self.cellCoordsText
sheet = self.excelWindowObject.ActiveSheet.name
return u"Sheet {0}, {1}".format(sheet, rowAndColumn)
# Translators: a message reported in the get location text script for Excel. {0} is replaced with the name of the excel worksheet, and {1} is replaced with the row and column identifier EG "G4"
return _(u"Sheet {0}, {1}").format(sheet, rowAndColumn)

def _get_tableID(self):
address=self.excelCellObject.address(1,1,0,1)
Expand Down

0 comments on commit 9880a8c

Please sign in to comment.