Skip to content

Commit

Permalink
Locale update: for commit 09bf378
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 14, 2024
1 parent 09bf378 commit 337fbec
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 61 deletions.
61 changes: 30 additions & 31 deletions locale/en/LC_MESSAGES/quickstart/gdal_quickstart.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OSGeoLive 13.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-26 14:03+0000\n"
"POT-Creation-Date: 2024-10-14 04:54+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -253,139 +253,138 @@ msgid ""
"Note how the poles are clipped? This is because the edges at the pole "
"can't be reprojected gdalwarp does not read all the data. We can force "
"gdalwarp to read a bunch of surplus data around chunks as one way to "
"resolve this. Read more about this in the `Raster Tutorial "
"<http://web.archive.org/web/20240812222113/https://trac.osgeo.org/gdal/wiki/UserDocs/RasterProcTutorial>`__."
"resolve this."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:259
#: ../../build/doc/quickstart/gdal_quickstart.rst:256
msgid "Mosaicking"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:261
#: ../../build/doc/quickstart/gdal_quickstart.rst:258
msgid ""
"gdal_merge.py is a python script that can be used for simple mosaicking "
"tasks. Mosaic the east.tif and west.tif into a single file:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:269
#: ../../build/doc/quickstart/gdal_quickstart.rst:266
msgid ""
"The same task can be accomplished with gdalwarp. gdalwarp has a variety "
"of advantages over gdal_merge, but can be slow to merge many files:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:279
#: ../../build/doc/quickstart/gdal_quickstart.rst:276
msgid "Get to know OGR"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:286
#: ../../build/doc/quickstart/gdal_quickstart.rst:283
msgid "Open the shape file with a Desktop GIS like QGIS, and have a look."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:290
#: ../../build/doc/quickstart/gdal_quickstart.rst:287
msgid "Get information about the vector data with ogrinfo"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:311
#: ../../build/doc/quickstart/gdal_quickstart.rst:308
msgid "Get a summary about your data with ogrinfo together with `-so`."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:394
#: ../../build/doc/quickstart/gdal_quickstart.rst:391
msgid ""
"If you run ogrinfo without a parameter you will get a summary about your "
"data and afterwards a section for every dataset."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:401
#: ../../build/doc/quickstart/gdal_quickstart.rst:398
msgid ""
"You can forward the result from ogrinfo to grep to filter and get only "
"the attribute COUNTRY."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:417
#: ../../build/doc/quickstart/gdal_quickstart.rst:414
msgid ""
"You can convert your data to other formats. Get the list of the supported"
" formats with `--formats`."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:421
#: ../../build/doc/quickstart/gdal_quickstart.rst:418
msgid "Use ogr2ogr to convert data between file formats"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:423
#: ../../build/doc/quickstart/gdal_quickstart.rst:420
msgid ""
"You can use ogr2ogr to converts simple features data between file "
"formats. You can use `--formats` to get the list of the supported formats"
" with read/write information."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:427
#: ../../build/doc/quickstart/gdal_quickstart.rst:424
msgid "Convert the countries to GML."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:436
#: ../../build/doc/quickstart/gdal_quickstart.rst:433
msgid "Things to try"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:438
#: ../../build/doc/quickstart/gdal_quickstart.rst:435
msgid "Here are some additional challenges for you to try:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:440
#: ../../build/doc/quickstart/gdal_quickstart.rst:437
msgid "Try gdalwarp or gdal_merge.py to mosaic your data"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:442
#: ../../build/doc/quickstart/gdal_quickstart.rst:439
msgid "Try gdaladdo to build internal overviews"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:444
#: ../../build/doc/quickstart/gdal_quickstart.rst:441
msgid ""
"QGIS uses GDAL/OGR too to suport many formats. It also provides the "
"GdalTools Plugin to process raster data. This plugin integrates the gdal-"
"tools into QGIS."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:446
#: ../../build/doc/quickstart/gdal_quickstart.rst:443
msgid ""
"Try ogr2ogr to import/export your vector data to other formats like "
"PostGIS. Have a look at the options ogr2ogr provides."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:448
#: ../../build/doc/quickstart/gdal_quickstart.rst:445
msgid "Try the QGIS plugin OGR-Layer-Konverter."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:452
#: ../../build/doc/quickstart/gdal_quickstart.rst:449
msgid "What next?"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:454
#: ../../build/doc/quickstart/gdal_quickstart.rst:451
msgid ""
"This is only the first step on the road to using GDAL and OGR. There is a"
" lot more functionality you can try."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:457
#: ../../build/doc/quickstart/gdal_quickstart.rst:454
msgid "GDAL Project home"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:459
#: ../../build/doc/quickstart/gdal_quickstart.rst:456
msgid "https://gdal.org"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:461
#: ../../build/doc/quickstart/gdal_quickstart.rst:458
msgid "GDAL Raster Tutorial"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:463
#: ../../build/doc/quickstart/gdal_quickstart.rst:460
msgid "https://gdal.org/en/latest/tutorials/raster_api_tut.html"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:465
#: ../../build/doc/quickstart/gdal_quickstart.rst:462
msgid "GDAL Workshop"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:467
#: ../../build/doc/quickstart/gdal_quickstart.rst:464
msgid "https://download.osgeo.org/gdal/workshop/foss4ge2015/workshop_gdal.html"
msgstr ""

