Showing with 6 additions and 5 deletions.
  1. +1 −0 doc/SPONSORS
  2. +4 −4 i18n/qgis_it.ts
  3. +1 −1 python/plugins/GdalTools/tools/GdalTools_utils.py
1 change: 1 addition & 0 deletions doc/SPONSORS
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Please consider sponsoring the development of QuantumGIS.
See: http://qgis.org/en/sponsorship.html

SILVER
State of Vorarlberg, Austria (11.2011)|http://www.vorarlberg.at/
Kanton Solothurn, Switzerland (4.2011)|http://www.agi.so.ch/

BRONZE
Expand Down
8 changes: 4 additions & 4 deletions i18n/qgis_it.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12888,12 +12888,12 @@ Should the existing classes be deleted before classification?</source>
<message>
<location filename="../src/ui/qgscomposermapwidgetbase.ui" line="443"/>
<source>Annotation position</source>
<translation>Posizione dell&apos;annotazione</translation>
<translation>Posizione delle coordinate</translation>
</message>
<message>
<location filename="../src/ui/qgscomposermapwidgetbase.ui" line="462"/>
<source>Annotation direction</source>
<translation>Direzione dell&apos;annotazione</translation>
<translation>Direzione delle coordinate</translation>
</message>
<message>
<location filename="../src/ui/qgscomposermapwidgetbase.ui" line="596"/>
Expand Down Expand Up @@ -20440,7 +20440,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve
<location filename="../src/plugins/interpolation/qgsinterpolationdialog.cpp" line="165"/>
<location filename="../src/plugins/interpolation/qgsinterpolationdialog.cpp" line="275"/>
<source>Break lines</source>
<translation>Spezza linee</translation>
<translation>Linee di interruzione</translation>
</message>
<message>
<location filename="../src/plugins/interpolation/qgsinterpolationdialog.cpp" line="169"/>
Expand Down Expand Up @@ -22668,7 +22668,7 @@ Può essere o un problema della propria connessione di rete o sul lato del serve
<message>
<location filename="../python/plugins/mapserver_export/qgsmapserverexportbase.ui" line="24"/>
<source>Use current project</source>
<translation>Usa proiezione corrente</translation>
<translation>Usa progetto corrente</translation>
</message>
<message>
<location filename="../python/plugins/mapserver_export/qgsmapserverexportbase.ui" line="87"/>
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/GdalTools_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def getRasterLayers(self):
def isVector(self, layer):
if layer.type() != layer.VectorLayer:
return False
if layer.usesProvider() and layer.providerKey() != 'ogr':
if layer.providerType() != 'ogr':
return False
return True

Expand Down