Skip to content

Commit f7f3424

Browse files
author
jef
committedJul 31, 2009
fix some translation strings
git-svn-id: http://svn.osgeo.org/qgis/trunk@11226 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e00cfa7 commit f7f3424

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎python/plugins/osm/DlgDownloadOSM.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Note that OpenStreetMap server you are downloading OSM data from (~api.openstreetmap.org)
88
has fixed limitations of how much data you can get. As written on wiki.openstreetmap.org
9-
neighter latitude nor longitude extent of downloaded region can be larger than 0.25 degree.
9+
neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees.
1010
1111
Each error response from OSM server is caught by OSM Plugin and display to its user.
1212
"""
@@ -32,7 +32,7 @@ class DlgDownloadOSM(QDialog, Ui_DlgDownloadOSM):
3232
3333
Note that OpenStreetMap server you are downloading OSM data from (~api.openstreetmap.org)
3434
has fixed limitations of how much data you can get. As written on wiki.openstreetmap.org
35-
neighter latitude nor longitude extent of downloaded region can be larger than 0.25 degree.
35+
neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees.
3636
3737
Each error response from OSM server is caught by OSM Plugin and display to its user.
3838
"""
@@ -357,7 +357,7 @@ def showExtentHelp(self):
357357

358358
mb=QMessageBox()
359359
mb.setMinimumWidth(390)
360-
mb.information(self, self.tr("Getting data"),self.tr("The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neighter latitude nor longitude extent of downloaded region can be larger than 0.25 degree. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations."))
360+
mb.information(self, self.tr("Getting data"),self.tr("The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations."))
361361

362362

363363
def checkExtent(self):

‎python/plugins/osm/ui_files/DlgAddRelation.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
</size>
274274
</property>
275275
<property name="text" >
276-
<string>Storno</string>
276+
<string>Cancel</string>
277277
</property>
278278
<property name="autoDefault" >
279279
<bool>false</bool>

‎scripts/update_ts_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ qmake -project -o qgis_ts.pro -nopwd src python i18n
2929
echo Updating translation files
3030
lupdate -verbose qgis_ts.pro
3131
echo Removing temporary python plugin translation files
32-
perl -i.bak -pe '$_="" if /^\s+<location.*python-i18n\.cpp.*$/;' i18n/qgis_*.ts
32+
perl -i.bak -ne 'print unless /^\s+<location.*python-i18n\.cpp.*$/;' i18n/qgis_*.ts
3333
rm python/plugins/*/python-i18n.cpp i18n/qgis_*.ts.bak
3434
echo Removing qmake project file
3535
rm qgis_ts.pro

0 commit comments

Comments
 (0)
Please sign in to comment.