Skip to content

Commit 33e6d73

Browse files
author
borysiasty
committed
Plugin Installer adjusted to fit the .ts files
git-svn-id: http://svn.osgeo.org/qgis/branches/Version-1_0@10378 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 74c5e96 commit 33e6d73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/plugins/plugin_installer/i18n.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ QgsPluginInstallerDialog::foo()
200200
// def ChangeCheckingPolicy
201201

202202
// def addKnownRepositories
203-
tr( "You are going to add some plugin repositories neither authorized nor supported by the Quantum GIS team, however provided by folks associated with us. Plugin authors generally make efforts to make their works useful and safe, but we can't assume any responsibility for them. FEEL WARNED!" )
203+
tr( "You are about to add several plugin repositories that are neither authorized nor supported by the Quantum GIS team. Plugin authors generally make efforts to ensure that their work is useful and safe, however, we can assume no responsibility for them." )
204204
tr( "QGIS Python Plugin Installer" )
205205

206206
// def addRepository

python/plugins/plugin_installer/installer_gui.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ def ChangeCheckingPolicy(self,policy):
668668
# ----------------------------------------- #
669669
def addKnownRepositories(self):
670670
""" update list of known repositories - in the future it will be replaced with an online fetching """
671-
message = self.tr("You are going to add some plugin repositories neither authorized nor supported by the Quantum GIS team, however provided by folks associated with us. Plugin authors generally make efforts to make their works useful and safe, but we can't assume any responsibility for them. FEEL WARNED!")
671+
message = self.tr("You are about to add several plugin repositories that are neither authorized nor supported by the Quantum GIS team. Plugin authors generally make efforts to ensure that their work is useful and safe, however, we can assume no responsibility for them.")
672672
if QMessageBox.question(self, self.tr("QGIS Python Plugin Installer"), message, QMessageBox.Ok, QMessageBox.Abort) == QMessageBox.Ok:
673673
repositories.addKnownRepos()
674674
# refresh lists and populate widgets

0 commit comments

Comments
 (0)