Skip to content

Commit

Permalink
incubates #6866
Browse files Browse the repository at this point in the history
For issue #6848
Merge branch 'i6848-makeCurrentExcelWorksheetTextTranslated' into next
  • Loading branch information
feerrenrut committed Feb 14, 2017
2 parents 19cbf07 + 2d12d58 commit 9d0183d
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 @@ -1142,7 +1142,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 9d0183d

Please sign in to comment.