Expand Down
60 changes: 30 additions & 30 deletions locale/pot/quickstart/gdal_quickstart.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OSGeoLive 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-26 14:03+0000\n"
"POT-Creation-Date: 2024-10-14 04:54+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -213,118 +213,118 @@ msgid "Here we reproject to the Ortho projection."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:250
msgid "Note how the poles are clipped? This is because the edges at the pole can't be reprojected gdalwarp does not read all the data. We can force gdalwarp to read a bunch of surplus data around chunks as one way to resolve this. Read more about this in the `Raster Tutorial <http://web.archive.org/web/20240812222113/https://trac.osgeo.org/gdal/wiki/UserDocs/RasterProcTutorial>`__."
msgid "Note how the poles are clipped? This is because the edges at the pole can't be reprojected gdalwarp does not read all the data. We can force gdalwarp to read a bunch of surplus data around chunks as one way to resolve this."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:259
#: ../../build/doc/quickstart/gdal_quickstart.rst:256
msgid "Mosaicking"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:261
#: ../../build/doc/quickstart/gdal_quickstart.rst:258
msgid "gdal_merge.py is a python script that can be used for simple mosaicking tasks. Mosaic the east.tif and west.tif into a single file:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:269
#: ../../build/doc/quickstart/gdal_quickstart.rst:266
msgid "The same task can be accomplished with gdalwarp. gdalwarp has a variety of advantages over gdal_merge, but can be slow to merge many files:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:279
#: ../../build/doc/quickstart/gdal_quickstart.rst:276
msgid "Get to know OGR"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:286
#: ../../build/doc/quickstart/gdal_quickstart.rst:283
msgid "Open the shape file with a Desktop GIS like QGIS, and have a look."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:290
#: ../../build/doc/quickstart/gdal_quickstart.rst:287
msgid "Get information about the vector data with ogrinfo"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:311
#: ../../build/doc/quickstart/gdal_quickstart.rst:308
msgid "Get a summary about your data with ogrinfo together with `-so`."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:394
#: ../../build/doc/quickstart/gdal_quickstart.rst:391
msgid "If you run ogrinfo without a parameter you will get a summary about your data and afterwards a section for every dataset."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:401
#: ../../build/doc/quickstart/gdal_quickstart.rst:398
msgid "You can forward the result from ogrinfo to grep to filter and get only the attribute COUNTRY."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:417
#: ../../build/doc/quickstart/gdal_quickstart.rst:414
msgid "You can convert your data to other formats. Get the list of the supported formats with `--formats`."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:421
#: ../../build/doc/quickstart/gdal_quickstart.rst:418
msgid "Use ogr2ogr to convert data between file formats"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:423
#: ../../build/doc/quickstart/gdal_quickstart.rst:420
msgid "You can use ogr2ogr to converts simple features data between file formats. You can use `--formats` to get the list of the supported formats with read/write information."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:427
#: ../../build/doc/quickstart/gdal_quickstart.rst:424
msgid "Convert the countries to GML."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:436
#: ../../build/doc/quickstart/gdal_quickstart.rst:433
msgid "Things to try"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:438
#: ../../build/doc/quickstart/gdal_quickstart.rst:435
msgid "Here are some additional challenges for you to try:"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:440
#: ../../build/doc/quickstart/gdal_quickstart.rst:437
msgid "Try gdalwarp or gdal_merge.py to mosaic your data"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:442
#: ../../build/doc/quickstart/gdal_quickstart.rst:439
msgid "Try gdaladdo to build internal overviews"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:444
#: ../../build/doc/quickstart/gdal_quickstart.rst:441
msgid "QGIS uses GDAL/OGR too to suport many formats. It also provides the GdalTools Plugin to process raster data. This plugin integrates the gdal-tools into QGIS."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:446
#: ../../build/doc/quickstart/gdal_quickstart.rst:443
msgid "Try ogr2ogr to import/export your vector data to other formats like PostGIS. Have a look at the options ogr2ogr provides."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:448
#: ../../build/doc/quickstart/gdal_quickstart.rst:445
msgid "Try the QGIS plugin OGR-Layer-Konverter."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:452
#: ../../build/doc/quickstart/gdal_quickstart.rst:449
msgid "What next?"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:454
#: ../../build/doc/quickstart/gdal_quickstart.rst:451
msgid "This is only the first step on the road to using GDAL and OGR. There is a lot more functionality you can try."
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:457
#: ../../build/doc/quickstart/gdal_quickstart.rst:454
msgid "GDAL Project home"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:459
#: ../../build/doc/quickstart/gdal_quickstart.rst:456
msgid "https://gdal.org"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:461
#: ../../build/doc/quickstart/gdal_quickstart.rst:458
msgid "GDAL Raster Tutorial"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:463
#: ../../build/doc/quickstart/gdal_quickstart.rst:460
msgid "https://gdal.org/en/latest/tutorials/raster_api_tut.html"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:465
#: ../../build/doc/quickstart/gdal_quickstart.rst:462
msgid "GDAL Workshop"
msgstr ""

#: ../../build/doc/quickstart/gdal_quickstart.rst:467
#: ../../build/doc/quickstart/gdal_quickstart.rst:464
msgid "https://download.osgeo.org/gdal/workshop/foss4ge2015/workshop_gdal.html"
msgstr ""

Expand Down

0 comments on commit 337fbec

Please sign in to comment.