[Git][debian-gis-team/qgis][master] Update appstream.patch to also fix description translations.

Bas Couwenberg (@sebastic) gitlab at salsa.debian.org
Tue Dec 3 12:32:42 GMT 2024



Bas Couwenberg pushed to branch master at Debian GIS Project / qgis


Commits:
6650da3d by Bas Couwenberg at 2024-12-03T13:24:50+01:00
Update appstream.patch to also fix description translations.

- - - - -


2 changed files:

- debian/changelog
- debian/patches/appstream.patch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+qgis (3.34.13+dfsg-2) UNRELEASED; urgency=medium
+
+  * Update appstream.patch to also fix description translations.
+
+ -- Bas Couwenberg <sebastic at debian.org>  Tue, 03 Dec 2024 13:24:24 +0100
+
 qgis (3.34.13+dfsg-1) unstable; urgency=medium
 
   * Move from experimental to unstable.


=====================================
debian/patches/appstream.patch
=====================================
@@ -4,7 +4,7 @@ Bug: https://github.com/qgis/QGIS/issues/59220
 
 --- a/linux/org.qgis.qgis.appdata.xml.in
 +++ b/linux/org.qgis.qgis.appdata.xml.in
-@@ -2,11 +2,10 @@
+@@ -2,12 +2,13 @@
  <component type="desktop">
    <id>org.qgis.qgis.desktop</id>
    <name>QGIS Desktop</name>
@@ -16,26 +16,562 @@ Bug: https://github.com/qgis/QGIS/issues/59220
 -  <screenshots>
 -    <screenshot><image type="source">https://qgis.org/en/_static/images/about-screenshot.png</image></screenshot>
 -  </screenshots>
-   <description><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></description>
+-  <description><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></description>
++  <description>
++    <p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p>
++  </description>
  
    <metadata_license>CC-BY-3.0</metadata_license>
+   <project_license>GPL-2.0+</project_license>
 --- a/scripts/ts2appinfo.py
 +++ b/scripts/ts2appinfo.py
-@@ -29,7 +29,7 @@ strings = {}
- d = et.parse('linux/org.qgis.qgis.appdata.xml.in')
- 
- r = d.getroot()
--for elem in ['name', 'summary', 'description']:
-+for elem in ['name', 'summary']:
+@@ -32,8 +32,12 @@ r = d.getroot()
+ for elem in ['name', 'summary', 'description']:
      for c in r.iter(elem):
          if not c.attrib:
