--- a/Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py Fri Jan 10 19:30:21 2014 +0100 +++ b/Plugins/VcsPlugins/vcsPySvn/SvnNewProjectOptionsDialog.py Sat Jan 11 11:55:33 2014 +0100 @@ -23,6 +23,7 @@ import Preferences import UI.PixmapCache + class SvnNewProjectOptionsDialog(QDialog, Ui_SvnNewProjectOptionsDialog): """ Class implementing the Options Dialog for a new project from the @@ -68,7 +69,7 @@ if self.protocolCombo.currentText() == "file://": directory = E5FileDialog.getExistingDirectory( self, - self.trUtf8("Select Repository-Directory"), + self.tr("Select Repository-Directory"), self.vcsUrlEdit.text(), E5FileDialog.Options(E5FileDialog.ShowDirsOnly)) @@ -96,7 +97,7 @@ """ directory = E5FileDialog.getExistingDirectory( self, - self.trUtf8("Select Project Directory"), + self.tr("Select Project Directory"), self.vcsProjectDirEdit.text(), E5FileDialog.Options(E5FileDialog.ShowDirsOnly)) @@ -125,13 +126,13 @@ if protocol == "file://": self.networkPath = self.vcsUrlEdit.text() self.vcsUrlEdit.setText(self.localPath) - self.vcsUrlLabel.setText(self.trUtf8("Pat&h:")) + self.vcsUrlLabel.setText(self.tr("Pat&h:")) self.localProtocol = True else: if self.localProtocol: self.localPath = self.vcsUrlEdit.text() self.vcsUrlEdit.setText(self.networkPath) - self.vcsUrlLabel.setText(self.trUtf8("&URL:")) + self.vcsUrlLabel.setText(self.tr("&URL:")) self.localProtocol = False @pyqtSlot(str)