--- a/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Sun Apr 13 15:45:57 2014 +0200 +++ b/Plugins/VcsPlugins/vcsSubversion/ProjectHelper.py Tue Apr 15 22:41:08 2014 +0200 @@ -128,7 +128,7 @@ self.actions.append(self.svnLogBrowserAct) self.vcsDiffAct = E5Action( - self.tr('Show difference'), + self.tr('Show differences'), UI.PixmapCache.getIcon("vcsDiff.png"), self.tr('Show &difference'), 0, 0, self, 'subversion_diff') @@ -136,40 +136,40 @@ 'Show the difference of the local project to the repository' )) self.vcsDiffAct.setWhatsThis(self.tr( - """<b>Show difference</b>""" - """<p>This shows the difference of the local project to the""" + """<b>Show differences</b>""" + """<p>This shows differences of the local project to the""" """ repository.</p>""" )) self.vcsDiffAct.triggered.connect(self._vcsDiff) self.actions.append(self.vcsDiffAct) self.svnExtDiffAct = E5Action( - self.tr('Show difference (extended)'), + self.tr('Show differences (extended)'), UI.PixmapCache.getIcon("vcsDiff.png"), - self.tr('Show difference (extended)'), + self.tr('Show differences (extended)'), 0, 0, self, 'subversion_extendeddiff') self.svnExtDiffAct.setStatusTip(self.tr( 'Show the difference of revisions of the project to the repository' )) self.svnExtDiffAct.setWhatsThis(self.tr( - """<b>Show difference (extended)</b>""" - """<p>This shows the difference of selectable revisions of""" + """<b>Show differences (extended)</b>""" + """<p>This shows differences of selectable revisions of""" """ the project.</p>""" )) self.svnExtDiffAct.triggered.connect(self.__svnExtendedDiff) self.actions.append(self.svnExtDiffAct) self.svnUrlDiffAct = E5Action( - self.tr('Show difference (URLs)'), + self.tr('Show differences (URLs)'), UI.PixmapCache.getIcon("vcsDiff.png"), - self.tr('Show difference (URLs)'), + self.tr('Show differences (URLs)'), 0, 0, self, 'subversion_urldiff') self.svnUrlDiffAct.setStatusTip(self.tr( 'Show the difference of the project between two repository URLs' )) self.svnUrlDiffAct.setWhatsThis(self.tr( - """<b>Show difference (URLs)</b>""" - """<p>This shows the difference of the project between""" + """<b>Show differences (URLs)</b>""" + """<p>This shows differences of the project between""" """ two repository URLs.</p>""" )) self.svnUrlDiffAct.triggered.connect(self.__svnUrlDiff)