-             l = list(c)
-@@ -68,7 +68,7 @@ for qm in sorted(glob(sys.argv[1] + "/ou
-             continue
-         strings[s][lang] = translation
- 
--for elem in ['name', 'summary', 'description']:
-+for elem in ['name', 'summary']:
-     for c in r.iter(elem):
+-            l = list(c)
+-            t = c.text if not l else "".join([et.tostring(x).decode("utf-8") for x in l])
++            if elem == 'description':
++                p = c.find('p')
++                t = p.text
++            else:
++                l = list(c)
++                t = c.text if not l else "".join([et.tostring(x).decode("utf-8") for x in l])
+             strings[t] = {}
+         else:
+             r.remove(c)
+@@ -73,14 +77,27 @@ for elem in ['name', 'summary', 'descrip
          if c.attrib:
              continue
+ 
+-        l = list(c)
+-        s = c.text if not l else "".join([et.tostring(x).decode("utf-8") for x in l])
++        if elem == 'description':
++            p = c.find('p')
++            s = p.text
++ 
++            for lang in strings[s]:
++                e = et.Element('p', attrib={"xml:lang": lang})
++                e.text = strings[s][lang]
++                e.tail = p.tail
++                c.append(e)
++
++            if sys.version_info[:2] >= (3, 9):
++                et.indent(c, level=1)
++        else:
++            l = list(c)
++            s = c.text if not l else "".join([et.tostring(x).decode("utf-8") for x in l])
+ 
+-        for lang in strings[s]:
+-            e = et.Element(elem, attrib={"xml:lang": lang})
+-            e.text = strings[s][lang]
+-            e.tail = c.tail
+-            r.append(e)
++            for lang in strings[s]:
++                e = et.Element(elem, attrib={"xml:lang": lang})
++                e.text = strings[s][lang]
++                e.tail = c.tail
++                r.append(e)
+ 
+ d.write(sys.argv[1] + "/org.qgis.qgis.appdata.xml", encoding="UTF-8", xml_declaration=True)
+ 
+--- a/i18n/qgis_ar.ts
++++ b/i18n/qgis_ar.ts
+@@ -153523,7 +153523,7 @@ Reason phrase: %2</source>
+         <translation>QGIS سطح المكتب</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_az.ts
++++ b/i18n/qgis_az.ts
+@@ -153425,7 +153425,7 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_bg.ts
++++ b/i18n/qgis_bg.ts
+@@ -153574,7 +153574,7 @@ Reason phrase: %2</source>
+         <translation>QGIS Десктоп</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_bs.ts
++++ b/i18n/qgis_bs.ts
+@@ -153594,7 +153594,7 @@ Razlog: %2</translation>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_ca.ts
++++ b/i18n/qgis_ca.ts
+@@ -153723,8 +153723,8 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS és un Sistema d'Informació Geogràfica (SIG) amigable de codi obert, llicenciat sota la Llicència Pública General GNU. QGIS és un projecte oficial de l'Open Source Geospatial Foundation (OSGeo). Funciona en entorns Linux, Unix, Mac OS-X, Windows i Android i suporta nombrosos formats i funcionalitats de vectors, ràsters i base de dades.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS és un Sistema d'Informació Geogràfica (SIG) amigable de codi obert, llicenciat sota la Llicència Pública General GNU. QGIS és un projecte oficial de l'Open Source Geospatial Foundation (OSGeo). Funciona en entorns Linux, Unix, Mac OS-X, Windows i Android i suporta nombrosos formats i funcionalitats de vectors, ràsters i base de dades.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_cs.ts
++++ b/i18n/qgis_cs.ts
+@@ -153788,8 +153788,8 @@ Reason phrase: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS je uživatelsky přívětivý Open Source Geographic Information System (GIS) licencovaný na základě GNU General Public License. QGIS je oficiální projekt Open Source Geospatial Foundation (OSGeo). Běží na Linuxu, Unixu, Mac OSX, Windows a Androidu a podporuje řadu vektorových, rastrových a databázových formátů a funkcí.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS je uživatelsky přívětivý Open Source Geographic Information System (GIS) licencovaný na základě GNU General Public License. QGIS je oficiální projekt Open Source Geospatial Foundation (OSGeo). Běží na Linuxu, Unixu, Mac OSX, Windows a Androidu a podporuje řadu vektorových, rastrových a databázových formátů a funkcí.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_nl.ts
++++ b/i18n/qgis_nl.ts
+@@ -154662,8 +154662,8 @@ Omschrijving: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS is een gebruiksvriendelijk Open Source Geographic Information System (GIS) gelicenseerd onder de GNU General Public License. QGIS is een officieel project van de Open Source Geospatial Foundation (OSGeo). Het kan worden uitgevoerd op Linux, Unix, Mac OSX, Windows en Android en ondersteunt verscheidene vector-, raster-, en database-indelingen en functionaliteiten.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS is een gebruiksvriendelijk Open Source Geographic Information System (GIS) gelicenseerd onder de GNU General Public License. QGIS is een officieel project van de Open Source Geospatial Foundation (OSGeo). Het kan worden uitgevoerd op Linux, Unix, Mac OSX, Windows en Android en ondersteunt verscheidene vector-, raster-, en database-indelingen en functionaliteiten.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_da.ts
++++ b/i18n/qgis_da.ts
+@@ -154077,8 +154077,8 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS er et brugervenligt Open Source Geografisk Information System (GIS) licenseret under GNU General Public License. QGIS er et officielt projekt under Open Source Geospatial Foundation (OSGeo). Det kører på Linux, Unix, Mac OSX, Windows og Android og supporterer en række vektor-, raster-, og databaseformater, og funktionaliteter.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS er et brugervenligt Open Source Geografisk Information System (GIS) licenseret under GNU General Public License. QGIS er et officielt projekt under Open Source Geospatial Foundation (OSGeo). Det kører på Linux, Unix, Mac OSX, Windows og Android og supporterer en række vektor-, raster-, og databaseformater, og funktionaliteter.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_de.ts
++++ b/i18n/qgis_de.ts
+@@ -154645,8 +154645,8 @@ Grund: %2</translation>
+         <translation>QGIS-Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS ist eine benutzerfreundliches Open-Source geographisches Informationssystem (GIS), das unter der GNU General-Public-License steht. QGIS ist ein offizielles Mitglied der Open-Source-Geospatial-Foundation (OSGeo). Es läuft unter Linux, Unix, Mac OSX, Windows und Android und unterstützt eine Vielzahl von Vektor-, Raster- und Datenbankformate und -funktionen.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS ist eine benutzerfreundliches Open-Source geographisches Informationssystem (GIS), das unter der GNU General-Public-License steht. QGIS ist ein offizielles Mitglied der Open-Source-Geospatial-Foundation (OSGeo). Es läuft unter Linux, Unix, Mac OSX, Windows und Android und unterstützt eine Vielzahl von Vektor-, Raster- und Datenbankformate und -funktionen.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_en.ts
++++ b/i18n/qgis_en.ts
+@@ -146177,8 +146177,8 @@ Multiband layers are not supported by SA
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_en_US.ts
++++ b/i18n/qgis_en_US.ts
+@@ -154678,8 +154678,8 @@ Reason phrase: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_es.ts
++++ b/i18n/qgis_es.ts
+@@ -154505,8 +154505,8 @@ Frase de motivo: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS es un Sistema de Información Geográfica (SIG) de Código Abierto, amigable al usuario y licenciado bajo la Licencia Pública General de GNU. QGIS es un proyecto oficial de la Open Source Geospatial Foundation (OSGeo). Corre sobre Linux, Unix, Mac OSX, Windows y Android y soporta un gran número de funcionalidades y de formatos vectoriales, ráster y de base de datos.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS es un Sistema de Información Geográfica (SIG) de Código Abierto, amigable al usuario y licenciado bajo la Licencia Pública General de GNU. QGIS es un proyecto oficial de la Open Source Geospatial Foundation (OSGeo). Corre sobre Linux, Unix, Mac OSX, Windows y Android y soporta un gran número de funcionalidades y de formatos vectoriales, ráster y de base de datos.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_et.ts
++++ b/i18n/qgis_et.ts
+@@ -153536,7 +153536,7 @@ Põhjuse sisu: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_eu.ts
++++ b/i18n/qgis_eu.ts
+@@ -154613,8 +154613,8 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS kode irekiko Geografia-Informazioko Sistema (GIS) bat da, erabiltzeko erraza, GNU General Public License lizentziapean argitaratzen dena. Open Source Geospatial Foundation (OSGeo) erakundearen proiektu ofizial bat da. Linux, Unix, Mac OSX, Windows eta Android plataformetan dabil, hainbat funtzionaltasun ditu eta formatu bektorial, raster eta datu-base mota anitz onartzen ditu.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS kode irekiko Geografia-Informazioko Sistema (GIS) bat da, erabiltzeko erraza, GNU General Public License lizentziapean argitaratzen dena. Open Source Geospatial Foundation (OSGeo) erakundearen proiektu ofizial bat da. Linux, Unix, Mac OSX, Windows eta Android plataformetan dabil, hainbat funtzionaltasun ditu eta formatu bektorial, raster eta datu-base mota anitz onartzen ditu.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_fa.ts
++++ b/i18n/qgis_fa.ts
+@@ -153356,7 +153356,7 @@ Reason phrase: %2</source>
+         <translation>میزکار کوانتم</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_fi.ts
++++ b/i18n/qgis_fi.ts
+@@ -153848,8 +153848,8 @@ Syy: %2</translation>
+         <translation>QGIS-työasema</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS on käyttäjäystävällinen avoimen lähdekoodin paikkatietojärjestelmäsovellus (GIS), joka on lisensoitu käyttäen GNU-hankkeen yleinen lisenssi. QGIS on virallinen Open Source Geospatial Foundation (OSGeo) -hanke. Sitä voi käyttää Linux-, Unix-, Mac OSX -, Windows- ja Android-ympäristöissä; se tukee lukuisia vektori-, rasteri- ja tietokantaformaatteja ja -toiminnallisuuksia.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS on käyttäjäystävällinen avoimen lähdekoodin paikkatietojärjestelmäsovellus (GIS), joka on lisensoitu käyttäen GNU-hankkeen yleinen lisenssi. QGIS on virallinen Open Source Geospatial Foundation (OSGeo) -hanke. Sitä voi käyttää Linux-, Unix-, Mac OSX -, Windows- ja Android-ympäristöissä; se tukee lukuisia vektori-, rasteri- ja tietokantaformaatteja ja -toiminnallisuuksia.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_fr.ts
++++ b/i18n/qgis_fr.ts
+@@ -154568,8 +154568,8 @@ Veuillez installer cette bibliothèque e
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS est un Système d'Information Géographique (SIG) convivial distribué sous licence publique générale GNU. C'est un projet officiel de la fondation Open Source Geospatial (OSGeo). Il est compatible avec Linux, Unix, Mac OSX, Windows et Android et intègre de nombreux formats vecteur, raster, base de données et fonctionnalités.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS est un Système d'Information Géographique (SIG) convivial distribué sous licence publique générale GNU. C'est un projet officiel de la fondation Open Source Geospatial (OSGeo). Il est compatible avec Linux, Unix, Mac OSX, Windows et Android et intègre de nombreux formats vecteur, raster, base de données et fonctionnalités.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_gl.ts
++++ b/i18n/qgis_gl.ts
+@@ -154278,8 +154278,8 @@ Frase de razón: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS é un amigable Sistema de Información Xeográfica (SIX) de Código Aberto baixo licenza GNU General Public License. QGIS é un proxecto oficial da Open Source Geospatial Foundation (OSGeo). Funciona baixo Linux, Unix, Mac OSX, Windows e Android e admite numerosos formatos e funcionalidades vectoriais, ráster e de bases de datos.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS é un amigable Sistema de Información Xeográfica (SIX) de Código Aberto baixo licenza GNU General Public License. QGIS é un proxecto oficial da Open Source Geospatial Foundation (OSGeo). Funciona baixo Linux, Unix, Mac OSX, Windows e Android e admite numerosos formatos e funcionalidades vectoriais, ráster e de bases de datos.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_hu.ts
++++ b/i18n/qgis_hu.ts
+@@ -154658,8 +154658,8 @@ Ok: %2</translation>
+         <translation>QGIS asztali alkalmazás</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>A QGIS egy felhasználóbarát nyílt forráskódú térinformatikai rendszer (GIS), GNU GNU Általános Nyilvános Licenc alatt. A QGIS az Open Source Geospatial Foundation (OSGeo) hivatalos projektje. Futtatható Linux, Unix, Mac OSX, Windows és Android környezetben és számos vektoros, raszteres és adatbázis-formátumot és -funkciót támogat.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>A QGIS egy felhasználóbarát nyílt forráskódú térinformatikai rendszer (GIS), GNU GNU Általános Nyilvános Licenc alatt. A QGIS az Open Source Geospatial Foundation (OSGeo) hivatalos projektje. Futtatható Linux, Unix, Mac OSX, Windows és Android környezetben és számos vektoros, raszteres és adatbázis-formátumot és -funkciót támogat.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_is.ts
++++ b/i18n/qgis_is.ts
+@@ -153855,8 +153855,8 @@ Reason phrase: %2</source>
+         <translation>QGIS-skjáborð</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS er notendavænt landupplýsingakerfi (Geographic Information System - GIS) með opinn grunnkóða og almennu GNU General Public License notkunarleyfi. QGIS er opinbert verkefni á vegum Open Source Geospatial Foundation (OSGeo). Það keyrir á Linux, Unix, Mac OSX, Windows og Android og styður fjöldan allan af sniðum og aðgerðurm fyrir vektora, rasta og  gagnagrunna.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS er notendavænt landupplýsingakerfi (Geographic Information System - GIS) með opinn grunnkóða og almennu GNU General Public License notkunarleyfi. QGIS er opinbert verkefni á vegum Open Source Geospatial Foundation (OSGeo). Það keyrir á Linux, Unix, Mac OSX, Windows og Android og styður fjöldan allan af sniðum og aðgerðurm fyrir vektora, rasta og  gagnagrunna.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_it.ts
++++ b/i18n/qgis_it.ts
+@@ -154666,8 +154666,8 @@ Motivo: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS è un Sistema di Informazione Geografica Open Source facile da usare, rilasciato sotto la GNU General Public License. QGIS è un progetto ufficiale della Open Source Geospatial Foundation (OSGeo). Funziona su Linux, Unix, Mac OSX, Windows e Android e supporta numerosi formati vettoriali, raster, database e funzionalità.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS è un Sistema di Informazione Geografica Open Source facile da usare, rilasciato sotto la GNU General Public License. QGIS è un progetto ufficiale della Open Source Geospatial Foundation (OSGeo). Funziona su Linux, Unix, Mac OSX, Windows e Android e supporta numerosi formati vettoriali, raster, database e funzionalità.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_ja.ts
++++ b/i18n/qgis_ja.ts
+@@ -154833,8 +154833,8 @@ Reason phrase: %2</source>
+         <translation>QGISデスクトップ</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGISは、GNU General Public Licenseで提供されている、ユーザーフレンドリーなオープンソースの Geographic Information System(GIS)です。QGISは、Open Source Geospatial Foundation(OSGeo)のオフィシャルプロジェクトで、Linux・Unix・Mac OSX・Windows・Android で動作し、数多くのベクタ、ラスタ、データベースフォーマットや機能をサポートしています。</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGISは、GNU General Public Licenseで提供されている、ユーザーフレンドリーなオープンソースの Geographic Information System(GIS)です。QGISは、Open Source Geospatial Foundation(OSGeo)のオフィシャルプロジェクトで、Linux・Unix・Mac OSX・Windows・Android で動作し、数多くのベクタ、ラスタ、データベースフォーマットや機能をサポートしています。</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_ko.ts
++++ b/i18n/qgis_ko.ts
+@@ -154640,8 +154640,8 @@ Reason phrase: %2</source>
+         <translation>QGIS 데스크탑</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p> QGIS는 GNU 일반 공중 사용 허가서에 따라 사용이 편리한 오픈 소스 지리 정보 시스템 (GIS)입니다. QGIS는 OSGeo (Open Source Geospatial Foundation)의 공식 프로젝트입니다. Linux, Unix, Mac OSX, Windows 및 Android에서 실행되며 수많은 벡터, 래스터 및 데이터베이스 포맷과 기능을 지원합니다. </p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation> QGIS는 GNU 일반 공중 사용 허가서에 따라 사용이 편리한 오픈 소스 지리 정보 시스템 (GIS)입니다. QGIS는 OSGeo (Open Source Geospatial Foundation)의 공식 프로젝트입니다. Linux, Unix, Mac OSX, Windows 및 Android에서 실행되며 수많은 벡터, 래스터 및 데이터베이스 포맷과 기능을 지원합니다. </translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_ky.ts
++++ b/i18n/qgis_ky.ts
+@@ -153495,7 +153495,7 @@ Reason phrase: %2</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_lt.ts
++++ b/i18n/qgis_lt.ts
+@@ -154657,8 +154657,8 @@ Priežasties frazė: %2</translation>
+         <translation>QGIS Darbastalis</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS yra draugiška atviro kodo geografinė informacinė sistema (GIS), licencijuojama pagal GNU bendrą viešą licenciją. QGIS yra oficialus atviro kodo geoerdvinio fondo (OSGeo) projektas. Jis veikia Linux, Unix, Mac OSX, Windows ir Android sistemose, palaiko įvairius vektorinius, rastro ir duomenų bazių formatus ir funkcionalumus.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS yra draugiška atviro kodo geografinė informacinė sistema (GIS), licencijuojama pagal GNU bendrą viešą licenciją. QGIS yra oficialus atviro kodo geoerdvinio fondo (OSGeo) projektas. Jis veikia Linux, Unix, Mac OSX, Windows ir Android sistemose, palaiko įvairius vektorinius, rastro ir duomenų bazių formatus ir funkcionalumus.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_lv.ts
++++ b/i18n/qgis_lv.ts
+@@ -153410,7 +153410,7 @@ Reason phrase: %2</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_nb.ts
++++ b/i18n/qgis_nb.ts
+@@ -154652,8 +154652,8 @@ Reason phrase: %2</source>
+         <translation>Skrivebordsprogrammet QGIS </translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS er et brukervennlig geografisk informasjonssystem (GIS) med åpen kildekode, lisensiert under GNU General Public License. QGIS er et offisielt prosjekt hos Open Source Geospatial Foundation (OSGeo). QGIS kjører i Linux, Unix, Mac OSX, Windows og Android, og støtter mange vektor-, raster- og databaseformater og funksjonaliteter.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS er et brukervennlig geografisk informasjonssystem (GIS) med åpen kildekode, lisensiert under GNU General Public License. QGIS er et offisielt prosjekt hos Open Source Geospatial Foundation (OSGeo). QGIS kjører i Linux, Unix, Mac OSX, Windows og Android, og støtter mange vektor-, raster- og databaseformater og funksjonaliteter.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_pl.ts
++++ b/i18n/qgis_pl.ts
+@@ -154495,8 +154495,8 @@ Przyczyna: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS jest przyjaznym dla użytkownika otwartoźródłowym Systemem Informacji Geograficznej (GIS) na licencji GNU General Public License. QGIS jest oficjalnym projektem Open Source Geospatial Foundation (OSGeo). Działa na systemach Linux, Unix, Mac OSX, Windows oraz Android i obsługuje wiele wektorowych, rastrowych i bazodanowych formatów danych i funkcji.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS jest przyjaznym dla użytkownika otwartoźródłowym Systemem Informacji Geograficznej (GIS) na licencji GNU General Public License. QGIS jest oficjalnym projektem Open Source Geospatial Foundation (OSGeo). Działa na systemach Linux, Unix, Mac OSX, Windows oraz Android i obsługuje wiele wektorowych, rastrowych i bazodanowych formatów danych i funkcji.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_pt_BR.ts
++++ b/i18n/qgis_pt_BR.ts
+@@ -154590,8 +154590,8 @@ Expressão de motivo: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>O QGIS é um Sistema de Informação Geográfico (SIG) Código Aberto amigável licenciado segundo a Licença Pública Geral GNU. O QGIS é um projeto oficial da Fundação Geoespacial de Código Aberto (OSGeo). Funciona em Linux, Unix, Mac OSX, Windows e Android e suporta um conjunto variado de vetores, rasters, bases de dados, e funcionalidades.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>O QGIS é um Sistema de Informação Geográfico (SIG) Código Aberto amigável licenciado segundo a Licença Pública Geral GNU. O QGIS é um projeto oficial da Fundação Geoespacial de Código Aberto (OSGeo). Funciona em Linux, Unix, Mac OSX, Windows e Android e suporta um conjunto variado de vetores, rasters, bases de dados, e funcionalidades.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_pt_PT.ts
++++ b/i18n/qgis_pt_PT.ts
+@@ -154309,8 +154309,8 @@ Motivo: %2</translation>
+         <translation>QGIS - PC</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>O QGIS é um Sistema de Informação Geográfica (SIG) de código aberto disponível segundo a Licença Pública Geral GNU. O QGIS é um projeto oficial da Open Source Geospatial Foundation (OSGeo). Funciona em Linux, Unix, Mac OSX, Windows e Android e suporta inúmeros formatos de vetores, rasters, bases de dados, e funcionalidades.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>O QGIS é um Sistema de Informação Geográfica (SIG) de código aberto disponível segundo a Licença Pública Geral GNU. O QGIS é um projeto oficial da Open Source Geospatial Foundation (OSGeo). Funciona em Linux, Unix, Mac OSX, Windows e Android e suporta inúmeros formatos de vetores, rasters, bases de dados, e funcionalidades.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_ro.ts
++++ b/i18n/qgis_ro.ts
+@@ -154668,8 +154668,8 @@ Motiv: %2</translation>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS este un Sistem de Informații Geografice (GIS), prietenos cu utilizatorul, cu sursă deschisă, aflat sub Licența Publică Generală GNU. QGIS este un proiect oficial al Fundației Surselor Geospațiale Deschise (OSGeo). Acesta rulează pe Linux, Unix, Mac OSX, Windows și Android și acceptă numeroase formate vectoriale, raster, baze de date și funcționalități.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS este un Sistem de Informații Geografice (GIS), prietenos cu utilizatorul, cu sursă deschisă, aflat sub Licența Publică Generală GNU. QGIS este un proiect oficial al Fundației Surselor Geospațiale Deschise (OSGeo). Acesta rulează pe Linux, Unix, Mac OSX, Windows și Android și acceptă numeroase formate vectoriale, raster, baze de date și funcționalități.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_ru.ts
++++ b/i18n/qgis_ru.ts
+@@ -154585,8 +154585,8 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS это удобная для пользователя географическая информационная система (ГИС) с открытым кодом (GIS) лицензированная в соответствии с GNU General Public License. QGIS является официальным проектом геопространственного фонда с открытым исходным кодом (OSGeo). Он реализован на платформах Linux, Unix, Mac OSX, Windows и Android, поддерживает множество форматов векторных, растровых и баз данных и предоставляет развитые функциональные возможности.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS это удобная для пользователя географическая информационная система (ГИС) с открытым кодом (GIS) лицензированная в соответствии с GNU General Public License. QGIS является официальным проектом геопространственного фонда с открытым исходным кодом (OSGeo). Он реализован на платформах Linux, Unix, Mac OSX, Windows и Android, поддерживает множество форматов векторных, растровых и баз данных и предоставляет развитые функциональные возможности.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_sc.ts
++++ b/i18n/qgis_sc.ts
+@@ -153331,7 +153331,7 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_sk.ts
++++ b/i18n/qgis_sk.ts
+@@ -153320,8 +153320,8 @@ Reason phrase: %2</source>
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS je používateľsky prívetivý otvorený geografický informačný systém (GIS) s licenciou GNU General Public License. QGIS je oficiálnym projektom Open Source Geospatial Foundation (OSGeo). Funguje na systémoch Linux, Unix, Mac OSX, Windows a Android a podporuje množstvo vektorových, rastrových a databázových formátov a funkcií.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS je používateľsky prívetivý otvorený geografický informačný systém (GIS) s licenciou GNU General Public License. QGIS je oficiálnym projektom Open Source Geospatial Foundation (OSGeo). Funguje na systémoch Linux, Unix, Mac OSX, Windows a Android a podporuje množstvo vektorových, rastrových a databázových formátov a funkcií.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_sv.ts
++++ b/i18n/qgis_sv.ts
+@@ -154640,8 +154640,8 @@ Procent kan inte vara större än 100. V
+         <translation>QGIS Desktop</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS är ett användarvänligt Geografiskt Informationssystem (GIS) på öppen källkod licensierad under GNU General Public License. QGIS är ett officiellt projekt hos the Open Source Geospatial Foundation (OSGeo). Det är kompatibelt med Linux, Unix, Mac OSX, Windows och Android och kan hantera ett stort antal vektor-, raster och databasformat och funktioner.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS är ett användarvänligt Geografiskt Informationssystem (GIS) på öppen källkod licensierad under GNU General Public License. QGIS är ett officiellt projekt hos the Open Source Geospatial Foundation (OSGeo). Det är kompatibelt med Linux, Unix, Mac OSX, Windows och Android och kan hantera ett stort antal vektor-, raster och databasformat och funktioner.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_tr.ts
++++ b/i18n/qgis_tr.ts
+@@ -153473,7 +153473,7 @@ Reason phrase: %2</source>
+         <translation>QGIS Masasütü</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
+         <translation type="unfinished"/>
+     </message>
+     <message>
+--- a/i18n/qgis_uk.ts
++++ b/i18n/qgis_uk.ts
+@@ -153885,8 +153885,8 @@ Reason phrase: %2</source>
+         <translation>Настільний додаток QGIS</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p> QGIS - зручна для користувачів географічна інформаційна система з відкритим кодом (GIS), ліцензована за загальною публічною ліцензією GNU. QGIS - це офіційний проект геопросторового фонду з відкритим кодом (OSGeo). Він працює на Linux, Unix, Mac OSX, Windows та Android і підтримує численні формати та функції векторних, растрових та баз даних. </p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation> QGIS - зручна для користувачів географічна інформаційна система з відкритим кодом (GIS), ліцензована за загальною публічною ліцензією GNU. QGIS - це офіційний проект геопросторового фонду з відкритим кодом (OSGeo). Він працює на Linux, Unix, Mac OSX, Windows та Android і підтримує численні формати та функції векторних, растрових та баз даних. </translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_vi.ts
++++ b/i18n/qgis_vi.ts
+@@ -154579,8 +154579,8 @@ Mệnh đề nguyên nhân: %2</translat
+         <translation>QGIS Phiên bản Máy tính Để bàn</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p>QGIS là một Hệ thống Thông tin Địa lý Nguồn mở (GIS) được đăng ký dưới Giấy phép Công cộng Chung GNU. QGIS là một dự án chính thức của Hiệp hội Địa lý Không gian Nguồn mở (OSGeo). Nó chạy trên Linux, Unix, Mac OSX, Windows và Android và hỗ trợ rất nhiều các định dạng véc-tơ, raster và csdl cũng như rất nhiều tính năng.</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation>QGIS là một Hệ thống Thông tin Địa lý Nguồn mở (GIS) được đăng ký dưới Giấy phép Công cộng Chung GNU. QGIS là một dự án chính thức của Hiệp hội Địa lý Không gian Nguồn mở (OSGeo). Nó chạy trên Linux, Unix, Mac OSX, Windows và Android và hỗ trợ rất nhiều các định dạng véc-tơ, raster và csdl cũng như rất nhiều tính năng.</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_zh-Hans.ts
++++ b/i18n/qgis_zh-Hans.ts
+@@ -154647,8 +154647,8 @@ Reason phrase: %2</source>
+         <translation>QGIS 桌面版</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p> QGIS是根据GNU通用公共许可证许可、界面友好的开源地理信息系统 (GIS)。 QGIS是开源地理空间基金会 (OSGeo) 的官方项目,可以在 Linux、Unix、Mac OSX、Windows 和 Android 系统中运行,并支持多种矢量、栅格以及数据库格式和众多功能的软件。</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation> QGIS是根据GNU通用公共许可证许可、界面友好的开源地理信息系统 (GIS)。 QGIS是开源地理空间基金会 (OSGeo) 的官方项目,可以在 Linux、Unix、Mac OSX、Windows 和 Android 系统中运行,并支持多种矢量、栅格以及数据库格式和众多功能的软件。</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>
+--- a/i18n/qgis_zh-Hant.ts
++++ b/i18n/qgis_zh-Hant.ts
+@@ -154501,8 +154501,8 @@ Reason phrase: %2</source>
+         <translation>QGIS 桌面</translation>
+     </message>
+     <message>
+-        <source><p>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</p></source>
+-        <translation><p> QGIS是根据GNU通用公共许可证许可的,用户友好的开源地理信息系统(GIS)。 QGIS是开源地理空间基金会(OSGeo)的官方專案。 它可以在Linux,Unix,Mac OSX,Windows和Android上运行,并支持多种向量、栅格以及数据库格式和众多功能的软件。</p></translation>
++        <source>QGIS is a user friendly Open Source Geographic Information System (GIS) licensed under the GNU General Public License. QGIS is an official project of the Open Source Geospatial Foundation (OSGeo). It runs on Linux, Unix, Mac OSX, Windows and Android and supports numerous vector, raster, and database formats and functionalities.</source>
++        <translation> QGIS是根据GNU通用公共许可证许可的,用户友好的开源地理信息系统(GIS)。 QGIS是开源地理空间基金会(OSGeo)的官方專案。 它可以在Linux,Unix,Mac OSX,Windows和Android上运行,并支持多种向量、栅格以及数据库格式和众多功能的软件。</translation>
+     </message>
+     <message>
+         <source>Geographic Information System</source>



View it on GitLab: https://salsa.debian.org/debian-gis-team/qgis/-/commit/6650da3deb866ed2df797efc46963b2a7a75ce9c

-- 
View it on GitLab: https://salsa.debian.org/debian-gis-team/qgis/-/commit/6650da3deb866ed2df797efc46963b2a7a75ce9c
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20241203/820324e2/attachment-0001.htm>


More information about the Pkg-grass-devel mailing list