--- a/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Mon Oct 14 18:26:25 2013 +0200 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Mon Oct 14 19:30:36 2013 +0200 @@ -596,7 +596,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) for itm in self.__getCommitableItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Commit"), self.trUtf8("""There are no entries selected to be""" """ committed.""")) @@ -635,7 +636,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getUnversionedItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Add"), self.trUtf8("""There are no unversioned entries""" """ available/selected.""")) @@ -656,7 +658,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getModifiedItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Revert"), self.trUtf8("""There are no uncommitted changes""" """ available/selected.""")) @@ -679,7 +682,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) for itm in self.__getMissingItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Revert"), self.trUtf8("""There are no missing entries""" """ available/selected.""")) @@ -696,7 +700,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) for itm in self.__getModifiedItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Differences"), self.trUtf8("""There are no uncommitted changes""" """ available/selected.""")) @@ -716,13 +721,15 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) for itm in self.__getModifiedItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Side-by-Side Diff"), self.trUtf8("""There are no uncommitted changes""" """ available/selected.""")) return elif len(names) > 1: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Side-by-Side Diff"), self.trUtf8("""Only one file with uncommitted changes""" """ must be selected.""")) @@ -737,7 +744,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getLockActionItems(self.unlockedIndicators)] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Lock"), self.trUtf8("""There are no unlocked files""" """ available/selected.""")) @@ -753,7 +761,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getLockActionItems(self.lockedIndicators)] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Unlock"), self.trUtf8("""There are no locked files""" """ available/selected.""")) @@ -770,7 +779,8 @@ for itm in self.__getLockActionItems( self.stealBreakLockIndicators)] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Break Lock"), self.trUtf8("""There are no locked files""" """ available/selected.""")) @@ -787,7 +797,8 @@ for itm in self.__getLockActionItems( self.stealBreakLockIndicators)] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Steal Lock"), self.trUtf8("""There are no locked files""" """ available/selected.""")) @@ -803,7 +814,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getNonChangelistItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Remove from Changelist"), self.trUtf8( """There are no files available/selected not """ @@ -821,7 +833,8 @@ names = [os.path.join(self.dname, itm.text(self.__pathColumn)) \ for itm in self.__getChangelistItems()] if not names: - E5MessageBox.information(self, + E5MessageBox.information( + self, self.trUtf8("Remove from Changelist"), self.trUtf8( """There are no files available/selected belonging"""